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
|
|
|
|
!> @brief material subroutine for purely elastic material
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
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
|
2014-06-24 19:14:50 +05:30
|
|
|
use numerics, only: &
|
|
|
|
numerics_integrator
|
2013-12-19 14:19:47 +05:30
|
|
|
use material, only: &
|
|
|
|
phase_plasticity, &
|
|
|
|
PLASTICITY_NONE_label, &
|
2014-05-22 20:54:12 +05:30
|
|
|
material_phase, &
|
|
|
|
plasticState, &
|
2015-04-11 17:17:33 +05:30
|
|
|
PLASTICITY_none_ID
|
2013-12-19 14:19:47 +05:30
|
|
|
|
2012-07-03 16:46:38 +05:30
|
|
|
implicit none
|
2014-03-09 02:20:31 +05:30
|
|
|
|
2014-05-22 20:54:12 +05:30
|
|
|
integer(pInt) :: &
|
|
|
|
maxNinstance, &
|
2014-06-24 19:14:50 +05:30
|
|
|
phase, &
|
2018-06-02 09:08:45 +05:30
|
|
|
NofMyPhase
|
2013-01-09 03:41:59 +05:30
|
|
|
|
2016-07-25 23:42:00 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- constitutive_'//PLASTICITY_NONE_label//' init -+>>>'
|
|
|
|
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
|
2012-07-03 16:46:38 +05:30
|
|
|
#include "compilation_info.f90"
|
|
|
|
|
2014-06-24 19:14:50 +05:30
|
|
|
maxNinstance = 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) &
|
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',maxNinstance
|
2014-05-22 20:54:12 +05:30
|
|
|
|
|
|
|
initializeInstances: do phase = 1_pInt, size(phase_plasticity)
|
2014-07-02 17:57:39 +05:30
|
|
|
if (phase_plasticity(phase) == PLASTICITY_none_ID) then
|
2014-06-24 19:14:50 +05:30
|
|
|
NofMyPhase=count(material_phase==phase)
|
2014-07-02 17:57:39 +05:30
|
|
|
|
2018-06-02 09:08:45 +05:30
|
|
|
allocate(plasticState(phase)%aTolState (0_pInt))
|
|
|
|
allocate(plasticState(phase)%state0 (0_pInt,NofMyPhase))
|
|
|
|
allocate(plasticState(phase)%partionedState0 (0_pInt,NofMyPhase))
|
|
|
|
allocate(plasticState(phase)%subState0 (0_pInt,NofMyPhase))
|
|
|
|
allocate(plasticState(phase)%state (0_pInt,NofMyPhase))
|
2014-07-02 17:57:39 +05:30
|
|
|
|
2018-06-02 09:08:45 +05:30
|
|
|
allocate(plasticState(phase)%dotState (0_pInt,NofMyPhase))
|
|
|
|
allocate(plasticState(phase)%deltaState (0_pInt,NofMyPhase))
|
2014-06-24 19:14:50 +05:30
|
|
|
if (any(numerics_integrator == 1_pInt)) then
|
2018-06-02 09:08:45 +05:30
|
|
|
allocate(plasticState(phase)%previousDotState (0_pInt,NofMyPhase))
|
|
|
|
allocate(plasticState(phase)%previousDotState2(0_pInt,NofMyPhase))
|
2014-06-24 19:14:50 +05:30
|
|
|
endif
|
|
|
|
if (any(numerics_integrator == 4_pInt)) &
|
2018-06-02 09:08:45 +05:30
|
|
|
allocate(plasticState(phase)%RK4dotState (0_pInt,NofMyPhase))
|
2014-06-24 19:14:50 +05:30
|
|
|
if (any(numerics_integrator == 5_pInt)) &
|
2018-06-02 09:08:45 +05:30
|
|
|
allocate(plasticState(phase)%RKCK45dotState (6,0_pInt,NofMyPhase))
|
2014-06-24 19:14:50 +05:30
|
|
|
endif
|
2014-05-22 20:54:12 +05:30
|
|
|
enddo initializeInstances
|
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
|