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
c5fc136f
Commit
c5fc136f
authored
7 years ago
by
Timo Koch
Browse files
Options
Downloads
Patches
Plain Diff
[2p1c] Remove unused properties.hh. Fix CMakeLists.txt
parent
d1b8f210
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dumux/porousmediumflow/2p1c/implicit/CMakeLists.txt
+3
-3
3 additions, 3 deletions
dumux/porousmediumflow/2p1c/implicit/CMakeLists.txt
dumux/porousmediumflow/2p1c/implicit/properties.hh
+0
-69
0 additions, 69 deletions
dumux/porousmediumflow/2p1c/implicit/properties.hh
with
3 additions
and
72 deletions
dumux/porousmediumflow/2p1c/implicit/CMakeLists.txt
+
3
−
3
View file @
c5fc136f
#install headers
#install headers
install
(
FILES
install
(
FILES
darcyslaw.hh
indices.hh
indices.hh
localresidual.hh
localresidual.hh
model.hh
model.hh
newtoncontroller.hh
primaryvariableswitch.hh
properties.hh
propertydefaults.hh
volumevariables.hh
volumevariables.hh
vtkoutputfields.hh
DESTINATION
${
CMAKE_INSTALL_INCLUDEDIR
}
/dumux/porousmediumflow/2p1c/implicit
)
DESTINATION
${
CMAKE_INSTALL_INCLUDEDIR
}
/dumux/porousmediumflow/2p1c/implicit
)
This diff is collapsed.
Click to expand it.
dumux/porousmediumflow/2p1c/implicit/properties.hh
deleted
100644 → 0
+
0
−
69
View file @
d1b8f210
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// vi: set et ts=4 sw=4 sts=4:
/*****************************************************************************
* See the file COPYING for full copying permissions. *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*****************************************************************************/
/*!
* \ingroup TwoPOneCModel
*/
/*!
* \file
*
* \brief Defines the properties required for the 2p1cn fully implicit model.
*
*Important note: The 2p1c model requires the use of the non-isothermal extension found in dumux/implicit/nonisothermal
*/
#ifndef DUMUX_2P1C_PROPERTIES_HH
#define DUMUX_2P1C_PROPERTIES_HH
#include
<dumux/implicit/box/properties.hh>
#include
<dumux/implicit/cellcentered/properties.hh>
#include
<dumux/porousmediumflow/nonisothermal/implicit/model.hh>
namespace
Dumux
{
namespace
Properties
{
//////////////////////////////////////////////////////////////////
// Type tags
//////////////////////////////////////////////////////////////////
NEW_TYPE_TAG
(
TwoPOneCNI
,
INHERITS_FROM
(
NonIsothermal
));
NEW_TYPE_TAG
(
BoxTwoPOneCNI
,
INHERITS_FROM
(
BoxModel
,
TwoPOneCNI
));
NEW_TYPE_TAG
(
CCTwoPOneCNI
,
INHERITS_FROM
(
CCModel
,
TwoPOneCNI
));
//////////////////////////////////////////////////////////////////
// Property tags
//////////////////////////////////////////////////////////////////
NEW_PROP_TAG
(
NumPhases
);
//!< Number of fluid phases in the system
NEW_PROP_TAG
(
NumComponents
);
//!< Number of fluid components in the system
NEW_PROP_TAG
(
SpatialParams
);
//!< The type of the spatial parameters
NEW_PROP_TAG
(
FluidSystem
);
//!< Type of the multi-component relations
NEW_PROP_TAG
(
MaterialLaw
);
//!< The material law which ought to be used (extracted from the spatial parameters)
NEW_PROP_TAG
(
ProblemEnableGravity
);
//!< Returns whether gravity is considered in the problem
NEW_PROP_TAG
(
ImplicitMassUpwindWeight
);
//!< The value of the upwind parameter for the mobility
NEW_PROP_TAG
(
ImplicitMobilityUpwindWeight
);
//!< Weight for the upwind mobility in the velocity calculation
NEW_PROP_TAG
(
UseBlockingOfSpuriousFlow
);
//!< Determines whether Blocking ofspurious flow is used
NEW_PROP_TAG
(
BaseFluxVariables
);
//! The base flux variables
NEW_PROP_TAG
(
SpatialParamsForchCoeff
);
//!< Property for the forchheimer coefficient
}
}
#endif
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