Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wenqing
ogs
Commits
669ce443
Commit
669ce443
authored
6 years ago
by
Christoph Lehmann
Browse files
Options
Downloads
Patches
Plain Diff
[PL] Known solutions handled by nonlinear solver
parent
12e25d5f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ProcessLib/UncoupledProcessesTimeLoop.cpp
+0
-33
0 additions, 33 deletions
ProcessLib/UncoupledProcessesTimeLoop.cpp
with
0 additions
and
33 deletions
ProcessLib/UncoupledProcessesTimeLoop.cpp
+
0
−
33
View file @
669ce443
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment