Nektar++
FilterCheckpoint.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 // Permission is hereby granted, free of charge, to any person obtaining a
14 // copy of this software and associated documentation files (the "Software"),
15 // to deal in the Software without restriction, including without limitation
16 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 // and/or sell copies of the Software, and to permit persons to whom the
18 // Software is furnished to do so, subject to the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be included
21 // in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29 // DEALINGS IN THE SOFTWARE.
30 //
31 // Description: Outputs solution fields during time-stepping.
32 //
33 ///////////////////////////////////////////////////////////////////////////////
34 
35 #include <boost/core/ignore_unused.hpp>
36 
38 
39 namespace Nektar
40 {
41 namespace SolverUtils
42 {
43 std::string FilterCheckpoint::className =
45  "Checkpoint", FilterCheckpoint::create);
46 
49  const std::weak_ptr<EquationSystem> &pEquation,
50  const ParamMap &pParams) :
51  Filter(pSession, pEquation)
52 {
53  // OutputFile
54  auto it = pParams.find("OutputFile");
55  if (it == pParams.end())
56  {
57  m_outputFile = m_session->GetSessionName();
58  }
59  else
60  {
61  ASSERTL0(it->second.length() > 0, "Empty parameter 'OutputFile'.");
62  m_outputFile = it->second;
63  }
64 
65  // OutputFrequency
66  it = pParams.find("OutputFrequency");
67  ASSERTL0(it != pParams.end(), "Missing parameter 'OutputFrequency'.");
68  LibUtilities::Equation equ(m_session->GetInterpreter(), it->second);
69  m_outputFrequency = round(equ.Evaluate());
70 
72 }
73 
75 {
76 
77 }
78 
81  const NekDouble &time)
82 {
83  m_index = 0;
84  m_outputIndex = 0;
85  v_Update(pFields, time);
86 }
87 
90  const NekDouble &time)
91 {
92  boost::ignore_unused(time);
93 
94  if (m_index++ % m_outputFrequency > 0)
95  {
96  return;
97  }
98 
99  std::stringstream vOutputFilename;
100  vOutputFilename << m_outputFile << "_" << m_outputIndex << ".chk";
101 
102  std::vector<LibUtilities::FieldDefinitionsSharedPtr> FieldDef
103  = pFields[0]->GetFieldDefinitions();
104  std::vector<std::vector<NekDouble> > FieldData(FieldDef.size());
105 
106  // copy Data into FieldData and set variable
107  for(int j = 0; j < pFields.num_elements(); ++j)
108  {
109  for(int i = 0; i < FieldDef.size(); ++i)
110  {
111  // Could do a search here to find correct variable
112  FieldDef[i]->m_fields.push_back(m_session->GetVariable(j));
113  pFields[0]->AppendFieldData(FieldDef[i],
114  FieldData[i],
115  pFields[j]->UpdateCoeffs());
116  }
117  }
118  m_fld->Write(vOutputFilename.str(),FieldDef,FieldData);
119  m_outputIndex++;
120 }
121 
124  const NekDouble &time)
125 {
126  boost::ignore_unused(pFields, time);
127 }
128 
130 {
131  return true;
132 }
133 }
134 }
static FilterSharedPtr create(const LibUtilities::SessionReaderSharedPtr &pSession, const std::weak_ptr< EquationSystem > &pEquation, const std::map< std::string, std::string > &pParams)
Creates an instance of this class.
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:216
virtual SOLVER_UTILS_EXPORT ~FilterCheckpoint()
double NekDouble
virtual void v_Finalise(const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
LibUtilities::FieldIOSharedPtr m_fld
SOLVER_UTILS_EXPORT FilterCheckpoint(const LibUtilities::SessionReaderSharedPtr &pSession, const std::weak_ptr< EquationSystem > &pEquation, const ParamMap &pParams)
std::map< std::string, std::string > ParamMap
Definition: Filter.h:68
LibUtilities::SessionReaderSharedPtr m_session
Definition: Filter.h:86
static std::shared_ptr< FieldIO > CreateDefault(const LibUtilities::SessionReaderSharedPtr session)
Returns an object for the default FieldIO method.
Definition: FieldIO.cpp:195
virtual void v_Initialise(const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
virtual void v_Update(const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
FilterFactory & GetFilterFactory()
Definition: Filter.cpp:41
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, std::string pDesc="")
Register a class with the factory.
Definition: NekFactory.hpp:199
static std::string className
Name of the class.
std::shared_ptr< SessionReader > SessionReaderSharedPtr