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
3719a622
Commit
3719a622
authored
7 years ago
by
Kilian Weishaupt
Browse files
Options
Downloads
Patches
Plain Diff
[navierstokesni][model] Improve docu
parent
18b4efd4
No related branches found
No related tags found
2 merge requests
!695
Doc/freeflow
,
!617
[WIP] Next
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/freeflow/nonisothermal/model.hh
+15
-11
15 additions, 11 deletions
dumux/freeflow/nonisothermal/model.hh
with
15 additions
and
11 deletions
dumux/freeflow/nonisothermal/model.hh
+
15
−
11
View file @
3719a622
...
@@ -16,13 +16,13 @@
...
@@ -16,13 +16,13 @@
* You should have received a copy of the GNU General Public License *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*****************************************************************************/
*****************************************************************************/
/*!
/*!
* \file
* \file
*
*
\ingroup NavierStokesNIModel
*
\brief Base class for all models which use the one-phase,
*
*
fully implicit
model
.
*
\brief A single-phase, non-isothermal Navier-Stokes
model
* Adaption of the fully implicit scheme to the one-phase flow model.
* TODO: doc me!
*/
*/
#ifndef DUMUX_STAGGERED_NI_MODEL_HH
#ifndef DUMUX_STAGGERED_NI_MODEL_HH
#define DUMUX_STAGGERED_NI_MODEL_HH
#define DUMUX_STAGGERED_NI_MODEL_HH
...
@@ -38,14 +38,14 @@ namespace Dumux
...
@@ -38,14 +38,14 @@ namespace Dumux
namespace
Properties
{
namespace
Properties
{
//! The type tags for the non-isothermal Navier Stokes
problems
//! The type tags for the non-isothermal Navier Stokes
model
NEW_TYPE_TAG
(
NavierStokesNonIsothermal
);
NEW_TYPE_TAG
(
NavierStokesNonIsothermal
);
///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////
// default property values for the non-isothermal single phase model
// default property values for the non-isothermal single phase model
///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////
//! The non-isothermal model has one more balance equation (energy balance) compared to the non-isothermal ones
SET_PROP
(
NavierStokesNonIsothermal
,
NumEq
)
SET_PROP
(
NavierStokesNonIsothermal
,
NumEq
)
{
{
private:
private:
...
@@ -54,12 +54,16 @@ public:
...
@@ -54,12 +54,16 @@ public:
static
constexpr
int
value
=
isothermalNumEq
+
1
;
static
constexpr
int
value
=
isothermalNumEq
+
1
;
};
};
SET_TYPE_PROP
(
NavierStokesNonIsothermal
,
Indices
,
NavierStokesNonIsothermalIndices
<
TypeTag
>
);
//! Enable the energy balance
SET_BOOL_PROP
(
NavierStokesNonIsothermal
,
EnableEnergyBalance
,
true
);
//! The non-isothermal indices
SET_TYPE_PROP
(
NavierStokesNonIsothermal
,
Indices
,
NavierStokesNonIsothermalIndices
<
TypeTag
>
);
SET_BOOL_PROP
(
NavierStokesNonIsothermal
,
EnableEnergyBalance
,
true
);
//! The non-isothermal vtk output fields
SET_TYPE_PROP
(
NavierStokesNonIsothermal
,
VtkOutputFields
,
NavierStokesNonIsothermalVtkOutputFields
<
TypeTag
>
);
SET_TYPE_PROP
(
NavierStokesNonIsothermal
,
VtkOutputFields
,
NavierStokesNonIsothermalVtkOutputFields
<
TypeTag
>
);
//! Use Fourier's Law as default heat conduction type
SET_TYPE_PROP
(
NavierStokesNonIsothermal
,
HeatConductionType
,
FouriersLaw
<
TypeTag
>
);
SET_TYPE_PROP
(
NavierStokesNonIsothermal
,
HeatConductionType
,
FouriersLaw
<
TypeTag
>
);
}
// end namespace Properties
}
// end namespace Properties
...
...
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