Beam Examples

Available Examples

Example

Description

Example: beam01

Single span beam with point load

Example: beam02

Three-span continuous beam with point loads

More: Tutorials (Deprecated) and Example Gallery

How to run a beam example from the distribution

All Plate examples are packaged in examples.beams. To run a specific example use, e.g.:

from femedu import *
from femedu.examples.beams.beam01 import *

# load the example
ex = ExampleBeam01()

# print the doc-string for the current example
print(ex)

# run the actual problem
ex.run()