Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
b3b404b2
Commit
b3b404b2
authored
Jan 09, 2019
by
mattijs
Browse files
BUG: snappyHexMesh: clear out old data. Fixes
#1165
.
parent
888b70aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8/hexRef8.C
View file @
b3b404b2
...
...
@@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2016-201
8
OpenCFD Ltd.
\\/ M anipulation | Copyright (C) 2016-201
9
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -4212,6 +4212,7 @@ void Foam::hexRef8::storeData
const
labelList
&
cellsToStore
)
{
savedPointLevel_
.
clear
();
savedPointLevel_
.
resize
(
2
*
pointsToStore
.
size
());
forAll
(
pointsToStore
,
i
)
{
...
...
@@ -4219,6 +4220,7 @@ void Foam::hexRef8::storeData
savedPointLevel_
.
insert
(
pointi
,
pointLevel_
[
pointi
]);
}
savedCellLevel_
.
clear
();
savedCellLevel_
.
resize
(
2
*
cellsToStore
.
size
());
forAll
(
cellsToStore
,
i
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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