FEM: Port elmer transient analysis to multiframe results

This commit is contained in:
Stefan Tröger
2025-03-01 12:13:05 +01:00
committed by Benjamin Nauck
parent 295a3b4983
commit 3403fd0ebd
7 changed files with 168 additions and 67 deletions

View File

@@ -15,7 +15,16 @@
</Documentation>
<Methode Name="read">
<Documentation>
<UserDocu>Read in vtk file</UserDocu>
<UserDocu>
read(filepath)
read([filepaths], [values], unit, frame_type)
Reads in a single vtk file or creates a multiframe result by reading in multiple result files. If multiframe is wanted, 4 argumenhts are needed:
1. List of result files each being one frame,
2. List of values valid for each frame (e.g. [s] if time data),
3. the unit of the value as FreeCAD.Units.Unit,
4. the Description of the frame type
</UserDocu>
</Documentation>
</Methode>
<Methode Name="scale">
@@ -25,7 +34,16 @@
</Methode>
<Methode Name="load">
<Documentation>
<UserDocu>Load a single result object or create a multiframe result by loading multiple result frames. If multistep is wanted, 4 argumenhts are needed: 1. List of result object each being one frame, 2. List of values valid for each frame (e.g. [s] if time data), 3. the unit of the value, 4. the Description of the frames</UserDocu>
<UserDocu>
load(result_object)
load([result_objects], [values], unit, frame_type)
Load a single result object or create a multiframe result by loading multiple result frames. If multiframe is wanted, 4 argumenhts are needed:
1. List of result files each being one frame,
2. List of values valid for each frame (e.g. [s] if time data),
3. the unit of the value as FreeCAD.Units.Unit,
4. the Description of the frame type
</UserDocu>
</Documentation>
</Methode>
<Methode Name="getFilter">