Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104768156
test_patch_linear_elastic_static.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
Wed, Mar 12, 05:52
Size
1 KB
Mime Type
text/x-python
Expires
Fri, Mar 14, 05:52 (1 d, 16 h)
Engine
blob
Format
Raw Data
Handle
24596391
Attached To
rAKA akantu
test_patch_linear_elastic_static.py
View Options
#!/usr/bin/env python3
# ------------------------------------------------------------------------------
__author__
=
"Guillaume Anciaux"
__copyright__
=
"Copyright (C) 2016-2018, EPFL (Ecole Polytechnique Fédérale"
\
" de Lausanne) Laboratory (LSMS - Laboratoire de Simulation"
\
" en Mécanique des Solides)"
__credits__
=
[
"Guillaume Anciaux"
]
__license__
=
"L-GPLv3"
__maintainer__
=
"Guillaume Anciaux"
__email__
=
"guillaume.anciaux@epfl.ch"
# ------------------------------------------------------------------------------
from
patch_test_linear_solid_mechanics_fixture
import
TestPatchTestSMMLinear
import
akantu
import
sys
def
foo
(
self
):
filename
=
"material_check_stress_plane_stress.dat"
if
self
.
plane_strain
:
filename
=
"material_check_stress_plane_strain.dat"
self
.
initModel
(
akantu
.
_static
,
filename
)
solver
=
self
.
model
.
getNonLinearSolver
()
solver
.
set
(
"max_iterations"
,
2
)
solver
.
set
(
"threshold"
,
2e-4
)
solver
.
set
(
"convergence_type"
,
akantu
.
SolveConvergenceCriteria
.
residual
)
self
.
model
.
solveStep
()
self
.
checkAll
()
def
test
():
TestPatchTestSMMLinear
.
TYPED_TEST
(
foo
,
"Static"
)
if
'pytest'
not
in
sys
.
modules
:
test
()
Event Timeline
Log In to Comment