Dear Sanjay,
I am running PARFEAP to generate parallel intput files. So I am running PARFEAP in sequential. I get the following error.
-----------------------------------------------------------------------------------------------------------------------
Inconsistency occurred from INPUTS in data file Ipatch_4el
at or near record number 1. Input record is:
9,4,1,2,2,4
9,4,1,2,2,4
If this record is correct error may result from
missing blank record before new command type.
--> ERRORS OCCURRED: For details see file: Opatch_4el
-------------------------------------------------------------------------------------------------------------------------
After debugging I found that the flag "coflg" is .TRUE.
It should be .FALSE. I changed this flag in the feap85.f to .FALSE.... still the same problem
It should go in the following code.... in setval.f
if(.not.coflg) then
xs(1:15) = ' '
nex = 15 - num
do i = 1,num
xs(i+nex:i+nex) = xi(i:i)
end do ! i
errco = .false.
call pinval(xs,val,errco)
if(errco) go to 60
return
endif
BUT THIS DOES NOT HAPPEN... IT FAILS reading just the second record....
-----------------------------------------------------------------------------------------------------
mind you this file works well in sequential FEAP.....
SUGGESTION REQUIRED.....