43 namespace MultiRegions
56 string GlobalLinSysIterativeFull::className
59 GlobalLinSysIterativeFull::create,
60 "Iterative solver for full matrix system.");
70 GlobalLinSysIterativeFull::GlobalLinSysIterativeFull(
72 const std::weak_ptr<ExpList> &pExp,
73 const std::shared_ptr<AssemblyMap> &pLocToGloMap)
78 "This routine should only be used when using an Iterative "
79 "conjugate gradient matrix solve.");
116 std::shared_ptr<MultiRegions::ExpList> expList =
m_expList.lock();
120 if (std::dynamic_pointer_cast<AssemblyMapCG>(pLocToGloMap))
124 else if (std::dynamic_pointer_cast<AssemblyMapDG>(pLocToGloMap))
133 bool dirForcCalculated = (bool) pDirForcing.size();
134 int nDirDofs = pLocToGloMap->GetNumGlobalDirBndCoeffs();
135 int nGlobDofs = pLocToGloMap->GetNumGlobalCoeffs();
136 int nLocDofs = pLocToGloMap->GetNumLocalCoeffs();
138 int nDirTotal = nDirDofs;
139 expList->GetComm()->GetRowComm()
150 if(dirForcCalculated)
153 pDirForcing, 1, tmp1, 1);
159 expList->GeneralMatrixOp(
m_linSysKey, pLocOutput, tmp);
169 int offset = expList->GetCoeff_Offset(n);
173 for(rBC = r.second;rBC; rBC = rBC->next)
175 vExp->AddRobinTraceContribution(rBC->m_robinID,
176 rBC->m_robinPrimitiveCoeffs,
178 tmploc = tmp + offset);
182 Vmath::Vsub(nLocDofs, pLocInput, 1, tmp, 1, tmp1, 1);
187 pLocToGloMap->Assemble(tmp1,tmp);
191 nGlobDofs, tmp, global, pLocToGloMap, nDirDofs);
193 pLocToGloMap->GlobalToLocal(global,tmp);
196 Vmath::Vadd(nLocDofs, tmp, 1, pLocOutput, 1, pLocOutput, 1);
200 ASSERTL0(
false,
"Need DG solve if using Dir BCs");
205 pLocToGloMap->Assemble(pLocInput,tmp);
207 pLocToGloMap->GlobalToLocal(global,pLocOutput);
219 std::shared_ptr<MultiRegions::ExpList> expList =
m_expList.lock();
223 int ncoeffs = expList->GetNcoeffs();
227 asmMap->GlobalToLocal(pInput, InputLoc);
231 InputLoc, OutputLoc);
242 int offset = expList->GetCoeff_Offset(n);
246 for(rBC = r.second;rBC; rBC = rBC->next)
248 vExp->AddRobinTraceContribution(rBC->m_robinID,
249 rBC->m_robinPrimitiveCoeffs,
251 tmp = OutputLoc + offset);
256 asmMap->Assemble(OutputLoc, pOutput);
#define ASSERTL0(condition, msg)
#define NEKERROR(type, msg)
Assert Level 0 – Fundamental assert which is used whether in FULLDEBUG, DEBUG or OPT compilation mode...
#define ASSERTL1(condition, msg)
Assert Level 1 – Debugging which is used whether in FULLDEBUG or DEBUG compilation mode....
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, std::string pDesc="")
Register a class with the factory.
const std::weak_ptr< ExpList > m_expList
Local Matrix System.
const std::map< int, RobinBCInfoSharedPtr > m_robinBCInfo
Robin boundary info.
void SolveLinearSystem(const int pNumRows, const Array< OneD, const NekDouble > &pInput, Array< OneD, NekDouble > &pOutput, const AssemblyMapSharedPtr &locToGloMap, const int pNumDir=0)
Solve the linear system for given input and output vectors.
const GlobalLinSysKey m_linSysKey
Key associated with this linear system.
virtual ~GlobalLinSysIterativeFull()
virtual void v_Solve(const Array< OneD, const NekDouble > &in, Array< OneD, NekDouble > &out, const AssemblyMapSharedPtr &locToGloMap, const Array< OneD, const NekDouble > &dirForcing=NullNekDouble1DArray)
Solve the linear system for given input and output vectors using a specified local to global map.
std::weak_ptr< AssemblyMap > m_locToGloMap
virtual void v_DoMatrixMultiply(const Array< OneD, NekDouble > &pInput, Array< OneD, NekDouble > &pOutput)
virtual void v_UniqueMap()
Array< OneD, int > m_map
Global to universal unique map.
Describe a linear system.
GlobalSysSolnType GetGlobalSysSolnType() const
Return the associated solution type.
std::shared_ptr< Expansion > ExpansionSharedPtr
std::shared_ptr< RobinBCInfo > RobinBCInfoSharedPtr
GlobalLinSysFactory & GetGlobalLinSysFactory()
std::shared_ptr< AssemblyMap > AssemblyMapSharedPtr
The above copyright notice and this permission notice shall be included.
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.
void Vsub(int n, const T *x, const int incx, const T *y, const int incy, T *z, const int incz)
Subtract vector z = x-y.