Getting Started with OpenSees -- Summary of Gravity Loads: Difference between revisions

From OpenSeesWiki
Jump to navigation Jump to search
(Created page with 'The gravity loads can be placed into a file, called GravityLoads.tcl with the following commands: <source lang="Tcl"> pattern Plain 1 Linear { load 3 0.0 -2000 -168074 load …')
 
No edit summary
 
Line 1: Line 1:
{{GettingStartedManualMenu}}
The gravity loads can be placed into a file, called GravityLoads.tcl with the following commands:
The gravity loads can be placed into a file, called GravityLoads.tcl with the following commands:



Latest revision as of 22:20, 12 March 2010




The gravity loads can be placed into a file, called GravityLoads.tcl with the following commands:

pattern Plain 1 Linear {
  load 3 0.0 -2000 -168074
  load 4 0.0 -2000 168074
}

constraints Transformation
numberer RCM
system BandGeneral
test NormDispIncr 1.0e-6 6
algorithm Newton
integrator LoadControl 0.1
analysis Static

analyze 10
loadConst -time 0.0

This file can be sourced in after the example.tcl file:

source example.tcl
source GravityLoads.tcl




Return to Getting Started with OpenSees