2012-08-06 14:23:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-08-01 14:43:46 +05:30
|
|
|
! $Id$
|
2012-08-06 14:23:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @brief AL scheme solver
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2012-11-12 19:44:39 +05:30
|
|
|
module DAMASK_spectral_solverAL
|
2012-08-06 14:23:12 +05:30
|
|
|
use prec, only: &
|
|
|
|
pInt, &
|
|
|
|
pReal
|
|
|
|
use math, only: &
|
|
|
|
math_I3
|
2012-11-12 19:44:39 +05:30
|
|
|
use DAMASK_spectral_utilities, only: &
|
2015-06-03 23:00:31 +05:30
|
|
|
tSolutionState, &
|
|
|
|
tSolutionParams
|
2012-07-25 19:31:39 +05:30
|
|
|
|
2012-08-06 14:23:12 +05:30
|
|
|
implicit none
|
2013-03-28 16:07:00 +05:30
|
|
|
private
|
2015-03-18 22:48:43 +05:30
|
|
|
#include <petsc-finclude/petsc.h90>
|
2012-08-06 18:13:05 +05:30
|
|
|
|
2012-08-06 14:23:12 +05:30
|
|
|
character (len=*), parameter, public :: &
|
2013-07-24 18:36:16 +05:30
|
|
|
DAMASK_spectral_solverAL_label = 'al'
|
2012-08-06 14:23:12 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-05-13 15:14:23 +05:30
|
|
|
! derived types
|
2012-10-02 20:56:56 +05:30
|
|
|
type(tSolutionParams), private :: params
|
2012-11-12 19:44:39 +05:30
|
|
|
real(pReal), private, dimension(3,3) :: mask_stress = 0.0_pReal
|
2012-08-06 14:23:12 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! PETSc data
|
2012-11-06 21:30:51 +05:30
|
|
|
DM, private :: da
|
2012-10-02 20:56:56 +05:30
|
|
|
SNES, private :: snes
|
2012-11-06 21:30:51 +05:30
|
|
|
Vec, private :: solution_vec
|
2012-08-06 14:23:12 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! common pointwise data
|
2012-11-12 19:44:39 +05:30
|
|
|
real(pReal), private, dimension(:,:,:,:,:), allocatable :: &
|
|
|
|
F_lastInc, & !< field of previous compatible deformation gradients
|
2013-07-26 21:55:37 +05:30
|
|
|
F_lambda_lastInc, & !< field of previous incompatible deformation gradient
|
2012-11-12 19:44:39 +05:30
|
|
|
Fdot, & !< field of assumed rate of compatible deformation gradient
|
2013-07-26 21:55:37 +05:30
|
|
|
F_lambdaDot !< field of assumed rate of incopatible deformation gradient
|
2013-01-09 23:38:08 +05:30
|
|
|
|
2012-08-06 14:23:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! stress, stiffness and compliance average etc.
|
2012-10-02 20:56:56 +05:30
|
|
|
real(pReal), private, dimension(3,3) :: &
|
2012-11-12 19:44:39 +05:30
|
|
|
F_aimDot, & !< assumed rate of average deformation gradient
|
|
|
|
F_aim = math_I3, & !< current prescribed deformation gradient
|
|
|
|
F_aim_lastInc = math_I3, & !< previous average deformation gradient
|
2013-08-09 21:55:13 +05:30
|
|
|
F_av = 0.0_pReal, & !< average incompatible def grad field
|
2013-07-30 21:02:55 +05:30
|
|
|
P_av = 0.0_pReal, & !< average 1st Piola--Kirchhoff stress
|
|
|
|
P_avLastEval = 0.0_pReal !< average 1st Piola--Kirchhoff stress last call of CPFEM_general
|
2012-11-12 19:44:39 +05:30
|
|
|
character(len=1024), private :: incInfo !< time and increment information
|
2012-10-02 20:56:56 +05:30
|
|
|
real(pReal), private, dimension(3,3,3,3) :: &
|
2013-07-23 23:12:15 +05:30
|
|
|
C_volAvg = 0.0_pReal, & !< current volume average stiffness
|
|
|
|
C_volAvgLastInc = 0.0_pReal, & !< previous volume average stiffness
|
|
|
|
C_minMaxAvg = 0.0_pReal, & !< current (min+max)/2 stiffness
|
2012-11-12 19:44:39 +05:30
|
|
|
S = 0.0_pReal, & !< current compliance (filled up with zeros)
|
|
|
|
C_scale = 0.0_pReal, &
|
2012-10-02 20:56:56 +05:30
|
|
|
S_scale = 0.0_pReal
|
2012-07-25 19:31:39 +05:30
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
real(pReal), private :: &
|
2015-03-25 21:36:19 +05:30
|
|
|
err_BC, & !< deviation from stress BC
|
2013-08-07 22:50:05 +05:30
|
|
|
err_curl, & !< RMS of curl of F
|
|
|
|
err_div !< RMS of div of P
|
2012-11-12 19:44:39 +05:30
|
|
|
logical, private :: ForwardData
|
2013-07-23 23:12:15 +05:30
|
|
|
integer(pInt), private :: &
|
|
|
|
totalIter = 0_pInt !< total iteration in current increment
|
2013-03-28 13:10:30 +05:30
|
|
|
|
|
|
|
public :: &
|
|
|
|
AL_init, &
|
|
|
|
AL_solution, &
|
2013-12-18 15:05:05 +05:30
|
|
|
AL_forward, &
|
2013-03-28 13:10:30 +05:30
|
|
|
AL_destroy
|
2013-03-27 17:58:55 +05:30
|
|
|
external :: &
|
2013-05-08 21:22:29 +05:30
|
|
|
VecDestroy, &
|
|
|
|
DMDestroy, &
|
|
|
|
DMDACreate3D, &
|
|
|
|
DMCreateGlobalVector, &
|
2013-12-17 21:07:14 +05:30
|
|
|
DMDASNESSetFunctionLocal, &
|
2013-05-08 21:22:29 +05:30
|
|
|
PETScFinalize, &
|
|
|
|
SNESDestroy, &
|
|
|
|
SNESGetNumberFunctionEvals, &
|
|
|
|
SNESGetIterationNumber, &
|
|
|
|
SNESSolve, &
|
|
|
|
SNESSetDM, &
|
|
|
|
SNESGetConvergedReason, &
|
|
|
|
SNESSetConvergenceTest, &
|
|
|
|
SNESSetFromOptions, &
|
|
|
|
SNESCreate, &
|
2015-06-01 21:41:37 +05:30
|
|
|
MPI_Abort, &
|
|
|
|
MPI_Bcast, &
|
|
|
|
MPI_Allreduce
|
2013-03-27 17:58:55 +05:30
|
|
|
|
2012-10-02 20:56:56 +05:30
|
|
|
contains
|
2013-03-27 17:58:55 +05:30
|
|
|
|
2012-08-06 14:23:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief allocates all neccessary fields and fills them with data, potentially from restart info
|
2013-06-11 22:05:04 +05:30
|
|
|
!> @todo use sourced allocation, e.g. allocate(Fdot,source = F_lastInc)
|
2012-08-06 14:23:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-01-09 23:38:08 +05:30
|
|
|
subroutine AL_init(temperature)
|
2012-11-12 19:44:39 +05:30
|
|
|
use, intrinsic :: iso_fortran_env ! to get compiler_version and compiler_options (at least for gfortran >4.6 at the moment)
|
|
|
|
use IO, only: &
|
2013-05-08 21:22:29 +05:30
|
|
|
IO_intOut, &
|
2013-09-18 19:37:55 +05:30
|
|
|
IO_read_realFile, &
|
2013-02-25 22:04:59 +05:30
|
|
|
IO_timeStamp
|
2013-08-08 14:43:29 +05:30
|
|
|
use debug, only: &
|
2013-05-08 21:22:29 +05:30
|
|
|
debug_level, &
|
|
|
|
debug_spectral, &
|
|
|
|
debug_spectralRestart
|
2012-11-12 19:44:39 +05:30
|
|
|
use FEsolving, only: &
|
|
|
|
restartInc
|
2015-03-25 21:36:19 +05:30
|
|
|
use numerics, only: &
|
|
|
|
worldrank, &
|
|
|
|
worldsize
|
2012-11-12 19:44:39 +05:30
|
|
|
use DAMASK_interface, only: &
|
|
|
|
getSolverJobName
|
|
|
|
use DAMASK_spectral_Utilities, only: &
|
|
|
|
Utilities_constitutiveResponse, &
|
|
|
|
Utilities_updateGamma, &
|
2015-06-03 23:00:31 +05:30
|
|
|
Utilities_updateIPcoords
|
2012-11-12 19:44:39 +05:30
|
|
|
use mesh, only: &
|
2015-03-25 21:36:19 +05:30
|
|
|
gridLocal, &
|
|
|
|
gridGlobal
|
2012-11-12 19:44:39 +05:30
|
|
|
use math, only: &
|
|
|
|
math_invSym3333
|
2012-07-25 19:31:39 +05:30
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
implicit none
|
2013-01-09 23:38:08 +05:30
|
|
|
real(pReal), intent(inout) :: &
|
|
|
|
temperature
|
2013-05-08 21:22:29 +05:30
|
|
|
real(pReal), dimension(:,:,:,:,:), allocatable :: P
|
2012-12-14 23:00:22 +05:30
|
|
|
real(pReal), dimension(3,3) :: &
|
|
|
|
temp33_Real = 0.0_pReal
|
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
PetscErrorCode :: ierr
|
|
|
|
PetscObject :: dummy
|
2013-07-24 18:36:16 +05:30
|
|
|
PetscScalar, pointer, dimension(:,:,:,:) :: xx_psc, F, F_lambda
|
2015-03-25 21:36:19 +05:30
|
|
|
integer(pInt), dimension(:), allocatable :: localK
|
|
|
|
integer(pInt) :: proc
|
|
|
|
character(len=1024) :: rankStr
|
2012-11-12 19:44:39 +05:30
|
|
|
|
2015-03-25 21:36:19 +05:30
|
|
|
if (worldrank == 0_pInt) then
|
|
|
|
write(6,'(/,a)') ' <<<+- DAMASK_spectral_solverAL init -+>>>'
|
|
|
|
write(6,'(a)') ' $Id$'
|
|
|
|
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
|
2012-08-06 18:13:05 +05:30
|
|
|
#include "compilation_info.f90"
|
2015-03-25 21:36:19 +05:30
|
|
|
endif
|
2013-05-08 21:22:29 +05:30
|
|
|
|
2015-03-25 21:36:19 +05:30
|
|
|
allocate (P (3,3,gridLocal(1),gridLocal(2),gridLocal(3)),source = 0.0_pReal)
|
2013-05-08 21:22:29 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! allocate global fields
|
2015-03-25 21:36:19 +05:30
|
|
|
allocate (F_lastInc (3,3,gridLocal(1),gridLocal(2),gridLocal(3)),source = 0.0_pReal)
|
|
|
|
allocate (Fdot (3,3,gridLocal(1),gridLocal(2),gridLocal(3)),source = 0.0_pReal)
|
|
|
|
allocate (F_lambda_lastInc(3,3,gridLocal(1),gridLocal(2),gridLocal(3)),source = 0.0_pReal)
|
|
|
|
allocate (F_lambdaDot (3,3,gridLocal(1),gridLocal(2),gridLocal(3)),source = 0.0_pReal)
|
2012-08-09 18:34:56 +05:30
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! PETSc Init
|
2012-12-17 15:48:39 +05:30
|
|
|
call SNESCreate(PETSC_COMM_WORLD,snes,ierr); CHKERRQ(ierr)
|
2015-06-03 23:00:31 +05:30
|
|
|
call SNESSetOptionsPrefix(snes,'mech_',ierr);CHKERRQ(ierr)
|
2015-03-25 21:36:19 +05:30
|
|
|
allocate(localK(worldsize), source = 0); localK(worldrank+1) = gridLocal(3)
|
|
|
|
do proc = 1, worldsize
|
|
|
|
call MPI_Bcast(localK(proc),1,MPI_INTEGER,proc-1,PETSC_COMM_WORLD,ierr)
|
|
|
|
enddo
|
|
|
|
call DMDACreate3d(PETSC_COMM_WORLD, &
|
|
|
|
DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, & ! cut off stencil at boundary
|
|
|
|
DMDA_STENCIL_BOX, & ! Moore (26) neighborhood around central point
|
|
|
|
gridGlobal(1),gridGlobal(2),gridGlobal(3), & ! global grid
|
|
|
|
1 , 1, worldsize, &
|
|
|
|
18, 0, & ! #dof (F tensor), ghost boundary width (domain overlap)
|
|
|
|
gridLocal (1),gridLocal (2),localK, & ! local grid
|
|
|
|
da,ierr) ! handle, error
|
2012-11-12 19:44:39 +05:30
|
|
|
CHKERRQ(ierr)
|
2015-06-03 23:00:31 +05:30
|
|
|
call SNESSetDM(snes,da,ierr); CHKERRQ(ierr)
|
2012-12-17 15:48:39 +05:30
|
|
|
call DMCreateGlobalVector(da,solution_vec,ierr); CHKERRQ(ierr)
|
2013-12-17 21:07:14 +05:30
|
|
|
call DMDASNESSetFunctionLocal(da,INSERT_VALUES,AL_formResidual,dummy,ierr)
|
|
|
|
CHKERRQ(ierr)
|
2012-12-17 15:48:39 +05:30
|
|
|
call SNESSetDM(snes,da,ierr); CHKERRQ(ierr)
|
2012-11-12 19:44:39 +05:30
|
|
|
call SNESSetConvergenceTest(snes,AL_converged,dummy,PETSC_NULL_FUNCTION,ierr)
|
|
|
|
CHKERRQ(ierr)
|
2013-01-09 03:24:25 +05:30
|
|
|
call SNESSetFromOptions(snes,ierr); CHKERRQ(ierr)
|
2012-11-12 19:44:39 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! init fields
|
2012-12-17 15:48:39 +05:30
|
|
|
call DMDAVecGetArrayF90(da,solution_vec,xx_psc,ierr); CHKERRQ(ierr) ! places pointer xx_psc on PETSc data
|
2012-11-12 19:44:39 +05:30
|
|
|
F => xx_psc(0:8,:,:,:)
|
2013-07-24 18:36:16 +05:30
|
|
|
F_lambda => xx_psc(9:17,:,:,:)
|
2012-11-12 19:44:39 +05:30
|
|
|
if (restartInc == 1_pInt) then ! no deformation (no restart)
|
2015-03-25 21:36:19 +05:30
|
|
|
F_lastInc = spread(spread(spread(math_I3,3,gridLocal(1)),4,gridLocal(2)),5,gridLocal(3)) ! initialize to identity
|
|
|
|
F = reshape(F_lastInc,[9,gridLocal(1),gridLocal(2),gridLocal(3)])
|
2013-07-24 18:36:16 +05:30
|
|
|
F_lambda = F
|
2013-09-20 19:52:37 +05:30
|
|
|
F_lambda_lastInc = F_lastInc
|
2014-03-25 21:14:16 +05:30
|
|
|
|
|
|
|
elseif (restartInc > 1_pInt) then ! read in F to calculate coordinates and initialize CPFEM general
|
2015-03-25 21:36:19 +05:30
|
|
|
if (iand(debug_level(debug_spectral),debug_spectralRestart)/= 0 .and. worldrank == 0_pInt) &
|
2013-05-08 21:22:29 +05:30
|
|
|
write(6,'(/,a,'//IO_intOut(restartInc-1_pInt)//',a)') &
|
2014-03-24 15:29:30 +05:30
|
|
|
'reading values of increment ', restartInc - 1_pInt, ' from file'
|
2012-12-14 23:00:22 +05:30
|
|
|
flush(6)
|
2015-03-25 21:36:19 +05:30
|
|
|
write(rankStr,'(a1,i0)')'_',worldrank
|
|
|
|
call IO_read_realFile(777,'F'//trim(rankStr), trim(getSolverJobName()),size(F))
|
2012-11-12 19:44:39 +05:30
|
|
|
read (777,rec=1) F
|
|
|
|
close (777)
|
2015-03-25 21:36:19 +05:30
|
|
|
call IO_read_realFile(777,'F_lastInc'//trim(rankStr), trim(getSolverJobName()),size(F_lastInc))
|
2012-11-12 19:44:39 +05:30
|
|
|
read (777,rec=1) F_lastInc
|
|
|
|
close (777)
|
2015-03-25 21:36:19 +05:30
|
|
|
call IO_read_realFile(777,'F_lambda'//trim(rankStr),trim(getSolverJobName()),size(F_lambda))
|
2013-07-24 18:36:16 +05:30
|
|
|
read (777,rec=1) F_lambda
|
2012-11-12 19:44:39 +05:30
|
|
|
close (777)
|
2015-03-25 21:36:19 +05:30
|
|
|
call IO_read_realFile(777,'F_lambda_lastInc'//trim(rankStr),&
|
2013-07-24 18:36:16 +05:30
|
|
|
trim(getSolverJobName()),size(F_lambda_lastInc))
|
|
|
|
read (777,rec=1) F_lambda_lastInc
|
2012-11-12 19:44:39 +05:30
|
|
|
close (777)
|
2015-03-27 02:49:28 +05:30
|
|
|
call IO_read_realFile(777,'F_aim', trim(getSolverJobName()),size(F_aim))
|
|
|
|
read (777,rec=1) F_aim
|
|
|
|
close (777)
|
|
|
|
call IO_read_realFile(777,'F_aim_lastInc', trim(getSolverJobName()),size(F_aim_lastInc))
|
|
|
|
read (777,rec=1) F_aim_lastInc
|
|
|
|
close (777)
|
|
|
|
call IO_read_realFile(777,'F_aimDot',trim(getSolverJobName()),size(f_aimDot))
|
|
|
|
read (777,rec=1) f_aimDot
|
|
|
|
close (777)
|
2014-03-25 21:14:16 +05:30
|
|
|
endif
|
|
|
|
|
2015-03-25 21:36:19 +05:30
|
|
|
call utilities_updateIPcoords(F)
|
|
|
|
call Utilities_constitutiveResponse(F_lastInc,F,&
|
|
|
|
temperature,0.0_pReal,P,C_volAvg,C_minMaxAvg,temp33_Real,.false.,math_I3)
|
2014-03-25 21:14:16 +05:30
|
|
|
nullify(F)
|
|
|
|
nullify(F_lambda)
|
|
|
|
call DMDAVecRestoreArrayF90(da,solution_vec,xx_psc,ierr); CHKERRQ(ierr) ! write data back to PETSc
|
|
|
|
|
2015-03-27 02:49:28 +05:30
|
|
|
if (restartInc > 1_pInt) then ! using old values from files
|
|
|
|
if (iand(debug_level(debug_spectral),debug_spectralRestart)/= 0 .and. worldrank == 0_pInt) &
|
2014-03-25 21:14:16 +05:30
|
|
|
write(6,'(/,a,'//IO_intOut(restartInc-1_pInt)//',a)') &
|
|
|
|
'reading more values of increment', restartInc - 1_pInt, 'from file'
|
|
|
|
flush(6)
|
2013-09-18 19:37:55 +05:30
|
|
|
call IO_read_realFile(777,'C_volAvg',trim(getSolverJobName()),size(C_volAvg))
|
2013-07-23 23:12:15 +05:30
|
|
|
read (777,rec=1) C_volAvg
|
2012-12-14 23:00:22 +05:30
|
|
|
close (777)
|
2013-09-18 19:37:55 +05:30
|
|
|
call IO_read_realFile(777,'C_volAvgLastInc',trim(getSolverJobName()),size(C_volAvgLastInc))
|
2013-07-23 23:12:15 +05:30
|
|
|
read (777,rec=1) C_volAvgLastInc
|
2012-11-12 19:44:39 +05:30
|
|
|
close (777)
|
2014-03-25 21:14:16 +05:30
|
|
|
call IO_read_realFile(777,'C_ref',trim(getSolverJobName()),size(C_minMaxAvg))
|
2013-07-23 23:12:15 +05:30
|
|
|
read (777,rec=1) C_minMaxAvg
|
2012-11-12 19:44:39 +05:30
|
|
|
close (777)
|
|
|
|
endif
|
|
|
|
|
2013-09-20 19:52:37 +05:30
|
|
|
call Utilities_updateGamma(C_minMaxAvg,.True.)
|
|
|
|
C_scale = C_minMaxAvg
|
|
|
|
S_scale = math_invSym3333(C_minMaxAvg)
|
2012-07-25 19:31:39 +05:30
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
end subroutine AL_init
|
|
|
|
|
|
|
|
|
2012-08-06 14:23:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief solution for the AL scheme with internal iterations
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2012-11-12 19:44:39 +05:30
|
|
|
type(tSolutionState) function &
|
2015-03-25 21:36:19 +05:30
|
|
|
AL_solution(incInfoIn,guess,timeinc,timeinc_old,loadCaseTime,P_BC,F_BC,temperature_bc, &
|
2015-06-03 23:00:31 +05:30
|
|
|
rotation_BC)
|
2012-11-12 19:44:39 +05:30
|
|
|
use numerics, only: &
|
2013-07-30 21:02:55 +05:30
|
|
|
update_gamma
|
2012-11-12 19:44:39 +05:30
|
|
|
use math, only: &
|
2013-12-18 15:05:05 +05:30
|
|
|
math_invSym3333
|
2012-11-12 19:44:39 +05:30
|
|
|
use DAMASK_spectral_Utilities, only: &
|
|
|
|
tBoundaryCondition, &
|
|
|
|
Utilities_maskedCompliance, &
|
2013-12-18 15:05:05 +05:30
|
|
|
Utilities_updateGamma
|
2012-11-12 19:44:39 +05:30
|
|
|
use FEsolving, only: &
|
|
|
|
restartWrite, &
|
|
|
|
terminallyIll
|
|
|
|
|
|
|
|
implicit none
|
2013-05-13 15:14:23 +05:30
|
|
|
|
2012-08-06 14:23:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! input data for solution
|
2013-08-08 14:43:29 +05:30
|
|
|
real(pReal), intent(in) :: &
|
2013-05-13 15:14:23 +05:30
|
|
|
timeinc, & !< increment in time for current solution
|
|
|
|
timeinc_old, & !< increment in time of last increment
|
|
|
|
loadCaseTime, & !< remaining time of current load case
|
2015-06-03 23:00:31 +05:30
|
|
|
temperature_bc
|
2012-12-17 15:48:39 +05:30
|
|
|
logical, intent(in) :: &
|
|
|
|
guess
|
|
|
|
type(tBoundaryCondition), intent(in) :: &
|
|
|
|
P_BC, &
|
|
|
|
F_BC
|
|
|
|
character(len=*), intent(in) :: &
|
|
|
|
incInfoIn
|
2012-11-12 19:44:39 +05:30
|
|
|
real(pReal), dimension(3,3), intent(in) :: rotation_BC
|
2013-07-30 21:02:55 +05:30
|
|
|
|
2012-08-06 14:23:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2012-11-12 19:44:39 +05:30
|
|
|
! PETSc Data
|
|
|
|
PetscErrorCode :: ierr
|
2013-08-08 14:43:29 +05:30
|
|
|
SNESConvergedReason :: reason
|
2012-08-10 22:31:58 +05:30
|
|
|
|
2013-07-24 18:36:16 +05:30
|
|
|
incInfo = incInfoIn
|
2012-11-12 19:44:39 +05:30
|
|
|
|
2012-08-06 14:23:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! update stiffness (and gamma operator)
|
2013-07-23 23:12:15 +05:30
|
|
|
S = Utilities_maskedCompliance(rotation_BC,P_BC%maskLogical,C_volAvg)
|
2013-03-06 20:01:13 +05:30
|
|
|
if (update_gamma) then
|
2013-07-23 23:12:15 +05:30
|
|
|
call Utilities_updateGamma(C_minMaxAvg,restartWrite)
|
|
|
|
C_scale = C_minMaxAvg
|
|
|
|
S_scale = math_invSym3333(C_minMaxAvg)
|
2013-03-06 20:01:13 +05:30
|
|
|
endif
|
2012-11-12 19:44:39 +05:30
|
|
|
|
2013-12-20 16:19:14 +05:30
|
|
|
AL_solution%converged =.false.
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! set module wide availabe data
|
2012-11-12 19:44:39 +05:30
|
|
|
mask_stress = P_BC%maskFloat
|
|
|
|
params%P_BC = P_BC%values
|
|
|
|
params%rotation_BC = rotation_BC
|
|
|
|
params%timeinc = timeinc
|
2013-07-26 21:55:37 +05:30
|
|
|
params%timeincOld = timeinc_old
|
2013-01-09 23:38:08 +05:30
|
|
|
params%temperature = temperature_bc
|
2012-11-12 19:44:39 +05:30
|
|
|
|
2013-07-23 23:12:15 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! solve BVP
|
2013-07-24 18:36:16 +05:30
|
|
|
call SNESSolve(snes,PETSC_NULL_OBJECT,solution_vec,ierr)
|
|
|
|
CHKERRQ(ierr)
|
2013-07-23 23:12:15 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! check convergence
|
2013-07-24 18:36:16 +05:30
|
|
|
call SNESGetConvergedReason(snes,reason,ierr)
|
|
|
|
CHKERRQ(ierr)
|
|
|
|
AL_solution%termIll = terminallyIll
|
|
|
|
terminallyIll = .false.
|
2013-07-30 21:02:55 +05:30
|
|
|
AL_solution%converged = .true.
|
|
|
|
if (reason < 1 ) AL_solution%converged = .false.
|
|
|
|
AL_solution%iterationsNeeded = totalIter
|
2012-11-12 19:44:39 +05:30
|
|
|
|
|
|
|
end function AL_solution
|
2012-10-02 20:56:56 +05:30
|
|
|
|
2012-08-03 14:55:48 +05:30
|
|
|
|
2012-08-06 22:57:53 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief forms the AL residual vector
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2012-11-12 19:44:39 +05:30
|
|
|
subroutine AL_formResidual(in,x_scal,f_scal,dummy,ierr)
|
|
|
|
use numerics, only: &
|
|
|
|
itmax, &
|
2013-02-28 23:05:02 +05:30
|
|
|
itmin, &
|
|
|
|
polarAlpha, &
|
2015-03-25 21:36:19 +05:30
|
|
|
polarBeta, &
|
|
|
|
worldrank
|
|
|
|
use mesh, only: &
|
|
|
|
gridLocal
|
2013-05-08 21:22:29 +05:30
|
|
|
use IO, only: &
|
|
|
|
IO_intOut
|
2012-11-12 19:44:39 +05:30
|
|
|
use math, only: &
|
|
|
|
math_rotate_backward33, &
|
|
|
|
math_transpose33, &
|
2013-03-04 15:19:40 +05:30
|
|
|
math_mul3333xx33, &
|
2013-07-30 21:02:55 +05:30
|
|
|
math_invSym3333, &
|
2015-06-03 23:00:31 +05:30
|
|
|
math_mul33x33
|
2012-11-12 19:44:39 +05:30
|
|
|
use DAMASK_spectral_Utilities, only: &
|
2013-05-08 21:22:29 +05:30
|
|
|
wgt, &
|
2015-06-03 23:00:31 +05:30
|
|
|
tensorField_realMPI, &
|
|
|
|
utilities_FFTtensorForward, &
|
|
|
|
utilities_fourierGammaConvolution, &
|
2013-07-26 21:55:37 +05:30
|
|
|
Utilities_inverseLaplace, &
|
2015-06-03 23:00:31 +05:30
|
|
|
utilities_FFTtensorBackward, &
|
2013-08-07 22:50:05 +05:30
|
|
|
Utilities_constitutiveResponse, &
|
|
|
|
Utilities_divergenceRMS, &
|
|
|
|
Utilities_curlRMS
|
2013-05-08 21:22:29 +05:30
|
|
|
use debug, only: &
|
|
|
|
debug_level, &
|
|
|
|
debug_spectral, &
|
|
|
|
debug_spectralRotation
|
2013-03-04 15:19:40 +05:30
|
|
|
use homogenization, only: &
|
|
|
|
materialpoint_dPdF
|
2015-03-25 21:36:19 +05:30
|
|
|
use FEsolving, only: &
|
|
|
|
terminallyIll
|
2012-11-12 19:44:39 +05:30
|
|
|
|
|
|
|
implicit none
|
2013-01-10 21:06:55 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! strange syntax in the next line because otherwise macros expand beyond 132 character limit
|
|
|
|
DMDALocalInfo, dimension(&
|
|
|
|
DMDA_LOCAL_INFO_SIZE) :: &
|
2013-01-10 19:03:43 +05:30
|
|
|
in
|
2013-01-10 21:06:55 +05:30
|
|
|
PetscScalar, target, dimension(3,3,2, &
|
|
|
|
XG_RANGE,YG_RANGE,ZG_RANGE) :: &
|
2013-01-10 19:03:43 +05:30
|
|
|
x_scal
|
2013-01-10 21:06:55 +05:30
|
|
|
PetscScalar, target, dimension(3,3,2, &
|
|
|
|
X_RANGE,Y_RANGE,Z_RANGE) :: &
|
2013-01-10 19:03:43 +05:30
|
|
|
f_scal
|
2013-01-10 21:06:55 +05:30
|
|
|
PetscScalar, pointer, dimension(:,:,:,:,:) :: &
|
2013-01-10 19:03:43 +05:30
|
|
|
F, &
|
2013-07-24 18:36:16 +05:30
|
|
|
F_lambda, &
|
2013-01-10 21:06:55 +05:30
|
|
|
residual_F, &
|
2013-07-24 18:36:16 +05:30
|
|
|
residual_F_lambda
|
2013-01-10 19:03:43 +05:30
|
|
|
PetscInt :: &
|
2013-07-23 23:12:15 +05:30
|
|
|
PETScIter, &
|
2013-01-10 19:03:43 +05:30
|
|
|
nfuncs
|
2012-11-12 19:44:39 +05:30
|
|
|
PetscObject :: dummy
|
|
|
|
PetscErrorCode :: ierr
|
2013-01-11 00:20:14 +05:30
|
|
|
integer(pInt) :: &
|
2013-08-02 19:25:44 +05:30
|
|
|
i, j, k, e
|
2012-11-12 19:44:39 +05:30
|
|
|
|
2014-03-25 21:14:16 +05:30
|
|
|
F => x_scal(1:3,1:3,1,&
|
2013-01-10 21:06:55 +05:30
|
|
|
XG_RANGE,YG_RANGE,ZG_RANGE)
|
2014-03-25 21:14:16 +05:30
|
|
|
F_lambda => x_scal(1:3,1:3,2,&
|
2013-01-10 21:06:55 +05:30
|
|
|
XG_RANGE,YG_RANGE,ZG_RANGE)
|
2014-03-25 21:14:16 +05:30
|
|
|
residual_F => f_scal(1:3,1:3,1,&
|
2013-01-10 21:06:55 +05:30
|
|
|
X_RANGE,Y_RANGE,Z_RANGE)
|
2013-07-24 18:36:16 +05:30
|
|
|
residual_F_lambda => f_scal(1:3,1:3,2,&
|
2013-01-10 21:06:55 +05:30
|
|
|
X_RANGE,Y_RANGE,Z_RANGE)
|
2012-11-12 19:44:39 +05:30
|
|
|
|
2013-01-10 03:49:32 +05:30
|
|
|
call SNESGetNumberFunctionEvals(snes,nfuncs,ierr); CHKERRQ(ierr)
|
2013-07-23 23:12:15 +05:30
|
|
|
call SNESGetIterationNumber(snes,PETScIter,ierr); CHKERRQ(ierr)
|
2012-11-12 19:44:39 +05:30
|
|
|
|
2013-08-09 21:55:13 +05:30
|
|
|
F_av = sum(sum(sum(F,dim=5),dim=4),dim=3) * wgt
|
2015-03-25 21:36:19 +05:30
|
|
|
call MPI_Allreduce(MPI_IN_PLACE,F_av,9,MPI_DOUBLE,MPI_SUM,PETSC_COMM_WORLD,ierr)
|
2013-08-09 21:55:13 +05:30
|
|
|
|
2013-07-30 21:02:55 +05:30
|
|
|
if(nfuncs== 0 .and. PETScIter == 0) totalIter = -1_pInt ! new increment
|
2014-03-25 21:14:16 +05:30
|
|
|
if(totalIter <= PETScIter) then ! new iteration
|
2012-11-12 19:44:39 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! report begin of new iteration
|
2013-07-23 23:12:15 +05:30
|
|
|
totalIter = totalIter + 1_pInt
|
2015-03-25 21:36:19 +05:30
|
|
|
if (worldrank == 0_pInt) then
|
|
|
|
write(6,'(1x,a,3(a,'//IO_intOut(itmax)//'))') trim(incInfo), &
|
2013-07-23 23:12:15 +05:30
|
|
|
' @ Iteration ', itmin, '≤',totalIter, '≤', itmax
|
2015-03-25 21:36:19 +05:30
|
|
|
if (iand(debug_level(debug_spectral),debug_spectralRotation) /= 0) &
|
|
|
|
write(6,'(/,a,/,3(3(f12.7,1x)/))',advance='no') ' deformation gradient aim (lab) =', &
|
|
|
|
math_transpose33(math_rotate_backward33(F_aim,params%rotation_BC))
|
2013-01-10 03:49:32 +05:30
|
|
|
write(6,'(/,a,/,3(3(f12.7,1x)/))',advance='no') ' deformation gradient aim =', &
|
2012-12-17 15:48:39 +05:30
|
|
|
math_transpose33(F_aim)
|
2015-03-25 21:36:19 +05:30
|
|
|
endif
|
2013-01-10 03:49:32 +05:30
|
|
|
flush(6)
|
2012-10-02 20:56:56 +05:30
|
|
|
endif
|
2013-07-26 21:55:37 +05:30
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!
|
2015-06-03 23:00:31 +05:30
|
|
|
tensorField_realMPI = 0.0_pReal
|
2015-03-25 21:36:19 +05:30
|
|
|
do k = 1_pInt, gridLocal(3); do j = 1_pInt, gridLocal(2); do i = 1_pInt, gridLocal(1)
|
2015-06-03 23:00:31 +05:30
|
|
|
tensorField_realMPI(1:3,1:3,i,j,k) = &
|
2013-08-07 22:50:05 +05:30
|
|
|
polarBeta*math_mul3333xx33(C_scale,F(1:3,1:3,i,j,k) - math_I3) -&
|
|
|
|
polarAlpha*math_mul33x33(F(1:3,1:3,i,j,k), &
|
|
|
|
math_mul3333xx33(C_scale,F_lambda(1:3,1:3,i,j,k) - math_I3))
|
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
enddo; enddo; enddo
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! doing convolution in Fourier space
|
2015-06-03 23:00:31 +05:30
|
|
|
call utilities_FFTtensorForward()
|
|
|
|
call utilities_fourierGammaConvolution(math_rotate_backward33(polarBeta*F_aim,params%rotation_BC))
|
|
|
|
call utilities_FFTtensorBackward()
|
2013-08-08 14:43:29 +05:30
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! constructing residual
|
2015-06-03 23:00:31 +05:30
|
|
|
residual_F_lambda = polarBeta*F - tensorField_realMPI(1:3,1:3,1:gridLocal(1),1:gridLocal(2),1:gridLocal(3))
|
2013-02-28 23:05:02 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! evaluate constitutive response
|
2013-07-31 02:34:41 +05:30
|
|
|
P_avLastEval = P_av
|
2013-07-24 18:36:16 +05:30
|
|
|
call Utilities_constitutiveResponse(F_lastInc,F - residual_F_lambda/polarBeta,params%temperature,params%timeinc, &
|
2013-07-23 23:12:15 +05:30
|
|
|
residual_F,C_volAvg,C_minMaxAvg,P_av,ForwardData,params%rotation_BC)
|
2015-03-25 21:36:19 +05:30
|
|
|
call MPI_Allreduce(MPI_IN_PLACE,terminallyIll,1,MPI_LOGICAL,MPI_LOR,PETSC_COMM_WORLD,ierr)
|
2013-02-28 23:05:02 +05:30
|
|
|
ForwardData = .False.
|
2013-08-07 22:50:05 +05:30
|
|
|
|
2013-07-30 21:02:55 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-08-07 22:50:05 +05:30
|
|
|
! calculate divergence
|
2015-06-03 23:00:31 +05:30
|
|
|
tensorField_realMPI = 0.0_pReal
|
|
|
|
tensorField_realMPI(1:3,1:3,1:gridLocal(1),1:gridLocal(2),1:gridLocal(3)) = residual_F
|
|
|
|
call utilities_FFTtensorForward()
|
2013-08-07 22:50:05 +05:30
|
|
|
err_div = Utilities_divergenceRMS()
|
2015-06-03 23:00:31 +05:30
|
|
|
call utilities_FFTtensorBackward()
|
2013-07-24 18:36:16 +05:30
|
|
|
|
2013-02-28 23:05:02 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! constructing residual
|
2013-08-02 19:25:44 +05:30
|
|
|
e = 0_pInt
|
2015-03-25 21:36:19 +05:30
|
|
|
do k = 1_pInt, gridLocal(3); do j = 1_pInt, gridLocal(2); do i = 1_pInt, gridLocal(1)
|
2013-08-02 19:25:44 +05:30
|
|
|
e = e + 1_pInt
|
2014-03-25 21:14:16 +05:30
|
|
|
residual_F(1:3,1:3,i,j,k) = math_mul3333xx33(math_invSym3333(materialpoint_dPdF(1:3,1:3,1:3,1:3,1,e) + C_scale), &
|
2013-08-02 19:25:44 +05:30
|
|
|
residual_F(1:3,1:3,i,j,k) - &
|
2013-08-07 22:50:05 +05:30
|
|
|
math_mul33x33(F(1:3,1:3,i,j,k), &
|
2015-03-25 21:36:19 +05:30
|
|
|
math_mul3333xx33(C_scale,F_lambda(1:3,1:3,i,j,k) - math_I3))) &
|
|
|
|
+ residual_F_lambda(1:3,1:3,i,j,k)
|
2013-02-28 23:05:02 +05:30
|
|
|
enddo; enddo; enddo
|
2012-11-12 19:44:39 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-08-07 22:50:05 +05:30
|
|
|
! calculating curl
|
2015-06-03 23:00:31 +05:30
|
|
|
tensorField_realMPI = 0.0_pReal
|
|
|
|
tensorField_realMPI(1:3,1:3,1:gridLocal(1),1:gridLocal(2),1:gridLocal(3)) = F
|
|
|
|
call utilities_FFTtensorForward()
|
2013-08-07 22:50:05 +05:30
|
|
|
err_curl = Utilities_curlRMS()
|
2015-06-03 23:00:31 +05:30
|
|
|
call utilities_FFTtensorBackward()
|
2013-08-07 22:50:05 +05:30
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
end subroutine AL_formResidual
|
|
|
|
|
2012-08-06 14:23:12 +05:30
|
|
|
|
2012-08-06 22:57:53 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief convergence check
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-07-23 23:12:15 +05:30
|
|
|
subroutine AL_converged(snes_local,PETScIter,xnorm,snorm,fnorm,reason,dummy,ierr)
|
2013-08-07 22:50:05 +05:30
|
|
|
use numerics, only: &
|
|
|
|
itmax, &
|
|
|
|
itmin, &
|
|
|
|
err_div_tolRel, &
|
|
|
|
err_div_tolAbs, &
|
|
|
|
err_curl_tolRel, &
|
|
|
|
err_curl_tolAbs, &
|
2013-08-08 14:43:29 +05:30
|
|
|
err_stress_tolAbs, &
|
2015-03-25 21:36:19 +05:30
|
|
|
err_stress_tolRel, &
|
|
|
|
worldrank
|
2013-08-08 14:43:29 +05:30
|
|
|
use math, only: &
|
|
|
|
math_mul3333xx33
|
2013-03-06 20:01:13 +05:30
|
|
|
use FEsolving, only: &
|
|
|
|
terminallyIll
|
2012-11-12 19:44:39 +05:30
|
|
|
|
2013-01-10 03:49:32 +05:30
|
|
|
implicit none
|
2012-11-12 19:44:39 +05:30
|
|
|
SNES :: snes_local
|
2013-07-23 23:12:15 +05:30
|
|
|
PetscInt :: PETScIter
|
2013-01-10 03:49:32 +05:30
|
|
|
PetscReal :: &
|
|
|
|
xnorm, &
|
|
|
|
snorm, &
|
|
|
|
fnorm
|
2012-11-12 19:44:39 +05:30
|
|
|
SNESConvergedReason :: reason
|
|
|
|
PetscObject :: dummy
|
|
|
|
PetscErrorCode ::ierr
|
2013-07-30 21:02:55 +05:30
|
|
|
real(pReal) :: &
|
2013-08-07 22:50:05 +05:30
|
|
|
curlTol, &
|
|
|
|
divTol, &
|
2013-08-09 21:55:13 +05:30
|
|
|
BC_tol
|
2013-08-07 22:50:05 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! stress BC handling
|
|
|
|
F_aim = F_aim - math_mul3333xx33(S, ((P_av - params%P_BC))) ! S = 0.0 for no bc
|
2013-09-18 19:37:55 +05:30
|
|
|
err_BC = maxval(abs((-mask_stress+1.0_pReal)*math_mul3333xx33(C_scale,F_aim-F_av) + &
|
|
|
|
mask_stress *(P_av - params%P_BC))) ! mask = 0.0 for no bc
|
2013-08-08 14:43:29 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! error calculation
|
|
|
|
curlTol = max(maxval(abs(F_aim-math_I3))*err_curl_tolRel,err_curl_tolAbs)
|
|
|
|
divTol = max(maxval(abs(P_av)) *err_div_tolRel,err_div_tolAbs)
|
2013-08-09 21:55:13 +05:30
|
|
|
BC_tol = max(maxval(abs(P_av)) *err_stress_tolrel,err_stress_tolabs)
|
2013-08-07 22:50:05 +05:30
|
|
|
|
2013-07-24 18:36:16 +05:30
|
|
|
converged: if ((totalIter >= itmin .and. &
|
2013-08-07 22:50:05 +05:30
|
|
|
all([ err_div/divTol, &
|
|
|
|
err_curl/curlTol, &
|
2013-08-09 21:55:13 +05:30
|
|
|
err_BC/BC_tol ] < 1.0_pReal)) &
|
2013-08-08 14:43:29 +05:30
|
|
|
.or. terminallyIll) then
|
2013-07-24 18:36:16 +05:30
|
|
|
reason = 1
|
2013-07-30 21:02:55 +05:30
|
|
|
elseif (totalIter >= itmax) then converged
|
2013-07-24 18:36:16 +05:30
|
|
|
reason = -1
|
|
|
|
else converged
|
|
|
|
reason = 0
|
|
|
|
endif converged
|
2013-01-10 03:49:32 +05:30
|
|
|
|
2013-08-07 22:50:05 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! report
|
2015-03-25 21:36:19 +05:30
|
|
|
if (worldrank == 0_pInt) then
|
|
|
|
write(6,'(1/,a)') ' ... reporting .............................................................'
|
|
|
|
write(6,'(/,a,f12.2,a,es8.2,a,es9.2,a)') ' error curl = ', &
|
2013-08-07 22:50:05 +05:30
|
|
|
err_curl/curlTol,' (',err_curl,' -, tol =',curlTol,')'
|
2015-03-25 21:36:19 +05:30
|
|
|
write(6,' (a,f12.2,a,es8.2,a,es9.2,a)') ' error divergence = ', &
|
2013-09-18 19:37:55 +05:30
|
|
|
err_div/divTol, ' (',err_div, ' / m, tol =',divTol,')'
|
2015-03-25 21:36:19 +05:30
|
|
|
write(6,' (a,f12.2,a,es8.2,a,es9.2,a)') ' error BC = ', &
|
2013-09-18 19:37:55 +05:30
|
|
|
err_BC/BC_tol, ' (',err_BC, ' Pa, tol =',BC_tol,')'
|
2015-03-25 21:36:19 +05:30
|
|
|
write(6,'(/,a)') ' ==========================================================================='
|
|
|
|
flush(6)
|
|
|
|
endif
|
2013-08-07 22:50:05 +05:30
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
end subroutine AL_converged
|
2012-08-03 14:55:48 +05:30
|
|
|
|
2013-12-18 15:05:05 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief forwarding routine
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine AL_forward(guess,timeinc,timeinc_old,loadCaseTime,F_BC,P_BC,rotation_BC)
|
|
|
|
use math, only: &
|
|
|
|
math_mul33x33, &
|
|
|
|
math_mul3333xx33, &
|
|
|
|
math_transpose33, &
|
|
|
|
math_rotate_backward33
|
2015-03-25 21:36:19 +05:30
|
|
|
use numerics, only: &
|
|
|
|
worldrank
|
|
|
|
use mesh, only: &
|
|
|
|
gridLocal
|
2013-12-18 15:05:05 +05:30
|
|
|
use DAMASK_spectral_Utilities, only: &
|
|
|
|
Utilities_calculateRate, &
|
|
|
|
Utilities_forwardField, &
|
2015-03-25 21:36:19 +05:30
|
|
|
Utilities_updateIPcoords, &
|
2013-12-18 15:05:05 +05:30
|
|
|
tBoundaryCondition, &
|
|
|
|
cutBack
|
2013-12-20 16:19:14 +05:30
|
|
|
use IO, only: &
|
|
|
|
IO_write_JobRealFile
|
|
|
|
use FEsolving, only: &
|
|
|
|
restartWrite
|
2013-12-18 15:05:05 +05:30
|
|
|
|
|
|
|
implicit none
|
|
|
|
real(pReal), intent(in) :: &
|
|
|
|
timeinc_old, &
|
|
|
|
timeinc, &
|
|
|
|
loadCaseTime !< remaining time of current load case
|
|
|
|
type(tBoundaryCondition), intent(in) :: &
|
|
|
|
P_BC, &
|
|
|
|
F_BC
|
|
|
|
real(pReal), dimension(3,3), intent(in) :: rotation_BC
|
|
|
|
logical, intent(in) :: &
|
|
|
|
guess
|
|
|
|
PetscErrorCode :: ierr
|
|
|
|
PetscScalar, dimension(:,:,:,:), pointer :: xx_psc, F, F_lambda
|
|
|
|
integer(pInt) :: i, j, k
|
|
|
|
real(pReal), dimension(3,3) :: F_lambda33
|
2015-03-25 21:36:19 +05:30
|
|
|
character(len=1024) :: rankStr
|
2013-12-18 15:05:05 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! update coordinates and rate and forward last inc
|
|
|
|
call DMDAVecGetArrayF90(da,solution_vec,xx_psc,ierr)
|
|
|
|
F => xx_psc(0:8,:,:,:)
|
2014-03-25 21:14:16 +05:30
|
|
|
F_lambda => xx_psc(9:17,:,:,:)
|
2013-12-20 16:19:14 +05:30
|
|
|
if (restartWrite) then
|
2015-03-25 21:36:19 +05:30
|
|
|
if (worldrank == 0_pInt) then
|
|
|
|
write(6,'(/,a)') ' writing converged results for restart'
|
|
|
|
flush(6)
|
|
|
|
endif
|
|
|
|
write(rankStr,'(a1,i0)')'_',worldrank
|
|
|
|
call IO_write_jobRealFile(777,'F'//trim(rankStr),size(F)) ! writing deformation gradient field to file
|
2013-12-20 16:19:14 +05:30
|
|
|
write (777,rec=1) F
|
|
|
|
close (777)
|
2015-03-25 21:36:19 +05:30
|
|
|
call IO_write_jobRealFile(777,'F_lastInc'//trim(rankStr),size(F_lastInc)) ! writing F_lastInc field to file
|
2013-12-20 16:19:14 +05:30
|
|
|
write (777,rec=1) F_lastInc
|
|
|
|
close (777)
|
2015-03-25 21:36:19 +05:30
|
|
|
call IO_write_jobRealFile(777,'F_lambda'//trim(rankStr),size(F_lambda)) ! writing deformation gradient field to file
|
2013-12-20 16:19:14 +05:30
|
|
|
write (777,rec=1) F_lambda
|
|
|
|
close (777)
|
2015-03-25 21:36:19 +05:30
|
|
|
call IO_write_jobRealFile(777,'F_lambda_lastInc'//trim(rankStr),size(F_lambda_lastInc)) ! writing F_lastInc field to file
|
2013-12-20 16:19:14 +05:30
|
|
|
write (777,rec=1) F_lambda_lastInc
|
|
|
|
close (777)
|
2015-03-25 21:36:19 +05:30
|
|
|
if (worldrank == 0_pInt) then
|
|
|
|
call IO_write_jobRealFile(777,'F_aim',size(F_aim))
|
|
|
|
write (777,rec=1) F_aim
|
|
|
|
close(777)
|
|
|
|
call IO_write_jobRealFile(777,'F_aim_lastInc',size(F_aim_lastInc))
|
|
|
|
write (777,rec=1) F_aim_lastInc
|
|
|
|
close(777)
|
|
|
|
call IO_write_jobRealFile(777,'F_aimDot',size(F_aimDot))
|
|
|
|
write (777,rec=1) F_aimDot
|
|
|
|
close(777)
|
|
|
|
call IO_write_jobRealFile(777,'C_volAvg',size(C_volAvg))
|
|
|
|
write (777,rec=1) C_volAvg
|
|
|
|
close(777)
|
|
|
|
call IO_write_jobRealFile(777,'C_volAvgLastInc',size(C_volAvgLastInc))
|
|
|
|
write (777,rec=1) C_volAvgLastInc
|
|
|
|
close(777)
|
|
|
|
endif
|
2014-03-25 21:14:16 +05:30
|
|
|
|
2013-12-20 16:19:14 +05:30
|
|
|
endif
|
2015-03-25 21:36:19 +05:30
|
|
|
call utilities_updateIPcoords(F)
|
2013-12-20 16:19:14 +05:30
|
|
|
|
2013-12-18 15:05:05 +05:30
|
|
|
if (cutBack) then
|
2014-03-24 15:29:30 +05:30
|
|
|
F_aim = F_aim_lastInc
|
2015-03-25 21:36:19 +05:30
|
|
|
F_lambda = reshape(F_lambda_lastInc,[9,gridLocal(1),gridLocal(2),gridLocal(3)])
|
|
|
|
F = reshape(F_lastInc, [9,gridLocal(1),gridLocal(2),gridLocal(3)])
|
2013-12-18 15:05:05 +05:30
|
|
|
C_volAvg = C_volAvgLastInc
|
|
|
|
else
|
2014-01-27 16:35:36 +05:30
|
|
|
ForwardData = .True.
|
2014-03-25 21:14:16 +05:30
|
|
|
C_volAvgLastInc = C_volAvg
|
2013-12-18 15:05:05 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! calculate rate for aim
|
|
|
|
if (F_BC%myType=='l') then ! calculate f_aimDot from given L and current F
|
|
|
|
f_aimDot = F_BC%maskFloat * math_mul33x33(F_BC%values, F_aim)
|
|
|
|
elseif(F_BC%myType=='fdot') then ! f_aimDot is prescribed
|
|
|
|
f_aimDot = F_BC%maskFloat * F_BC%values
|
|
|
|
elseif(F_BC%myType=='f') then ! aim at end of load case is prescribed
|
|
|
|
f_aimDot = F_BC%maskFloat * (F_BC%values -F_aim)/loadCaseTime
|
|
|
|
endif
|
|
|
|
if (guess) f_aimDot = f_aimDot + P_BC%maskFloat * (F_aim - F_aim_lastInc)/timeinc_old
|
|
|
|
F_aim_lastInc = F_aim
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! update coordinates and rate and forward last inc
|
2015-03-25 21:36:19 +05:30
|
|
|
call utilities_updateIPcoords(F)
|
2013-12-18 15:05:05 +05:30
|
|
|
Fdot = Utilities_calculateRate(math_rotate_backward33(f_aimDot,rotation_BC), &
|
2015-03-25 21:36:19 +05:30
|
|
|
timeinc_old,guess,F_lastInc,reshape(F,[3,3,gridLocal(1),gridLocal(2),gridLocal(3)]))
|
2013-12-18 15:05:05 +05:30
|
|
|
F_lambdaDot = Utilities_calculateRate(math_rotate_backward33(f_aimDot,rotation_BC), &
|
2015-03-25 21:36:19 +05:30
|
|
|
timeinc_old,guess,F_lambda_lastInc,reshape(F_lambda,[3,3,gridLocal(1), &
|
|
|
|
gridLocal(2),gridLocal(3)]))
|
|
|
|
F_lastInc = reshape(F, [3,3,gridLocal(1),gridLocal(2),gridLocal(3)])
|
|
|
|
F_lambda_lastInc = reshape(F_lambda,[3,3,gridLocal(1),gridLocal(2),gridLocal(3)])
|
2013-12-18 15:05:05 +05:30
|
|
|
endif
|
|
|
|
|
|
|
|
F_aim = F_aim + f_aimDot * timeinc
|
2014-03-24 15:29:30 +05:30
|
|
|
F = reshape(Utilities_forwardField(timeinc,F_lastInc,Fdot, & ! ensure that it matches rotated F_aim
|
2013-12-18 15:05:05 +05:30
|
|
|
math_rotate_backward33(F_aim,rotation_BC)), &
|
2015-03-25 21:36:19 +05:30
|
|
|
[9,gridLocal(1),gridLocal(2),gridLocal(3)])
|
2013-12-18 15:05:05 +05:30
|
|
|
F_lambda = reshape(Utilities_forwardField(timeinc,F_lambda_lastInc,F_lambdadot), &
|
2015-03-25 21:36:19 +05:30
|
|
|
[9,gridLocal(1),gridLocal(2),gridLocal(3)]) ! does not have any average value as boundary condition
|
2013-12-18 15:05:05 +05:30
|
|
|
if (.not. guess) then ! large strain forwarding
|
2015-03-25 21:36:19 +05:30
|
|
|
do k = 1_pInt, gridLocal(3); do j = 1_pInt, gridLocal(2); do i = 1_pInt, gridLocal(1)
|
2014-03-25 21:14:16 +05:30
|
|
|
F_lambda33 = reshape(F_lambda(1:9,i,j,k),[3,3])
|
2013-12-18 15:05:05 +05:30
|
|
|
F_lambda33 = math_mul3333xx33(S_scale,math_mul33x33(F_lambda33, &
|
|
|
|
math_mul3333xx33(C_scale,&
|
|
|
|
math_mul33x33(math_transpose33(F_lambda33),&
|
|
|
|
F_lambda33) -math_I3))*0.5_pReal)&
|
|
|
|
+ math_I3
|
2014-03-25 21:14:16 +05:30
|
|
|
F_lambda(1:9,i,j,k) = reshape(F_lambda33,[9])
|
2013-12-18 15:05:05 +05:30
|
|
|
enddo; enddo; enddo
|
|
|
|
endif
|
|
|
|
call DMDAVecRestoreArrayF90(da,solution_vec,xx_psc,ierr); CHKERRQ(ierr)
|
|
|
|
|
|
|
|
end subroutine AL_forward
|
|
|
|
|
2012-08-06 22:57:53 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief destroy routine
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2012-11-12 19:44:39 +05:30
|
|
|
subroutine AL_destroy()
|
|
|
|
use DAMASK_spectral_Utilities, only: &
|
|
|
|
Utilities_destroy
|
2013-08-08 14:43:29 +05:30
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
implicit none
|
|
|
|
PetscErrorCode :: ierr
|
|
|
|
|
2013-01-10 03:49:32 +05:30
|
|
|
call VecDestroy(solution_vec,ierr); CHKERRQ(ierr)
|
|
|
|
call SNESDestroy(snes,ierr); CHKERRQ(ierr)
|
|
|
|
call DMDestroy(da,ierr); CHKERRQ(ierr)
|
2012-07-26 19:28:47 +05:30
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
end subroutine AL_destroy
|
2012-07-26 19:28:47 +05:30
|
|
|
|
2012-11-12 19:44:39 +05:30
|
|
|
end module DAMASK_spectral_SolverAL
|