Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
MostafaMollaali
dynamic
Commits
d6cfa94f
Commit
d6cfa94f
authored
8 years ago
by
wenqing
Browse files
Options
Downloads
Patches
Plain Diff
[Coupling] Added documentation to an argument of the members of NonlinearSolver
parent
d4886543
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
NumLib/ODESolver/NonlinearSolver.h
+10
-1
10 additions, 1 deletion
NumLib/ODESolver/NonlinearSolver.h
with
10 additions
and
1 deletion
NumLib/ODESolver/NonlinearSolver.h
+
10
−
1
View file @
d6cfa94f
...
...
@@ -42,7 +42,11 @@ public:
* scheme. It is not used for the general solver steps; in those only the
* solve() method is needed.
*
* \param x the state at which the equation system will be assembled.
* \param x the state at which the equation system will be
* assembled.
* \param coupled_term the coupled term including the reference of the
* coupled processes and solutions of the equations of
* the coupled processes.
*/
virtual
void
assemble
(
GlobalVector
const
&
x
,
ProcessLib
::
StaggeredCouplingTerm
const
&
coupled_term
...
...
@@ -51,6 +55,9 @@ public:
/*! Assemble and solve the equation system.
*
* \param x in: the initial guess, out: the solution.
* \param coupled_term the coupled term including the reference of the
* coupled processes and solutions of the equations of
* the coupled processes.
* \param postIterationCallback called after each iteration if set.
*
* \retval true if the equation system could be solved
...
...
@@ -106,6 +113,7 @@ public:
_equation_system
=
&
eq
;
_convergence_criterion
=
&
conv_crit
;
}
void
assemble
(
GlobalVector
const
&
x
,
ProcessLib
::
StaggeredCouplingTerm
const
&
coupled_term
)
const
override
;
...
...
@@ -164,6 +172,7 @@ public:
_equation_system
=
&
eq
;
_convergence_criterion
=
&
conv_crit
;
}
void
assemble
(
GlobalVector
const
&
x
,
ProcessLib
::
StaggeredCouplingTerm
const
&
coupled_term
)
const
override
;
...
...
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