Skip to content

Commit

Permalink
Merge pull request #89 from wenqing/fixing
Browse files Browse the repository at this point in the history
[From Jobst] Enabled the variable output polyline along polyline for parallel computing by using PETSc
  • Loading branch information
wenqing authored Jan 16, 2018
2 parents 3ebcbbc + 6ecbc10 commit 8244d33
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions FEM/Output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8244d33

Please sign in to comment.