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
533c054d
Commit
533c054d
authored
5 years ago
by
Simon Emmert
Committed by
Bernd Flemisch
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
deprecate FVGridGeometry property and use GridGeometry
parent
b2b35072
No related branches found
No related tags found
2 merge requests
!1700
remove fvgridgeometry deprecation warnings
,
!1647
Feature/generalize fvgridgeometry
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dumux/assembly/fvassembler.hh
+1
-1
1 addition, 1 deletion
dumux/assembly/fvassembler.hh
dumux/common/properties.hh
+3
-0
3 additions, 0 deletions
dumux/common/properties.hh
with
4 additions
and
1 deletion
dumux/assembly/fvassembler.hh
+
1
−
1
View file @
533c054d
...
@@ -96,7 +96,7 @@ public:
...
@@ -96,7 +96,7 @@ public:
*/
*/
[[
deprecated
(
"Please use constructor taking the previous solution instead. Will be removed after release 3.2!"
)]]
[[
deprecated
(
"Please use constructor taking the previous solution instead. Will be removed after release 3.2!"
)]]
FVAssembler
(
std
::
shared_ptr
<
const
Problem
>
problem
,
FVAssembler
(
std
::
shared_ptr
<
const
Problem
>
problem
,
std
::
shared_ptr
<
const
FV
GridGeometry
>
fvG
ridGeometry
,
std
::
shared_ptr
<
const
GridGeometry
>
g
ridGeometry
,
std
::
shared_ptr
<
GridVariables
>
gridVariables
,
std
::
shared_ptr
<
GridVariables
>
gridVariables
,
std
::
shared_ptr
<
const
TimeLoop
>
timeLoop
)
std
::
shared_ptr
<
const
TimeLoop
>
timeLoop
)
:
problem_
(
problem
)
:
problem_
(
problem
)
...
...
This diff is collapsed.
Click to expand it.
dumux/common/properties.hh
+
3
−
0
View file @
533c054d
...
@@ -127,6 +127,9 @@ template<class TypeTag, class MyTypeTag>
...
@@ -127,6 +127,9 @@ template<class TypeTag, class MyTypeTag>
struct
GridGeometry
{
using
type
=
GetPropType
<
TypeTag
,
Properties
::
FVGridGeometry
>
;
};
//!< The type of the global finite volume geometry
struct
GridGeometry
{
using
type
=
GetPropType
<
TypeTag
,
Properties
::
FVGridGeometry
>
;
};
//!< The type of the global finite volume geometry
#pragma GCC diagnostic pop
#pragma GCC diagnostic pop
template
<
class
TypeTag
,
class
MyTypeTag
>
struct
GridGeometry
{
using
type
=
GetPropType
<
TypeTag
,
Properties
::
FVGridGeometry
>
;
};
//!< The type of the global finite volume geometry
template
<
class
TypeTag
,
class
MyTypeTag
>
template
<
class
TypeTag
,
class
MyTypeTag
>
struct
EnableFVGridGeometryCache
{
using
type
=
UndefinedProperty
;
};
//!< specifies if geometric data is saved (faster, but more memory consuming)
struct
EnableFVGridGeometryCache
{
using
type
=
UndefinedProperty
;
};
//!< specifies if geometric data is saved (faster, but more memory consuming)
...
...
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