40 lines
1.4 KiB
Fortran
40 lines
1.4 KiB
Fortran
!--------------------------------------------------------------------------------------------------
|
|
!> @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
|
|
!> @brief Dummy plasticity for purely elastic material
|
|
!--------------------------------------------------------------------------------------------------
|
|
submodule(phase:plastic) none
|
|
|
|
contains
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
!> @brief Perform module initialization.
|
|
!> @details reads in material parameters, allocates arrays, and does sanity checks
|
|
!--------------------------------------------------------------------------------------------------
|
|
module function plastic_none_init() result(myPlasticity)
|
|
|
|
logical, dimension(:), allocatable :: myPlasticity
|
|
integer :: &
|
|
ph
|
|
class(tNode), pointer :: &
|
|
phases
|
|
|
|
|
|
myPlasticity = plastic_active('none')
|
|
if(count(myPlasticity) == 0) return
|
|
|
|
print'(/,a)', ' <<<+- phase:mechanical:plastic:none init -+>>>'
|
|
print'(a,i0)', ' # phases: ',count(myPlasticity); flush(IO_STDOUT)
|
|
|
|
phases => config_material%get('phase')
|
|
do ph = 1, phases%length
|
|
if(.not. myPlasticity(ph)) cycle
|
|
call phase_allocateState(plasticState(ph),count(material_phaseAt2 == ph),0,0,0)
|
|
enddo
|
|
|
|
end function plastic_none_init
|
|
|
|
|
|
end submodule none
|