From 0e157aac5b6deee9d5734264cf82c9db60bfc75e Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Fri, 4 Jan 2019 11:05:56 +0100 Subject: [PATCH] FEM: result reading, debugg prints --- src/Mod/Fem/feminout/importCcxDatResults.py | 1 + src/Mod/Fem/feminout/importCcxFrdResults.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/Fem/feminout/importCcxDatResults.py b/src/Mod/Fem/feminout/importCcxDatResults.py index b7343f76df..76cb499c09 100644 --- a/src/Mod/Fem/feminout/importCcxDatResults.py +++ b/src/Mod/Fem/feminout/importCcxDatResults.py @@ -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 diff --git a/src/Mod/Fem/feminout/importCcxFrdResults.py b/src/Mod/Fem/feminout/importCcxFrdResults.py index 4de2e47d9b..96f76398be 100644 --- a/src/Mod/Fem/feminout/importCcxFrdResults.py +++ b/src/Mod/Fem/feminout/importCcxFrdResults.py @@ -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):