Frame Examples

Available Examples

Example

Description

Example: frame01

Axially loaded beam with lateral load

Example: frame02

Axially loaded column with lateral load. Rotated frame01 to test invariance.

Example: frame03

Single story Building frame

Example: frame04

Multi story Building frame

More: Tutorials (Deprecated) and Example Gallery

How to run a frame example from the distribution

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

from femedu import *
from femedu.examples.frames.frame01 import *

# load the example
ex = ExampleFrame01()

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

# run the actual problem
ex.run()