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
9ef43017
Commit
9ef43017
authored
6 years ago
by
Timo Koch
Browse files
Options
Downloads
Patches
Plain Diff
[common] Remove property GridCreator
parent
5a326c86
No related branches found
No related tags found
1 merge request
!1037
Feature/remove grid singleton
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dumux/common/properties.hh
+0
-1
0 additions, 1 deletion
dumux/common/properties.hh
dumux/common/properties/grid.hh
+3
-8
3 additions, 8 deletions
dumux/common/properties/grid.hh
with
3 additions
and
9 deletions
dumux/common/properties.hh
+
0
−
1
View file @
9ef43017
...
@@ -39,7 +39,6 @@ namespace Properties {
...
@@ -39,7 +39,6 @@ namespace Properties {
///////////////////////////////////////
///////////////////////////////////////
NEW_PROP_TAG
(
Scalar
);
//!< Property to specify the type of scalar values.
NEW_PROP_TAG
(
Scalar
);
//!< Property to specify the type of scalar values.
NEW_PROP_TAG
(
ModelDefaultParameters
);
//!< Property which defines the group that is queried for parameters by default
NEW_PROP_TAG
(
ModelDefaultParameters
);
//!< Property which defines the group that is queried for parameters by default
NEW_PROP_TAG
(
GridCreator
);
//!< Property which provides a GridCreator (manages grids)
NEW_PROP_TAG
(
Grid
);
//!< The DUNE grid type
NEW_PROP_TAG
(
Grid
);
//!< The DUNE grid type
NEW_PROP_TAG
(
PrimaryVariables
);
//!< A vector of primary variables
NEW_PROP_TAG
(
PrimaryVariables
);
//!< A vector of primary variables
NEW_PROP_TAG
(
NumEqVector
);
//!< A vector of size number equations that can be used for Neumann fluxes, sources, residuals, ...
NEW_PROP_TAG
(
NumEqVector
);
//!< A vector of size number equations that can be used for Neumann fluxes, sources, residuals, ...
...
...
This diff is collapsed.
Click to expand it.
dumux/common/properties/grid.hh
+
3
−
8
View file @
9ef43017
...
@@ -28,21 +28,16 @@
...
@@ -28,21 +28,16 @@
#include
<dumux/common/properties.hh>
#include
<dumux/common/properties.hh>
#include
<dumux/common/pointsource.hh>
#include
<dumux/common/pointsource.hh>
#include
<dumux/io/gridcreator.hh>
namespace
Dumux
namespace
Dumux
{
{
namespace
Properties
{
namespace
Properties
{
//! Type tag for numeric models.
//! Type tag for numeric models.
NEW_TYPE_TAG
(
GridProperties
);
NEW_TYPE_TAG
(
GridProperties
);
//! Use the leaf grid view if not defined otherwise
//! Use the leaf grid view if not defined otherwise
SET_TYPE_PROP
(
GridProperties
,
GridView
,
typename
GET_PROP_TYPE
(
TypeTag
,
Grid
)
::
LeafGridView
);
SET_TYPE_PROP
(
GridProperties
,
GridView
,
typename
GET_PROP_TYPE
(
TypeTag
,
Grid
)
::
LeafGridView
);
//! Use the DgfGridCreator by default
SET_TYPE_PROP
(
GridProperties
,
GridCreator
,
GridCreator
<
TypeTag
>
);
//! Use the minimal point source implementation as default
//! Use the minimal point source implementation as default
SET_PROP
(
GridProperties
,
PointSource
)
SET_PROP
(
GridProperties
,
PointSource
)
{
{
...
...
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