Truss Examples

Available Examples

Example

Description

Example: truss01

Basic truss triangle

Example: truss02

Simple statically determinate bridge

Example: truss03

Exploring alternative input format for truss01

Example: truss04

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