Stop ABAQUS Standard Analysis with UAMP-Subroutine
Stop ABAQUS Standard Analysis with UAMP-Subroutine
(OP)
Hello everyone,
I want to compress a cylinder until a certain reaction force is present in the reference point that is the bearing node for the cylinder.
However, the termination of the computation is to be done by using the subroutine 'UAMP'.
Unfortunately the computation wont stop and I can't figure out why that is.
Within the attachment I provided you the input files as well as the fortran / subroutine file.
http://files.engineering.com/getfile.aspx?folder=f...
I would be very very happy when someone could help me with this problem!
Thanks a lot to everyone who tries to help!
Greetings,
DrReinerKlimpke.
PS: I'm using ABAQUS 6.10 with a FORTRAN 10.1.030 compiler.
I want to compress a cylinder until a certain reaction force is present in the reference point that is the bearing node for the cylinder.
However, the termination of the computation is to be done by using the subroutine 'UAMP'.
Unfortunately the computation wont stop and I can't figure out why that is.
Within the attachment I provided you the input files as well as the fortran / subroutine file.
http://files.engineering.com/getfile.aspx?folder=f...
I would be very very happy when someone could help me with this problem!
Thanks a lot to everyone who tries to help!
Greetings,
DrReinerKlimpke.
PS: I'm using ABAQUS 6.10 with a FORTRAN 10.1.030 compiler.





RE: Stop ABAQUS Standard Analysis with UAMP-Subroutine
Your UAMP subroutine is never used by Abaqus.
You defined user amplitude (*AMPLITUDE, TYPE=USER) but you never used it in combination with any other keyword.
Since Abaqus never needs value of the amplitude he never call UAMP subroutine.
I understand you do not need values of the amplitude but still you have to use it somewhere.
In my test I added force load with value of 0.0.
CODE
Next point is that you are getting sensor value in wrong way.
Abaqus gives you two option how to get sensor value and you have somehow combination of these two approaches.
See Abaqus User Subroutines Reference Manual, 2.1.16 Obtaining sensor information
Correct definition are below, you can choose one:
CODE
! get sensor value iMySensorID = IGETSENSORID("SENSOR", jSensorLookUpTable) RF_SENSOR = sensorValues(iMySensorID)CODE
! get sensor value RF_SENSOR = GETSENSORVALUE("SENSOR", jSensorLookUpTable, sensorValues )With this two modifications your model works.
It is also a good idea to always define value of amplitude even you do not used it.
So I recommend to use:
CODE
ELSE ampValueNew = 0.0 !set amplitude value IF(RF_SENSOR .GE. 200) THEN lFlagsDefine(iConcludeStep) = 1 END IF END IFOne more point, but not related with UAMP.
You defined duplicate boundary conditions for "BOTTOM_RP" nset.
Of course it has no influence for you results.
Best,
Bartosz
RE: Stop ABAQUS Standard Analysis with UAMP-Subroutine