Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FilterCheckpointCellModel.cpp
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File FilterCheckpoint.cpp
4 //
5 // For more information, please see: http://www.nektar.info
6 //
7 // The MIT License
8 //
9 // Copyright (c) 2006 Division of Applied Mathematics, Brown University (USA),
10 // Department of Aeronautics, Imperial College London (UK), and Scientific
11 // Computing and Imaging Institute, University of Utah (USA).
12 //
13 // License for the specific language governing rights and limitations under
14 // Permission is hereby granted, free of charge, to any person obtaining a
15 // copy of this software and associated documentation files (the "Software"),
16 // to deal in the Software without restriction, including without limitation
17 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
18 // and/or sell copies of the Software, and to permit persons to whom the
19 // Software is furnished to do so, subject to the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be included
22 // in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30 // DEALINGS IN THE SOFTWARE.
31 //
32 // Description: Outputs solution fields during time-stepping.
33 //
34 ///////////////////////////////////////////////////////////////////////////////
35 
37 
38 namespace Nektar
39 {
42  "CheckpointCellModel", FilterCheckpointCellModel::create);
43 
46  const ParamMap &pParams) :
47  Filter(pSession)
48 {
49  ParamMap::const_iterator it;
50 
51  // OutputFile
52  it = pParams.find("OutputFile");
53  if (it == pParams.end())
54  {
55  m_outputFile = m_session->GetSessionName();
56  }
57  else
58  {
59  ASSERTL0(it->second.length() > 0, "Missing parameter 'OutputFile'.");
60  m_outputFile = it->second;
61  }
62 
63  // OutputFrequency
64  it = pParams.find("OutputFrequency");
65  ASSERTL0(it != pParams.end(), "Missing parameter 'OutputFrequency'.");
66  LibUtilities::Equation equ(m_session, it->second);
67  m_outputFrequency = floor(equ.Evaluate());
68 
69  m_outputIndex = 0;
70  m_index = 0;
73 
74 }
75 
77 {
78 
79 }
80 
83  const NekDouble &time)
84 {
85  ASSERTL0(m_cell.get(), "Cell model has not been set by EquationSystem "
86  "class. Use SetCellModel on this filter to achieve this.");
87 
88  m_index = 0;
89  m_outputIndex = 0;
90 
91  v_Update(pFields, 0.0);
92 }
93 
96  const NekDouble &time)
97 {
98  if (m_index++ % m_outputFrequency > 0)
99  {
100  return;
101  }
102 
103  std::stringstream vOutputFilename;
104  vOutputFilename << m_outputFile << "_" << m_outputIndex << ".chk";
105 
106  SpatialDomains::MeshGraphSharedPtr vGraph = pFields[0]->GetGraph();
107 
108  std::vector<LibUtilities::FieldDefinitionsSharedPtr> FieldDef
109  = pFields[0]->GetFieldDefinitions();
110  std::vector<std::vector<NekDouble> > FieldData(FieldDef.size());
111 
112  // copy Data into FieldData and set variable
113  std::string varName;
114  for(int j = 1; j < m_cell->GetNumCellVariables(); ++j)
115  {
116  varName = m_cell->GetCellVarName(j);
117 
118  for(int i = 0; i < FieldDef.size(); ++i)
119  {
120  // Retrieve data from cell model
121  Array<OneD, NekDouble> data = m_cell->GetCellSolutionCoeffs(j);
122 
123  // Could do a search here to find correct variable
124  FieldDef[i]->m_fields.push_back(varName);
125  pFields[0]->AppendFieldData(FieldDef[i], FieldData[i], data);
126  }
127  }
128 
129  // Update time in field info if required
130  LibUtilities::FieldMetaDataMap fieldMetaDataMap;
131  fieldMetaDataMap["Time"] = boost::lexical_cast<std::string>(time);
132 
133  m_fld->Write(vOutputFilename.str(),FieldDef,FieldData,fieldMetaDataMap);
134  m_outputIndex++;
135 }
136 
139  const NekDouble &time)
140 {
141 
142 }
143 
145 {
146  return true;
147 }
148 }
LibUtilities::FieldIOSharedPtr m_fld
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:161
virtual void v_Finalise(const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
static boost::shared_ptr< DataType > AllocateSharedPtr()
Allocate a shared pointer from the memory pool.
boost::shared_ptr< SessionReader > SessionReaderSharedPtr
Definition: MeshPartition.h:51
std::map< std::string, std::string > FieldMetaDataMap
Definition: FieldIO.h:53
double NekDouble
std::map< std::string, std::string > ParamMap
Definition: Filter.h:67
LibUtilities::SessionReaderSharedPtr m_session
Definition: Filter.h:84
virtual void v_Initialise(const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
static std::string className
Name of the class.
FilterCheckpointCellModel(const LibUtilities::SessionReaderSharedPtr &pSession, const ParamMap &pParams)
FilterFactory & GetFilterFactory()
Definition: Filter.cpp:42
virtual void v_Update(const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
boost::shared_ptr< MeshGraph > MeshGraphSharedPtr
Definition: MeshGraph.h:442
static SolverUtils::FilterSharedPtr create(const LibUtilities::SessionReaderSharedPtr &pSession, const ParamMap &pParams)
Creates an instance of this class.
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, tDescription pDesc="")
Register a class with the factory.
Definition: NekFactory.hpp:215