Getting Started with BuildingTcl

From OpenSeesWiki
Revision as of 20:35, 27 October 2009 by Silviamazzoni (talk | contribs) (New page: == BuildingTcl Commands == Most BuildingTcl Library commands consists of a series of parameter-defining add-Data commands, concluded by an add-Object command, which takes the previously ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

BuildingTcl Commands

Most BuildingTcl Library commands consists of a series of parameter-defining add-Data commands, concluded by an add-Object command, which takes the previously defined parameters and assembles them into an individual library object.

  1. SET UP

source myBuildingTcl.tcl <setDataDir Data> <setUnits -Length $BasicLengthUnit -Force $BasicForceUnit -Time BasicTimeUnit>

  1. DEFINE INPUT DATA

addMaterialData ….. addMaterial ; # define Materials Library


addSectionData ….. addSection; # define Section Library


addElementModelData ….. addElementModel; # define ElementModel Library


addAnalysisModelData ….. addAnalysisModel; # define AnalysisModel Library


addModelData ….. addModel; # define Model (Elevation, Plan, 3DModel) Library

addLoadData ….. addLoad; # define Loads Library


addLoadCombinationData ….. addLoadCombination; # define LoadCombination Library

The following commands are Building-Tcl specific. They are used to run the OpenSees simulation.

  1. BUILD AND ANALYZE

SelectModel ….. SelectLoadCombination ….. BuildAndAnalyze