2014-06-25 04:29:16 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2015-05-28 22:32:23 +05:30
|
|
|
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @brief material subroutine for constant damage field
|
2014-06-25 04:29:16 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
module damage_none
|
2019-05-17 02:44:47 +05:30
|
|
|
use config
|
|
|
|
use material
|
2014-06-25 04:29:16 +05:30
|
|
|
|
2019-03-09 15:32:12 +05:30
|
|
|
implicit none
|
|
|
|
private
|
|
|
|
|
|
|
|
public :: &
|
|
|
|
damage_none_init
|
2014-06-25 04:29:16 +05:30
|
|
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2015-05-28 22:32:23 +05:30
|
|
|
!> @brief allocates all neccessary fields, reads information from material configuration file
|
2014-06-25 04:29:16 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-05-17 02:44:47 +05:30
|
|
|
subroutine damage_none_init
|
|
|
|
|
2019-03-09 15:32:12 +05:30
|
|
|
integer :: &
|
|
|
|
homog, &
|
|
|
|
NofMyHomog
|
|
|
|
|
|
|
|
write(6,'(/,a)') ' <<<+- damage_'//DAMAGE_NONE_LABEL//' init -+>>>'
|
|
|
|
|
|
|
|
initializeInstances: do homog = 1, size(config_homogenization)
|
|
|
|
|
|
|
|
myhomog: if (damage_type(homog) == DAMAGE_NONE_ID) then
|
2019-03-10 15:32:32 +05:30
|
|
|
NofMyHomog = count(material_homogenizationAt == homog)
|
2019-03-09 15:32:12 +05:30
|
|
|
damageState(homog)%sizeState = 0
|
|
|
|
allocate(damageState(homog)%state0 (0,NofMyHomog))
|
|
|
|
allocate(damageState(homog)%subState0(0,NofMyHomog))
|
|
|
|
allocate(damageState(homog)%state (0,NofMyHomog))
|
|
|
|
|
|
|
|
deallocate(damage(homog)%p)
|
|
|
|
allocate (damage(homog)%p(1), source=damage_initialPhi(homog))
|
|
|
|
|
|
|
|
endif myhomog
|
|
|
|
enddo initializeInstances
|
2014-06-25 04:29:16 +05:30
|
|
|
|
|
|
|
end subroutine damage_none_init
|
|
|
|
|
|
|
|
end module damage_none
|