Author Topic: PARFEAP FAILS  (Read 5543 times)

manisha.sachdeva

  • Jr. Member
  • **
  • Posts: 14
PARFEAP FAILS
« on: February 23, 2021, 03:30:54 AM »
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.....





« Last Edit: February 26, 2021, 05:13:36 PM by manisha.sachdeva »

Prof. S. Govindjee

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 1164
Re: PARFEAP FAILS
« Reply #1 on: February 23, 2021, 09:32:19 AM »
Odd.  The error you are seeing indicates that your version of the code may be corrupted since ver85 does run your file (to some degree).

Notwithstanding.  The 'error' you are seeing should be fixable by placing a blank line after the second line.  So between " 9,4,1,2,2,4" and
"MATErial,1"

That said, there is an error lower down in your input file, namely you have the command "batch node 2" which is not a FEAP command as far as I know.

Prof. R.L. Taylor

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 2649
Re: PARFEAP FAILS
« Reply #2 on: February 23, 2021, 09:48:40 PM »
There is an error in the solution commands.

BATCH command should be GRAPh

With that it works in ver8.6


manisha.sachdeva

  • Jr. Member
  • **
  • Posts: 14
Re: PARFEAP FAILS
« Reply #3 on: February 26, 2021, 05:15:45 PM »
I found the error... It was a compiler error... my archive was older version compiler.... So I didn't get any error while re-installing PARFEAP..... and it failed at run time....