OGS  v6.4.0
NumLib::TimeDiscretizedODESystem< ODESystemTag::FirstOrderImplicitQuasilinear, NonlinearSolverTag::Picard > Class Referencefinal

Detailed Description

Time discretized first order implicit quasi-linear ODE; to be solved using the Picard fixpoint iteration method for resolving nonlinearities.

See also
ODESystemTag::FirstOrderImplicitQuasilinear

Definition at line 161 of file TimeDiscretizedODESystem.h.

#include <TimeDiscretizedODESystem.h>

Inheritance diagram for NumLib::TimeDiscretizedODESystem< ODESystemTag::FirstOrderImplicitQuasilinear, NonlinearSolverTag::Picard >:
Collaboration diagram for NumLib::TimeDiscretizedODESystem< ODESystemTag::FirstOrderImplicitQuasilinear, NonlinearSolverTag::Picard >:

Public Types

using ODE = ODESystem< ODETag, NonlinearSolverTag::Picard >
 The type of ODE. More...
 
using MatTrans = MatrixTranslator< ODETag >
 
using TimeDisc = TimeDiscretization
 A shortcut for a general time discretization scheme. More...
 

Public Member Functions

 TimeDiscretizedODESystem (const int process_id, ODE &ode, TimeDisc &time_discretization)
 Constructs a new instance. More...
 
 ~TimeDiscretizedODESystem () override
 
void assemble (std::vector< GlobalVector * > const &x_new_timestep, std::vector< GlobalVector * > const &x_prev, int const process_id) override
 
void getA (GlobalMatrix &A) const override
 
void getRhs (GlobalVector const &x_prev, GlobalVector &rhs) const override
 
void computeKnownSolutions (GlobalVector const &x, int const process_id) override
 
void applyKnownSolutions (GlobalVector &x) const override
 
void applyKnownSolutionsPicard (GlobalMatrix &A, GlobalVector &rhs, GlobalVector &x) const override
 
bool isLinear () const override
 
void preIteration (const unsigned iter, GlobalVector const &x) override
 
IterationResult postIteration (GlobalVector const &x) override
 
TimeDiscgetTimeDiscretization () override
 Exposes the used time discretization scheme. More...
 
MathLib::MatrixSpecifications getMatrixSpecifications (const int process_id) const override
 

Static Public Attributes

static const ODESystemTag ODETag
 A tag indicating the type of ODE. More...
 

Private Types

using Index = MathLib::MatrixVectorTraits< GlobalMatrix >::Index
 

Private Attributes

ODE_ode
 ode the ODE being wrapped More...
 
TimeDisc_time_disc
 the time discretization to being used More...
 
std::unique_ptr< MatTrans_mat_trans
 the object used to compute the matrix/vector for the nonlinear solver More...
 
std::vector< NumLib::IndexValueVector< Index > > const * _known_solutions
 stores precomputed values for known solutions More...
 
GlobalMatrix_M
 Matrix \( M \). More...
 
GlobalMatrix_K
 Matrix \( K \). More...
 
GlobalVector_b
 Matrix \( b \). More...
 
std::size_t _M_id = 0u
 ID of the _M matrix. More...
 
std::size_t _K_id = 0u
 ID of the _K matrix. More...
 
std::size_t _b_id = 0u
 ID of the _b vector. More...
 
std::vector< std::size_t > _xdot_ids
 

Member Typedef Documentation

◆ Index

◆ MatTrans

The auxiliary class that computes the matrix/vector used by the nonlinear solver.

Definition at line 174 of file TimeDiscretizedODESystem.h.

◆ ODE

◆ TimeDisc

Constructor & Destructor Documentation

◆ TimeDiscretizedODESystem()

Constructs a new instance.

Definition at line 188 of file TimeDiscretizedODESystem.cpp.

191  : _ode(ode),
192  _time_disc(time_discretization),
193  _mat_trans(createMatrixTranslator<ODETag>(time_discretization))
194 {
196  ode.getMatrixSpecifications(process_id), _M_id);
198  ode.getMatrixSpecifications(process_id), _K_id);
200  ode.getMatrixSpecifications(process_id), _b_id);
201 }
virtual GlobalMatrix & getMatrix()=0
Get an uninitialized matrix.
std::unique_ptr< MatTrans > _mat_trans
the object used to compute the matrix/vector for the nonlinear solver
virtual GlobalVector & getVector(std::size_t &id)=0
Get an uninitialized vector with the given id.
static NUMLIB_EXPORT MatrixProvider & provider
static NUMLIB_EXPORT VectorProvider & provider

References NumLib::MatrixProvider::getMatrix(), NumLib::VectorProvider::getVector(), NumLib::GlobalVectorProvider::provider, and NumLib::GlobalMatrixProvider::provider.

◆ ~TimeDiscretizedODESystem()

Member Function Documentation

◆ applyKnownSolutions()

Definition at line 260 of file TimeDiscretizedODESystem.cpp.

261 {
263 }
std::vector< NumLib::IndexValueVector< Index > > const * _known_solutions
stores precomputed values for known solutions
void applyKnownSolutions(std::vector< Solutions > const *const known_solutions, Vector &x)
Applies known solutions to the solution vector x.

References detail::applyKnownSolutions().

◆ applyKnownSolutionsPicard()

Definition at line 266 of file TimeDiscretizedODESystem.cpp.

270 {
271  if (!_known_solutions)
272  {
273  return;
274  }
275 
277  std::vector<IndexType> ids;
278  std::vector<double> values;
279  for (auto const& bc : *_known_solutions)
280  {
281  std::copy(bc.ids.cbegin(), bc.ids.cend(), std::back_inserter(ids));
282  std::copy(bc.values.cbegin(), bc.values.cend(),
283  std::back_inserter(values));
284  }
285  MathLib::applyKnownSolution(A, rhs, x, ids, values);
286 }
void copy(PETScVector const &x, PETScVector &y)
Definition: LinAlg.cpp:36
void applyKnownSolution(EigenMatrix &A, EigenVector &b, EigenVector &, const std::vector< EigenMatrix::IndexType > &vec_knownX_id, const std::vector< double > &vec_knownX_x, double)
Definition: EigenTools.cpp:19

References MathLib::applyKnownSolution(), and MathLib::LinAlg::copy().

◆ assemble()

void NumLib::TimeDiscretizedODESystem< ODESystemTag::FirstOrderImplicitQuasilinear, NonlinearSolverTag::Picard >::assemble ( std::vector< GlobalVector * > const &  x_new_timestep,
std::vector< GlobalVector * > const &  x_prev,
int const  process_id 
)
override

Definition at line 213 of file TimeDiscretizedODESystem.cpp.

217 {
218  namespace LinAlg = MathLib::LinAlg;
219 
220  auto const t = _time_disc.getCurrentTime();
221  auto const dt = _time_disc.getCurrentTimeIncrement();
222  auto const& x_curr = *x_new_timestep[process_id];
223  std::vector<GlobalVector*> xdot(x_new_timestep.size());
224  _xdot_ids.resize(x_new_timestep.size());
225 
226  for (std::size_t i = 0; i < xdot.size(); i++)
227  {
229  _time_disc.getXdot(*x_new_timestep[i], *x_prev[i], *xdot[i]);
230  }
231 
232  _M->setZero();
233  _K->setZero();
234  _b->setZero();
235 
236  _ode.preAssemble(t, dt, x_curr);
237  _ode.assemble(t, dt, x_new_timestep, xdot, process_id, *_M, *_K, *_b);
238 
242 
243  for (auto& v : xdot)
244  {
246  }
247 }
void setZero()
reset data entries to zero.
Definition: EigenMatrix.h:66
void getXdot(GlobalVector const &x_at_new_timestep, GlobalVector const &x_old, GlobalVector &xdot) const
virtual double getCurrentTimeIncrement() const =0
virtual double getCurrentTime() const =0
void finalizeAssembly(PETScMatrix &A)
Definition: LinAlg.cpp:161

References MathLib::LinAlg::finalizeAssembly(), NumLib::VectorProvider::getVector(), NumLib::GlobalVectorProvider::provider, NumLib::VectorProvider::releaseVector(), and MathLib::EigenVector::setZero().

◆ computeKnownSolutions()

void NumLib::TimeDiscretizedODESystem< ODESystemTag::FirstOrderImplicitQuasilinear, NonlinearSolverTag::Picard >::computeKnownSolutions ( GlobalVector const &  x,
int const  process_id 
)
override

Definition at line 251 of file TimeDiscretizedODESystem.cpp.

253 {
255  _ode.getKnownSolutions(_time_disc.getCurrentTime(), x, process_id);
256 }

◆ getA()

Definition at line 188 of file TimeDiscretizedODESystem.h.

189  {
190  _mat_trans->computeA(*_M, *_K, A);
191  }

◆ getMatrixSpecifications()

Definition at line 219 of file TimeDiscretizedODESystem.h.

221  {
222  return _ode.getMatrixSpecifications(process_id);
223  }

◆ getRhs()

Definition at line 193 of file TimeDiscretizedODESystem.h.

194  {
195  _mat_trans->computeRhs(*_M, *_K, *_b, x_prev, rhs);
196  }

◆ getTimeDiscretization()

Exposes the used time discretization scheme.

Implements NumLib::TimeDiscretizedODESystemBase< NonlinearSolverTag::Picard >.

Definition at line 218 of file TimeDiscretizedODESystem.h.

218 { return _time_disc; }

◆ isLinear()

Definition at line 206 of file TimeDiscretizedODESystem.h.

206 { return _ode.isLinear(); }

◆ postIteration()

Definition at line 213 of file TimeDiscretizedODESystem.h.

214  {
215  return _ode.postIteration(x);
216  }

◆ preIteration()

void NumLib::TimeDiscretizedODESystem< ODESystemTag::FirstOrderImplicitQuasilinear, NonlinearSolverTag::Picard >::preIteration ( const unsigned  iter,
GlobalVector const &  x 
)
inlineoverride

Definition at line 208 of file TimeDiscretizedODESystem.h.

209  {
210  _ode.preIteration(iter, x);
211  }

Member Data Documentation

◆ _b

◆ _b_id

ID of the _b vector.

Definition at line 242 of file TimeDiscretizedODESystem.h.

◆ _K

◆ _K_id

ID of the _K matrix.

Definition at line 241 of file TimeDiscretizedODESystem.h.

◆ _known_solutions

Initial value:
=
nullptr

stores precomputed values for known solutions

Definition at line 233 of file TimeDiscretizedODESystem.h.

◆ _M

◆ _M_id

ID of the _M matrix.

Definition at line 240 of file TimeDiscretizedODESystem.h.

◆ _mat_trans

the object used to compute the matrix/vector for the nonlinear solver

Definition at line 230 of file TimeDiscretizedODESystem.h.

◆ _ode

◆ _time_disc

the time discretization to being used

Definition at line 227 of file TimeDiscretizedODESystem.h.

◆ _xdot_ids

Definition at line 243 of file TimeDiscretizedODESystem.h.

◆ ODETag


The documentation for this class was generated from the following files: