From 6ecbc10d508d58910020c7b75f13371d8e3405af Mon Sep 17 00:00:00 2001 From: Wenqing Wang Date: Tue, 16 Jan 2018 14:30:21 +0100 Subject: [PATCH] [From Jobst] Enabled the variable output polyline along polyline for parallel computing by using PETSc. --- FEM/Output.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/FEM/Output.cpp b/FEM/Output.cpp index 5eb8af1b4..56f9f9749 100644 --- a/FEM/Output.cpp +++ b/FEM/Output.cpp @@ -1525,6 +1525,14 @@ double COutput::NODWritePLYDataTEC(int number) tec_file_name += "_" + convertProcessTypeToString(getProcessType()); if (msh_type_name.size() > 0) tec_file_name += "_" + msh_type_name; + + //JM +#if defined(USE_PETSC) + tec_file_name += "_" + mrank_str; + std::cout << "Tecplot filename: " << tec_file_name << "\n"; +#endif + //JM + if (is_TECPLOT || is_GNUPLOT) tec_file_name += TEC_FILE_EXTENSION; if (is_CSV)