corrected small syntax errors

This commit is contained in:
Luc Hantcherli 2007-04-11 14:55:06 +00:00
parent 3c5d490148
commit cb4a85319d
2 changed files with 4 additions and 3 deletions

View File

@ -137,7 +137,8 @@
cp_en,& ! Element number cp_en,& ! Element number
CPFEM_in) ! Integration point number CPFEM_in) ! Integration point number
use prec, only: pReal,pInt,ijaco,nCutback use prec, only: pReal,pInt,ijaco,nCutback
use math, only: math_pDecomposition,math_RtoEuler
use IO, only: IO_error use IO, only: IO_error
use mesh, only: mesh_element use mesh, only: mesh_element
use constitutive use constitutive
@ -158,7 +159,7 @@
updateJaco = (mod(CPFEM_cn,ijaco)==0) ! update consistent tangent every ijaco'th iteration updateJaco = (mod(CPFEM_cn,ijaco)==0) ! update consistent tangent every ijaco'th iteration
CPFEM_stress_all(:,CPFEM_in,cp_en) = 0.0_pReal ! average Cauchy stress CPFEM_stress_all(:,CPFEM_in,cp_en) = 0.0_pReal ! average Cauchy stress
if (updateJaco) CPFEM_jaco_old(:,:,CPFEM_in,cp_en) = 0.0_pReal ! average consistent tangent if (updateJaco) CPFEM_jaco_old(:,:,CPFEM_in,cp_en) = 0.0_pReal ! average consistent tangent
! -------------- grain loop ----------------- ! -------------- grain loop -----------------

View File

@ -84,7 +84,7 @@ real(pReal), dimension(:,:,:,:), allocatable :: constitutive_state_new
!************************************ !************************************
!* Results * !* Results *
!************************************ !************************************
integer(pInt), constitutive_maxNresults integer(pInt) constitutive_maxNresults
integer(pInt), dimension(:,:,:), allocatable :: constitutive_Nresults integer(pInt), dimension(:,:,:), allocatable :: constitutive_Nresults
real(pReal), dimension(:,:,:,:), allocatable :: constitutive_results real(pReal), dimension(:,:,:,:), allocatable :: constitutive_results