Search found 1285 matches

by HarryvL
Thu Mar 28, 2024 4:29 pm
Forum: FEM
Topic: fcVM workbench
Replies: 92
Views: 6818

Re: fcVM workbench

This you can do in Paraview. Like this: . Wyk_average_CSR.png . Extrapolation of CSR to the nodes has increased the maximum CSR from 3 (at the integration point) to 5.5 (at the node). Averaging takes this down to 1.159 (integral=11.59 divided by width=10). Applying the same averaging factor (1.159/...
by HarryvL
Thu Mar 28, 2024 1:25 pm
Forum: FEM
Topic: fcVM workbench
Replies: 92
Views: 6818

Re: fcVM workbench

I ran your model, but with an error of 0.01 to make it a bit faster. The results are in the output file: . Wyk_out.png . and the (very high) CSR at a load factor of 1.18 agrees with the plot: . Wyk_Load_CSR.png . The output file also shows the location of the critical integration point (-39, 41, 160...
by HarryvL
Wed Mar 27, 2024 5:46 pm
Forum: FEM
Topic: fcVM workbench
Replies: 92
Views: 6818

Re: fcVM workbench

Same model but finer mesh? Can you share the mesh settings? According to the fcVM panel the maximum CSR in the integration points is 4.329. This is also what the load-CSR plot shows. The ResultMechanical panel shows a maximum nodal value of 8.07. This is higher because of the extrapolation from inte...
by HarryvL
Wed Mar 27, 2024 2:35 pm
Forum: FEM
Topic: fcVM workbench
Replies: 92
Views: 6818

Re: fcVM workbench

I updated the ResultMechanical object to display Critical Strain Ratio [-] instead of Temperature [K] when the fcVM workbench is installed.
by HarryvL
Wed Mar 27, 2024 2:29 pm
Forum: Python scripting and macros
Topic: SOLVED - imported modules not in sys.modules
Replies: 1
Views: 104

SOLVED - imported modules not in sys.modules

I see what the issue is. The sys.modules entry is femtaskpanels.task_result_mechanical and not task_result_mechanical. So this works as expected:

Code: Select all

femtaskpanels.task_result_mechanical in sys.modules.keys() #True
by HarryvL
Wed Mar 27, 2024 10:06 am
Forum: Python scripting and macros
Topic: SOLVED - imported modules not in sys.modules
Replies: 1
Views: 104

SOLVED - imported modules not in sys.modules

Hi, I am reviewing the behaviour of the FEM ResultMechanical object and am puzzled by the absence of the task_result_mechanical module in sys.modules after import in view_result_mechanical.py. I inserted the following code in view_result_mechanical.py import FreeCADGui from PySide import QtGui from ...
by HarryvL
Mon Mar 25, 2024 9:50 am
Forum: FEM
Topic: fcVM workbench
Replies: 92
Views: 6818

Re: fcVM workbench

I have updated fcVM to export nodal stress and strain values for display in the ResultMechnical object. Because stresses and strains are calculated in the integration points , this involves an extrapolation step. I previously averaged the extrapolated values of all connected elements to a particular...
by HarryvL
Tue Mar 19, 2024 1:02 pm
Forum: FEM
Topic: fcVM workbench
Replies: 92
Views: 6818

Re: fcVM workbench

I can show that for von Mises plasticity (where the volumetric plastic strain increment equals zero), the two definitions are equivalent: . PEEQ comparison.png . please keep in mind that eps_xy =eps_yx, etc. when comparing this last result with the CCX / fcVM / Abaqus formula. However, I still don't...
by HarryvL
Tue Mar 19, 2024 10:14 am
Forum: FEM
Topic: fcVM workbench
Replies: 92
Views: 6818

Re: fcVM workbench

... and Abaqus uses the same definition (http://130.149.89.49:2080/v2016/books/u ... bmetalplas):

.
Screenshot from 2024-03-19 11-11-25.png
Screenshot from 2024-03-19 11-11-25.png (54.23 KiB) Viewed 522 times
by HarryvL
Tue Mar 19, 2024 8:51 am
Forum: FEM
Topic: fcVM workbench
Replies: 92
Views: 6818

Re: fcVM workbench

In CCX and fcVM, an increment of PEEQ is calculated as follows: . PEEQ.png . with summation over ij. This is short-hand for: eps_ij eps_ij = eps_x^2+eps_y^2+eps_z^2+eps_xy^2+eps_yz^2+eps_zx^2+eps_yx^2+eps_zy^2+eps_xz^2). For the tensile test (where at failure eps_x=eps, eps_y=eps_z=-0.5eps and the s...