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
f411ac68
Commit
f411ac68
authored
Mar 04, 2009
by
mattijs
Browse files
patchnames on uncached meshes
parent
7e735715
Changes
3
Hide whitespace changes
Inline
Side-by-side
applications/utilities/postProcessing/graphics/PV3FoamReader/PV3FoamReader/vtkPV3FoamReader.cxx
View file @
f411ac68
...
...
@@ -319,6 +319,7 @@ int vtkPV3FoamReader::RequestData
<<
output
->
GetNumberOfBlocks
()
<<
" blocks
\n
"
;
}
#ifdef EXPERIMENTAL_TIME_CACHING
bool
needsUpdate
=
false
;
...
...
@@ -373,6 +374,9 @@ int vtkPV3FoamReader::RequestData
#endif
// Do any cleanup on the Foam side
foamData_
->
CleanUp
();
return
1
;
}
...
...
applications/utilities/postProcessing/graphics/PV3FoamReader/vtkPV3Foam/vtkPV3Foam.C
View file @
f411ac68
...
...
@@ -492,11 +492,15 @@ void Foam::vtkPV3Foam::Update
convertLagrangianFields
(
lagrangianOutput
);
reader_
->
UpdateProgress
(
0
.
95
);
meshChanged_
=
fieldsChanged_
=
false
;
}
void
Foam
::
vtkPV3Foam
::
CleanUp
()
{
// reclaim some memory
reduceMemory
();
reader_
->
UpdateProgress
(
1
.
0
);
meshChanged_
=
fieldsChanged_
=
false
;
}
...
...
applications/utilities/postProcessing/graphics/PV3FoamReader/vtkPV3Foam/vtkPV3Foam.H
View file @
f411ac68
...
...
@@ -700,6 +700,9 @@ public:
vtkMultiBlockDataSet
*
lagrangianOutput
);
//- Clean any storage
void
CleanUp
();
//- Allocate and return a list of selected times
// returns the count via the parameter
double
*
findTimes
(
int
&
nTimeSteps
);
...
...
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