Nektar++
CouplingFile.cpp
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // File: CouplingFile.cpp
4 //
5 // For more information, please see: http://www.nektar.info/
6 //
7 // The MIT License
8 //
9 // Copyright (c) 2017 Kilian Lackhove
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining a
12 // copy of this software and associated documentation files (the "Software"),
13 // to deal in the Software without restriction, including without limitation
14 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 // and/or sell copies of the Software, and to permit persons to whom the
16 // Software is furnished to do so, subject to the following conditions:
17 //
18 // The above copyright notice and this permission notice shall be included
19 // in all copies or substantial portions of the Software.
20 //
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27 // DEALINGS IN THE SOFTWARE.
28 //
29 // Description: CWIPI Exchange class
30 //
31 ////////////////////////////////////////////////////////////////////////////////
32 
33 #include "CouplingFile.h"
34 
39 
40 #include <boost/format.hpp>
41 
42 namespace Nektar
43 {
44 namespace SolverUtils
45 {
46 
47 using namespace std;
48 
49 std::string CouplingFile::className =
50  GetCouplingFactory().RegisterCreatorFunction(
51  "File", CouplingFile::create, "File Coupling");
52 
54  : Coupling(field), m_lastSend(-1E6), m_lastReceive(-1E6)
55 {
56  m_config["RECEIVEFUNCTION"] = "CouplingIn";
57  m_config["SENDFILENAME"] = "CouplingOut_%14.8E.pts";
58 }
59 
61 {
62 }
63 
65 {
67 
68  if (m_nRecvVars > 0 && m_recvSteps > 0)
69  {
71  m_evalField->GetSession(),
73  m_config["RECEIVEFUNCTION"],
74  true);
75  }
76 }
77 
79  const int step,
80  const NekDouble time,
81  const Array<OneD, const Array<OneD, NekDouble> > &field,
82  vector<string> &varNames)
83 {
84  if (m_nSendVars < 1 || m_sendSteps < 1)
85  {
86  return;
87  }
88 
89  if (step < m_lastSend + m_sendSteps)
90  {
91  return;
92  }
93  m_lastSend = step;
94 
95  if (m_evalField->GetComm()->GetRank() == 0 &&
96  m_evalField->GetSession()->DefinesCmdLineArgument("verbose"))
97  {
98  cout << "sending fields at i = " << step << ", t = " << time << endl;
99  }
100 
101  vector<int> sendVarsToVars =
103 
104 #if (defined _WIN32 && _MSC_VER < 1900)
105  // We need this to make sure boost::format has always
106  // two digits in the exponents of Scientific notation.
107  unsigned int old_exponent_format;
108  old_exponent_format = _set_output_format(_TWO_DIGIT_EXPONENT);
109  std::string filename =
110  boost::str(boost::format(m_config["SENDFILENAME"]) % time);
111  _set_output_format(old_exponent_format);
112 #else
113  std::string filename =
114  boost::str(boost::format(m_config["SENDFILENAME"]) % time);
115 #endif
116 
118  for (int i = 0; i < 3; ++i)
119  {
120  pts[i] = Array<OneD, NekDouble>(m_evalField->GetTotPoints(), 0.0);
121  }
122  m_evalField->GetCoords(pts[0], pts[1], pts[2]);
123 
124  for (int i = 0; i < m_nSendVars; ++i)
125  {
126  pts[3 + i] = field[sendVarsToVars[i]];
127  }
128 
129  LibUtilities::PtsIO ptsIO(m_evalField->GetSession()->GetComm());
132  3, m_sendFieldNames, pts);
133  // we first write to a temp file and rename this to make sure the
134  // receiver doesnt try to read it before we finished writing
135  string tmpFn = filename + ".tmp";
136  ptsIO.Write(tmpFn, sPts);
137  fs::rename(tmpFn, filename);
138 }
139 
140 void CouplingFile::v_Receive(const int step,
141  const NekDouble time,
143  vector<string> &varNames)
144 {
145  if (m_nRecvVars < 1 || m_recvSteps < 1)
146  {
147  return;
148  }
149 
150  if (step < m_lastReceive + m_recvSteps)
151  {
152  return;
153  }
154  m_lastReceive = step;
155 
156  if (m_evalField->GetComm()->GetRank() == 0 &&
157  m_evalField->GetSession()->DefinesCmdLineArgument("verbose"))
158  {
159  cout << "receiving fields at i = " << step << ", t = " << time << endl;
160  }
161 
162  string filename = m_evalField->GetSession()->GetFunctionFilename(
163  m_config["RECEIVEFUNCTION"], m_recvFieldNames[0]);
164 
165 #if (defined _WIN32 && _MSC_VER < 1900)
166  // We need this to make sure boost::format has always
167  // two digits in the exponents of Scientific notation.
168  unsigned int old_exponent_format;
169  old_exponent_format = _set_output_format(_TWO_DIGIT_EXPONENT);
170  filename = boost::str(boost::format(filename) % time);
171  _set_output_format(old_exponent_format);
172 #else
173  filename = boost::str(boost::format(filename) % time);
174 #endif
175 
176  int exists = 0;
177  while (!exists)
178  {
179  exists = fs::exists(filename);
180  m_evalField->GetComm()->AllReduce(exists, LibUtilities::ReduceMin);
181  }
182 
184  m_inputFunction->Evaluate(m_recvFieldNames, recvFields, time);
185 
186  vector<int> recvVarsToVars =
188  ASSERTL1(m_nRecvVars == recvVarsToVars.size(), "field size mismatch");
189  for (int i = 0; i < recvVarsToVars.size(); ++i)
190  {
191  Vmath::Vcopy(recvFields[i].num_elements(),
192  recvFields[i],
193  1,
194  field[recvVarsToVars[i]],
195  1);
196  }
197 }
198 }
199 }
CouplingConfigMap m_config
Definition: Coupling.h:113
std::shared_ptr< ExpList > ExpListSharedPtr
Shared pointer to an ExpList object.
std::vector< std::string > m_recvFieldNames
Definition: Coupling.h:122
STL namespace.
virtual SOLVER_UTILS_EXPORT void v_Init()
Definition: Coupling.cpp:61
static SOLVER_UTILS_EXPORT CouplingSharedPtr create(MultiRegions::ExpListSharedPtr field)
Creates an instance of this class.
Definition: CouplingFile.h:54
SOLVER_UTILS_EXPORT std::vector< int > GenerateVariableMapping(std::vector< std::string > &vars, std::vector< std::string > &transVars)
Definition: Coupling.cpp:135
std::shared_ptr< PtsField > PtsFieldSharedPtr
Definition: PtsField.h:179
virtual SOLVER_UTILS_EXPORT ~CouplingFile()
std::vector< std::string > m_sendFieldNames
Definition: Coupling.h:118
SOLVER_UTILS_EXPORT CouplingFile(MultiRegions::ExpListSharedPtr field)
SessionFunctionSharedPtr m_inputFunction
Definition: CouplingFile.h:86
virtual SOLVER_UTILS_EXPORT void v_Send(const int step, const NekDouble time, const Array< OneD, const Array< OneD, NekDouble > > &field, std::vector< std::string > &varNames)
virtual SOLVER_UTILS_EXPORT void v_Receive(const int step, const NekDouble time, Array< OneD, Array< OneD, NekDouble > > &field, std::vector< std::string > &varNames)
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.
double NekDouble
virtual SOLVER_UTILS_EXPORT void v_Init()
MultiRegions::ExpListSharedPtr m_evalField
Definition: Coupling.h:115
CouplingFactory & GetCouplingFactory()
Declaration of the Coupling factory singleton.
Definition: Coupling.cpp:44
#define ASSERTL1(condition, msg)
Assert Level 1 – Debugging which is used whether in FULLDEBUG or DEBUG compilation mode...
Definition: ErrorUtil.hpp:250
void Vcopy(int n, const T *x, const int incx, T *y, const int incy)
Definition: Vmath.cpp:1064