General-purpose finite element solver - pyfe3d#
The pyfe3d
module is a general-purpose finite element solver for structural
analysis and optimization based on Python and Cython. The main principles
guiding the development of pyfe3d
are: simplicity, efficiency and
compatibility. The aimed level of compatibility allows one to run this solver
in any platform, including the Google Colab environment.
Code repository#
Citing this library#
Saullo G. P. Castro. (2023). General-purpose finite element solver based on Python and Cython (Version 0.3.23). Zenodo. DOI: https://doi.org/10.5281/zenodo.6573489.
Tutorials#
Usage Examples#
Topics#
- Available finite elements
- Quad4 - Quadrilateral element with mixed integration (
pyfe3d.quad4
) Quad4
Quad4Data
Quad4Probe
- Quad4R - Quadrilateral element with reduced integration (
pyfe3d.quad4r
) Quad4R
Quad4RData
Quad4RProbe
- Tria3R - Triangular element with reduced integration (
pyfe3d.tria3r
) Tria3R
Tria3RData
Tria3RProbe
- BeamC - Consistent Timoshenko 3D beam element (
pyfe3d.beamc
) BeamC
BeamCData
BeamCProbe
- BeamLR - Linear Timoshenko 3D beam element with reduced integration (
pyfe3d.beamlr
) BeamLR
BeamLRData
BeamLRProbe
- Spring - 3D spring element with constant stiffnesses (
pyfe3d.spring
) Spring
SpringData
SpringProbe
- Truss - Linear truss 3D element with analytical integration (
pyfe3d.truss
) Truss
TrussData
TrussProbe
- Quad4 - Quadrilateral element with mixed integration (
- Property definitions
- Beam property module (
pyfe3d.beamprop
) BeamProp
- Shell property module (
pyfe3d.shellprop
) GradABDE
Lamina
LaminationParameters
MatLamina
ShellProp
force_balanced_LP()
force_orthotropic_LP()
force_symmetric_LP()
shellprop_from_LaminationParameters()
shellprop_from_lamination_parameters()
- Shell property utils module (
pyfe3d.shellprop_utils
) isotropic_plate()
laminated_plate()
read_laminaprop()
- Beam property module (
License#
Copyright (c) 2021-2024, Saullo G. P. Castro (S.G.P.Castro@tudelft.nl)
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.