Frame Examples
Example |
Description |
---|---|
Axially loaded beam with lateral load |
|
Axially loaded column with lateral load. Rotated frame01 to test invariance. |
|
Single story Building frame |
|
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()