2013-03-06 20:11:15 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @author Franz Roters, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @brief CPFEM engine
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-03-01 17:18:29 +05:30
|
|
|
module CPFEM
|
2019-09-20 01:37:18 +05:30
|
|
|
use prec
|
|
|
|
use FEsolving
|
|
|
|
use math
|
2019-09-22 19:23:03 +05:30
|
|
|
use rotations
|
2020-04-28 13:59:13 +05:30
|
|
|
use YAML_types
|
2020-05-22 00:11:40 +05:30
|
|
|
use YAML_parse
|
2020-03-20 11:28:55 +05:30
|
|
|
use discretization_marc
|
2019-09-20 01:37:18 +05:30
|
|
|
use material
|
|
|
|
use config
|
|
|
|
use crystallite
|
|
|
|
use homogenization
|
|
|
|
use IO
|
|
|
|
use discretization
|
|
|
|
use DAMASK_interface
|
|
|
|
use HDF5_utilities
|
|
|
|
use results
|
|
|
|
use lattice
|
|
|
|
use constitutive
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
private
|
2020-02-29 21:46:40 +05:30
|
|
|
|
2019-09-20 01:37:18 +05:30
|
|
|
real(pReal), dimension (:,:,:), allocatable, private :: &
|
|
|
|
CPFEM_cs !< Cauchy stress
|
|
|
|
real(pReal), dimension (:,:,:,:), allocatable, private :: &
|
|
|
|
CPFEM_dcsdE !< Cauchy stress tangent
|
|
|
|
real(pReal), dimension (:,:,:,:), allocatable, private :: &
|
|
|
|
CPFEM_dcsdE_knownGood !< known good tangent
|
2020-06-16 10:32:29 +05:30
|
|
|
|
2019-09-20 01:37:18 +05:30
|
|
|
integer(pInt), public :: &
|
2020-06-16 10:32:29 +05:30
|
|
|
cycleCounter = 0_pInt !< needs description
|
2019-09-20 01:37:18 +05:30
|
|
|
|
|
|
|
integer(pInt), parameter, public :: &
|
2020-06-16 10:11:53 +05:30
|
|
|
CPFEM_CALCRESULTS = 2_pInt**0_pInt, &
|
|
|
|
CPFEM_AGERESULTS = 2_pInt**1_pInt, &
|
|
|
|
CPFEM_BACKUPJACOBIAN = 2_pInt**2_pInt, &
|
|
|
|
CPFEM_RESTOREJACOBIAN = 2_pInt**3_pInt
|
2019-09-20 01:37:18 +05:30
|
|
|
|
2020-06-24 20:01:45 +05:30
|
|
|
type, private :: tNumerics
|
|
|
|
integer :: &
|
2020-06-26 15:52:33 +05:30
|
|
|
iJacoStiffness !< frequency of stiffness update
|
2020-06-24 20:01:45 +05:30
|
|
|
end type tNumerics
|
|
|
|
|
2020-06-29 18:39:13 +05:30
|
|
|
type(tNumerics), private :: num
|
2020-09-13 13:49:38 +05:30
|
|
|
|
2020-07-01 23:24:14 +05:30
|
|
|
type, private :: tDebugOptions
|
|
|
|
logical :: &
|
|
|
|
basic, &
|
2020-07-02 04:55:24 +05:30
|
|
|
extensive, &
|
|
|
|
selective
|
2020-07-01 23:24:14 +05:30
|
|
|
integer:: &
|
|
|
|
element, &
|
|
|
|
ip
|
|
|
|
end type tDebugOptions
|
2020-09-13 13:49:38 +05:30
|
|
|
|
2020-07-02 04:55:24 +05:30
|
|
|
type(tDebugOptions), private :: debugCPFEM
|
2020-09-13 13:49:38 +05:30
|
|
|
|
2019-09-20 01:37:18 +05:30
|
|
|
public :: &
|
|
|
|
CPFEM_general, &
|
|
|
|
CPFEM_initAll, &
|
|
|
|
CPFEM_results
|
2013-03-01 17:18:29 +05:30
|
|
|
|
|
|
|
contains
|
2009-03-04 19:31:36 +05:30
|
|
|
|
2010-11-03 20:09:18 +05:30
|
|
|
|
2013-03-06 20:11:15 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-06-11 12:21:17 +05:30
|
|
|
!> @brief call all module initializations
|
2013-03-06 20:11:15 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-06-11 12:21:17 +05:30
|
|
|
subroutine CPFEM_initAll
|
2013-03-01 17:18:29 +05:30
|
|
|
|
2020-09-13 13:49:38 +05:30
|
|
|
call parallelization_init
|
2020-04-27 17:10:22 +05:30
|
|
|
call DAMASK_interface_init
|
2020-09-13 13:49:38 +05:30
|
|
|
call prec_init
|
2020-04-27 17:10:22 +05:30
|
|
|
call IO_init
|
|
|
|
call config_init
|
|
|
|
call math_init
|
|
|
|
call rotations_init
|
2020-05-08 02:41:38 +05:30
|
|
|
call YAML_types_init
|
2020-09-13 16:13:49 +05:30
|
|
|
call YAML_parse_init
|
2020-04-27 17:10:22 +05:30
|
|
|
call HDF5_utilities_init
|
2020-05-06 21:20:59 +05:30
|
|
|
call results_init(.false.)
|
2020-06-11 12:21:17 +05:30
|
|
|
call discretization_marc_init
|
2020-04-27 17:10:22 +05:30
|
|
|
call lattice_init
|
2020-05-06 21:20:59 +05:30
|
|
|
call material_init(.false.)
|
2020-04-27 17:10:22 +05:30
|
|
|
call constitutive_init
|
|
|
|
call crystallite_init
|
|
|
|
call homogenization_init
|
|
|
|
call CPFEM_init
|
2020-08-15 19:32:10 +05:30
|
|
|
call config_deallocate
|
2010-11-03 20:09:18 +05:30
|
|
|
|
2012-03-09 01:55:28 +05:30
|
|
|
end subroutine CPFEM_initAll
|
2010-11-03 20:09:18 +05:30
|
|
|
|
|
|
|
|
2013-03-06 20:11:15 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief allocate the arrays defined in module CPFEM and initialize them
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2012-03-09 01:55:28 +05:30
|
|
|
subroutine CPFEM_init
|
2013-03-01 17:18:29 +05:30
|
|
|
|
2020-06-24 20:01:45 +05:30
|
|
|
class(tNode), pointer :: &
|
2020-06-28 01:18:26 +05:30
|
|
|
num_commercialFEM, &
|
|
|
|
debug_CPFEM
|
2020-06-24 20:01:45 +05:30
|
|
|
|
2020-09-22 16:39:12 +05:30
|
|
|
print'(/,a)', ' <<<+- CPFEM init -+>>>'; flush(IO_STDOUT)
|
2019-09-20 01:37:18 +05:30
|
|
|
|
|
|
|
allocate(CPFEM_cs( 6,discretization_nIP,discretization_nElem), source= 0.0_pReal)
|
|
|
|
allocate(CPFEM_dcsdE( 6,6,discretization_nIP,discretization_nElem), source= 0.0_pReal)
|
|
|
|
allocate(CPFEM_dcsdE_knownGood(6,6,discretization_nIP,discretization_nElem), source= 0.0_pReal)
|
|
|
|
|
2020-06-24 20:01:45 +05:30
|
|
|
!------------------------------------------------------------------------------
|
2020-09-13 13:49:38 +05:30
|
|
|
! read numerical parameters and do sanity check
|
2020-09-13 14:09:17 +05:30
|
|
|
num_commercialFEM => config_numerics%get('commercialFEM',defaultVal=emptyDict)
|
2020-06-24 20:01:45 +05:30
|
|
|
num%iJacoStiffness = num_commercialFEM%get_asInt('ijacostiffness',defaultVal=1)
|
|
|
|
if (num%iJacoStiffness < 1) call IO_error(301,ext_msg='iJacoStiffness')
|
2020-07-01 23:24:14 +05:30
|
|
|
|
2020-06-24 20:01:45 +05:30
|
|
|
!------------------------------------------------------------------------------
|
2020-09-13 13:49:38 +05:30
|
|
|
! read debug options
|
2020-06-24 20:01:45 +05:30
|
|
|
|
2020-09-13 14:09:17 +05:30
|
|
|
debug_CPFEM => config_debug%get('cpfem',defaultVal=emptyList)
|
2020-07-02 04:55:24 +05:30
|
|
|
debugCPFEM%basic = debug_CPFEM%contains('basic')
|
|
|
|
debugCPFEM%extensive = debug_CPFEM%contains('extensive')
|
|
|
|
debugCPFEM%selective = debug_CPFEM%contains('selective')
|
2020-09-13 14:09:17 +05:30
|
|
|
debugCPFEM%element = config_debug%get_asInt('element',defaultVal = 1)
|
|
|
|
debugCPFEM%ip = config_debug%get_asInt('integrationpoint',defaultVal = 1)
|
2020-07-01 23:24:14 +05:30
|
|
|
|
2020-07-02 04:55:24 +05:30
|
|
|
if(debugCPFEM%basic) then
|
2020-09-17 22:58:41 +05:30
|
|
|
print'(a32,1x,6(i8,1x))', 'CPFEM_cs: ', shape(CPFEM_cs)
|
|
|
|
print'(a32,1x,6(i8,1x))', 'CPFEM_dcsdE: ', shape(CPFEM_dcsdE)
|
|
|
|
print'(a32,1x,6(i8,1x),/)', 'CPFEM_dcsdE_knownGood: ', shape(CPFEM_dcsdE_knownGood)
|
2020-09-22 16:39:12 +05:30
|
|
|
flush(IO_STDOUT)
|
2019-09-20 01:37:18 +05:30
|
|
|
endif
|
2009-06-15 18:41:21 +05:30
|
|
|
|
2012-03-09 01:55:28 +05:30
|
|
|
end subroutine CPFEM_init
|
2009-06-15 18:41:21 +05:30
|
|
|
|
|
|
|
|
2013-03-06 20:11:15 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief perform initialization at first call, update variables and call the actual material model
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-06-11 12:06:21 +05:30
|
|
|
subroutine CPFEM_general(mode, ffn, ffn1, temperature_inp, dt, elFE, ip, cauchyStress, jacobian)
|
2013-10-16 18:34:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
integer(pInt), intent(in) :: elFE, & !< FE element number
|
|
|
|
ip !< integration point number
|
|
|
|
real(pReal), intent(in) :: dt !< time increment
|
|
|
|
real(pReal), dimension (3,3), intent(in) :: ffn, & !< deformation gradient for t=t0
|
|
|
|
ffn1 !< deformation gradient for t=t1
|
|
|
|
integer(pInt), intent(in) :: mode !< computation mode 1: regular computation plus aging of results
|
|
|
|
real(pReal), intent(in) :: temperature_inp !< temperature
|
|
|
|
real(pReal), dimension(6), intent(out) :: cauchyStress !< stress as 6 vector
|
|
|
|
real(pReal), dimension(6,6), intent(out) :: jacobian !< jacobian as 66 tensor (Consistent tangent dcs/dE)
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
real(pReal) J_inverse, & ! inverse of Jacobian
|
|
|
|
rnd
|
2020-06-16 10:11:53 +05:30
|
|
|
real(pReal), dimension (3,3) :: Kirchhoff ! Piola-Kirchhoff stress
|
2020-03-17 01:28:40 +05:30
|
|
|
real(pReal), dimension (3,3,3,3) :: H_sym, &
|
2020-06-11 12:06:21 +05:30
|
|
|
H
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
integer(pInt) elCP, & ! crystal plasticity element number
|
2020-06-24 20:01:45 +05:30
|
|
|
i, j, k, l, m, n, ph, homog, mySource
|
2020-03-17 01:28:40 +05:30
|
|
|
logical updateJaco ! flag indicating if Jacobian has to be updated
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-06-16 10:11:53 +05:30
|
|
|
real(pReal), parameter :: ODD_STRESS = 1e15_pReal, & !< return value for stress if terminallyIll
|
|
|
|
ODD_JACOBIAN = 1e50_pReal !< return value for jacobian if terminallyIll
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-06-17 18:51:51 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
elCP = mesh_FEM2DAMASK_elem(elFE)
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-07-03 20:15:11 +05:30
|
|
|
if (debugCPFEM%basic .and. elCP == debugCPFEM%element .and. ip == debugCPFEM%ip) then
|
2020-09-17 22:58:41 +05:30
|
|
|
print'(/,a)', '#############################################'
|
|
|
|
print'(a1,a22,1x,i8,a13)', '#','element', elCP, '#'
|
|
|
|
print'(a1,a22,1x,i8,a13)', '#','ip', ip, '#'
|
|
|
|
print'(a1,a22,1x,i8,a13)', '#','cycleCounter', cycleCounter, '#'
|
|
|
|
print'(a1,a22,1x,i8,a13)', '#','computationMode',mode, '#'
|
2020-03-17 01:28:40 +05:30
|
|
|
if (terminallyIll) &
|
2020-09-17 22:58:41 +05:30
|
|
|
print'(a,/)', '# --- terminallyIll --- #'
|
|
|
|
print'(a,/)', '#############################################'; flush (6)
|
2020-03-17 01:28:40 +05:30
|
|
|
endif
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
if (iand(mode, CPFEM_BACKUPJACOBIAN) /= 0_pInt) &
|
|
|
|
CPFEM_dcsde_knownGood = CPFEM_dcsde
|
|
|
|
if (iand(mode, CPFEM_RESTOREJACOBIAN) /= 0_pInt) &
|
|
|
|
CPFEM_dcsde = CPFEM_dcsde_knownGood
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
if (iand(mode, CPFEM_AGERESULTS) /= 0_pInt) call CPFEM_forward
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
chosenThermal1: select case (thermal_type(material_homogenizationAt(elCP)))
|
|
|
|
case (THERMAL_conduction_ID) chosenThermal1
|
|
|
|
temperature(material_homogenizationAt(elCP))%p(thermalMapping(material_homogenizationAt(elCP))%p(ip,elCP)) = &
|
|
|
|
temperature_inp
|
|
|
|
end select chosenThermal1
|
|
|
|
materialpoint_F0(1:3,1:3,ip,elCP) = ffn
|
|
|
|
materialpoint_F(1:3,1:3,ip,elCP) = ffn1
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
if (iand(mode, CPFEM_CALCRESULTS) /= 0_pInt) then
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-06-11 12:21:17 +05:30
|
|
|
validCalculation: if (terminallyIll) then
|
2020-03-17 01:28:40 +05:30
|
|
|
call random_number(rnd)
|
|
|
|
if (rnd < 0.5_pReal) rnd = rnd - 1.0_pReal
|
|
|
|
CPFEM_cs(1:6,ip,elCP) = ODD_STRESS * rnd
|
2020-09-13 14:48:09 +05:30
|
|
|
CPFEM_dcsde(1:6,1:6,ip,elCP) = ODD_JACOBIAN * math_eye(6)
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
else validCalculation
|
2020-06-24 20:01:45 +05:30
|
|
|
updateJaco = mod(cycleCounter,num%iJacoStiffness) == 0
|
2020-06-16 10:11:53 +05:30
|
|
|
FEsolving_execElem = elCP
|
|
|
|
FEsolving_execIP = ip
|
2020-07-02 04:55:24 +05:30
|
|
|
if (debugCPFEM%extensive) &
|
2020-09-17 22:58:41 +05:30
|
|
|
print'(a,i8,1x,i2)', '<< CPFEM >> calculation for elFE ip ',elFE,ip
|
2020-06-16 10:11:53 +05:30
|
|
|
call materialpoint_stressAndItsTangent(updateJaco, dt)
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
terminalIllness: if (terminallyIll) then
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
call random_number(rnd)
|
|
|
|
if (rnd < 0.5_pReal) rnd = rnd - 1.0_pReal
|
|
|
|
CPFEM_cs(1:6,ip,elCP) = ODD_STRESS * rnd
|
2020-09-13 14:48:09 +05:30
|
|
|
CPFEM_dcsde(1:6,1:6,ip,elCP) = ODD_JACOBIAN * math_eye(6)
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
else terminalIllness
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-06-16 10:11:53 +05:30
|
|
|
! translate from P to sigma
|
2020-03-17 01:28:40 +05:30
|
|
|
Kirchhoff = matmul(materialpoint_P(1:3,1:3,ip,elCP), transpose(materialpoint_F(1:3,1:3,ip,elCP)))
|
|
|
|
J_inverse = 1.0_pReal / math_det33(materialpoint_F(1:3,1:3,ip,elCP))
|
|
|
|
CPFEM_cs(1:6,ip,elCP) = math_sym33to6(J_inverse * Kirchhoff,weighted=.false.)
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
! translate from dP/dF to dCS/dE
|
|
|
|
H = 0.0_pReal
|
|
|
|
do i=1,3; do j=1,3; do k=1,3; do l=1,3; do m=1,3; do n=1,3
|
|
|
|
H(i,j,k,l) = H(i,j,k,l) &
|
|
|
|
+ materialpoint_F(j,m,ip,elCP) * materialpoint_F(l,n,ip,elCP) &
|
|
|
|
* materialpoint_dPdF(i,m,k,n,ip,elCP) &
|
|
|
|
- math_delta(j,l) * materialpoint_F(i,m,ip,elCP) * materialpoint_P(k,m,ip,elCP) &
|
|
|
|
+ 0.5_pReal * ( Kirchhoff(j,l)*math_delta(i,k) + Kirchhoff(i,k)*math_delta(j,l) &
|
|
|
|
+ Kirchhoff(j,k)*math_delta(i,l) + Kirchhoff(i,l)*math_delta(j,k))
|
|
|
|
enddo; enddo; enddo; enddo; enddo; enddo
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
forall(i=1:3, j=1:3,k=1:3,l=1:3) &
|
|
|
|
H_sym(i,j,k,l) = 0.25_pReal * (H(i,j,k,l) + H(j,i,k,l) + H(i,j,l,k) + H(j,i,l,k))
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
CPFEM_dcsde(1:6,1:6,ip,elCP) = math_sym3333to66(J_inverse * H_sym,weighted=.false.)
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
endif terminalIllness
|
|
|
|
endif validCalculation
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-07-02 04:55:24 +05:30
|
|
|
if (debugCPFEM%extensive &
|
2020-07-15 04:24:16 +05:30
|
|
|
.and. ((debugCPFEM%element == elCP .and. debugCPFEM%ip == ip) .or. .not. debugCPFEM%selective)) then
|
2020-09-17 22:58:41 +05:30
|
|
|
print'(a,i8,1x,i2,/,12x,6(f10.3,1x)/)', &
|
2020-03-17 01:28:40 +05:30
|
|
|
'<< CPFEM >> stress/MPa at elFE ip ', elFE, ip, CPFEM_cs(1:6,ip,elCP)*1.0e-6_pReal
|
2020-09-17 22:58:41 +05:30
|
|
|
print'(a,i8,1x,i2,/,6(12x,6(f10.3,1x)/))', &
|
2020-03-17 01:28:40 +05:30
|
|
|
'<< CPFEM >> Jacobian/GPa at elFE ip ', elFE, ip, transpose(CPFEM_dcsdE(1:6,1:6,ip,elCP))*1.0e-9_pReal
|
2020-09-22 16:39:12 +05:30
|
|
|
flush(IO_STDOUT)
|
2020-03-17 01:28:40 +05:30
|
|
|
endif
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
endif
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
if (all(abs(CPFEM_dcsdE(1:6,1:6,ip,elCP)) < 1e-10_pReal)) call IO_warning(601,elCP,ip)
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2020-03-17 01:28:40 +05:30
|
|
|
cauchyStress = CPFEM_cs (1:6, ip,elCP)
|
|
|
|
jacobian = CPFEM_dcsdE(1:6,1:6,ip,elCP)
|
2020-05-06 21:20:59 +05:30
|
|
|
|
2012-03-09 01:55:28 +05:30
|
|
|
end subroutine CPFEM_general
|
2009-03-04 19:31:36 +05:30
|
|
|
|
2019-05-05 15:36:55 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-02-25 22:23:15 +05:30
|
|
|
!> @brief Forward data for new time increment.
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine CPFEM_forward
|
|
|
|
|
|
|
|
call crystallite_forward
|
|
|
|
|
|
|
|
end subroutine CPFEM_forward
|
|
|
|
|
2019-05-05 15:36:55 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-02-25 22:23:15 +05:30
|
|
|
!> @brief Trigger writing of results.
|
2019-05-05 15:36:55 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine CPFEM_results(inc,time)
|
|
|
|
|
2019-09-20 01:37:18 +05:30
|
|
|
integer(pInt), intent(in) :: inc
|
|
|
|
real(pReal), intent(in) :: time
|
2019-05-05 15:36:55 +05:30
|
|
|
|
2019-09-20 01:37:18 +05:30
|
|
|
call results_openJobFile
|
|
|
|
call results_addIncrement(inc,time)
|
|
|
|
call constitutive_results
|
|
|
|
call crystallite_results
|
2019-10-12 19:20:10 +05:30
|
|
|
call homogenization_results
|
2020-01-12 20:12:08 +05:30
|
|
|
call discretization_results
|
2020-01-10 06:15:00 +05:30
|
|
|
call results_finalizeIncrement
|
2019-09-20 01:37:18 +05:30
|
|
|
call results_closeJobFile
|
2019-05-05 15:36:55 +05:30
|
|
|
|
|
|
|
end subroutine CPFEM_results
|
|
|
|
|
2013-03-01 17:18:29 +05:30
|
|
|
end module CPFEM
|