Make pointLevel and cellLevel labelIOField for consistency
This commit is contained in:
parent
d5167a6d5d
commit
b2c5b1f561
1 changed files with 5 additions and 4 deletions
|
@ -48,6 +48,7 @@ License
|
||||||
#include "processorPointPatch.H"
|
#include "processorPointPatch.H"
|
||||||
#include "globalIndex.H"
|
#include "globalIndex.H"
|
||||||
#include "meshTools.H"
|
#include "meshTools.H"
|
||||||
|
#include "labelIOField.H"
|
||||||
#include "OFstream.H"
|
#include "OFstream.H"
|
||||||
#include "geomDecomp.H"
|
#include "geomDecomp.H"
|
||||||
#include "Random.H"
|
#include "Random.H"
|
||||||
|
@ -860,7 +861,7 @@ Foam::meshRefinement::meshRefinement
|
||||||
meshCutter_
|
meshCutter_
|
||||||
(
|
(
|
||||||
mesh,
|
mesh,
|
||||||
labelIOList
|
labelIOField
|
||||||
(
|
(
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
|
@ -872,9 +873,9 @@ Foam::meshRefinement::meshRefinement
|
||||||
IOobject::NO_WRITE,
|
IOobject::NO_WRITE,
|
||||||
false
|
false
|
||||||
),
|
),
|
||||||
labelList(mesh_.nCells(), 0)
|
labelField(mesh_.nCells(), 0)
|
||||||
),
|
),
|
||||||
labelIOList
|
labelIOField
|
||||||
(
|
(
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
|
@ -886,7 +887,7 @@ Foam::meshRefinement::meshRefinement
|
||||||
IOobject::NO_WRITE,
|
IOobject::NO_WRITE,
|
||||||
false
|
false
|
||||||
),
|
),
|
||||||
labelList(mesh_.nPoints(), 0)
|
labelField(mesh_.nPoints(), 0)
|
||||||
),
|
),
|
||||||
refinementHistory
|
refinementHistory
|
||||||
(
|
(
|
||||||
|
|
Reference in a new issue