Truss Examples
Example |
Description |
---|---|
Basic truss triangle |
|
Simple statically determinate bridge |
|
Exploring alternative input format for truss01 |
|
3D truss example |
How to run a truss example from the distribution
All Truss examples are packaged in examples.truss
.
To run a specific example use, e.g.:
from femedu import *
from femedu.examples.trusses.truss01 import *
# load the example
ex = ExampleTruss01()
# print the doc-string for the current example
print(ex)
# run the actual problem
ex.run()
More: Tutorials (Deprecated) and Example Gallery