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
|
|
|
!--------------------------------------------------------------------------------------------------
|
2014-12-08 21:25:30 +05:30
|
|
|
module plastic_none
|
2014-03-09 02:20:31 +05:30
|
|
|
|
2012-07-03 16:46:38 +05:30
|
|
|
implicit none
|
|
|
|
private
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2013-05-17 22:39:42 +05:30
|
|
|
public :: &
|
2014-12-08 21:25:30 +05:30
|
|
|
plastic_none_init
|
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
|
|
|
!--------------------------------------------------------------------------------------------------
|
2014-12-08 21:25:30 +05:30
|
|
|
subroutine plastic_none_init
|
2018-02-02 17:06:09 +05:30
|
|
|
#if defined(__GFORTRAN__) || __INTEL_COMPILER >= 1800
|
2017-10-05 20:05:34 +05:30
|
|
|
use, intrinsic :: iso_fortran_env, only: &
|
|
|
|
compiler_version, &
|
|
|
|
compiler_options
|
|
|
|
#endif
|
2018-06-02 09:08:45 +05:30
|
|
|
use prec, only: &
|
|
|
|
pInt
|
2013-12-19 14:19:47 +05:30
|
|
|
use debug, only: &
|
|
|
|
debug_level, &
|
|
|
|
debug_constitutive, &
|
|
|
|
debug_levelBasic
|
2012-07-03 16:46:38 +05:30
|
|
|
use IO, only: &
|
2014-03-09 02:20:31 +05:30
|
|
|
IO_timeStamp
|
2013-12-19 14:19:47 +05:30
|
|
|
use material, only: &
|
|
|
|
phase_plasticity, &
|
2019-01-06 04:25:10 +05:30
|
|
|
material_allocatePlasticState, &
|
2013-12-19 14:19:47 +05:30
|
|
|
PLASTICITY_NONE_label, &
|
2019-01-06 04:25:10 +05:30
|
|
|
PLASTICITY_NONE_ID, &
|
2014-05-22 20:54:12 +05:30
|
|
|
material_phase, &
|
2019-01-06 04:25:10 +05:30
|
|
|
plasticState
|
2013-12-19 14:19:47 +05:30
|
|
|
|
2012-07-03 16:46:38 +05:30
|
|
|
implicit none
|
2014-05-22 20:54:12 +05:30
|
|
|
integer(pInt) :: &
|
2019-01-06 04:25:10 +05:30
|
|
|
Ninstance, &
|
|
|
|
p, &
|
|
|
|
NipcMyPhase
|
|
|
|
|
2019-01-05 14:36:37 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- plastic_'//PLASTICITY_NONE_label//' init -+>>>'
|
2016-07-25 23:42:00 +05:30
|
|
|
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
|
2012-07-03 16:46:38 +05:30
|
|
|
#include "compilation_info.f90"
|
2019-01-06 04:25:10 +05:30
|
|
|
|
|
|
|
Ninstance = int(count(phase_plasticity == PLASTICITY_NONE_ID),pInt)
|
2013-05-17 22:39:42 +05:30
|
|
|
if (iand(debug_level(debug_constitutive),debug_levelBasic) /= 0_pInt) &
|
2019-01-06 04:25:10 +05:30
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance
|
|
|
|
|
|
|
|
do p = 1_pInt, size(phase_plasticity)
|
|
|
|
if (phase_plasticity(p) /= PLASTICITY_NONE_ID) cycle
|
2014-05-22 20:54:12 +05:30
|
|
|
|
2019-01-06 04:25:10 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! allocate state arrays
|
|
|
|
NipcMyPhase = count(material_phase == p)
|
|
|
|
call material_allocatePlasticState(p,NipcMyPhase,0_pInt,0_pInt,0_pInt, &
|
|
|
|
0_pInt,0_pInt,0_pInt)
|
|
|
|
plasticState(p)%sizePostResults = 0_pInt
|
2014-07-02 17:57:39 +05:30
|
|
|
|
2019-01-06 04:25:10 +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
|
|
|
|
2014-12-08 21:25:30 +05:30
|
|
|
end module plastic_none
|