|
78 | 78 | character(len=pSTRLEN), allocatable, dimension(:) :: &
|
79 | 79 | output
|
80 | 80 | logical :: &
|
81 |
| - extendedDislocations, & !< consider split into partials for climb calculation |
82 |
| - fccTwinTransNucleation, & !< twinning and transformation models are for fcc |
83 |
| - omitDipoles !< flag controlling consideration of dipole formation |
| 81 | + extendedDislocations = .false., & !< consider split into partials for climb calculation |
| 82 | + fccTwinTransNucleation = .false., & !< twinning and transformation models are for fcc |
| 83 | + omitDipoles = .false. !< flag controlling consideration of dipole formation |
84 | 84 | character(len=:), allocatable, dimension(:) :: &
|
85 | 85 | systems_sl, &
|
86 | 86 | systems_tw
|
@@ -206,8 +206,8 @@ module function plastic_dislotwin_init() result(myPlasticity)
|
206 | 206 | prm%P_sl = crystal_SchmidMatrix_slip(N_sl,phase_lattice(ph),phase_cOverA(ph))
|
207 | 207 | prm%n0_sl = crystal_slip_normal(N_sl,phase_lattice(ph),phase_cOverA(ph))
|
208 | 208 |
|
209 |
| - prm%extendedDislocations = pl%get_asBool('extend_dislocations',defaultVal=.false.) |
210 |
| - prm%omitDipoles = pl%get_asBool('omit_dipoles', defaultVal=.false.) |
| 209 | + prm%extendedDislocations = pl%get_asBool('extend_dislocations',defaultVal=prm%extendedDislocations) |
| 210 | + prm%omitDipoles = pl%get_asBool('omit_dipoles', defaultVal=prm%omitDipoles) |
211 | 211 |
|
212 | 212 | prm%Q_cl = pl%get_asReal('Q_cl')
|
213 | 213 |
|
|
0 commit comments