Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90563032
odd_comparison.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 2, 19:20
Size
3 KB
Mime Type
text/x-python
Expires
Mon, Nov 4, 19:20 (2 d)
Engine
blob
Format
Raw Data
Handle
22097275
Attached To
rMUSPECTRE µSpectre
odd_comparison.py
View Options
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
"""
@file odd_comparison.py
@author Till Junge <till.junge@altermail.ch>
@date 08 Dec 2018
@brief comparison to GooseFFT's odd.py calculation
Copyright © 2018 Till Junge
µSpectre is free software; you can redistribute it and/or
modify it under the terms of the GNU General Lesser 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 Lesser General Public License
along with µSpectre; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
Additional permission under GNU GPL version 3 section 7
If you modify this Program, or any covered work, by linking or combining it
with proprietary FFT implementations or numerical libraries, containing parts
covered by the terms of those libraries' licenses, the licensors of this
Program grant you additional permission to convey the resulting work.
"""
import
sys
import
os
import
numpy
as
np
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
getcwd
(),
"language_bindings/python"
))
import
muSpectre
as
µ
# set up of the microstructure
phase
=
np
.
load
(
'odd_image.npz'
)[
'phase'
][:
41
,
:
41
]
resolution
=
list
(
phase
.
shape
)
dim
=
len
(
resolution
)
lengths
=
resolution
formulation
=
µ
.
Formulation
.
finite_strain
# choose material (constitutive) model
Mat
=
µ
.
material
.
MaterialHyperElastoPlastic1_2d
K
=
0.833
# bulk modulus
mu
=
0.386
# shear modulus
# hardening moduli
H_soft
,
H_hard
=
2000.0e6
/
200.0e9
,
2.
*
2000.0e6
/
200.0e9
# initial yield stresses
tauy0_soft
,
tauy0_hard
=
600.0e6
/
200.0e9
,
2.
*
600.0e6
/
200.0e9
# MuSpectre uses Young's modulus and Poisson's ratio instead
Young
=
(
9
*
K
*
mu
)
/
(
3
*
K
+
mu
)
Poisson
=
(
3
*
K
-
2
*
mu
)
/
(
2
*
(
3
*
K
+
mu
))
# set up system
rve
=
µ
.
Cell
(
resolution
,
lengths
,
formulation
)
hard
=
Mat
.
make
(
rve
,
"hard"
,
Young
,
Poisson
,
tauy0_hard
,
H_hard
)
soft
=
Mat
.
make
(
rve
,
"soft"
,
Young
,
Poisson
,
tauy0_soft
,
H_soft
)
for
pixel
in
rve
:
if
phase
[
tuple
(
pixel
)]
==
1
:
hard
.
add_pixel
(
pixel
)
elif
phase
[
tuple
(
pixel
)]
==
0
:
soft
.
add_pixel
(
pixel
)
else
:
raise
Exception
(
"phase '{}' should not exist"
.
format
(
phase
[
tuple
(
pixel
)]))
pass
# number if load increments
ninc
=
250
epsbar
=
np
.
linspace
(
0.0
,
0.1
,
ninc
+
1
)[
1
:]
stretch
=
np
.
exp
(
np
.
sqrt
(
3.0
)
/
2.0
*
epsbar
)
Δ
Fbars
=
list
()
for
inc
,
lam
in
zip
(
range
(
1
,
ninc
+
1
),
stretch
[:
40
]):
print
(
'============================='
)
print
(
'inc: {0:d}'
.
format
(
inc
))
Δ
F
=
np
.
zeros
((
dim
,
dim
))
Δ
F
[
0
,
0
]
=
lam
-
1.
Δ
F
[
1
,
1
]
=
1.
/
lam
-
1.
print
(
"ΔF =
\n
{}"
.
format
(
Δ
F
))
print
(
"F =
\n
{}"
.
format
(
Δ
F
+
np
.
eye
(
dim
)))
Δ
Fbars
.
append
(
Δ
F
)
pass
cg_tol
=
1e-8
newton_tol
=
1e-5
equil_tol
=
0
*
cg_tol
maxiter
=
1000
solver
=
µ
.
solvers
.
SolverCGEigen
(
rve
,
cg_tol
,
maxiter
,
verbose
=
False
)
results
=
µ
.
solvers
.
newton_cg
(
rve
,
Δ
Fbars
,
solver
,
newton_tol
,
equil_tol
,
verbose
=
1
)
Event Timeline
Log In to Comment