Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Forcing.cpp
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File: Forcing.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: Abstract base class for forcing terms.
33 //
34 ///////////////////////////////////////////////////////////////////////////////
35 
37 
38 using namespace std;
39 
40 namespace Nektar
41 {
42  namespace SolverUtils
43  {
45  {
46  typedef Loki::SingletonHolder<ForcingFactory,
47  Loki::CreateUsingNew,
48  Loki::NoDestroy,
49  Loki::SingleThreaded> Type;
50  return Type::Instance();
51  }
52 
53  Forcing::Forcing(const LibUtilities::SessionReaderSharedPtr& pSession)
54  : m_session(pSession)
55  {
56 
57  }
58 
61  const unsigned int& pNumForcingFields,
62  const TiXmlElement* pForce)
63  {
64  v_InitObject(pFields, pNumForcingFields, pForce);
65  }
66 
67 
68  /**
69  * @param fields Expansion lists corresponding to input arrays
70  * @param inarray u^n from previous timestep
71  * @param outarray output array to append forcing to
72  */
75  const Array<OneD, Array<OneD, NekDouble> >& inarray,
76  Array<OneD, Array<OneD, NekDouble> >& outarray,
77  const NekDouble& time)
78  {
79  v_Apply(fields, inarray, outarray, time);
80  }
81 
82 
83  /**
84  *
85  */
86  vector<ForcingSharedPtr> Forcing::Load(
89  const unsigned int& pNumForcingFields)
90  {
91  vector<ForcingSharedPtr> vForceList;
92 
93  if (!pSession->DefinesElement("Nektar/Forcing"))
94  {
95  return vForceList;
96  }
97 
98  TiXmlElement* vForcing = pSession->GetElement("Nektar/Forcing");
99  if (vForcing)
100  {
101  unsigned int vNumForcingFields = pNumForcingFields;
102  if (!pNumForcingFields)
103  {
104  vNumForcingFields = pFields.num_elements();
105  }
106 
107  TiXmlElement* vForce = vForcing->FirstChildElement("FORCE");
108  while (vForce)
109  {
110  string vType = vForce->Attribute("TYPE");
111 
112  vForceList.push_back(GetForcingFactory().CreateInstance(
113  vType, pSession, pFields,
114  vNumForcingFields, vForce));
115  vForce = vForce->NextSiblingElement("FORCE");
116  }
117  }
118  return vForceList;
119  }
120 
123  std::string pFieldName,
124  Array<OneD, NekDouble>& pArray,
125  const std::string& pFunctionName,
126  NekDouble pTime)
127  {
128  ASSERTL0(pSession->DefinesFunction(pFunctionName),
129  "Function '" + pFunctionName + "' does not exist.");
130 
132  pSession->GetFunction(pFunctionName, pFieldName);
133 
134  EvaluateTimeFunction(pTime,ffunc,pArray);
135  }
136 
137 
139  const NekDouble pTime,
141  Array<OneD, NekDouble>& pArray)
142  {
143  // dummy array of zero pts.
144  Array<OneD, NekDouble> x0(pArray.num_elements(),0.0);
145 
146  pEqn->Evaluate(x0, x0, x0, pTime, pArray);
147  }
148 
149 
150 
154  std::string pFieldName,
155  Array<OneD, NekDouble>& pArray,
156  const std::string& pFunctionName,
157  NekDouble pTime)
158  {
159  ASSERTL0(pSession->DefinesFunction(pFunctionName),
160  "Function '" + pFunctionName + "' does not exist.");
161 
162  unsigned int nq = pFields[0]->GetNpoints();
163  if (pArray.num_elements() != nq)
164  {
165  pArray = Array<OneD, NekDouble> (nq);
166  }
167 
169  vType = pSession->GetFunctionType(pFunctionName, pFieldName);
171  {
172  Array<OneD, NekDouble> x0(nq);
173  Array<OneD, NekDouble> x1(nq);
174  Array<OneD, NekDouble> x2(nq);
175 
176  pFields[0]->GetCoords(x0, x1, x2);
178  pSession->GetFunction(pFunctionName, pFieldName);
179 
180  ffunc->Evaluate(x0, x1, x2, pTime, pArray);
181  }
182  else if (vType == LibUtilities::eFunctionTypeFile)
183  {
184  std::string filename = pSession->GetFunctionFilename(
185  pFunctionName,
186  pFieldName);
187 
188  std::vector<LibUtilities::FieldDefinitionsSharedPtr> FieldDef;
189  std::vector<std::vector<NekDouble> > FieldData;
190  Array<OneD, NekDouble> vCoeffs(pFields[0]->GetNcoeffs());
191  Vmath::Zero(vCoeffs.num_elements(), vCoeffs, 1);
192 
195  fld->Import(filename, FieldDef, FieldData);
196 
197  int idx = -1;
198  for (int i = 0; i < FieldDef.size(); ++i)
199  {
200  for (int j = 0; j < FieldDef[i]->m_fields.size(); ++j)
201  {
202  if (FieldDef[i]->m_fields[j] == pFieldName)
203  {
204  idx = j;
205  }
206  }
207 
208  if (idx >= 0)
209  {
210  pFields[0]->ExtractDataToCoeffs(
211  FieldDef[i],
212  FieldData[i],
213  FieldDef[i]->m_fields[idx],
214  vCoeffs);
215  }
216  else
217  {
218  cout << "Field " + pFieldName + " not found." << endl;
219  }
220  }
221  pFields[0]->BwdTrans_IterPerExp(vCoeffs, pArray);
222  }
223  }
224 
225  }
226 }
SOLVER_UTILS_EXPORT void EvaluateTimeFunction(LibUtilities::SessionReaderSharedPtr pSession, std::string pFieldName, Array< OneD, NekDouble > &pArray, const std::string &pFunctionName, NekDouble pTime=NekDouble(0))
Definition: Forcing.cpp:121
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:188
SOLVER_UTILS_EXPORT void InitObject(const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, const unsigned int &pNumForcingFields, const TiXmlElement *pForce)
Initialise the forcing object.
Definition: Forcing.cpp:59
static boost::shared_ptr< DataType > AllocateSharedPtr()
Allocate a shared pointer from the memory pool.
SOLVER_UTILS_EXPORT void Apply(const Array< OneD, MultiRegions::ExpListSharedPtr > &fields, const Array< OneD, Array< OneD, NekDouble > > &inarray, Array< OneD, Array< OneD, NekDouble > > &outarray, const NekDouble &time)
Apply the forcing.
Definition: Forcing.cpp:73
ForcingFactory & GetForcingFactory()
Declaration of the forcing factory singleton.
Definition: Forcing.cpp:44
STL namespace.
SOLVER_UTILS_EXPORT void EvaluateFunction(Array< OneD, MultiRegions::ExpListSharedPtr > pFields, LibUtilities::SessionReaderSharedPtr pSession, std::string pFieldName, Array< OneD, NekDouble > &pArray, const std::string &pFunctionName, NekDouble pTime=NekDouble(0))
Definition: Forcing.cpp:151
static SOLVER_UTILS_EXPORT std::vector< ForcingSharedPtr > Load(const LibUtilities::SessionReaderSharedPtr &pSession, const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, const unsigned int &pNumForcingFields=0)
Definition: Forcing.cpp:86
boost::shared_ptr< SessionReader > SessionReaderSharedPtr
Definition: MeshPartition.h:51
LibUtilities::NekFactory< std::string, Forcing, const LibUtilities::SessionReaderSharedPtr &, const Array< OneD, MultiRegions::ExpListSharedPtr > &, const unsigned int &, const TiXmlElement * > ForcingFactory
Declaration of the forcing factory.
Definition: Forcing.h:61
boost::shared_ptr< FieldIO > FieldIOSharedPtr
Definition: FieldIO.h:225
double NekDouble
LibUtilities::SessionReaderSharedPtr m_session
Session reader.
Definition: Forcing.h:95
boost::shared_ptr< Equation > EquationSharedPtr
virtual SOLVER_UTILS_EXPORT void v_InitObject(const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, const unsigned int &pNumForcingFields, const TiXmlElement *pForce)=0
void Zero(int n, T *x, const int incx)
Zero vector.
Definition: Vmath.cpp:359
Provides a generic Factory class.
Definition: NekFactory.hpp:116
virtual SOLVER_UTILS_EXPORT void v_Apply(const Array< OneD, MultiRegions::ExpListSharedPtr > &fields, const Array< OneD, Array< OneD, NekDouble > > &inarray, Array< OneD, Array< OneD, NekDouble > > &outarray, const NekDouble &time)=0