Nonlinear Truss Pushover Analysis¤
This live script is written as a guided walkthrough for a structural-analysis example. It walks from model definition to analysis setup and then to response checks or plots. Read the text cells first, then run each code cell in order so that the variables, model state, and recorded results are available for the later sections.
First, instantiate the OpenSeesMatlab interface class. This class provides native OpenSees commands, as well as additional visualization, pre/post-processing, and utility methods.
1 2 3 4 | |
Create model¤
This section creates the finite-element idealization used by the rest of the example. Check the dimensions, tags, and connectivity here before moving on.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | |
Start of analysis generation¤
This section configures and runs the analysis. The solver, constraints, convergence test, and step size should be read together because they control numerical robustness.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
Finally perform the analysis¤
This section configures and runs the analysis. The solver, constraints, convergence test, and step size should be read together because they control numerical robustness.
1 2 3 4 5 6 7 | |
Model Visualization¤
This section creates the finite-element idealization used by the rest of the example. Check the dimensions, tags, and connectivity here before moving on.
1 | |
Plot¤
This section turns the numerical results into plots. Use these figures to check the deformed shape, response pattern, and whether the result is physically reasonable.
1 2 3 4 5 | |