Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91240348
fenics_norms.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 9, 06:54
Size
2 KB
Mime Type
text/x-python
Expires
Mon, Nov 11, 06:54 (2 d)
Engine
blob
Format
Raw Data
Handle
22227654
Attached To
R6746 RationalROMPy
fenics_norms.py
View Options
# Copyright (C) 2018 by the RROMPy authors
#
# This file is part of RROMPy.
#
# RROMPy is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# RROMPy is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with RROMPy. If not, see <http://www.gnu.org/licenses/>.
#
import
numpy
as
np
import
fenics
as
fen
from
rrompy.utilities.fenics
import
(
L2NormMatrix
,
H1NormMatrix
,
elasticNormMatrix
)
def
test_fenics_L2
():
V
=
fen
.
FunctionSpace
(
fen
.
UnitSquareMesh
(
3
,
3
),
"P"
,
3
)
u
=
fen
.
interpolate
(
fen
.
Constant
(
3.
),
V
)
v
=
fen
.
interpolate
(
fen
.
Expression
(
"x[0]*x[0]+x[1]"
,
degree
=
2
),
V
)
uv
=
u
.
vector
()[:]
vv
=
v
.
vector
()[:]
mass
=
L2NormMatrix
(
V
)
inner
=
fen
.
assemble
(
fen
.
dot
(
u
,
v
)
*
fen
.
dx
)
assert
np
.
isclose
(
uv
.
T
.
dot
(
mass
.
dot
(
vv
)),
2.5
,
rtol
=
1e-8
)
assert
np
.
isclose
(
inner
,
2.5
,
rtol
=
1e-8
)
def
test_fenics_H1
():
V
=
fen
.
FunctionSpace
(
fen
.
UnitSquareMesh
(
3
,
3
),
"P"
,
2
)
u
=
fen
.
interpolate
(
fen
.
Expression
(
"x[0]+exp(x[1])"
,
degree
=
4
),
V
)
v
=
fen
.
interpolate
(
fen
.
Expression
(
"x[0]*x[0]+x[1]"
,
degree
=
2
),
V
)
uv
=
u
.
vector
()[:]
vv
=
v
.
vector
()[:]
stiffness
=
H1NormMatrix
(
V
)
helmholtz
=
H1NormMatrix
(
V
,
12
)
inners
=
fen
.
assemble
(
fen
.
dot
(
fen
.
grad
(
u
),
fen
.
grad
(
v
))
*
fen
.
dx
)
innerh
=
12
*
fen
.
assemble
(
fen
.
dot
(
u
,
v
)
*
fen
.
dx
)
assert
np
.
isclose
(
uv
.
T
.
dot
(
stiffness
.
dot
(
vv
)),
np
.
exp
(
1
),
rtol
=
1e-6
)
assert
np
.
isclose
(
inners
,
np
.
exp
(
1
),
rtol
=
1e-6
)
assert
np
.
isclose
(
uv
.
T
.
dot
(
helmholtz
.
dot
(
vv
)),
5
*
np
.
exp
(
1
)
+
14
,
rtol
=
1e-3
)
assert
np
.
isclose
(
inners
+
innerh
,
5
*
np
.
exp
(
1
)
+
14
,
rtol
=
1e-3
)
def
test_fenics_elastic
():
V
=
fen
.
VectorFunctionSpace
(
fen
.
UnitCubeMesh
(
5
,
5
,
5
),
"P"
,
1
)
l_
=
1.
m_
=
fen
.
Expression
(
".5*x[0]+1."
,
degree
=
1
)
u
=
fen
.
interpolate
(
fen
.
Expression
((
"exp(x[1])"
,
"x[0]-x[2]"
,
"3."
),
degree
=
4
),
V
)
v
=
fen
.
interpolate
(
fen
.
Expression
((
"x[0]*x[0]+x[2]"
,
"1."
,
"-1. * x[1]"
),
degree
=
2
),
V
)
uv
=
u
.
vector
()[:]
vv
=
v
.
vector
()[:]
energyMat
=
elasticNormMatrix
(
V
,
l_
,
m_
,
10
)
epsilon
=
lambda
f
:
0.5
*
(
fen
.
grad
(
f
)
+
fen
.
nabla_grad
(
f
))
sigma
=
(
l_
*
fen
.
div
(
u
)
*
fen
.
Identity
(
3
)
+
2.
*
m_
*
epsilon
(
u
))
energy
=
fen
.
assemble
((
10
*
fen
.
dot
(
u
,
v
)
+
fen
.
inner
(
sigma
,
epsilon
(
v
)))
*
fen
.
dx
)
assert
np
.
isclose
(
uv
.
T
.
dot
(
energyMat
.
dot
(
vv
)),
energy
,
rtol
=
1e-8
)
Event Timeline
Log In to Comment