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
c0cdd833
Commit
c0cdd833
authored
8 years ago
by
Christoph Grüninger
Browse files
Options
Downloads
Patches
Plain Diff
[doxygen] Improve documentation of air
parent
5e5c3bd7
No related branches found
No related tags found
1 merge request
!143
[doxygen] Improve documentation of air
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/material/components/air.hh
+18
-14
18 additions, 14 deletions
dumux/material/components/air.hh
with
18 additions
and
14 deletions
dumux/material/components/air.hh
+
18
−
14
View file @
c0cdd833
...
@@ -46,13 +46,13 @@ class Air : public Component<Scalar, Air<Scalar> >
...
@@ -46,13 +46,13 @@ class Air : public Component<Scalar, Air<Scalar> >
public:
public:
/*!
/*!
* \brief A human readable name for
the \f$Air\f$
.
* \brief A human readable name for
Air
.
*/
*/
static
const
char
*
name
()
static
const
char
*
name
()
{
return
"Air"
;
}
{
return
"Air"
;
}
/*!
/*!
* \brief The molar mass in \f$\mathrm{[kg/mol]}\f$ of
\f$AIR\f$
.
* \brief The molar mass in \f$\mathrm{[kg/mol]}\f$ of
Air
.
*
*
* Taken from constrelair.hh.
* Taken from constrelair.hh.
*/
*/
...
@@ -60,19 +60,21 @@ public:
...
@@ -60,19 +60,21 @@ public:
{
return
0.02896
;
/* [kg/mol] */
}
{
return
0.02896
;
/* [kg/mol] */
}
/*!
/*!
* \brief Returns the critical temperature \f$\mathrm{[K]}\f$ of
\f$AIR\f$
.
* \brief Returns the critical temperature \f$\mathrm{[K]}\f$ of
Air
.
*/
*/
static
Scalar
criticalTemperature
()
static
Scalar
criticalTemperature
()
{
return
132.531
;
/* [K] */
}
{
return
132.531
;
/* [K] */
}
/*!
/*!
* \brief Returns the critical pressure \f$\mathrm{[Pa]}\f$ of
\f$AIR\f$
.
* \brief Returns the critical pressure \f$\mathrm{[Pa]}\f$ of
Air
.
*/
*/
static
Scalar
criticalPressure
()
static
Scalar
criticalPressure
()
{
return
37.86e5
;
/* [Pa] */
}
{
return
37.86e5
;
/* [Pa] */
}
/*!
/*!
* \brief The density of \f$AIR\f$ at a given pressure and temperature \f$\mathrm{[kg/m^3]}\f$.
* \brief The density of Air at a given pressure and temperature \f$\mathrm{[kg/m^3]}\f$.
*
* Ideal gas is assumed.
*
*
* \param temperature temperature of component in \f$\mathrm{[K]}\f$
* \param temperature temperature of component in \f$\mathrm{[K]}\f$
* \param pressure pressure of phase in \f$\mathrm{[Pa]}\f$
* \param pressure pressure of phase in \f$\mathrm{[Pa]}\f$
...
@@ -84,19 +86,21 @@ public:
...
@@ -84,19 +86,21 @@ public:
}
}
/*!
/*!
* \brief Returns true
iff
the gas phase is assumed to be compressible
* \brief Returns true
,
the gas phase is assumed to be compressible
*/
*/
static
bool
gasIsCompressible
()
static
bool
gasIsCompressible
()
{
return
true
;
}
{
return
true
;
}
/*!
/*!
* \brief Returns true
iff
the gas phase is assumed to be ideal
* \brief Returns true
,
the gas phase is assumed to be ideal
*/
*/
static
bool
gasIsIdeal
()
static
bool
gasIsIdeal
()
{
return
true
;
}
{
return
true
;
}
/*!
/*!
* \brief The pressure of gaseous \f$AIR\f$ at a given density and temperature \f$\mathrm{[Pa]}\f$.
* \brief The pressure of gaseous Air at a given density and temperature \f$\mathrm{[Pa]}\f$.
*
* Ideal gas is assumed.
*
*
* \param temperature temperature of component in \f$\mathrm{[K]}\f$
* \param temperature temperature of component in \f$\mathrm{[K]}\f$
* \param density density of component in \f$\mathrm{[kg/m^3]}\f$
* \param density density of component in \f$\mathrm{[kg/m^3]}\f$
...
@@ -107,18 +111,18 @@ public:
...
@@ -107,18 +111,18 @@ public:
return
IdealGas
::
pressure
(
temperature
,
density
/
molarMass
());
return
IdealGas
::
pressure
(
temperature
,
density
/
molarMass
());
}
}
/*!
/*!
* \brief The dynamic viscosity \f$\mathrm{[Pa*s]}\f$ of \f$AIR\f$ at a given pressure and temperature. Criticial specific
* \brief The dynamic viscosity \f$\mathrm{[Pa*s]}\f$ of Air at a given pressure and temperature.
* volume calculated by \f$V_c = (R*T_c)/p_c\f$.
*
*
* \param temperature temperature of component in \f$\mathrm{[K]}\f$
* Criticial specific volume calculated by \f$V_c = (R*T_c)/p_c\f$.
* \param pressure pressure of component in \f$\mathrm{[Pa]}\f$
*
*
* Reid et al. (1987, pp 396-397, 667) \cite reid1987 <BR>
* Reid et al. (1987, pp 396-397, 667) \cite reid1987 <BR>
* Poling et al. (2001, pp 9.7-9.8) \cite poling2001 <BR>
* Poling et al. (2001, pp 9.7-9.8) \cite poling2001 <BR>
*
*
* Accentric factor taken from: <BR>
* Accentric factor taken from: <BR>
* Adebiyi (2003) \cite adebiyi2003
* Adebiyi (2003) \cite adebiyi2003
*
*
* \param temperature temperature of component in \f$\mathrm{[K]}\f$
* \param pressure pressure of component in \f$\mathrm{[Pa]}\f$
*/
*/
static
Scalar
gasViscosity
(
Scalar
temperature
,
Scalar
pressure
)
static
Scalar
gasViscosity
(
Scalar
temperature
,
Scalar
pressure
)
{
{
...
@@ -174,7 +178,7 @@ public:
...
@@ -174,7 +178,7 @@ public:
}
}
/*!
/*!
* \brief Specific internal energy of
\f$AIR\f$
\f$\mathrm{[J/kg]}\f$.
* \brief Specific internal energy of
Air
\f$\mathrm{[J/kg]}\f$.
*
*
* Definition of enthalpy: \f$h= u + pv = u + p / \rho\f$.
* Definition of enthalpy: \f$h= u + pv = u + p / \rho\f$.
* Rearranging for internal energy yields: \f$u = h - pv\f$.
* Rearranging for internal energy yields: \f$u = h - pv\f$.
...
...
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