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
2058ae5a
Commit
2058ae5a
authored
Jun 29, 2016
by
Andrew Heather
Browse files
ENH: TurbulentDFSEM - increment eddy OBJ file index to avoid over-writing
parent
f0375fc3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/finiteVolume/fields/fvPatchFields/derived/turbulentDFSEMInlet/turbulentDFSEMInletFvPatchVectorField.C
View file @
2058ae5a
...
...
@@ -83,7 +83,11 @@ void Foam::turbulentDFSEMInletFvPatchVectorField::writeEddyOBJ() const
}
{
OFstream
os
(
db
().
time
().
path
()
/
"eddies.obj"
);
const
Time
&
time
=
db
().
time
();
OFstream
os
(
time
.
path
()
/
"eddies_"
+
Foam
::
name
(
time
.
timeIndex
())
+
".obj"
);
label
pointOffset
=
0
;
forAll
(
eddies_
,
eddyI
)
...
...
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