Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

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

Analysis Input File Processor exited with an error. 1

Status
Not open for further replies.

Ajith Kurian Baby

Mechanical
Mar 28, 2020
53
0
0
IN

I was trying to do a reciprocating sliding motion simulation in Abaqus using static, general mode. When I turned on ALE mesh, the system threw an error:
"Analysis Input File Processor exited with an error."

It seems to work fine when ALE was turned off. I was using pressure load and displacement boundary condition in periodic form.
I kindly request your help to solve this issue.

 
Replies continue below

Recommended for you

That's a generic error message. There should be more errors in the dat and msg files. Please search for them and paste them here. Or attach the dat and msg files.
 
4_ap3n8o.png
2_cpksp7.png
1_hmuv7x.png
3_mdudht.png
5_xxqgiu.png
 
So the actual error message is "Only enhanced hourglass is allowed for element ... instance ... in adaptive domain". Thus you should set Mesh --> Element Type --> Hourglass control: Enhanced
 
I was trying to use UMESH subroutine for wear simulation. I don't have much idea about it. It always shows compilation error. Can u help me to write UMESH sub routine. I am attaching my code

SUBROUTINE UMESHMOTION(UREF,ULOCAL,NODE,NNDOF,
* LNODETYPE,ALOCAL,NDIM,TIME,DTIME,PNEWDT,
* KSTEP,KINC,KMESHSWEEP,JMATYP,JGVBLOCK,LSMOOTH)
C
INCLUDE 'ABA_PARAM.INC'
C
DIMENSION ULOCAL(NDIM),JELEMLIST(*)
DIMENSION ALOCAL(NDIM,*),TIME(2)
DIMENSION JMATYP(*),JGVBLOCK(*)

CHARACTER*80 bottom
DIMENSION ARRAY(3)
DIMENSION VEL(6)

CPRESS=0.0D0
VELOCITY=0.0D0
if (NODE.EQ.8)then
ULOCAL(NDIM)=0
call GETVRN(NODE,'V',VEL,JRCD,JGVBLOCK,LTRN)
else
call GETPARTINFO(NODE,0,bottom,LOCNUM,JRCD)
call GETNODETOELEMCONN(NODE,NELEMS,JELEMLIST,JELEMTYPE,JRCD,
$ JGVBLOCK)
call GETVRMAVGATNODE(NODE,'CSTRESS',ARRAY,JRCD,JELEMLIST,NELEMS,
$ JMATYP,JGVBLOCK)
CPRESS = ARRAY(1)
VELOCITY = VEL(1)
WEARRATE=0.000035377*VELOCITY*CPRESS
ULOCAL(NDIM)=ULOCAL(NDIM)-WEARRATE
RETURN
END
 
Status
Not open for further replies.
Back
Top