corrected if statement to check assembly of input files

This commit is contained in:
Franz Roters 2012-03-22 07:44:46 +00:00
parent 44d8282863
commit 00de182873
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ subroutine IO_open_inputFile(myUnit,model)
path = trim(getSolverWorkingDirectoryName())//trim(model)//InputFileExtension//'_assembly'
open(myUnit,iostat=myStat,file=path)
if (myStat /= 0_pInt) call IO_error(100_pInt,ext_msg=path)
if (abaqus_assembleInputFile(myUnit,myUnit+1_pInt)) call IO_error(103_pInt) ! strip comments and concatenate any "include"s
if (.not.abaqus_assembleInputFile(myUnit,myUnit+1_pInt)) call IO_error(103_pInt) ! strip comments and concatenate any "include"s
close(myUnit+1_pInt)
else