Nektar++
FilterEnergy1D.cpp
Go to the documentation of this file.
1///////////////////////////////////////////////////////////////////////////////
2//
3// File: FilterEnergy1D.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 orthogonal expansion of 1D elements.
32//
33///////////////////////////////////////////////////////////////////////////////
34
37
38using namespace std;
39
40namespace Nektar::SolverUtils
41{
42std::string FilterEnergy1D::className =
45
46/**
47 * @brief Set up filter with output file and frequency parameters.
48 *
49 * @param pSession Current session.
50 * @param pParams Map of parameters defined in XML file.
51 */
54 const std::weak_ptr<EquationSystem> &pEquation, const ParamMap &pParams)
55 : Filter(pSession, pEquation), m_index(0)
56{
57 ASSERTL0(pSession->GetComm()->GetSize() == 1,
58 "The 1D energy filter currently only works in serial.");
59
60 std::string outName;
61
62 // OutputFile
63 auto it = pParams.find("OutputFile");
64 if (it == pParams.end())
65 {
66 outName = m_session->GetSessionName();
67 }
68 else
69 {
70 ASSERTL0(it->second.length() > 0, "Missing parameter 'OutputFile'.");
71 outName = it->second;
72 }
73 outName += ".eny";
74 m_out.open(outName.c_str());
75
76 // OutputFrequency
77 it = pParams.find("OutputFrequency");
78 if (it == pParams.end())
79 {
81 }
82 else
83 {
84 LibUtilities::Equation equ(m_session->GetInterpreter(), it->second);
85 m_outputFrequency = round(equ.Evaluate());
86 }
87}
88
89/**
90 * @brief Destructor.
91 */
93{
94}
95
96/**
97 * @brief Initialize filter.
98 */
101 [[maybe_unused]] const NekDouble &time)
102{
103 ASSERTL0(pFields[0]->GetExp(0)->GetNumBases() == 1,
104 "The Energy 1D filter is only valid in 1D.");
105}
106
107/**
108 * @brief Update filter output with the current timestep's orthogonal
109 * coefficients.
110 */
113 const NekDouble &time)
114{
115 // Only output every m_outputFrequency
116 if ((m_index++) % m_outputFrequency)
117 {
118 return;
119 }
120
121 int nElmt = pFields[0]->GetExpSize();
122
123 // Loop over all elements
124 m_out << "##" << endl;
125 m_out << "## Time = " << time << endl;
126 m_out << "##" << endl;
127
128 for (int i = 0; i < nElmt; ++i)
129 {
130 // Figure out number of modes in this expansion.
131 LocalRegions::ExpansionSharedPtr exp = pFields[0]->GetExp(i);
132 int nModes = exp->GetBasis(0)->GetNumModes();
133
134 // Set uo basis key for orthogonal basis
136 LibUtilities::BasisKey bkeyOrth(btype, nModes,
137 exp->GetBasis(0)->GetPointsKey());
138
139 // Get basis key for existing expansion
140 LibUtilities::BasisKey bkey(exp->GetBasis(0)->GetBasisType(),
141 exp->GetBasis(0)->GetNumModes(),
142 exp->GetBasis(0)->GetPointsKey());
143
144 // Find coeffs for this element in the list of all coefficients
146 pFields[0]->GetCoeffs() + pFields[0]->GetCoeff_Offset(i);
147
148 // Storage for orthogonal coefficients
149 Array<OneD, NekDouble> coeffsOrth(nModes);
150
151 // Project from coeffs -> orthogonal coeffs
152 LibUtilities::InterpCoeff1D(bkey, coeffs, bkeyOrth, coeffsOrth);
153
154 // Write coeffs to file
155 m_out << "# Element " << i << " (ID " << exp->GetGeom()->GetGlobalID()
156 << ")" << endl;
157 for (int j = 0; j < nModes; ++j)
158 {
159 m_out << coeffsOrth[j] << endl;
160 }
161 }
162 m_out << endl;
163}
164
167 &pFields,
168 [[maybe_unused]] const NekDouble &time)
169{
170 m_out.close();
171}
172
174{
175 return true;
176}
177} // namespace Nektar::SolverUtils
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:208
Describes the specification for a Basis.
Definition: Basis.h:45
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, std::string pDesc="")
Register a class with the factory.
Definition: NekFactory.hpp:197
void v_Initialise(const Array< OneD, const MultiRegions::ExpListSharedPtr > &pField, const NekDouble &time) override
Initialize filter.
static std::string className
Name of the class.
SOLVER_UTILS_EXPORT ~FilterEnergy1D() override
Destructor.
SOLVER_UTILS_EXPORT FilterEnergy1D(const LibUtilities::SessionReaderSharedPtr &pSession, const std::weak_ptr< EquationSystem > &pEquation, const ParamMap &pParams)
Set up filter with output file and frequency parameters.
unsigned int m_outputFrequency
Output frequency.
void v_Update(const Array< OneD, const MultiRegions::ExpListSharedPtr > &pField, const NekDouble &time) override
Update filter output with the current timestep's orthogonal coefficients.
unsigned int m_index
Current index counter.
void v_Finalise(const Array< OneD, const MultiRegions::ExpListSharedPtr > &pField, const NekDouble &time) override
std::ofstream m_out
Output file.
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.
LibUtilities::SessionReaderSharedPtr m_session
Definition: Filter.h:83
std::map< std::string, std::string > ParamMap
Definition: Filter.h:65
std::shared_ptr< SessionReader > SessionReaderSharedPtr
void InterpCoeff1D(const BasisKey &fbasis0, const Array< OneD, const NekDouble > &from, const BasisKey &tbasis0, Array< OneD, NekDouble > &to)
Definition: InterpCoeff.cpp:42
@ eOrtho_A
Principle Orthogonal Functions .
Definition: BasisType.h:42
std::shared_ptr< Expansion > ExpansionSharedPtr
Definition: Expansion.h:66
FilterFactory & GetFilterFactory()
Definition: Filter.cpp:39
double NekDouble