Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
dumux-repositories
dumux
Commits
347a250c
Commit
347a250c
authored
9 years ago
by
Kilian Weishaupt
Browse files
Options
Downloads
Patches
Plain Diff
[fix] Fix some more doxygen parameter descriptions
parent
0af2977f
No related branches found
No related tags found
1 merge request
!72
Cleanup/doxygen
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/porousmediumflow/mpnc/implicit/volumevariables.hh
+7
-0
7 additions, 0 deletions
dumux/porousmediumflow/mpnc/implicit/volumevariables.hh
with
7 additions
and
0 deletions
dumux/porousmediumflow/mpnc/implicit/volumevariables.hh
+
7
−
0
View file @
347a250c
...
@@ -297,6 +297,7 @@ public:
...
@@ -297,6 +297,7 @@ public:
/*!
/*!
* \brief Return concentration \f$\mathrm{[mol/m^3]}\f$ of a component in the phase.
* \brief Return concentration \f$\mathrm{[mol/m^3]}\f$ of a component in the phase.
*
*
* \param phaseIdx The phase index
* \param compIdx The index of the component
* \param compIdx The index of the component
*/
*/
Scalar
molarity
(
const
int
phaseIdx
,
int
compIdx
)
const
Scalar
molarity
(
const
int
phaseIdx
,
int
compIdx
)
const
...
@@ -304,6 +305,8 @@ public:
...
@@ -304,6 +305,8 @@ public:
/*!
/*!
* \brief Return molar density \f$\mathrm{[mol/m^3]}\f$ the of the fluid phase.
* \brief Return molar density \f$\mathrm{[mol/m^3]}\f$ the of the fluid phase.
*
* \param phaseIdx The phase index
*/
*/
Scalar
molarDensity
(
const
int
phaseIdx
)
const
Scalar
molarDensity
(
const
int
phaseIdx
)
const
{
return
fluidState_
.
molarDensity
(
phaseIdx
);}
{
return
fluidState_
.
molarDensity
(
phaseIdx
);}
...
@@ -311,12 +314,16 @@ public:
...
@@ -311,12 +314,16 @@ public:
/*!
/*!
* \brief Return the effective pressure \f$\mathrm{[Pa]}\f$ of a given phase within
* \brief Return the effective pressure \f$\mathrm{[Pa]}\f$ of a given phase within
* the control volume.
* the control volume.
*
* \param phaseIdx The phase index
*/
*/
Scalar
pressure
(
const
int
phaseIdx
)
const
Scalar
pressure
(
const
int
phaseIdx
)
const
{
return
fluidState_
.
pressure
(
phaseIdx
);
}
{
return
fluidState_
.
pressure
(
phaseIdx
);
}
/*!
/*!
* \brief Return density \f$\mathrm{[kg/m^3]}\f$ the of the fluid phase.
* \brief Return density \f$\mathrm{[kg/m^3]}\f$ the of the fluid phase.
*
* \param phaseIdx The phase index
*/
*/
Scalar
density
(
const
int
phaseIdx
)
const
Scalar
density
(
const
int
phaseIdx
)
const
{
return
fluidState_
.
density
(
phaseIdx
);
}
{
return
fluidState_
.
density
(
phaseIdx
);
}
...
...
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