Expand description
Finite Element Method (FEM) simulation API for Python interop.
Provides a standalone structural mechanics FEM solver supporting:
- Linear elastic 2-D triangular elements (CST - Constant Strain Triangle)
- Assembly of global stiffness matrix
- Dirichlet boundary conditions (fixed DOFs)
- Nodal load vectors
- Conjugate Gradient iterative solver
- Displacement, stress, and strain output
Structsยง
- Modal
Analysis Result - Result of a modal analysis.
- Modal
Analyzer - Simple power-iteration modal analyzer (extracts the dominant modes of K).
- PyFem
DirichletBC - A Dirichlet (fixed DOF) boundary condition.
- PyFem
Element - A triangular (CST) element defined by three node indices.
- PyFem
Material - Linear elastic isotropic material properties.
- PyFem
Mesh - A 2-D FEM mesh with nodes, elements, materials, and boundary conditions.
- PyFem
Nodal Force - A Neumann (nodal force) boundary condition.
- PyFem
Node - A single node in the FEM mesh.
- PyFem
Solve Result - Result of a FEM linear static solve.
- PyFem
Solver - Linear static FEM solver for 2-D plane-stress problems.