Beam Examples
Example |
Description |
---|---|
Single span beam with point load |
|
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()