From 06b762c6bd507c38e8648ae19d9a6488524868c9 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Thu, 1 Apr 2010 13:08:38 +0000 Subject: [PATCH] save step, timestep, ent and ele in raw txt export --- Geo/GModelIO_Mesh.cpp | 1 - Post/PViewDataIO.cpp | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Geo/GModelIO_Mesh.cpp b/Geo/GModelIO_Mesh.cpp index c5ac9564ee..2023e9272e 100644 --- a/Geo/GModelIO_Mesh.cpp +++ b/Geo/GModelIO_Mesh.cpp @@ -181,7 +181,6 @@ int GModel::readMSH(const std::string &name) std::map<int, MVertex*> vertexMap; std::vector<MVertex*> vertexVector; - while(1) { while(str[0] != '$'){ diff --git a/Post/PViewDataIO.cpp b/Post/PViewDataIO.cpp index 24fd71fb7b..940cf96b6c 100644 --- a/Post/PViewDataIO.cpp +++ b/Post/PViewDataIO.cpp @@ -83,7 +83,8 @@ bool PViewData::writeTXT(std::string fileName) for(int nod = 0; nod < getNumNodes(step, ent, ele); nod++){ double x, y, z; getNode(step, ent, ele, nod, x, y, z); - fprintf(fp, "%.16g %.16g %.16g ", x, y, z); + fprintf(fp, "%d %.16g %d %d %.16g %.16g %.16g ", step, getTime(step), + ent, ele, x, y, z); for(int comp = 0; comp < getNumComponents(step, ent, ele); comp++){ double val; getValue(step, ent, ele, nod, comp, val); @@ -92,9 +93,7 @@ bool PViewData::writeTXT(std::string fileName) } fprintf(fp, "\n"); } - fprintf(fp, "\n"); } - fprintf(fp, "\n"); } fclose(fp); -- GitLab