Nektar++
NekNonlinSysIter.cpp
Go to the documentation of this file.
1///////////////////////////////////////////////////////////////////////////////
2//
3// File: NekNonlinSysIter.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: NekNonlinSysIter definition
33//
34///////////////////////////////////////////////////////////////////////////////
35
37
39{
40/**
41 * @class NekNonlinSysIter
42 *
43 * Solves a nonlinear system using iterative methods.
44 */
46{
47 static NekNonlinSysIterFactory instance;
48 return instance;
49}
50
53 const LibUtilities::CommSharedPtr &vRowComm, const int nDimen,
54 const NekSysKey &pKey)
55 : NekSys(pSession, vRowComm, nDimen, pKey)
56{
62
65 "NekLinSysIter '" + m_LinSysIterSolverType +
66 "' is not defined.\n");
67
70 m_linsol->SetFlagWarnings(false);
71}
72
74{
78}
79
81{
83 m_linsol->SetSysOperators(in);
84}
85
87 const int nIteration, const Array<OneD, const NekDouble> &Residual)
88{
89 m_SysResNorm = Vmath::Dot(Residual.size(), Residual, Residual);
91
92 if (nIteration == 0)
93 {
95 }
96
100
102 {
103 m_rhs_magnitude = 1.0;
104 }
105
106 m_converged = resratio < restol * restol ||
107 m_SysResNorm < tol * tol * m_rhs_magnitude;
108}
109
110} // namespace Nektar::LibUtilities
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:208
Provides a generic Factory class.
tBaseSharedPtr CreateInstance(tKey idKey, tParam... args)
Create an instance of the class referred to by idKey.
void ConvergenceCheck(const int nIteration, const Array< OneD, const NekDouble > &Residual)
NekNonlinSysIter(const LibUtilities::SessionReaderSharedPtr &pSession, const LibUtilities::CommSharedPtr &vRowComm, const int nDimen, const NekSysKey &pKey)
void v_SetSysOperators(const NekSysOperators &in) override
LibUtilities::CommSharedPtr m_rowComm
Definition: NekSys.h:291
virtual void v_InitObject()
Definition: NekSys.h:302
virtual void v_SetSysOperators(const NekSysOperators &in)
Definition: NekSys.h:306
NekDouble m_NonlinIterTolRelativeL2
Definition: NekSys.h:221
std::string m_LinSysIterSolverTypeInNonlin
Definition: NekSys.h:222
NekNonlinSysIterFactory & GetNekNonlinSysIterFactory()
std::shared_ptr< SessionReader > SessionReaderSharedPtr
NekLinSysIterFactory & GetNekLinSysIterFactory()
std::shared_ptr< Comm > CommSharedPtr
Pointer to a Communicator object.
Definition: Comm.h:55
static const NekDouble kNekUnsetDouble
double NekDouble
T Dot(int n, const T *w, const T *x)
dot product
Definition: Vmath.hpp:761