Skip to content
Snippets Groups Projects
Commit 4c699e9e authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

everything should now be ready to implement PViewDataGModel

parent 8f0b7679
No related branches found
No related tags found
No related merge requests found
// $Id: PViewDataGModel.cpp,v 1.17 2008-02-24 19:59:03 geuzaine Exp $ // $Id: PViewDataGModel.cpp,v 1.18 2008-02-24 20:42:10 geuzaine Exp $
// //
// Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// //
...@@ -37,23 +37,25 @@ PViewDataGModel::PViewDataGModel(GModel *model) : _model(model) ...@@ -37,23 +37,25 @@ PViewDataGModel::PViewDataGModel(GModel *model) : _model(model)
_entities.push_back(*it); _entities.push_back(*it);
/* /*
create a vector (one entry per time step) of
class data{ class data{
// nodes components public:
std::vector< std::vector<double > > time_t lastUsed; // to determine which one to free first?
std::string fileName; // we allow to read steps from different files
int fileIndex;
double time;
// vector of data, indexed by dataIndex
std::vector<std::vector<double> > values;
} }
std::vector<data*> nodeData, elementData;
When reading a .msh file: When reading a .msh file:
* get node number in file * get node number in file
* get vertex pointer from _model->_vertexCache * get vertex pointer from _model->getVertexByTag(num)
* if MVertex * if MVertex
has no dataIndex, increment it (need global value stored in GModel) has no dataIndex, increment it (need global value stored in GModel)
it has one, do nothing it has one, do nothing
* fill the dataIndex entry in data{} * fill nodeData[step][dataIndex]
.msh file format: .msh file format:
...@@ -64,8 +66,8 @@ PViewDataGModel::PViewDataGModel(GModel *model) : _model(model) ...@@ -64,8 +66,8 @@ PViewDataGModel::PViewDataGModel(GModel *model) : _model(model)
... ...
$EndNodeData $EndNodeData
number of time steps stored should be an option. should be able The number of time steps stored should be an option. We should be
to dynamically load/overwrite time step when reading new one able to dynamically load/unload time step data on-the-fly.
*/ */
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment