Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties 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;
72 }
73 
75 {
76 
77 }
78 
81  const NekDouble &time)
82 {
83  ASSERTL0(m_cell.get(), "Cell model has not been set by EquationSystem "
84  "class. Use SetCellModel on this filter to achieve this.");
85 
86  m_index = 0;
87  m_outputIndex = 0;
88 
89  v_Update(pFields, 0.0);
90 }
91 
94  const NekDouble &time)
95 {
96  if (m_index++ % m_outputFrequency > 0)
97  {
98  return;
99  }
100 
101  std::stringstream vOutputFilename;
102  vOutputFilename << m_outputFile << "_" << m_outputIndex << ".chk";
103 
104  SpatialDomains::MeshGraphSharedPtr vGraph = pFields[0]->GetGraph();
105 
106  std::vector<LibUtilities::FieldDefinitionsSharedPtr> FieldDef
107  = pFields[0]->GetFieldDefinitions();
108  std::vector<std::vector<NekDouble> > FieldData(FieldDef.size());
109 
110  // copy Data into FieldData and set variable
111  std::string varName;
112  for(int j = 1; j < m_cell->GetNumCellVariables(); ++j)
113  {
114  varName = m_cell->GetCellVarName(j);
115 
116  for(int i = 0; i < FieldDef.size(); ++i)
117  {
118  // Retrieve data from cell model
119  Array<OneD, NekDouble> data = m_cell->GetCellSolutionCoeffs(j);
120 
121  // Could do a search here to find correct variable
122  FieldDef[i]->m_fields.push_back(varName);
123  pFields[0]->AppendFieldData(FieldDef[i], FieldData[i], data);
124  }
125  }
126 
127  // Update time in field info if required
128  LibUtilities::FieldMetaDataMap fieldMetaDataMap;
129  fieldMetaDataMap["Time"] = boost::lexical_cast<std::string>(time);
130 
131  m_fld->Write(vOutputFilename.str(),FieldDef,FieldData,fieldMetaDataMap);
132  m_outputIndex++;
133 }
134 
137  const NekDouble &time)
138 {
139 
140 }
141 
143 {
144  return true;
145 }
146 }
LibUtilities::FieldIOSharedPtr m_fld
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:198
virtual void v_Finalise(const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
boost::shared_ptr< SessionReader > SessionReaderSharedPtr
Definition: MeshPartition.h:51
std::map< std::string, std::string > FieldMetaDataMap
Definition: FieldIO.h:54
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.
static boost::shared_ptr< FieldIO > CreateDefault(const LibUtilities::SessionReaderSharedPtr session)
Returns an object for the default FieldIO method.
Definition: FieldIO.cpp:181
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