Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Read .fil file. Problem during linking

Status
Not open for further replies.

ValeriaKa

Mechanical
Joined
Jul 26, 2012
Messages
9
Location
ES
Help, please!
I have the following issue:
I request a .fil (Job-2.fil) from abaqus through
* NODE FILE
U
Then I compile and link my ABQMAIN subroutine on Abaqus command. However when linking, the following error shows up:

Capture-err_mel9y4.png


The program I'm using is the following:

Code:
  subroutine ABQMAIN     
      include 'ABA_PARAM.INC'
C
      character*80 FNAME
      real*8   ARRAY(513)
      integer JRRAY(NPRECD,513),LRUNIT(2,1)
      equivalence(ARRAY(1),JRRAY(1,1))
      real*8 results(12136,12)      
      integer nn,ii,KEY
C
C     File initialization
C     Inicializacion de variables
	nn       =  0
      results  =  0.d0
C
      FNAME='Job-2'
      NRU=1
      LRUNIT(1,1)=8
      LRUNIT(2,1)=2
      LOUTF=0
      CALL INITPF(FNAME,NRU,LRUNIT,LOUTF)
      JUNIT=8
      CALL DBRNU(JUNIT)
C
C     Loop on all records in results file
C
      DO 100 K1=1,99999
      CALL DBFILE(0,ARRAY,JRCD)
        if(JRCD.NE.0)GO TO 110
        KEY=JRRAY(1,2)
C
        if (KEY.EQ.101) then
            nn=nn+1
            results(nn,1)  = JRRAY(1,3)
            results(nn,2)  = JRRAY(1,4) 
            results(nn,3)  = JRRAY(1,5)
        endif
C
 100  CONTINUE
 110  CONTINUE
C
C
      return
      end

What can I do to fix this issue??
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top