2013-05-17 22:39:42 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! $Id$
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @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
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2012-07-03 16:46:38 +05:30
|
|
|
module constitutive_none
|
2013-05-17 22:39:42 +05:30
|
|
|
use prec, only: &
|
|
|
|
pInt
|
2014-03-09 02:20:31 +05:30
|
|
|
|
2012-07-03 16:46:38 +05:30
|
|
|
implicit none
|
|
|
|
private
|
2013-12-12 03:33:09 +05:30
|
|
|
integer(pInt), dimension(:), allocatable, public, protected :: &
|
2012-07-03 16:46:38 +05:30
|
|
|
constitutive_none_sizeDotState, &
|
|
|
|
constitutive_none_sizeState, &
|
2013-01-22 03:27:26 +05:30
|
|
|
constitutive_none_sizePostResults
|
2012-07-03 16:46:38 +05:30
|
|
|
|
2013-12-12 03:33:09 +05:30
|
|
|
integer(pInt), dimension(:,:), allocatable, target, public :: &
|
2013-07-01 11:40:42 +05:30
|
|
|
constitutive_none_sizePostResult !< size of each post result output
|
|
|
|
|
2013-05-17 22:39:42 +05:30
|
|
|
public :: &
|
2014-03-09 02:20:31 +05:30
|
|
|
constitutive_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
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-12-12 03:33:09 +05:30
|
|
|
subroutine constitutive_none_init(fileUnit)
|
2013-05-17 22:39:42 +05:30
|
|
|
use, intrinsic :: iso_fortran_env ! to get compiler_version and compiler_options (at least for gfortran 4.6 at the moment)
|
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, &
|
|
|
|
phase_Noutput, &
|
|
|
|
PLASTICITY_NONE_label, &
|
|
|
|
PLASTICITY_NONE_ID, &
|
|
|
|
MATERIAL_partPhase
|
|
|
|
|
2012-07-03 16:46:38 +05:30
|
|
|
implicit none
|
2014-03-09 02:20:31 +05:30
|
|
|
|
2013-12-12 03:33:09 +05:30
|
|
|
integer(pInt), intent(in) :: fileUnit
|
2014-03-09 02:20:31 +05:30
|
|
|
integer(pInt) :: maxNinstance
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2013-01-09 03:41:59 +05:30
|
|
|
|
2013-11-27 13:34:05 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- constitutive_'//PLASTICITY_NONE_label//' init -+>>>'
|
2013-05-28 23:01:55 +05:30
|
|
|
write(6,'(a)') ' $Id$'
|
2013-05-17 22:39:42 +05:30
|
|
|
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
|
2012-07-03 16:46:38 +05:30
|
|
|
#include "compilation_info.f90"
|
|
|
|
|
2013-11-27 13:34:05 +05:30
|
|
|
maxNinstance = int(count(phase_plasticity == PLASTICITY_NONE_ID),pInt)
|
2012-07-03 16:46:38 +05:30
|
|
|
if (maxNinstance == 0_pInt) return
|
|
|
|
|
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
|
2012-07-03 16:46:38 +05:30
|
|
|
|
2013-12-20 14:06:15 +05:30
|
|
|
allocate(constitutive_none_sizeDotState(maxNinstance), source=1_pInt)
|
|
|
|
allocate(constitutive_none_sizeState(maxNinstance), source=1_pInt)
|
2013-12-12 03:33:09 +05:30
|
|
|
allocate(constitutive_none_sizePostResults(maxNinstance), source=0_pInt)
|
2012-07-03 16:46:38 +05:30
|
|
|
|
|
|
|
end subroutine constitutive_none_init
|
|
|
|
|
|
|
|
end module constitutive_none
|