Hi,
First of all thank you all for your contributions to open source FEM .
If you need to get:
- Undeformed node locations
- Nodal Displacements
- Nodal Stress Tensor
- Nodal Strain Tensor
- Nodal Forces
to work with, so you can use these python code to extract them from .frd result file and also export as .csv with the same results file name.
***I’m new around here and also on GitHub. Please don’t hesitate to warn me if I make a mistake regarding opening a topic or any rule. I apologize in advance. ***
Descriptions below
getResultsFromFRD.py
: Extract Results from PrePoMax/CalculiX
What this code does?
This script helps you to extract and export nodal results from PrePoMax or CalculiX.
Usage Instructions is Not Needed Actually But…
- Generate Result File
After running a simulation with PrePoMax or CalculiX, a result file (result.frd
) will be generated. - Set the File Path
Provide the path to the.frd
file in the Python script @line#3 ----> frd_file_path ="C:\\Users\\RESULT_FILE.frd"
- Run the Script
When you execute the Python code, it will automatically compile nodal results into a pandas DataFrame named “df_results” and also export to.frd
file path as.csv
with same name.
Extractable Data
The following data can be extracted from the result file (RESULT.frd
) and processed as a pandas DataFrame:
- Undeformed node coordinates
- Nodal deformations
- Nodal stress tensor components
- Nodal strain tensor components
- Nodal forces