Nektar++
Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Private Attributes | List of all members
Nektar::SolverUtils::CouplingFile Class Reference

#include <CouplingFile.h>

Inheritance diagram for Nektar::SolverUtils::CouplingFile:
[legend]

Public Member Functions

SOLVER_UTILS_EXPORT CouplingFile (MultiRegions::ExpListSharedPtr field)
 
virtual SOLVER_UTILS_EXPORT ~CouplingFile ()
 
- Public Member Functions inherited from Nektar::SolverUtils::Coupling
virtual SOLVER_UTILS_EXPORT ~Coupling ()
 
SOLVER_UTILS_EXPORT void Init ()
 
SOLVER_UTILS_EXPORT const std::map< std::string, std::string > GetConfig ()
 
SOLVER_UTILS_EXPORT std::vector< std::string > GetSendFieldNames ()
 
SOLVER_UTILS_EXPORT std::vector< std::string > GetRecvFieldNames ()
 
SOLVER_UTILS_EXPORT void Finalize ()
 
SOLVER_UTILS_EXPORT void Send (const int step, const NekDouble time, const Array< OneD, const Array< OneD, NekDouble > > &field, std::vector< std::string > &varNames)
 
SOLVER_UTILS_EXPORT void Receive (const int step, const NekDouble time, Array< OneD, Array< OneD, NekDouble > > &field, std::vector< std::string > &varNames)
 

Static Public Member Functions

static SOLVER_UTILS_EXPORT CouplingSharedPtr create (MultiRegions::ExpListSharedPtr field)
 Creates an instance of this class. More...
 

Static Public Attributes

static std::string className
 

Protected Member Functions

virtual SOLVER_UTILS_EXPORT void v_Init () override
 
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) override
 
virtual SOLVER_UTILS_EXPORT void v_Receive (const int step, const NekDouble time, Array< OneD, Array< OneD, NekDouble > > &field, std::vector< std::string > &varNames) override
 
- Protected Member Functions inherited from Nektar::SolverUtils::Coupling
SOLVER_UTILS_EXPORT Coupling (MultiRegions::ExpListSharedPtr field)
 
virtual SOLVER_UTILS_EXPORT void v_Init ()
 
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)=0
 
virtual SOLVER_UTILS_EXPORT void v_Receive (const int step, const NekDouble time, Array< OneD, Array< OneD, NekDouble > > &field, std::vector< std::string > &varNames)=0
 
virtual SOLVER_UTILS_EXPORT void v_Finalize ()
 
SOLVER_UTILS_EXPORT std::vector< int > GenerateVariableMapping (std::vector< std::string > &vars, std::vector< std::string > &transVars)
 

Private Attributes

int m_lastSend
 
int m_lastReceive
 
SessionFunctionSharedPtr m_inputFunction
 

Additional Inherited Members

- Public Types inherited from Nektar::SolverUtils::Coupling
typedef std::map< std::string, std::string > CouplingConfigMap
 
- Protected Attributes inherited from Nektar::SolverUtils::Coupling
std::string m_couplingName
 
CouplingConfigMap m_config
 
MultiRegions::ExpListSharedPtr m_evalField
 
int m_nSendVars
 
std::vector< std::string > m_sendFieldNames
 
int m_sendSteps
 
int m_nRecvVars
 
std::vector< std::string > m_recvFieldNames
 
int m_recvSteps
 

Detailed Description

Definition at line 47 of file CouplingFile.h.

Constructor & Destructor Documentation

◆ CouplingFile()

Nektar::SolverUtils::CouplingFile::CouplingFile ( MultiRegions::ExpListSharedPtr  field)

Definition at line 53 of file CouplingFile.cpp.

54 : Coupling(field), m_lastSend(-1E6), m_lastReceive(-1E6)
55{
56 m_config["RECEIVEFUNCTION"] = "CouplingIn";
57 m_config["SENDFILENAME"] = "CouplingOut_%14.8E.pts";
58}
CouplingConfigMap m_config
Definition: Coupling.h:111
SOLVER_UTILS_EXPORT Coupling(MultiRegions::ExpListSharedPtr field)
Definition: Coupling.cpp:50

References Nektar::SolverUtils::Coupling::m_config.

◆ ~CouplingFile()

Nektar::SolverUtils::CouplingFile::~CouplingFile ( )
virtual

Definition at line 60 of file CouplingFile.cpp.

61{
62}

Member Function Documentation

◆ create()

static SOLVER_UTILS_EXPORT CouplingSharedPtr Nektar::SolverUtils::CouplingFile::create ( MultiRegions::ExpListSharedPtr  field)
inlinestatic

Creates an instance of this class.

Definition at line 54 of file CouplingFile.h.

56 {
59 p->Init();
60 return p;
61 }
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.
SOLVER_UTILS_EXPORT typedef std::shared_ptr< Coupling > CouplingSharedPtr
Definition: Coupling.h:47

References Nektar::MemoryManager< DataType >::AllocateSharedPtr(), Nektar::SolverUtils::CouplingSharedPtr, and CellMLToNektar.cellml_metadata::p.

◆ v_Init()

void Nektar::SolverUtils::CouplingFile::v_Init ( )
overrideprotectedvirtual

◆ v_Receive()

void Nektar::SolverUtils::CouplingFile::v_Receive ( const int  step,
const NekDouble  time,
Array< OneD, Array< OneD, NekDouble > > &  field,
std::vector< std::string > &  varNames 
)
overrideprotectedvirtual

Implements Nektar::SolverUtils::Coupling.

Definition at line 137 of file CouplingFile.cpp.

140{
141 if (m_nRecvVars < 1 || m_recvSteps < 1)
142 {
143 return;
144 }
145
146 if (step < m_lastReceive + m_recvSteps)
147 {
148 return;
149 }
150 m_lastReceive = step;
151
152 if (m_evalField->GetComm()->GetRank() == 0 &&
153 m_evalField->GetSession()->DefinesCmdLineArgument("verbose"))
154 {
155 cout << "receiving fields at i = " << step << ", t = " << time << endl;
156 }
157
158 string filename = m_evalField->GetSession()->GetFunctionFilename(
159 m_config["RECEIVEFUNCTION"], m_recvFieldNames[0]);
160
161#if (defined _WIN32 && _MSC_VER < 1900)
162 // We need this to make sure boost::format has always
163 // two digits in the exponents of Scientific notation.
164 unsigned int old_exponent_format;
165 old_exponent_format = _set_output_format(_TWO_DIGIT_EXPONENT);
166 filename = boost::str(boost::format(filename) % time);
167 _set_output_format(old_exponent_format);
168#else
169 filename = boost::str(boost::format(filename) % time);
170#endif
171
172 int exists = 0;
173 while (!exists)
174 {
175 exists = fs::exists(filename);
176 m_evalField->GetComm()->AllReduce(exists, LibUtilities::ReduceMin);
177 }
178
179 Array<OneD, Array<OneD, NekDouble>> recvFields(m_nRecvVars);
180 m_inputFunction->Evaluate(m_recvFieldNames, recvFields, time);
181
182 vector<int> recvVarsToVars =
184 ASSERTL1(m_nRecvVars == recvVarsToVars.size(), "field size mismatch");
185 for (int i = 0; i < recvVarsToVars.size(); ++i)
186 {
187 Vmath::Vcopy(recvFields[i].size(), recvFields[i], 1,
188 field[recvVarsToVars[i]], 1);
189 }
190}
#define ASSERTL1(condition, msg)
Assert Level 1 – Debugging which is used whether in FULLDEBUG or DEBUG compilation mode....
Definition: ErrorUtil.hpp:249
std::vector< std::string > m_recvFieldNames
Definition: Coupling.h:120
SOLVER_UTILS_EXPORT std::vector< int > GenerateVariableMapping(std::vector< std::string > &vars, std::vector< std::string > &transVars)
Definition: Coupling.cpp:134
void Vcopy(int n, const T *x, const int incx, T *y, const int incy)
Definition: Vmath.cpp:1191

References ASSERTL1, CellMLToNektar.pycml::format, Nektar::SolverUtils::Coupling::GenerateVariableMapping(), Nektar::SolverUtils::Coupling::m_config, Nektar::SolverUtils::Coupling::m_evalField, m_inputFunction, m_lastReceive, Nektar::SolverUtils::Coupling::m_nRecvVars, Nektar::SolverUtils::Coupling::m_recvFieldNames, Nektar::SolverUtils::Coupling::m_recvSteps, Nektar::LibUtilities::ReduceMin, and Vmath::Vcopy().

◆ v_Send()

void Nektar::SolverUtils::CouplingFile::v_Send ( const int  step,
const NekDouble  time,
const Array< OneD, const Array< OneD, NekDouble > > &  field,
std::vector< std::string > &  varNames 
)
overrideprotectedvirtual

Implements Nektar::SolverUtils::Coupling.

Definition at line 76 of file CouplingFile.cpp.

80{
81 if (m_nSendVars < 1 || m_sendSteps < 1)
82 {
83 return;
84 }
85
86 if (step < m_lastSend + m_sendSteps)
87 {
88 return;
89 }
90 m_lastSend = step;
91
92 if (m_evalField->GetComm()->GetRank() == 0 &&
93 m_evalField->GetSession()->DefinesCmdLineArgument("verbose"))
94 {
95 cout << "sending fields at i = " << step << ", t = " << time << endl;
96 }
97
98 vector<int> sendVarsToVars =
100
101#if (defined _WIN32 && _MSC_VER < 1900)
102 // We need this to make sure boost::format has always
103 // two digits in the exponents of Scientific notation.
104 unsigned int old_exponent_format;
105 old_exponent_format = _set_output_format(_TWO_DIGIT_EXPONENT);
106 std::string filename =
107 boost::str(boost::format(m_config["SENDFILENAME"]) % time);
108 _set_output_format(old_exponent_format);
109#else
110 std::string filename =
111 boost::str(boost::format(m_config["SENDFILENAME"]) % time);
112#endif
113
114 Array<OneD, Array<OneD, NekDouble>> pts(m_nSendVars + 3);
115 for (int i = 0; i < 3; ++i)
116 {
117 pts[i] = Array<OneD, NekDouble>(m_evalField->GetTotPoints(), 0.0);
118 }
119 m_evalField->GetCoords(pts[0], pts[1], pts[2]);
120
121 for (int i = 0; i < m_nSendVars; ++i)
122 {
123 pts[3 + i] = field[sendVarsToVars[i]];
124 }
125
126 LibUtilities::PtsIO ptsIO(m_evalField->GetSession()->GetComm());
129 3, m_sendFieldNames, pts);
130 // we first write to a temp file and rename this to make sure the
131 // receiver doesnt try to read it before we finished writing
132 string tmpFn = filename + ".tmp";
133 ptsIO.Write(tmpFn, sPts);
134 fs::rename(tmpFn, filename);
135}
std::vector< std::string > m_sendFieldNames
Definition: Coupling.h:116
std::shared_ptr< PtsField > PtsFieldSharedPtr
Definition: PtsField.h:190

References Nektar::MemoryManager< DataType >::AllocateSharedPtr(), CellMLToNektar.pycml::format, Nektar::SolverUtils::Coupling::GenerateVariableMapping(), Nektar::SolverUtils::Coupling::m_config, Nektar::SolverUtils::Coupling::m_evalField, m_lastSend, Nektar::SolverUtils::Coupling::m_nSendVars, Nektar::SolverUtils::Coupling::m_sendFieldNames, Nektar::SolverUtils::Coupling::m_sendSteps, and Nektar::LibUtilities::PtsIO::Write().

Member Data Documentation

◆ className

std::string Nektar::SolverUtils::CouplingFile::className
static
Initial value:
=
GetCouplingFactory().RegisterCreatorFunction("File", CouplingFile::create,
"File Coupling")
static SOLVER_UTILS_EXPORT CouplingSharedPtr create(MultiRegions::ExpListSharedPtr field)
Creates an instance of this class.
Definition: CouplingFile.h:54
CouplingFactory & GetCouplingFactory()
Declaration of the Coupling factory singleton.
Definition: Coupling.cpp:44

Definition at line 51 of file CouplingFile.h.

◆ m_inputFunction

SessionFunctionSharedPtr Nektar::SolverUtils::CouplingFile::m_inputFunction
private

Definition at line 84 of file CouplingFile.h.

Referenced by v_Init(), and v_Receive().

◆ m_lastReceive

int Nektar::SolverUtils::CouplingFile::m_lastReceive
private

Definition at line 82 of file CouplingFile.h.

Referenced by v_Receive().

◆ m_lastSend

int Nektar::SolverUtils::CouplingFile::m_lastSend
private

Definition at line 81 of file CouplingFile.h.

Referenced by v_Send().