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!

Abaqus non linear spirngs modelling

Status
Not open for further replies.

SJ8

Structural
Mar 10, 2023
4
0
0
IT
Hello to everyone,
I'm trying to model a nonlinear spring in ABAQUS.
I followed the ABAQUS guide and I created a simple input file defining one nonlinear spring. I also launched the analysis from the command window and an ODB is generated but when I open the ODB I get this error:

"There is no valid step data available on the database. If the analysis is running, the database must be closed and reopened once the results have been initialized. The requested operation has been cancelled."


Can someone help me?

Thank you in advance
 
Replies continue below

Recommended for you

Thank you for your suggestion.
I fixed the problem but I have a new one.
The analysis runs perfectly when I define the nonlinear sprigs in this way:

*Spring, elset=Springs/Dashpots-1-spring,nonlinear
-10000, -2
-5000, -1
0, 0
5000, 1
10000, 2

Instead I get this error:

"***ERROR: INVALID INTEGER VALUE
LINE IMAGE: -10000., -0.2"

when I wrote

*Spring, elset=Springs/Dashpots-1-spring,nonlinear
-10000, -0.2
-5000, -0.1
0, 0.
5000, 0.1
10000, 0.2

How can I wrote decimal values? I tried the exponential form too but I get the same error


 
Add an empty line after the *SPRING keyword and it will work:

Code:
*Spring, elset=Springs/Dashpots-1-spring,nonlinear

-10000, -0.2
-5000, -0.1
0, 0.
5000, 0.1
10000, 0.2
 
Status
Not open for further replies.
Back
Top