Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
b85b7c63
Commit
b85b7c63
authored
Apr 27, 2018
by
Timo Koch
Browse files
Merge branch 'fix/more-stuff-in-vtk-outputmodule' into 'master'
[io][vtk] fix vector data output for box See merge request
!945
parents
9d434a94
a13cae75
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/io/vtkoutputmodule.hh
View file @
b85b7c63
...
...
@@ -344,8 +344,8 @@ private:
for
(
std
::
size_t
i
=
0
;
i
<
volVarScalarDataInfo_
.
size
();
++
i
)
sequenceWriter_
.
addVertexData
(
volVarScalarData
[
i
],
volVarScalarDataInfo_
[
i
].
name
);
for
(
std
::
size_t
i
=
0
;
i
<
volVarVectorDataInfo_
.
size
();
++
i
)
sequenceWriter_
.
addVertexData
(
Field
(
gridGeom_
.
gridView
(),
gridGeom_
.
element
Mapper
(),
volVarVectorData
[
i
],
volVarVectorDataInfo_
[
i
].
name
,
/*numComp*/
dimWorld
,
/*codim*/
0
).
get
()
);
sequenceWriter_
.
addVertexData
(
Field
(
gridGeom_
.
gridView
(),
gridGeom_
.
vertex
Mapper
(),
volVarVectorData
[
i
],
volVarVectorDataInfo_
[
i
].
name
,
/*numComp*/
dimWorld
,
/*codim*/
dim
).
get
()
);
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment