2013-03-25 23:55:15 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! $Id$
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2014-04-02 12:02:43 +05:30
|
|
|
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Franz Roters, Max-Planck-Institut für Eisenforschung GmbH
|
2013-03-25 23:55:15 +05:30
|
|
|
!> @author Koen Janssens, Paul Scherrer Institut
|
|
|
|
!> @author Arun Prakash, Fraunhofer IWM
|
|
|
|
!> @brief interfaces DAMASK with Abaqus/Standard
|
|
|
|
!> @details put the included file abaqus_v6.env in either your home or model directory,
|
|
|
|
!> it is a minimum Abaqus environment file containing all changes necessary to use the
|
|
|
|
!> DAMASK subroutine (see Abaqus documentation for more information on the use of abaqus_v6.env)
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2009-10-12 21:31:49 +05:30
|
|
|
|
2012-08-28 21:38:17 +05:30
|
|
|
#ifndef INT
|
|
|
|
#define INT 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FLOAT
|
|
|
|
#define FLOAT 8
|
|
|
|
#endif
|
|
|
|
|
2012-06-15 21:40:21 +05:30
|
|
|
#define Abaqus
|
2010-05-10 20:32:59 +05:30
|
|
|
|
2012-08-28 21:38:17 +05:30
|
|
|
#include "prec.f90"
|
2010-05-10 20:32:59 +05:30
|
|
|
|
2012-06-15 21:40:21 +05:30
|
|
|
module DAMASK_interface
|
2009-10-12 21:31:49 +05:30
|
|
|
|
2012-06-15 21:40:21 +05:30
|
|
|
implicit none
|
2013-03-25 23:55:15 +05:30
|
|
|
character(len=4), dimension(2), parameter :: INPUTFILEEXTENSION = ['.pes','.inp']
|
|
|
|
character(len=4), parameter :: LOGFILEEXTENSION = '.log'
|
2009-10-12 21:31:49 +05:30
|
|
|
|
2012-06-15 21:40:21 +05:30
|
|
|
contains
|
2009-10-12 21:31:49 +05:30
|
|
|
|
2013-03-25 23:55:15 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief just reporting
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2016-01-27 22:18:27 +05:30
|
|
|
subroutine DAMASK_interface_init
|
2016-02-03 04:04:42 +05:30
|
|
|
integer, dimension(8) :: &
|
|
|
|
dateAndTime ! type default integer
|
|
|
|
call date_and_time(values = dateAndTime)
|
2016-01-27 22:18:27 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- DAMASK_abaqus_std -+>>>'
|
2016-02-03 04:04:42 +05:30
|
|
|
write(6,'(/,a)') ' Version: '//DAMASKVERSION
|
|
|
|
write(6,'(a,2(i2.2,a),i4.4)') ' Date: ',dateAndTime(3),'/',&
|
|
|
|
dateAndTime(2),'/',&
|
|
|
|
dateAndTime(1)
|
|
|
|
write(6,'(a,2(i2.2,a),i2.2)') ' Time: ',dateAndTime(5),':',&
|
|
|
|
dateAndTime(6),':',&
|
|
|
|
dateAndTime(7)
|
2016-01-27 22:18:27 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- DAMASK_interface init -+>>>'
|
2013-02-25 22:04:59 +05:30
|
|
|
#include "compilation_info.f90"
|
2012-06-15 21:40:21 +05:30
|
|
|
|
|
|
|
end subroutine DAMASK_interface_init
|
2009-10-12 21:31:49 +05:30
|
|
|
|
2013-03-25 23:55:15 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief using Abaqus/Standard function to get working directory name
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
character(1024) function getSolverWorkingDirectoryName()
|
2012-06-15 21:40:21 +05:30
|
|
|
|
2010-05-10 20:32:59 +05:30
|
|
|
implicit none
|
2013-03-25 23:55:15 +05:30
|
|
|
integer :: lenOutDir
|
2010-05-10 20:32:59 +05:30
|
|
|
|
2010-05-11 12:27:15 +05:30
|
|
|
getSolverWorkingDirectoryName=''
|
2013-03-25 23:55:15 +05:30
|
|
|
call getoutdir(getSolverWorkingDirectoryName, lenOutDir)
|
2011-03-03 15:59:59 +05:30
|
|
|
getSolverWorkingDirectoryName=trim(getSolverWorkingDirectoryName)//'/'
|
2013-03-25 23:55:15 +05:30
|
|
|
|
2012-06-15 21:40:21 +05:30
|
|
|
end function getSolverWorkingDirectoryName
|
2011-02-21 20:07:38 +05:30
|
|
|
|
|
|
|
|
2013-03-25 23:55:15 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief using Abaqus/Standard function to get solver job name
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
character(1024) function getSolverJobName()
|
2012-06-15 21:40:21 +05:30
|
|
|
|
2010-05-10 20:32:59 +05:30
|
|
|
implicit none
|
2013-03-25 23:55:15 +05:30
|
|
|
integer :: lenJobName
|
2010-05-10 20:32:59 +05:30
|
|
|
|
2010-05-11 12:27:15 +05:30
|
|
|
getSolverJobName=''
|
2013-03-25 23:55:15 +05:30
|
|
|
call getJobName(getSolverJobName, lenJobName)
|
2010-05-10 20:32:59 +05:30
|
|
|
|
2012-06-15 21:40:21 +05:30
|
|
|
end function getSolverJobName
|
|
|
|
|
|
|
|
end module DAMASK_interface
|
2009-10-12 21:31:49 +05:30
|
|
|
|
2014-12-08 22:06:22 +05:30
|
|
|
#include "commercialFEM_fileList.f90"
|
2014-07-03 18:22:33 +05:30
|
|
|
|
2009-10-12 21:31:49 +05:30
|
|
|
subroutine UMAT(STRESS,STATEV,DDSDDE,SSE,SPD,SCD,&
|
2013-03-25 23:55:15 +05:30
|
|
|
RPL,DDSDDT,DRPLDE,DRPLDT,STRAN,DSTRAN,&
|
|
|
|
TIME,DTIME,TEMP,DTEMP,PREDEF,DPRED,CMNAME,NDI,NSHR,NTENS,&
|
|
|
|
NSTATV,PROPS,NPROPS,COORDS,DROT,PNEWDT,CELENT,&
|
|
|
|
DFGRD0,DFGRD1,NOEL,NPT,KSLAY,KSPT,KSTEP,KINC)
|
|
|
|
use prec, only: &
|
|
|
|
pReal, &
|
|
|
|
pInt
|
2013-08-02 16:50:11 +05:30
|
|
|
use numerics, only: &
|
2014-04-29 21:41:13 +05:30
|
|
|
!$ DAMASK_NumThreadsInt, &
|
2013-08-02 16:50:11 +05:30
|
|
|
usePingPong
|
2013-03-25 23:55:15 +05:30
|
|
|
use FEsolving, only: &
|
2016-01-18 22:22:18 +05:30
|
|
|
calcMode, &
|
|
|
|
terminallyIll, &
|
2016-01-17 18:59:42 +05:30
|
|
|
symmetricSolver
|
2013-03-25 23:55:15 +05:30
|
|
|
use math, only: &
|
|
|
|
invnrmMandel
|
|
|
|
use debug, only: &
|
|
|
|
debug_info, &
|
|
|
|
debug_reset, &
|
|
|
|
debug_levelBasic, &
|
|
|
|
debug_level, &
|
|
|
|
debug_abaqus
|
|
|
|
use mesh, only: &
|
2013-05-17 22:22:19 +05:30
|
|
|
mesh_unitlength, &
|
2013-03-25 23:55:15 +05:30
|
|
|
mesh_FEasCP, &
|
|
|
|
mesh_ipCoordinates
|
2013-03-01 17:18:29 +05:30
|
|
|
use CPFEM, only: &
|
|
|
|
CPFEM_general, &
|
|
|
|
CPFEM_init_done, &
|
|
|
|
CPFEM_initAll, &
|
|
|
|
CPFEM_CALCRESULTS, &
|
|
|
|
CPFEM_AGERESULTS, &
|
|
|
|
CPFEM_COLLECT, &
|
|
|
|
CPFEM_RESTOREJACOBIAN, &
|
2016-01-17 18:59:42 +05:30
|
|
|
CPFEM_BACKUPJACOBIAN, &
|
|
|
|
cycleCounter, &
|
|
|
|
theInc, &
|
|
|
|
theTime, &
|
|
|
|
theDelta, &
|
|
|
|
lastIncConverged, &
|
|
|
|
outdatedByNewInc, &
|
|
|
|
outdatedFFN1, &
|
|
|
|
lastStep
|
2013-03-25 23:55:15 +05:30
|
|
|
use homogenization, only: &
|
|
|
|
materialpoint_sizeResults, &
|
|
|
|
materialpoint_results
|
2009-10-12 21:31:49 +05:30
|
|
|
|
|
|
|
implicit none
|
2013-03-25 23:55:15 +05:30
|
|
|
integer(pInt), intent(in) :: &
|
|
|
|
nDi, & !< Number of direct stress components at this point
|
|
|
|
nShr, & !< Number of engineering shear stress components at this point
|
|
|
|
nTens, & !< Size of the stress or strain component array (NDI + NSHR)
|
|
|
|
nStatV, & !< Number of solution-dependent state variables
|
|
|
|
nProps, & !< User-defined number of material constants
|
|
|
|
noEl, & !< element number
|
|
|
|
nPt,& !< integration point number
|
|
|
|
kSlay, & !< layer number (shell elements etc.)
|
|
|
|
kSpt, & !< section point within the current layer
|
|
|
|
kStep, & !< step number
|
|
|
|
kInc !< increment number
|
|
|
|
character(len=80), intent(in) :: &
|
|
|
|
cmname !< uses-specified material name, left justified
|
|
|
|
real(pReal), intent(in) :: &
|
|
|
|
DTIME, &
|
|
|
|
TEMP, &
|
|
|
|
DTEMP, &
|
|
|
|
CELENT
|
|
|
|
real(pReal), dimension(1), intent(in) :: &
|
|
|
|
PREDEF, &
|
|
|
|
DPRED
|
|
|
|
real(pReal), dimension(2), intent(in) :: &
|
|
|
|
TIME !< step time/total time at beginning of the current increment
|
|
|
|
real(pReal), dimension(3), intent(in) :: &
|
|
|
|
COORDS
|
|
|
|
real(pReal), dimension(nTens), intent(in) :: &
|
|
|
|
STRAN, & !< total strains at beginning of the increment
|
|
|
|
DSTRAN !< strain increments
|
|
|
|
real(pReal), dimension(nProps), intent(in) :: &
|
|
|
|
PROPS
|
|
|
|
real(pReal), dimension(3,3), intent(in) :: &
|
|
|
|
DROT, & !< rotation increment matrix
|
|
|
|
DFGRD0, & !< F at beginning of increment
|
|
|
|
DFGRD1 !< F at end of increment
|
|
|
|
real(pReal), intent(inout) :: &
|
|
|
|
PNEWDT, & !< ratio of suggested new time increment
|
|
|
|
SSE, & !< specific elastic strain engergy
|
|
|
|
SPD, & !< specific plastic dissipation
|
|
|
|
SCD, & !< specific creep dissipation
|
|
|
|
RPL, & !< volumetric heat generation per unit time at the end of the increment
|
|
|
|
DRPLDT !< varation of RPL with respect to the temperature
|
|
|
|
real(pReal), dimension(nTens), intent(inout) :: &
|
|
|
|
STRESS !< stress tensor at the beginning of the increment, needs to be updated
|
|
|
|
real(pReal), dimension(nStatV), intent(inout) :: &
|
|
|
|
STATEV !< solution-dependent state variables
|
|
|
|
real(pReal), dimension(nTens), intent(out) :: &
|
|
|
|
DDSDDT, &
|
|
|
|
DRPLDE
|
|
|
|
real(pReal), dimension(nTens,nTens), intent(out) :: &
|
|
|
|
DDSDDE !< Jacobian matrix of the constitutive model
|
|
|
|
|
|
|
|
real(pReal) :: temperature ! temp by Abaqus is intent(in)
|
2009-10-12 21:31:49 +05:30
|
|
|
real(pReal), dimension(6) :: stress_h
|
|
|
|
real(pReal), dimension(6,6) :: ddsdde_h
|
2013-08-08 18:23:03 +05:30
|
|
|
integer(pInt) :: computationMode, i, cp_en
|
2013-03-15 11:57:04 +05:30
|
|
|
logical :: cutBack
|
2015-04-15 23:40:56 +05:30
|
|
|
|
|
|
|
#ifdef _OPENMP
|
|
|
|
integer :: defaultNumThreadsInt !< default value set by Abaqus
|
|
|
|
include "omp_lib.h"
|
|
|
|
defaultNumThreadsInt = omp_get_num_threads() ! remember number of threads set by Marc
|
|
|
|
call omp_set_num_threads(DAMASK_NumThreadsInt) ! set number of threads for parallel execution set by DAMASK_NUM_THREADS
|
|
|
|
#endif
|
2009-10-12 21:31:49 +05:30
|
|
|
|
2013-03-25 23:55:15 +05:30
|
|
|
temperature = temp ! temp is intent(in)
|
|
|
|
DDSDDT = 0.0_pReal
|
|
|
|
DRPLDE = 0.0_pReal
|
|
|
|
|
2012-07-05 15:24:50 +05:30
|
|
|
if (iand(debug_level(debug_abaqus),debug_levelBasic) /= 0 .and. noel == 1 .and. npt == 1) then
|
2013-03-25 23:55:15 +05:30
|
|
|
write(6,*) 'el',noel,'ip',npt
|
|
|
|
write(6,*) 'got kInc as',kInc
|
|
|
|
write(6,*) 'got dStran',dStran
|
|
|
|
flush(6)
|
2009-10-12 21:31:49 +05:30
|
|
|
endif
|
|
|
|
|
2015-07-24 20:27:29 +05:30
|
|
|
if (.not. CPFEM_init_done) call CPFEM_initAll(noel,npt)
|
2011-03-07 18:19:27 +05:30
|
|
|
|
2013-08-08 20:30:22 +05:30
|
|
|
computationMode = 0
|
2011-03-07 18:19:27 +05:30
|
|
|
cp_en = mesh_FEasCP('elem',noel)
|
2013-08-02 18:58:50 +05:30
|
|
|
if (time(2) > theTime .or. kInc /= theInc) then ! reached convergence
|
2013-03-25 23:55:15 +05:30
|
|
|
terminallyIll = .false.
|
|
|
|
cycleCounter = -1 ! first calc step increments this to cycle = 0
|
2013-08-08 20:30:22 +05:30
|
|
|
if (kInc == 1) then ! >> start of analysis <<
|
2013-03-25 23:55:15 +05:30
|
|
|
lastIncConverged = .false. ! no Jacobian backup
|
|
|
|
outdatedByNewInc = .false. ! no aging of state
|
|
|
|
calcMode = .false. ! pretend last step was collection
|
2014-05-16 15:53:10 +05:30
|
|
|
write (6,'(i8,1x,i2,1x,a)') noel,npt,'<< UMAT >> start of analysis..!';flush(6)
|
2013-08-08 20:30:22 +05:30
|
|
|
else if (kInc - theInc > 1) then ! >> restart of broken analysis <<
|
2013-03-25 23:55:15 +05:30
|
|
|
lastIncConverged = .false. ! no Jacobian backup
|
|
|
|
outdatedByNewInc = .false. ! no aging of state
|
|
|
|
calcMode = .true. ! pretend last step was calculation
|
2014-05-16 15:53:10 +05:30
|
|
|
write (6,'(i8,1x,i2,1x,a)') noel,npt,'<< UMAT >> restart of analysis..!';flush(6)
|
2013-08-08 20:30:22 +05:30
|
|
|
else ! >> just the next inc <<
|
2013-03-25 23:55:15 +05:30
|
|
|
lastIncConverged = .true. ! request Jacobian backup
|
|
|
|
outdatedByNewInc = .true. ! request aging of state
|
|
|
|
calcMode = .true. ! assure last step was calculation
|
2014-05-16 15:53:10 +05:30
|
|
|
write (6,'(i8,1x,i2,1x,a)') noel,npt,'<< UMAT >> new increment..!';flush(6)
|
2013-03-25 23:55:15 +05:30
|
|
|
endif
|
2013-08-08 20:30:22 +05:30
|
|
|
else if ( dtime < theDelta ) then ! >> cutBack <<
|
|
|
|
lastIncConverged = .false. ! no Jacobian backup
|
|
|
|
outdatedByNewInc = .false. ! no aging of state
|
2013-03-25 23:55:15 +05:30
|
|
|
terminallyIll = .false.
|
|
|
|
cycleCounter = -1 ! first calc step increments this to cycle = 0
|
|
|
|
calcMode = .true. ! pretend last step was calculation
|
2014-05-16 15:53:10 +05:30
|
|
|
write(6,'(i8,1x,i2,1x,a)') noel,npt,'<< UMAT >> cutback detected..!';flush(6)
|
2013-03-25 23:55:15 +05:30
|
|
|
endif ! convergence treatment end
|
|
|
|
|
|
|
|
|
2013-08-08 20:30:22 +05:30
|
|
|
if (usePingPong) then
|
|
|
|
calcMode(npt,cp_en) = .not. calcMode(npt,cp_en) ! ping pong (calc <--> collect)
|
|
|
|
if (calcMode(npt,cp_en)) then ! now --- CALC ---
|
|
|
|
computationMode = CPFEM_CALCRESULTS
|
|
|
|
if ( lastStep /= kStep ) then ! first after ping pong
|
|
|
|
call debug_reset() ! resets debugging
|
|
|
|
outdatedFFN1 = .false.
|
|
|
|
cycleCounter = cycleCounter + 1_pInt
|
|
|
|
endif
|
|
|
|
if(outdatedByNewInc) then
|
|
|
|
computationMode = ior(computationMode,CPFEM_AGERESULTS) ! calc and age results
|
|
|
|
outdatedByNewInc = .false. ! reset flag
|
|
|
|
endif
|
|
|
|
else ! now --- COLLECT ---
|
|
|
|
computationMode = CPFEM_COLLECT ! plain collect
|
|
|
|
if(lastStep /= kStep .and. .not. terminallyIll) &
|
|
|
|
call debug_info() ! first after ping pong reports (meaningful) debugging
|
|
|
|
if (lastIncConverged) then
|
|
|
|
computationMode = ior(computationMode,CPFEM_BACKUPJACOBIAN) ! collect and backup Jacobian after convergence
|
|
|
|
lastIncConverged = .false. ! reset flag
|
|
|
|
endif
|
|
|
|
mesh_ipCoordinates(1:3,npt,cp_en) = mesh_unitlength * COORDS
|
2013-03-01 17:18:29 +05:30
|
|
|
endif
|
2013-08-08 20:30:22 +05:30
|
|
|
else ! --- PLAIN MODE ---
|
|
|
|
computationMode = CPFEM_CALCRESULTS ! always calc
|
|
|
|
if (lastStep /= kStep) then
|
|
|
|
if (.not. terminallyIll) &
|
|
|
|
call debug_info() ! first reports (meaningful) debugging
|
|
|
|
call debug_reset() ! and resets debugging
|
|
|
|
outdatedFFN1 = .false.
|
|
|
|
cycleCounter = cycleCounter + 1_pInt
|
2013-03-01 17:18:29 +05:30
|
|
|
endif
|
2013-08-08 20:30:22 +05:30
|
|
|
if (outdatedByNewInc) then
|
|
|
|
computationMode = ior(computationMode,CPFEM_AGERESULTS)
|
|
|
|
outdatedByNewInc = .false. ! reset flag
|
2013-03-01 17:18:29 +05:30
|
|
|
endif
|
|
|
|
if (lastIncConverged) then
|
2013-03-25 23:55:15 +05:30
|
|
|
computationMode = ior(computationMode,CPFEM_BACKUPJACOBIAN) ! backup Jacobian after convergence
|
2013-08-08 20:30:22 +05:30
|
|
|
lastIncConverged = .false. ! reset flag
|
2013-03-01 17:18:29 +05:30
|
|
|
endif
|
2009-10-12 21:31:49 +05:30
|
|
|
endif
|
2013-08-08 20:30:22 +05:30
|
|
|
|
|
|
|
|
2013-03-25 23:55:15 +05:30
|
|
|
theTime = time(2) ! record current starting time
|
|
|
|
theDelta = dtime ! record current time increment
|
2013-08-02 18:58:50 +05:30
|
|
|
theInc = kInc ! record current increment number
|
|
|
|
lastStep = kStep ! record step number
|
2009-10-12 21:31:49 +05:30
|
|
|
|
2012-07-05 15:24:50 +05:30
|
|
|
if (iand(debug_level(debug_abaqus),debug_levelBasic) /= 0) then
|
2013-08-08 20:30:22 +05:30
|
|
|
write(6,'(a16,1x,i2,1x,a,i8,a,i8,1x,i5,a)') 'computationMode',computationMode,'(',cp_en,':',noel,npt,')'
|
|
|
|
flush(6)
|
2010-03-25 13:57:42 +05:30
|
|
|
endif
|
2009-10-12 21:31:49 +05:30
|
|
|
|
2013-08-02 16:50:11 +05:30
|
|
|
call CPFEM_general(computationMode,usePingPong,dfgrd0,dfgrd1,temperature,dtime,noel,npt,stress_h,ddsdde_h)
|
2010-02-18 15:53:42 +05:30
|
|
|
|
|
|
|
! Mandel: 11, 22, 33, SQRT(2)*12, SQRT(2)*23, SQRT(2)*13
|
|
|
|
! straight: 11, 22, 33, 12, 23, 13
|
|
|
|
! ABAQUS explicit: 11, 22, 33, 12, 23, 13
|
|
|
|
! ABAQUS implicit: 11, 22, 33, 12, 13, 23
|
|
|
|
! ABAQUS implicit: 11, 22, 33, 12
|
2009-10-12 21:31:49 +05:30
|
|
|
|
2010-02-18 15:53:42 +05:30
|
|
|
forall(i=1:ntens) ddsdde(1:ntens,i) = invnrmMandel(i)*ddsdde_h(1:ntens,i)*invnrmMandel(1:ntens)
|
|
|
|
stress(1:ntens) = stress_h(1:ntens)*invnrmMandel(1:ntens)
|
2009-10-12 21:31:49 +05:30
|
|
|
if(symmetricSolver) ddsdde(1:ntens,1:ntens) = 0.5_pReal*(ddsdde(1:ntens,1:ntens) + transpose(ddsdde(1:ntens,1:ntens)))
|
|
|
|
if(ntens == 6) then
|
2010-02-18 15:53:42 +05:30
|
|
|
stress_h = stress
|
|
|
|
stress(5) = stress_h(6)
|
|
|
|
stress(6) = stress_h(5)
|
|
|
|
ddsdde_h = ddsdde
|
|
|
|
ddsdde(:,5) = ddsdde_h(:,6)
|
|
|
|
ddsdde(:,6) = ddsdde_h(:,5)
|
|
|
|
ddsdde_h = ddsdde
|
|
|
|
ddsdde(5,:) = ddsdde_h(6,:)
|
|
|
|
ddsdde(6,:) = ddsdde_h(5,:)
|
2009-10-12 21:31:49 +05:30
|
|
|
end if
|
|
|
|
|
|
|
|
statev = materialpoint_results(1:min(nstatv,materialpoint_sizeResults),npt,mesh_FEasCP('elem', noel))
|
|
|
|
|
2013-03-25 23:55:15 +05:30
|
|
|
if ( terminallyIll ) pnewdt = 0.5_pReal ! force cutback directly ?
|
2015-04-15 23:40:56 +05:30
|
|
|
!$ call omp_set_num_threads(defaultNumThreadsInt) ! reset number of threads to stored default value
|
2009-10-12 21:31:49 +05:30
|
|
|
|
2013-03-25 23:55:15 +05:30
|
|
|
end subroutine UMAT
|
2009-10-12 21:31:49 +05:30
|
|
|
|
|
|
|
|
2013-03-25 23:55:15 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief calls the exit function of Abaqus/Standard
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine quit(mpie_error)
|
|
|
|
use prec, only: &
|
|
|
|
pInt
|
2012-06-15 21:40:21 +05:30
|
|
|
|
2009-10-12 21:31:49 +05:30
|
|
|
implicit none
|
2014-05-16 15:53:10 +05:30
|
|
|
integer(pInt) :: mpie_error
|
2013-03-25 23:55:15 +05:30
|
|
|
|
2012-10-02 18:16:58 +05:30
|
|
|
flush(6)
|
2009-10-12 21:31:49 +05:30
|
|
|
call xit
|
2013-03-25 23:55:15 +05:30
|
|
|
|
|
|
|
end subroutine quit
|