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
Dmitri Naumov
ogs
Commits
7503abed
Commit
7503abed
authored
4 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
[PL/TimeLoop] Store the ids of xdot GlobalVector's.
parent
6a569b4f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ProcessLib/TimeLoop.cpp
+18
-11
18 additions, 11 deletions
ProcessLib/TimeLoop.cpp
ProcessLib/TimeLoop.h
+9
-0
9 additions, 0 deletions
ProcessLib/TimeLoop.h
with
27 additions
and
11 deletions
ProcessLib/TimeLoop.cpp
+
18
−
11
View file @
7503abed
...
...
@@ -104,10 +104,14 @@ void postTimestepForAllProcesses(
double
const
t
,
double
const
dt
,
std
::
vector
<
std
::
unique_ptr
<
ProcessData
>>
const
&
per_process_data
,
std
::
vector
<
GlobalVector
*>
const
&
process_solutions
,
std
::
vector
<
GlobalVector
*>
const
&
process_solutions_prev
)
std
::
vector
<
GlobalVector
*>
const
&
process_solutions_prev
,
std
::
vector
<
std
::
size_t
>&
xdot_vector_ids
)
{
std
::
vector
<
GlobalVector
*>
x_dots
;
x_dots
.
reserve
(
per_process_data
.
size
());
xdot_vector_ids
.
resize
(
per_process_data
.
size
());
std
::
size_t
cnt
=
0
;
for
(
auto
&
process_data
:
per_process_data
)
{
auto
const
process_id
=
process_data
->
process_id
;
...
...
@@ -115,7 +119,8 @@ void postTimestepForAllProcesses(
auto
const
&
time_discretization
=
*
process_data
->
time_disc
;
x_dots
.
emplace_back
(
&
NumLib
::
GlobalVectorProvider
::
provider
.
getVector
(
ode_sys
.
getMatrixSpecifications
(
process_id
)));
ode_sys
.
getMatrixSpecifications
(
process_id
),
xdot_vector_ids
[
cnt
]));
cnt
++
;
time_discretization
.
getXdot
(
*
process_solutions
[
process_id
],
*
process_solutions_prev
[
process_id
],
...
...
@@ -274,7 +279,8 @@ void calculateNonEquilibriumInitialResiduum(
NumLib
::
NonlinearSolverStatus
solveOneTimeStepOneProcess
(
std
::
vector
<
GlobalVector
*>&
x
,
std
::
vector
<
GlobalVector
*>
const
&
x_prev
,
std
::
size_t
const
timestep
,
double
const
t
,
double
const
delta_t
,
ProcessData
const
&
process_data
,
Output
&
output_control
)
ProcessData
const
&
process_data
,
Output
&
output_control
,
std
::
size_t
&
xdot_id
)
{
auto
&
process
=
process_data
.
process
;
int
const
process_id
=
process_data
.
process_id
;
...
...
@@ -308,7 +314,7 @@ NumLib::NonlinearSolverStatus solveOneTimeStepOneProcess(
}
GlobalVector
&
x_dot
=
NumLib
::
GlobalVectorProvider
::
provider
.
getVector
(
ode_sys
.
getMatrixSpecifications
(
process_id
));
ode_sys
.
getMatrixSpecifications
(
process_id
)
,
xdot_id
);
time_disc
.
getXdot
(
*
x
[
process_id
],
*
x_prev
[
process_id
],
x_dot
);
...
...
@@ -622,9 +628,9 @@ bool TimeLoop::loop()
// iteration, an exception thrown in assembly, for example.
if
(
nonlinear_solver_status
.
error_norms_met
)
{
postTimestepForAllProcesses
(
t
,
dt
,
_per_process_data
,
_process_solutions
,
_process_solutions_prev
);
postTimestepForAllProcesses
(
t
,
dt
,
_per_process_data
,
_process_solutions
,
_process_solutions_prev
,
_xdot_vector_ids
);
}
INFO
(
"[time] Time step #{:d} took {:g} s."
,
timesteps
,
...
...
@@ -677,13 +683,14 @@ bool TimeLoop::loop()
static
NumLib
::
NonlinearSolverStatus
solveMonolithicProcess
(
const
double
t
,
const
double
dt
,
const
std
::
size_t
timestep_id
,
ProcessData
const
&
process_data
,
std
::
vector
<
GlobalVector
*>&
x
,
std
::
vector
<
GlobalVector
*>
const
&
x_prev
,
Output
&
output
)
std
::
vector
<
GlobalVector
*>
const
&
x_prev
,
Output
&
output
,
std
::
size_t
&
xdot_id
)
{
BaseLib
::
RunTime
time_timestep_process
;
time_timestep_process
.
start
();
auto
const
nonlinear_solver_status
=
solveOneTimeStepOneProcess
(
x
,
x_prev
,
timestep_id
,
t
,
dt
,
process_data
,
output
);
x
,
x_prev
,
timestep_id
,
t
,
dt
,
process_data
,
output
,
xdot_id
);
INFO
(
"[time] Solving process #{:d} took {:g} s in time step #{:d} "
,
process_data
.
process_id
,
time_timestep_process
.
elapsed
(),
timestep_id
);
...
...
@@ -703,7 +710,7 @@ NumLib::NonlinearSolverStatus TimeLoop::solveUncoupledEquationSystems(
auto
const
process_id
=
process_data
->
process_id
;
nonlinear_solver_status
=
solveMonolithicProcess
(
t
,
dt
,
timestep_id
,
*
process_data
,
_process_solutions
,
_process_solutions_prev
,
*
_output
);
_process_solutions_prev
,
*
_output
,
_xdot_id
);
process_data
->
nonlinear_solver_status
=
nonlinear_solver_status
;
if
(
!
nonlinear_solver_status
.
error_norms_met
)
...
...
@@ -776,7 +783,7 @@ TimeLoop::solveCoupledEquationSystemsByStaggeredScheme(
nonlinear_solver_status
=
solveOneTimeStepOneProcess
(
_process_solutions
,
_process_solutions_prev
,
timestep_id
,
t
,
dt
,
*
process_data
,
*
_output
);
*
process_data
,
*
_output
,
_xdot_id
);
process_data
->
nonlinear_solver_status
=
nonlinear_solver_status
;
INFO
(
...
...
This diff is collapsed.
Click to expand it.
ProcessLib/TimeLoop.h
+
9
−
0
View file @
7503abed
...
...
@@ -126,5 +126,14 @@ private:
/// Solutions of the previous coupling iteration for the convergence
/// criteria of the coupling iteration.
std
::
vector
<
GlobalVector
*>
_solutions_of_last_cpl_iteration
;
/// store the ids of the global xdot vectors in the global vector
/// provider for reuse, needed in postTimestepForAllProcesses
/// the length of the vector is the size of _per_process_data
std
::
vector
<
std
::
size_t
>
_xdot_vector_ids
;
// store the id of the global xdot vector in the global vector provider for
// reuse; needed in solveOneTimeStepOneProcess
std
::
size_t
_xdot_id
=
0
;
};
}
// namespace ProcessLib
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