Difference between revisions of "Command Manual"

From OpenSeesWiki
Jump to navigationJump to search
 
(9 intermediate revisions by one other user not shown)
Line 1: Line 1:
[[Category:Command Manual]]
+
{{CommandManualMenu}}
  
  
blah
+
The OpenSees interpreters add [http://en.wikipedia.org/wiki/Command_(computing)  commands] to Tcl for finite element analysis. Each of these commands is associated (bound) with a C++ procedure that is provided. It is this procedure that is called upon by the interpreter to parse the command when it is encountered. In this document we focus primarily on those commands which have been added to Tcl by the OpenSees interpreters. All existing commands that exist in the Tcl language are available to these interpreters. We provide a brief [[Introduction To Tcl]], more detailed documentation on these existing commands can be found in books and on-line.
 
 
The OpenSees interpreters adds [http://en.wikipedia.org/wiki/Command_(computing)  commands] to Tcl for finite element analysis. Each of these commands is associated (bound) with a C++ procedure that is provided. It is this procedure that is called upon by the interpreter to parse the command. In this document we outline only those commands which have been added to Tcl by one of the OpenSees interpreters. All existing commands that exist in the Tcl language are available to these interpreters. Documentation on these existing commands can be found in books and on-line.
 
  
 
For OpenSees we have added commands to Tcl for finite element analysis. These commands can be grouped into four sections:
 
For OpenSees we have added commands to Tcl for finite element analysis. These commands can be grouped into four sections:
Line 11: Line 9:
 
# [[Output Commands]] commands aded to Tcl to monitor what is happening in the model during the analysis.
 
# [[Output Commands]] commands aded to Tcl to monitor what is happening in the model during the analysis.
 
# [[Misc Commands]] commands added to Tcl to help monitor and modify the model and analysis during the run-time.
 
# [[Misc Commands]] commands added to Tcl to help monitor and modify the model and analysis during the run-time.
 
+
# [[DataBase Commands]] commands added to Tcl to construct a FE_Datastore object.
 
+
----
{{#menu:
 
*[[Modelling_Commands]]
 
**model command
 
**[[uniaxialMaterial Command | uniaxialMaterial]]
 
**[[nDMaterial Command | ndMaterial]]
 
**[[section Command | section]]
 
**[[Geometric Transformation Command | geometricTransf]]
 
**[[element Command|element]]
 
**[[node command | node]]
 
** sp commands
 
*** [[fix command | fix]]
 
*** [[fixX command | fixX]]
 
*** [[fixY command | fixY]]
 
*** [[fixZ command | fixZ]]
 
** mp commands
 
*** [[equalDOF command | equalDOF]]
 
*** [[rigidDiaphragm command | rigidDiaphragm]]
 
*** [[rigidLink command | rigidLink]]
 
**[[Time Series Command| timeSeries]]
 
**[[pattern Command|pattern]]
 
**[[mass Command | mass]]
 
**[[block Command| block]]
 
**[[region Command| region]]
 
**[[Rayleigh Damping Command|rayleigh]]
 
*[[Analysis Commands]]
 
*[[Output Commands]]
 
*[[Misc Commands]]
 
}}
 

Latest revision as of 18:52, 2 March 2011





The OpenSees interpreters add commands to Tcl for finite element analysis. Each of these commands is associated (bound) with a C++ procedure that is provided. It is this procedure that is called upon by the interpreter to parse the command when it is encountered. In this document we focus primarily on those commands which have been added to Tcl by the OpenSees interpreters. All existing commands that exist in the Tcl language are available to these interpreters. We provide a brief Introduction To Tcl, more detailed documentation on these existing commands can be found in books and on-line.

For OpenSees we have added commands to Tcl for finite element analysis. These commands can be grouped into four sections:

  1. Modeling Commands commands added to the interpreter to create the finite element model.
  2. Analysis Commands commands added to Tcl to create the analysis procedure.
  3. Output Commands commands aded to Tcl to monitor what is happening in the model during the analysis.
  4. Misc Commands commands added to Tcl to help monitor and modify the model and analysis during the run-time.
  5. DataBase Commands commands added to Tcl to construct a FE_Datastore object.