Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
6c249461
Commit
6c249461
authored
Dec 20, 2017
by
Kilian Weishaupt
Browse files
[freeflow] Remove unused properties
parent
c1669a47
Changes
3
Hide whitespace changes
Inline
Side-by-side
dumux/freeflow/navierstokes/model.hh
View file @
6c249461
...
...
@@ -69,8 +69,6 @@
//////////////////////////////////////////////////////////////////
NEW_PROP_TAG
(
EnableInertiaTerms
);
//!< Returns whether to include inertia terms in the momentum balance eq or not (Stokes / Navier-Stokes)
NEW_PROP_TAG
(
EnableComponentTransport
);
//!< Returns whether to consider component transport or not
NEW_PROP_TAG
(
EnableEnergyTransport
);
//!< Returns whether to consider energy transport or not
NEW_PROP_TAG
(
NormalizePressure
);
//!< Returns whether to normalize the pressure term in the momentum balance or not
///////////////////////////////////////////////////////////////////////////
...
...
@@ -131,10 +129,6 @@
SET_BOOL_PROP
(
NavierStokes
,
EnableInertiaTerms
,
true
);
SET_BOOL_PROP
(
NavierStokes
,
EnableEnergyTransport
,
false
);
SET_BOOL_PROP
(
NavierStokes
,
EnableComponentTransport
,
false
);
//! Normalize the pressure term in the momentum balance or not
SET_BOOL_PROP
(
NavierStokes
,
NormalizePressure
,
true
);
...
...
dumux/freeflow/navierstokesnc/model.hh
View file @
6c249461
...
...
@@ -137,8 +137,6 @@
using
type
=
CompositionalFluidState
<
Scalar
,
FluidSystem
>
;
};
SET_BOOL_PROP
(
NavierStokesNC
,
EnableComponentTransport
,
true
);
//! The one-phase model has no molecular diffusion
SET_BOOL_PROP
(
NavierStokesNC
,
EnableMolecularDiffusion
,
true
);
...
...
dumux/freeflow/nonisothermal/model.hh
View file @
6c249461
...
...
@@ -41,9 +41,6 @@ namespace Properties {
//! The type tags for the non-isothermal Navier Stokes problems
NEW_TYPE_TAG
(
NavierStokesNonIsothermal
);
NEW_PROP_TAG
(
IsothermalNumEqCellCenter
);
NEW_PROP_TAG
(
IsothermalNumEqFace
);
///////////////////////////////////////////////////////////////////////////
// default property values for the non-isothermal single phase model
///////////////////////////////////////////////////////////////////////////
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment