Skip to content
Snippets Groups Projects
Commit 669ce443 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[PL] Known solutions handled by nonlinear solver

parent 12e25d5f
No related branches found
No related tags found
No related merge requests found
...@@ -58,37 +58,6 @@ static void setEquationSystem(NumLib::NonlinearSolverBase& nonlinear_solver, ...@@ -58,37 +58,6 @@ static void setEquationSystem(NumLib::NonlinearSolverBase& nonlinear_solver,
} }
} }
//! Applies known solutions to the solution vector \c x, transparently
//! for equation systems linearized with either the Picard or Newton method.
template <NumLib::NonlinearSolverTag NLTag>
static void applyKnownSolutions(NumLib::EquationSystem const& eq_sys,
GlobalVector& x)
{
using EqSys = NumLib::NonlinearSystem<NLTag>;
assert(dynamic_cast<EqSys const*>(&eq_sys) != nullptr);
auto& eq_sys_ = static_cast<EqSys const&>(eq_sys);
eq_sys_.applyKnownSolutions(x);
}
//! Applies known solutions to the solution vector \c x, transparently
//! for equation systems linearized with either the Picard or Newton method.
static void applyKnownSolutions(NumLib::EquationSystem const& eq_sys,
NumLib::NonlinearSolverTag const nl_tag,
GlobalVector& x)
{
using Tag = NumLib::NonlinearSolverTag;
switch (nl_tag)
{
case Tag::Picard:
applyKnownSolutions<Tag::Picard>(eq_sys, x);
break;
case Tag::Newton:
applyKnownSolutions<Tag::Newton>(eq_sys, x);
break;
}
}
namespace ProcessLib namespace ProcessLib
{ {
template <NumLib::ODESystemTag ODETag> template <NumLib::ODESystemTag ODETag>
...@@ -286,8 +255,6 @@ bool solveOneTimeStepOneProcess(int const process_id, GlobalVector& x, ...@@ -286,8 +255,6 @@ bool solveOneTimeStepOneProcess(int const process_id, GlobalVector& x,
time_disc.nextTimestep(t, delta_t); time_disc.nextTimestep(t, delta_t);
applyKnownSolutions(ode_sys, nl_tag, x);
auto const post_iteration_callback = [&](unsigned iteration, auto const post_iteration_callback = [&](unsigned iteration,
GlobalVector const& x) { GlobalVector const& x) {
output_control.doOutputNonlinearIteration(process, process_id, output_control.doOutputNonlinearIteration(process, process_id,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment