forgot to "use" the new init-routines
This commit is contained in:
parent
2029b23f98
commit
6d3c620e46
|
@ -67,7 +67,8 @@ subroutine CPFEM_general(mode, ffn, ffn1, Temperature, dt, element, IP, cauchySt
|
||||||
|
|
||||||
!*** variables and functions from other modules ***!
|
!*** variables and functions from other modules ***!
|
||||||
use prec, only: pReal, &
|
use prec, only: pReal, &
|
||||||
pInt
|
pInt, &
|
||||||
|
prec_init
|
||||||
use numerics, only: numerics_init, &
|
use numerics, only: numerics_init, &
|
||||||
relevantStrain, &
|
relevantStrain, &
|
||||||
iJacoStiffness
|
iJacoStiffness
|
||||||
|
@ -119,6 +120,8 @@ subroutine CPFEM_general(mode, ffn, ffn1, Temperature, dt, element, IP, cauchySt
|
||||||
materialpoint_Temperature, &
|
materialpoint_Temperature, &
|
||||||
materialpoint_stressAndItsTangent, &
|
materialpoint_stressAndItsTangent, &
|
||||||
materialpoint_postResults
|
materialpoint_postResults
|
||||||
|
use IO, only: IO_init
|
||||||
|
use cpfem_interface
|
||||||
|
|
||||||
implicit none
|
implicit none
|
||||||
|
|
||||||
|
|
|
@ -36,14 +36,20 @@
|
||||||
! - creeps: timinc
|
! - creeps: timinc
|
||||||
!********************************************************************
|
!********************************************************************
|
||||||
!
|
!
|
||||||
|
MODULE cpfem_interface
|
||||||
|
|
||||||
|
CONTAINS
|
||||||
|
|
||||||
subroutine mpie_cpfem_init
|
subroutine mpie_cpfem_init
|
||||||
write(6,*)
|
write(6,*)
|
||||||
write(6,*) '<<<+- mpie_cpfem init -+>>>'
|
write(6,*) '<<<+- mpie_cpfem_marc init -+>>>'
|
||||||
write(6,*) '$Id$'
|
write(6,*) '$Id$'
|
||||||
write(6,*)
|
write(6,*)
|
||||||
return
|
return
|
||||||
end subroutine
|
end subroutine
|
||||||
|
|
||||||
|
END MODULE
|
||||||
|
|
||||||
include "prec.f90" ! uses nothing else
|
include "prec.f90" ! uses nothing else
|
||||||
include "IO.f90" ! uses prec
|
include "IO.f90" ! uses prec
|
||||||
include "numerics.f90" ! uses prec, IO
|
include "numerics.f90" ! uses prec, IO
|
||||||
|
|
Loading…
Reference in New Issue