Getting Started with OpenSees -- Model Builder: Difference between revisions

From OpenSeesWiki
Jump to navigation Jump to search
(Created page with 'Defining the model builder using the OpenSees model command expands the Tcl command library to include OpenSees-specific commands, such as node and element definition, etc. C…')
 
No edit summary
 
Line 1: Line 1:
{{GettingStartedManualMenu}}
Defining the model builder using the OpenSees [[model command]] expands the Tcl command library to include OpenSees-specific commands, such as node and element definition, etc. Currently, there is only one model builder available, basic model builder, this is the model builder that includes all the commands presented in this library.
Defining the model builder using the OpenSees [[model command]] expands the Tcl command library to include OpenSees-specific commands, such as node and element definition, etc. Currently, there is only one model builder available, basic model builder, this is the model builder that includes all the commands presented in this library.



Latest revision as of 22:14, 12 March 2010




Defining the model builder using the OpenSees model command expands the Tcl command library to include OpenSees-specific commands, such as node and element definition, etc. Currently, there is only one model builder available, basic model builder, this is the model builder that includes all the commands presented in this library.

The model builder also defines the number of dimensions (ndm) and degrees of freedom per node (ndf):

model BasicBuilder -ndm $ndm <-ndf $ndf>

For a 2-D problem, you really only need three degrees of freedom at each node, the two translations in the plane and the rotation about the plane's normal:

model basic -ndm 2 -ndf 3





Return to Getting Started with OpenSees