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
68321ffd
Commit
68321ffd
authored
7 years ago
by
wenqing
Browse files
Options
Downloads
Patches
Plain Diff
[dt] Added a documentation to EvolutionaryPIDcontroller::limitStepSize
parent
3085bb9e
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
NumLib/TimeStepping/Algorithms/EvolutionaryPIDcontroller.cpp
+7
-5
7 additions, 5 deletions
NumLib/TimeStepping/Algorithms/EvolutionaryPIDcontroller.cpp
NumLib/TimeStepping/Algorithms/EvolutionaryPIDcontroller.h
+12
-1
12 additions, 1 deletion
NumLib/TimeStepping/Algorithms/EvolutionaryPIDcontroller.h
with
19 additions
and
6 deletions
NumLib/TimeStepping/Algorithms/EvolutionaryPIDcontroller.cpp
+
7
−
5
View file @
68321ffd
...
...
@@ -34,8 +34,7 @@ bool EvolutionaryPIDcontroller::next(const double solution_error)
double
h_new
=
(
e_n
>
zero_threshlod
)
?
_ts_current
.
dt
()
*
_tol
/
e_n
:
0.5
*
_ts_current
.
dt
();
h_new
=
limitStepSize
(
h_new
,
_ts_current
.
dt
(),
is_previous_step_accepted
);
h_new
=
limitStepSize
(
h_new
,
is_previous_step_accepted
);
h_new
=
checkSpecificTimeReached
(
h_new
);
_ts_current
=
_ts_prev
;
...
...
@@ -95,7 +94,7 @@ bool EvolutionaryPIDcontroller::next(const double solution_error)
}
}
h_new
=
limitStepSize
(
h_new
,
h_n
,
is_previous_step_accepted
);
h_new
=
limitStepSize
(
h_new
,
is_previous_step_accepted
);
h_new
=
checkSpecificTimeReached
(
h_new
);
_dt_vector
.
push_back
(
h_new
);
...
...
@@ -110,10 +109,13 @@ bool EvolutionaryPIDcontroller::next(const double solution_error)
}
double
EvolutionaryPIDcontroller
::
limitStepSize
(
const
double
h_new
,
const
double
h_n
,
const
bool
previous_step_accepted
)
const
const
double
h_new
,
const
bool
previous_step_accepted
)
const
{
const
double
h_n
=
_ts_current
.
dt
();
// Forced the computed time step size in the given range
// (see the formulas in the documentation of the class)
const
double
h_in_range
=
std
::
max
(
_h_min
,
std
::
min
(
h_new
,
_h_max
));
// Limit the step size change ratio.
double
limited_h
=
std
::
max
(
_rel_h_min
*
h_n
,
std
::
min
(
h_in_range
,
_rel_h_max
*
h_n
));
...
...
This diff is collapsed.
Click to expand it.
NumLib/TimeStepping/Algorithms/EvolutionaryPIDcontroller.h
+
12
−
1
View file @
68321ffd
...
...
@@ -115,7 +115,18 @@ private:
bool
_is_accepted
;
double
limitStepSize
(
const
double
h_new
,
const
double
h_n
,
/**
* Forced the computed time step size in the given range
* (see the formulas in the documentation of the class)
* or use the half of the previous time step size under some other
* constrains.
* @param h_new The computed time step size.
* @param previous_step_accepted An indicator for whether the previous time
* step is rejected.
* @return The new time step after apply
* the constrains.
*/
double
limitStepSize
(
const
double
h_new
,
const
bool
previous_step_accepted
)
const
;
double
checkSpecificTimeReached
(
const
double
h_new
);
...
...
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