Skip to content

Commit

Permalink
FEM: result reading, debugg prints
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach authored and wwmayer committed Jan 4, 2019
1 parent 8a3fd0c commit 3f443d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Mod/Fem/feminout/importCcxDatResults.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def import_dat(filename, Analysis=None):

# read a calculix result file and extract the data
def readResult(dat_input):
print('Read ccx results from dat file: ' + dat_input)
dat_file = pyopen(dat_input, "r")
eigenvalue_output_section_found = False
mode_reading = False
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Fem/feminout/importCcxFrdResults.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def importFrd(filename, analysis=None, result_name_prefix=None):

# read a calculix result file and extract the nodes, displacement vectors and stress values.
def readResult(frd_input):
print('Read results from: ' + frd_input)
print('Read ccx results from frd file: ' + frd_input)
inout_nodes = []
inout_nodes_file = frd_input.rsplit('.', 1)[0] + '_inout_nodes.txt'
if os.path.exists(inout_nodes_file):
Expand Down

0 comments on commit 3f443d2

Please sign in to comment.