Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ForcingBody.cpp
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File: ForcingBody.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: Body forcing
33 //
34 ///////////////////////////////////////////////////////////////////////////////
35 
37 #include <MultiRegions/ExpList.h>
38 
39 namespace Nektar
40 {
41 namespace SolverUtils
42 {
43 
45  RegisterCreatorFunction("Body",
47  "Body Forcing");
49  RegisterCreatorFunction("Field",
51  "Field Forcing");
52 
55  : Forcing(pSession),
56  m_hasTimeFcnScaling(false)
57  {
58  }
59 
62  const unsigned int& pNumForcingFields,
63  const TiXmlElement* pForce)
64  {
65  m_NumVariable = pNumForcingFields;
66  int nq = pFields[0]->GetTotPoints();
67 
68  const TiXmlElement* funcNameElmt = pForce->FirstChildElement("BODYFORCE");
69  if(!funcNameElmt)
70  {
71  funcNameElmt = pForce->FirstChildElement("FIELDFORCE");
72 
73  ASSERTL0(funcNameElmt, "Requires BODYFORCE or FIELDFORCE tag "
74  "specifying function name which prescribes body force.");
75  }
76 
77  string funcName = funcNameElmt->GetText();
78  ASSERTL0(m_session->DefinesFunction(funcName),
79  "Function '" + funcName + "' not defined.");
80 
81  // Time function is optional
82  funcNameElmt = pForce->FirstChildElement("BODYFORCETIMEFCN");
83  if(!funcNameElmt)
84  {
85  funcNameElmt = pForce->FirstChildElement("FIELDFORCETIMEFCN");
86  }
87 
88  // Load time function if specified
89  if(funcNameElmt)
90  {
91  std::string funcNameTime = funcNameElmt->GetText();
92 
93  ASSERTL0(!funcNameTime.empty(),
94  "Expression must be given in BODYFORCETIMEFCN or "
95  "FIELDFORCETIMEFCN.");
96 
97  m_session->SubstituteExpressions(funcNameTime);
99  ::AllocateSharedPtr(m_session,funcNameTime);
100 
101  m_hasTimeFcnScaling = true;
102  }
103 
105 
106  std::string s_FieldStr;
107 
108  for (int i = 0; i < m_NumVariable; ++i)
109  {
110  m_Forcing[i] = Array<OneD, NekDouble> (nq, 0.0);
111  s_FieldStr = m_session->GetVariable(i);
112  ASSERTL0(m_session->DefinesFunction(funcName, s_FieldStr),
113  "Variable '" + s_FieldStr + "' not defined.");
114  EvaluateFunction(pFields, m_session, s_FieldStr,
115  m_Forcing[i], funcName);
116  }
117 
118  bool singleMode, halfMode;
119  m_session->MatchSolverInfo("ModeType","SingleMode",singleMode,false);
120  m_session->MatchSolverInfo("ModeType","HalfMode", halfMode, false);
121  bool homogeneous = pFields[0]->GetExpType() == MultiRegions::e3DH1D;
122 
123  // If singleMode or halfMode, transform the forcing term to be in
124  // physical space in the plane, but Fourier space in the homogeneous
125  // direction
126  if (singleMode || halfMode || homogeneous)
127  {
128  for (int i = 0; i < m_NumVariable; ++i)
129  {
130  pFields[0]->HomogeneousFwdTrans(m_Forcing[i],m_Forcing[i]);
131  }
132  }
133  }
134 
137  const Array<OneD, Array<OneD, NekDouble> > &inarray,
138  Array<OneD, Array<OneD, NekDouble> > &outarray,
139  const NekDouble &time)
140  {
141 
143  {
144  Array<OneD, NekDouble> TimeFcn(1);
145 
146  for (int i = 0; i < m_NumVariable; i++)
147  {
148  EvaluateTimeFunction(time, m_timeFcnEqn, TimeFcn);
149 
150  Vmath::Svtvp(outarray[i].num_elements(), TimeFcn[0],
151  m_Forcing[i], 1,
152  outarray[i], 1,
153  outarray[i], 1);
154  }
155  }
156  else
157  {
158  for (int i = 0; i < m_NumVariable; i++)
159  {
160  Vmath::Vadd(outarray[i].num_elements(), outarray[i], 1,
161  m_Forcing[i], 1, outarray[i], 1);
162  }
163  }
164  }
165 
166 }
167 }
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:119
Array< OneD, Array< OneD, NekDouble > > m_Forcing
Evaluated forcing function.
Definition: Forcing.h:97
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:161
static std::string classNameBody
Name of the class.
Definition: ForcingBody.h:72
static boost::shared_ptr< DataType > AllocateSharedPtr()
Allocate a shared pointer from the memory pool.
static std::string classNameField
Definition: ForcingBody.h:73
void Svtvp(int n, const T alpha, const T *x, const int incx, const T *y, const int incy, T *z, const int incz)
svtvp (scalar times vector plus vector): z = alpha*x + y
Definition: Vmath.cpp:471
ForcingFactory & GetForcingFactory()
Declaration of the forcing factory singleton.
Definition: Forcing.cpp:42
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:149
boost::shared_ptr< SessionReader > SessionReaderSharedPtr
Definition: MeshPartition.h:51
static SOLVER_UTILS_EXPORT ForcingSharedPtr create(const LibUtilities::SessionReaderSharedPtr &pSession, const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, const unsigned int &pNumForcingFields, const TiXmlElement *pForce)
Creates an instance of this class.
Definition: ForcingBody.h:59
ForcingBody(const LibUtilities::SessionReaderSharedPtr &pSession)
Definition: ForcingBody.cpp:53
double NekDouble
LibUtilities::SessionReaderSharedPtr m_session
Session reader.
Definition: Forcing.h:95
int m_NumVariable
Number of variables.
Definition: Forcing.h:99
LibUtilities::EquationSharedPtr m_timeFcnEqn
Definition: ForcingBody.h:92
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)
virtual SOLVER_UTILS_EXPORT void v_InitObject(const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, const unsigned int &pNumForcingFields, const TiXmlElement *pForce)
Definition: ForcingBody.cpp:60
Defines a forcing term to be explicitly applied.
Definition: Forcing.h:70
void Vadd(int n, const T *x, const int incx, const T *y, const int incy, T *z, const int incz)
Add vector z = x+y.
Definition: Vmath.cpp:285