Skip to content

Commit

Permalink
FEM: import FRD, fix import of strain vector
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach authored and wwmayer committed Jun 26, 2017
1 parent f84b0cb commit 3fb0532
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mod/Fem/importCcxFrdResults.py
Expand Up @@ -479,7 +479,7 @@ def readResult(frd_input):
if mode_networkpressure_found:
mode_networkpressure_found = False

if mode_disp and mode_stress and mode_temp:
if mode_disp and mode_stress and mode_strain and mode_temp:
mode_results = {}
mode_results['number'] = eigenmode
mode_results['disp'] = mode_disp
Expand All @@ -498,7 +498,7 @@ def readResult(frd_input):
mode_temp = {}
eigenmode = 0

if mode_disp and mode_stress:
if mode_disp and mode_stress and mode_strain:
mode_results = {}
mode_results['number'] = eigenmode
mode_results['disp'] = mode_disp
Expand Down

0 comments on commit 3fb0532

Please sign in to comment.