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 TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multiple Abaqus User Subroutine

Status
Not open for further replies.

Chandan Kumar

Mechanical
Joined
May 8, 2019
Messages
1
Location
IN
I want to use two Dflux subroutines at the same time in my model, to simulate two arc sources moving simultaneously. How can I do this?

Is it correct..

Subroutine DFLUX()
....
Coding
...
RETURN
END DFLUX

Subroutine DFLUX()
....
Coding
....
RETURN
END DFLUX

END

Kindly help me with this.
Thank you.
 
I think this is correct, except I think the final END is not needed. I am currently using 2 subroutines (SDVINI and UMAT) and the syntax is:

SUBROUTINE SDVINI(STATEV,COORDS,NSTATV,NCRDS,NOEL,NPT,
LAYER,KSPT)
.........
RETURN
END

SUBROUTINE UMAT(STRESS,STATEV,DDSDDE,SSE,SPD,SCD,
RPL,DDSDDT,DRPLDE,DRPLDT,
STRAN,DSTRAN,TIME,DTIME,TEMP,DTEMP,PREDEF,DPRED,bone,
NDI,NSHR,NTENS,NSTATV,PROPS,NPROPS,COORDS,DROT,PNEWDT,
CELENT,DFGRD0,DFGRD1,NOEL,NPT,LAYER,KSPT,JSTEP,KINC)
.......
RETURN
END

So I assume this works the same for every type of subroutine
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top