Plate Examples

Available Examples

Example

Description

Example: plate01

Testing the internal force code

Example: plate02

Testing the convergence behavior of a mini-problem

Example: plate03

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()