DAMASK_EICMD/src/homogenization_mech_none.f90

44 lines
1.8 KiB
Fortran
Raw Normal View History

!--------------------------------------------------------------------------------------------------
!> @author Franz Roters, Max-Planck-Institut für Eisenforschung GmbH
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
2019-01-13 02:34:03 +05:30
!> @brief dummy homogenization homogenization scheme for 1 constituent per material point
!--------------------------------------------------------------------------------------------------
submodule(homogenization) homogenization_mech_none
contains
!--------------------------------------------------------------------------------------------------
!> @brief allocates all neccessary fields, reads information from material configuration file
!--------------------------------------------------------------------------------------------------
module subroutine mech_none_init(debug_homogenization)
class(tNode), pointer, intent(in) :: &
2020-06-26 23:42:05 +05:30
debug_homogenization !< pointer to debug options for homogenization
2019-03-09 12:17:01 +05:30
integer :: &
Ninstance, &
h, &
NofMyHomog
2020-01-27 02:20:43 +05:30
write(6,'(/,a)') ' <<<+- homogenization_'//HOMOGENIZATION_NONE_label//' init -+>>>'; flush(6)
2019-03-09 12:17:01 +05:30
Ninstance = count(homogenization_type == HOMOGENIZATION_NONE_ID)
if (debug_homogenization%contains('basic')) &
2019-03-09 12:17:01 +05:30
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance
do h = 1, size(homogenization_type)
if (homogenization_type(h) /= HOMOGENIZATION_NONE_ID) cycle
2019-03-10 15:32:32 +05:30
NofMyHomog = count(material_homogenizationAt == h)
2019-03-09 12:17:01 +05:30
homogState(h)%sizeState = 0
allocate(homogState(h)%state0 (0,NofMyHomog))
allocate(homogState(h)%subState0(0,NofMyHomog))
allocate(homogState(h)%state (0,NofMyHomog))
enddo
end subroutine mech_none_init
end submodule homogenization_mech_none