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
6083b1aa
Commit
6083b1aa
authored
6 years ago
by
Timo Koch
Committed by
Kilian Weishaupt
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[io][staggered] Remove deprecated vtk output module
parent
65a624fd
No related branches found
No related tags found
1 merge request
!1113
Free vtkoutputmodule from TypeTag
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/io/staggeredvtkoutputmodule.hh
+1
-28
1 addition, 28 deletions
dumux/io/staggeredvtkoutputmodule.hh
with
1 addition
and
28 deletions
dumux/io/staggeredvtkoutputmodule.hh
+
1
−
28
View file @
6083b1aa
...
...
@@ -37,33 +37,6 @@ namespace Dumux {
template
<
class
Scalar
,
class
GlobalPosition
>
class
PointCloudVtkWriter
;
template
<
class
...
Dummy
>
class
StaggeredVtkOutputModule
;
template
<
class
TypeTag
>
class
DUNE_DEPRECATED_MSG
(
"Use StaggeredVtkOutputModule<GridVariables, SolutionVector> instead!"
)
StaggeredVtkOutputModule
<
TypeTag
>
:
public
StaggeredVtkOutputModule
<
typename
GET_PROP_TYPE
(
TypeTag
,
GridVariables
),
typename
GET_PROP_TYPE
(
TypeTag
,
SolutionVector
)
>
{
using
ParentType
=
StaggeredVtkOutputModule
<
typename
GET_PROP_TYPE
(
TypeTag
,
GridVariables
),
typename
GET_PROP_TYPE
(
TypeTag
,
SolutionVector
)
>
;
public:
using
ParentType
::
ParentType
;
template
<
class
Problem
,
class
FVGridGeometry
,
class
GridVariables
,
class
SolutionVector
>
DUNE_DEPRECATED_MSG
(
"Use StaggeredVtkOutputModule(gridVariables, sol, name) instead!"
)
StaggeredVtkOutputModule
(
const
Problem
&
problem
,
const
FVGridGeometry
&
fvGridGeometry
,
const
GridVariables
&
gridVariables
,
const
SolutionVector
&
sol
,
const
std
::
string
&
name
,
const
std
::
string
&
paramGroup
=
""
,
Dune
::
VTK
::
DataMode
dm
=
Dune
::
VTK
::
conforming
,
bool
verbose
=
true
)
:
ParentType
(
gridVariables
,
sol
,
name
,
paramGroup
,
dm
,
verbose
)
{}
};
/*!
* \ingroup InputOutput
* \brief A VTK output module to simplify writing dumux simulation data to VTK format
...
...
@@ -73,7 +46,7 @@ public:
* \tparam SolutionVector The solution vector
*/
template
<
class
GridVariables
,
class
SolutionVector
>
class
StaggeredVtkOutputModule
<
GridVariables
,
SolutionVector
>
class
StaggeredVtkOutputModule
:
public
VtkOutputModule
<
GridVariables
,
SolutionVector
>
{
using
ParentType
=
VtkOutputModule
<
GridVariables
,
SolutionVector
>
;
...
...
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