following paper
This commit is contained in:
parent
a13e02da44
commit
3c6c5d77e8
2
PRIVATE
2
PRIVATE
|
@ -1 +1 @@
|
|||
Subproject commit 15bb4a18292bf4f5d3b371dc1edbf9a33606eb60
|
||||
Subproject commit 70310b426d03ef07dc053e080729d35e5eb3f0cb
|
|
@ -7,5 +7,5 @@ q: 20
|
|||
|
||||
output: [f_phi]
|
||||
|
||||
D_11: 1.0
|
||||
M: 0.001
|
||||
K_11: 1.0
|
||||
mu: 0.001
|
||||
|
|
|
@ -5,5 +5,5 @@ isoBrittle_atol: 0.01
|
|||
|
||||
output: [f_phi]
|
||||
|
||||
D_11: 1.0
|
||||
M: 0.001
|
||||
K_11: 1.0
|
||||
mu: 0.001
|
||||
|
|
|
@ -74,7 +74,7 @@ contains
|
|||
module subroutine damage_init
|
||||
|
||||
integer :: &
|
||||
ph, & !< counter in phase loop
|
||||
ph, &
|
||||
Nmembers
|
||||
class(tNode), pointer :: &
|
||||
phases, &
|
||||
|
@ -105,10 +105,10 @@ module subroutine damage_init
|
|||
if (sources%length == 1) then
|
||||
damage_active = .true.
|
||||
source => sources%get(1)
|
||||
param(ph)%mu = source%get_asFloat('M',defaultVal=0.0_pReal)
|
||||
param(ph)%K(1,1) = source%get_asFloat('D_11',defaultVal=0.0_pReal)
|
||||
param(ph)%K(3,3) = source%get_asFloat('D_33',defaultVal=0.0_pReal)
|
||||
param(ph)%K = lattice_applyLatticeSymmetry33(param(ph)%K,phase%get_asString('lattice'))
|
||||
param(ph)%mu = source%get_asFloat('mu',defaultVal=0.0_pReal) ! ToDo: make mandatory?
|
||||
param(ph)%K(1,1) = source%get_asFloat('K_11',defaultVal=0.0_pReal) ! ToDo: make mandatory?
|
||||
param(ph)%K(3,3) = source%get_asFloat('K_33',defaultVal=0.0_pReal) ! ToDo: depends on symmetry
|
||||
param(ph)%K = lattice_applyLatticeSymmetry33(param(ph)%K,phase_lattice(ph))
|
||||
endif
|
||||
|
||||
enddo
|
||||
|
|
|
@ -100,10 +100,10 @@ module subroutine thermal_init(phases)
|
|||
allocate(current(ph)%dot_T(Nmembers),source=0.0_pReal)
|
||||
phase => phases%get(ph)
|
||||
thermal => phase%get('thermal',defaultVal=emptyDict)
|
||||
param(ph)%C_p = thermal%get_asFloat('C_p',defaultVal=0.0_pReal)
|
||||
param(ph)%C_p = thermal%get_asFloat('C_p',defaultVal=0.0_pReal) ! ToDo: make mandatory?
|
||||
param(ph)%K(1,1) = thermal%get_asFloat('K_11',defaultVal=0.0_pReal) ! ToDo: make mandatory?
|
||||
param(ph)%K(3,3) = thermal%get_asFloat('K_33',defaultVal=0.0_pReal) ! ToDo: depends on symmtery
|
||||
param(ph)%K = lattice_applyLatticeSymmetry33(param(ph)%K,phase%get_asString('lattice'))
|
||||
param(ph)%K = lattice_applyLatticeSymmetry33(param(ph)%K,phase_lattice(ph))
|
||||
|
||||
sources => thermal%get('source',defaultVal=emptyList)
|
||||
thermal_Nsources(ph) = sources%length
|
||||
|
|
Loading…
Reference in New Issue