Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91610124
python_material_linear_elastic4_test.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
Tue, Nov 12, 16:46
Size
2 KB
Mime Type
text/x-python
Expires
Thu, Nov 14, 16:46 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22218696
Attached To
rMUSPECTRE µSpectre
python_material_linear_elastic4_test.py
View Options
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
"""
@file python_material_linear_elastic4_test.py
@author Richard Leute <richard.leute@imtek.uni-freiburg.de>
@date 27 Mar 2018
@brief description
@section LICENSE
Copyright © 2018 Till Junge
µSpectre is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3, or (at
your option) any later version.
µSpectre 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Emacs; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
"""
import
unittest
import
numpy
as
np
from
python_test_imports
import
µ
class
MaterialLinearElastic4_Check
(
unittest
.
TestCase
):
"""
Check the implementation of storing the first and second Lame constant in
each cell. Assign the same Youngs modulus and Poisson ratio to each cell,
from which the two Lame constants are internally computed. Then calculate
the stress and compare the result with stress=2*mu*Del0 (Hooke law for small
symmetric strains).
"""
def
setUp
(
self
):
self
.
resolution
=
[
7
,
7
]
self
.
lengths
=
[
2.3
,
3.9
]
self
.
formulation
=
µ
.
Formulation
.
small_strain
self
.
sys
=
µ
.
Cell
(
self
.
resolution
,
self
.
lengths
,
self
.
formulation
)
self
.
mat
=
µ
.
material
.
MaterialLinearElastic4_2d
.
make
(
self
.
sys
,
"material"
)
def
test_solver
(
self
):
Youngs_modulus
=
10.
Poisson_ratio
=
0.3
for
i
,
pixel
in
enumerate
(
self
.
sys
):
self
.
mat
.
add_pixel
(
pixel
,
Youngs_modulus
,
Poisson_ratio
)
self
.
sys
.
initialise
()
tol
=
1e-6
Del0
=
np
.
array
([[
0
,
0.025
],
[
0.025
,
0
]])
maxiter
=
100
verbose
=
1
solver
=
µ
.
solvers
.
SolverCG
(
self
.
sys
,
tol
,
maxiter
,
verbose
)
r
=
µ
.
solvers
.
newton_cg
(
self
.
sys
,
Del0
,
solver
,
tol
,
tol
,
verbose
)
#compare the computed stress with the trivial by hand computed stress
mu
=
(
Youngs_modulus
/
(
2
*
(
1
+
Poisson_ratio
)))
stress
=
2
*
mu
*
Del0
self
.
assertLess
(
np
.
linalg
.
norm
(
r
.
stress
-
stress
.
reshape
(
-
1
,
1
)),
1e-8
)
Event Timeline
Log In to Comment