Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
5da4dbe6
Commit
5da4dbe6
authored
Aug 12, 2011
by
mattijs
Browse files
ENH: conformalVoronoiMesh: replace fixedlist by tetCell
parent
51e33e73
Changes
2
Hide whitespace changes
Inline
Side-by-side
applications/utilities/mesh/generation/cvMesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMesh.H
View file @
5da4dbe6
...
...
@@ -88,11 +88,6 @@ class faceAreaWeightModel;
class
backgroundMeshDecomposition
;
typedef
FixedList
<
label
,
4
>
globalTetIndices
;
typedef
HashTable
<
label
,
globalTetIndices
,
Hash
<
globalTetIndices
>
>
HashTableGlobalTetIndices
;
/*---------------------------------------------------------------------------*\
Class conformalVoronoiMesh Declaration
\*---------------------------------------------------------------------------*/
...
...
applications/utilities/mesh/generation/cvMesh/conformalVoronoiMesh/conformalVoronoiMesh/indexedCell.H
View file @
5da4dbe6
...
...
@@ -46,6 +46,7 @@ Description
#include "Pstream.H"
#include "Swap.H"
#include "InfoProxy.H"
#include "tetCell.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
@@ -262,13 +263,13 @@ public:
// Using the globalIndex object, return a list of four (sorted) global
// Delaunay vertex indices that uniquely identify this tet in parallel
inline
Foam
::
FixedList
<
Foam
::
label
,
4
>
vertexGlobalIndices
inline
Foam
::
tetCell
vertexGlobalIndices
(
const
Foam
::
globalIndex
&
globalDelaunayVertexIndices
)
const
{
// tetVertexGlobalIndices
Foam
::
FixedList
<
Foam
::
label
,
4
>
tVGI
(
-
1
);
tetCell
tVGI
(
-
1
);
for
(
int
i
=
0
;
i
<
4
;
i
++
)
{
...
...
Write
Preview
Markdown
is supported
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