Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92939791
linear_elasticity.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
Mon, Nov 25, 00:03
Size
1 KB
Mime Type
text/x-python
Expires
Wed, Nov 27, 00:03 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22541473
Attached To
R6746 RationalROMPy
linear_elasticity.py
View Options
# Copyright (C) 2018-2020 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
from
linear_elasticity_beam_poisson_ratio_engine
import
\
LinearElasticityBeamPoissonRatioEngine
from
rod_3d
import
rod3Dsolver
def
test_elastic_beam
():
solver
=
LinearElasticityBeamPoissonRatioEngine
(
n
=
10
,
rho_
=
1e3
,
g
=
3
,
E
=
1e6
,
nu0
=
.
45
,
length
=
5
,
verbosity
=
0
)
mu
=
.
45
uh
=
solver
.
solve
(
mu
)[
0
]
assert
np
.
isclose
(
solver
.
norm
(
uh
),
9.33957e-08
,
rtol
=
1e-1
)
assert
np
.
isclose
(
solver
.
norm
(
solver
.
residual
(
mu
,
uh
)[
0
],
dual
=
True
),
8.4545952e-13
,
rtol
=
1e-1
)
def
test_elastic_rod
():
solver
=
rod3Dsolver
()
uh
=
solver
.
solve
()[
0
]
assert
np
.
isclose
(
solver
.
norm
(
uh
),
0.15563476339534466
,
rtol
=
1e-5
)
assert
np
.
isclose
(
solver
.
norm
(
solver
.
residual
([],
uh
)[
0
],
dual
=
True
),
1.2210129e-07
,
rtol
=
1e-1
)
Event Timeline
Log In to Comment