Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
77
Issue boards
Milestones
Wiki
Code
Merge requests
77
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
Merge requests
!1249
Resolve "Remove TypeTag from Problem-specific TypeTag definitions"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Remove TypeTag from Problem-specific TypeTag definitions"
584-remove-typetag-from-problem-specific-typetag-definitions
into
master
Overview
5
Commits
1
Pipelines
0
Changes
151
Merged
Melanie Lipp
requested to merge
584-remove-typetag-from-problem-specific-typetag-definitions
into
master
6 years ago
Overview
5
Commits
1
Pipelines
0
Changes
151
Expand
Closes
#584 (closed)
Edited
6 years ago
by
Melanie Lipp
👍
0
👎
0
Merge request reports
Compare
master
version 5
9885f492
6 years ago
version 4
90d46097
6 years ago
version 3
4d126687
6 years ago
version 2
fa0fa1f6
6 years ago
version 1
c0c94923
6 years ago
master (base)
and
latest version
latest version
8d771acd
1 commit,
6 years ago
version 5
9885f492
2 commits,
6 years ago
version 4
90d46097
2 commits,
6 years ago
version 3
4d126687
2 commits,
6 years ago
version 2
fa0fa1f6
2 commits,
6 years ago
version 1
c0c94923
1 commit,
6 years ago
151 files
+
1016
−
1016
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
151
Search (e.g. *.vue) (Ctrl+P)
dumux/porousmediumflow/sequential/gridadaptproperties.hh
+
6
−
6
Options
@@ -43,7 +43,7 @@ class GridAdapt;
namespace
Properties
{
//! Grid adaption type tag for all sequential models.
NEW_TYPE_TAG
(
GridAdapt
TypeTag
);
NEW_TYPE_TAG
(
GridAdapt
);
//! Defines if the grid is h-adaptive
NEW_PROP_TAG
(
AdaptiveGrid
);
@@ -64,17 +64,17 @@ NEW_PROP_TAG(GridAdaptRefineThreshold);
NEW_PROP_TAG
(
GridAdaptCoarsenThreshold
);
//no adaptive grid
SET_BOOL_PROP
(
GridAdapt
TypeTag
,
AdaptiveGrid
,
false
);
SET_BOOL_PROP
(
GridAdapt
,
AdaptiveGrid
,
false
);
//Set default class for adaptation initialization indicator
SET_TYPE_PROP
(
GridAdapt
TypeTag
,
AdaptionInitializationIndicator
,
GridAdaptInitializationIndicatorDefault
<
TypeTag
>
);
SET_TYPE_PROP
(
GridAdapt
,
AdaptionInitializationIndicator
,
GridAdaptInitializationIndicatorDefault
<
TypeTag
>
);
//Set default class for adaptation
SET_TYPE_PROP
(
GridAdapt
TypeTag
,
GridAdaptModel
,
GridAdapt
<
TypeTag
,
GET_PROP_VALUE
(
TypeTag
,
AdaptiveGrid
)
>
);
SET_TYPE_PROP
(
GridAdapt
,
GridAdaptModel
,
GridAdapt
<
TypeTag
,
GET_PROP_VALUE
(
TypeTag
,
AdaptiveGrid
)
>
);
//standard setting
SET_SCALAR_PROP
(
GridAdapt
TypeTag
,
GridAdaptRefineThreshold
,
0.0
);
SET_SCALAR_PROP
(
GridAdapt
TypeTag
,
GridAdaptCoarsenThreshold
,
0.0
);
SET_SCALAR_PROP
(
GridAdapt
,
GridAdaptRefineThreshold
,
0.0
);
SET_SCALAR_PROP
(
GridAdapt
,
GridAdaptCoarsenThreshold
,
0.0
);
}
// namespace Properties
}
// namespace Dumux
Loading