adopting indentation
This commit is contained in:
parent
32639caec2
commit
5f1934bacb
|
@ -222,16 +222,7 @@ module material
|
|||
HOMOGENIZATION_isostrain_ID, &
|
||||
HOMOGENIZATION_RGC_ID
|
||||
|
||||
private :: &
|
||||
material_parseHomogenization, &
|
||||
material_parseMicrostructure, &
|
||||
material_parseCrystallite, &
|
||||
material_parsePhase, &
|
||||
material_parseTexture
|
||||
|
||||
contains
|
||||
|
||||
|
||||
!--------------------------------------------------------------------------------------------------
|
||||
!> @brief parses material configuration file
|
||||
!--------------------------------------------------------------------------------------------------
|
||||
|
@ -375,8 +366,6 @@ subroutine material_init
|
|||
call results_closeJobFile
|
||||
#endif
|
||||
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
! BEGIN DEPRECATED
|
||||
|
@ -391,9 +380,7 @@ subroutine material_init
|
|||
mappingHomogenization(1:2,i,e) = [CounterHomogenization(myHomog),huge(1)]
|
||||
enddo
|
||||
enddo
|
||||
! END DEPRECATED
|
||||
|
||||
! REMOVE !!!!!
|
||||
! hack needed to initialize field values used during constitutive and crystallite initializations
|
||||
do myHomog = 1,size(config_homogenization)
|
||||
thermalMapping (myHomog)%p => mappingHomogenizationConst
|
||||
|
@ -402,10 +389,10 @@ subroutine material_init
|
|||
allocate(damage (myHomog)%p(1), source=damage_initialPhi(myHomog))
|
||||
allocate(temperatureRate (myHomog)%p(1), source=0.0_pReal)
|
||||
enddo
|
||||
! END DEPRECATED
|
||||
|
||||
end subroutine material_init
|
||||
|
||||
|
||||
!--------------------------------------------------------------------------------------------------
|
||||
!> @brief parses the homogenization part from the material configuration
|
||||
!--------------------------------------------------------------------------------------------------
|
||||
|
@ -684,8 +671,8 @@ subroutine material_parsePhase
|
|||
enddo
|
||||
enddo
|
||||
|
||||
allocate(phase_plasticityInstance(size(config_phase)), source=0)
|
||||
allocate(phase_elasticityInstance(size(config_phase)), source=0)
|
||||
allocate(phase_plasticityInstance(size(config_phase)),source=0)
|
||||
allocate(phase_elasticityInstance(size(config_phase)),source=0)
|
||||
|
||||
do p=1, size(config_phase)
|
||||
phase_elasticityInstance(p) = count(phase_elasticity(1:p) == phase_elasticity(p))
|
||||
|
|
Loading…
Reference in New Issue