Modeling Commands: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
The model or domain in OpenSees is an aggregation of elements, nodes, single- and multi-point constraints and load patterns. | |||
<uml> | |||
package "OpenSees Model" #DDDDDD | |||
abstract class Element | |||
abstract class TimeSeries | |||
abstract class ElementLoad | |||
Domain o- Element | |||
Domain o- Node | |||
Domain o- SP_Constraint | |||
Domain o- MP_Constraint | |||
Domain o- LoadPattern | |||
LoadPattern o- "one" TimeSeries | |||
LoadPattern o- ElementLoad | |||
LoadPattern o- NodalLoad | |||
LoadPattern o- SP_Constraint | |||
</uml> | |||
The following are the modeling commands that have been added to interpreter to create the finite element model: | |||
#[[model command| model]] | #[[model command| model]] | ||
#[[node command | node]] | #[[node command | node]] | ||
#[[constraints commands]] | #[[constraints commands]] | ||
#[[element Command|element]] | |||
#[[Time Series Command| timeSeries]] | |||
#[[pattern Command|pattern]] | |||
#[[mass Command | mass]] | #[[mass Command | mass]] | ||
#[[block Command| block]] | |||
#[[region Command| region]] | |||
#[[Rayleigh Damping Command|rayleigh]] | |||
In addition to these commands, the typical element in OpenSees has the material nonlinearity and sometimes geometry contained in other objects, materials and geometric transformations. Commands have been added to the interpreter to create these objects as well. | |||
<uml> | |||
package "Element" | |||
abstract class Element | |||
abstract class Material | |||
abstract class UniaxialMaterial | |||
abstract class NDMaterial | |||
abstract class SectionForceDeformation | |||
abstract class GeometricTransformation | |||
Element o- Material | |||
Element o- GeometricTransformation | |||
Material <|-- UniaxialMaterial | |||
Material <|-- SectionForceDeformation | |||
Material <|-- NDMaterial | |||
</uml> | |||
#[[uniaxialMaterial Command| uniaxialMaterial]] | #[[uniaxialMaterial Command| uniaxialMaterial]] | ||
#[[nDMaterial Command| ndMaterial]] | #[[nDMaterial Command| ndMaterial]] | ||
#[[section Command| section]] | #[[section Command| section]] | ||
#[[Geometric Transformation Command| geometricTransf]] | #[[Geometric Transformation Command| geometricTransf]] | ||
Revision as of 06:19, 23 February 2010
The model or domain in OpenSees is an aggregation of elements, nodes, single- and multi-point constraints and load patterns.
<uml> package "OpenSees Model" #DDDDDD
abstract class Element abstract class TimeSeries abstract class ElementLoad Domain o- Element Domain o- Node Domain o- SP_Constraint Domain o- MP_Constraint Domain o- LoadPattern LoadPattern o- "one" TimeSeries LoadPattern o- ElementLoad LoadPattern o- NodalLoad LoadPattern o- SP_Constraint </uml>
The following are the modeling commands that have been added to interpreter to create the finite element model:
In addition to these commands, the typical element in OpenSees has the material nonlinearity and sometimes geometry contained in other objects, materials and geometric transformations. Commands have been added to the interpreter to create these objects as well.
<uml> package "Element" abstract class Element abstract class Material abstract class UniaxialMaterial abstract class NDMaterial abstract class SectionForceDeformation abstract class GeometricTransformation
Element o- Material
Element o- GeometricTransformation
Material <|-- UniaxialMaterial
Material <|-- SectionForceDeformation
Material <|-- NDMaterial
</uml>