Plate Examples
Example |
Description |
---|---|
Testing the internal force code |
|
Testing the convergence behavior of a mini-problem |
|
Patch test for in-plane loading. |
More: Tutorials (Deprecated) and Example Gallery
How to run a plate example from the distribution
All Plate examples are packaged in examples.plates
.
To run a specific example use, e.g.:
from femedu import *
from femedu.examples.plates.plate01 import *
# load the example
ex = ExamplePlate01()
# print the doc-string for the current example
print(ex)
# run the actual problem
ex.run()