# Getting Started with OpenSees -- Summary of Gravity Loads
The gravity loads can be placed into a file, called GravityLoads.tcl with the following commands:
```Tcl 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:
```Tcl source example.tcl source GravityLoads.tcl ```
Return to Getting Started with OpenSees