2013-05-17 22:39:42 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @author Franz Roters, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
|
2019-01-06 04:25:10 +05:30
|
|
|
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @brief Dummy plasticity for purely elastic material
|
2013-05-17 22:39:42 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-12-03 01:13:02 +05:30
|
|
|
submodule(constitutive) plastic_none
|
2013-05-17 22:39:42 +05:30
|
|
|
|
2013-07-01 11:40:42 +05:30
|
|
|
contains
|
2012-07-03 16:46:38 +05:30
|
|
|
|
2013-05-17 22:39:42 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-07-01 11:40:42 +05:30
|
|
|
!> @brief module initialization
|
|
|
|
!> @details reads in material parameters, allocates arrays, and does sanity checks
|
2013-05-17 22:39:42 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-12-03 01:13:02 +05:30
|
|
|
module subroutine plastic_none_init
|
2013-12-19 14:19:47 +05:30
|
|
|
|
2020-02-01 02:07:18 +05:30
|
|
|
integer :: &
|
|
|
|
Ninstance, &
|
|
|
|
p, &
|
|
|
|
NipcMyPhase
|
2020-02-14 13:30:14 +05:30
|
|
|
|
2020-03-14 23:41:26 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- plastic_'//PLASTICITY_NONE_LABEL//' init -+>>>'; flush(6)
|
2020-02-14 13:30:14 +05:30
|
|
|
|
2020-02-01 02:07:18 +05:30
|
|
|
Ninstance = count(phase_plasticity == PLASTICITY_NONE_ID)
|
|
|
|
if (iand(debug_level(debug_constitutive),debug_levelBasic) /= 0) &
|
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance
|
2020-02-14 13:30:14 +05:30
|
|
|
|
2020-02-01 02:07:18 +05:30
|
|
|
do p = 1, size(phase_plasticity)
|
|
|
|
if (phase_plasticity(p) /= PLASTICITY_NONE_ID) cycle
|
2020-02-14 13:30:14 +05:30
|
|
|
|
2020-02-01 02:07:18 +05:30
|
|
|
NipcMyPhase = count(material_phaseAt == p) * discretization_nIP
|
|
|
|
call material_allocatePlasticState(p,NipcMyPhase,0,0,0)
|
2020-02-14 13:30:14 +05:30
|
|
|
|
2020-02-01 02:07:18 +05:30
|
|
|
enddo
|
2014-07-02 17:57:39 +05:30
|
|
|
|
2014-12-08 21:25:30 +05:30
|
|
|
end subroutine plastic_none_init
|
2012-07-03 16:46:38 +05:30
|
|
|
|
2019-12-03 01:13:02 +05:30
|
|
|
end submodule plastic_none
|