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
Development
openfoam
Commits
6ac27012
Commit
6ac27012
authored
Aug 07, 2008
by
Mattijs Janssens
Browse files
added debug printing
parent
731d257f
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/meshes/primitiveMesh/primitiveMeshCellPoints.C
View file @
6ac27012
...
...
@@ -38,6 +38,12 @@ const labelListList& primitiveMesh::cellPoints() const
{
if
(
!
cpPtr_
)
{
if
(
debug
)
{
Pout
<<
"primitiveMesh::cellPoints() : "
<<
"calculating cellPoints"
<<
endl
;
}
// Invert pointCells
cpPtr_
=
new
labelListList
(
nCells
());
invertManyToMany
(
nCells
(),
pointCells
(),
*
cpPtr_
);
...
...
src/OpenFOAM/meshes/primitiveMesh/primitiveMeshEdgeCells.C
View file @
6ac27012
...
...
@@ -38,6 +38,10 @@ const labelListList& primitiveMesh::edgeCells() const
{
if
(
!
ecPtr_
)
{
if
(
debug
)
{
Pout
<<
"primitiveMesh::edgeCells() : calculating edgeCells"
<<
endl
;
}
// Invert cellEdges
ecPtr_
=
new
labelListList
(
nEdges
());
invertManyToMany
(
nEdges
(),
cellEdges
(),
*
ecPtr_
);
...
...
src/OpenFOAM/meshes/primitiveMesh/primitiveMeshEdgeFaces.C
View file @
6ac27012
...
...
@@ -38,6 +38,11 @@ const labelListList& primitiveMesh::edgeFaces() const
{
if
(
!
efPtr_
)
{
if
(
debug
)
{
Pout
<<
"primitiveMesh::edgeFaces() : calculating edgeFaces"
<<
endl
;
}
// Invert faceEdges
efPtr_
=
new
labelListList
(
nEdges
());
invertManyToMany
(
nEdges
(),
faceEdges
(),
*
efPtr_
);
...
...
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