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
39e0368d
Commit
39e0368d
authored
May 22, 2016
by
Henry Weller
Browse files
functionObjects: Corrected member function documentation
parent
8b3b04b2
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/postProcessing/functionObjects/field/CourantNo/CourantNo.H
View file @
39e0368d
...
...
@@ -106,7 +106,7 @@ public:
//- Read the CourantNo data
virtual
bool
read
(
const
dictionary
&
);
//-
Execute, currently does nothing
//-
Calculate the Courant number
virtual
bool
execute
(
const
bool
postProcess
=
false
);
};
...
...
src/postProcessing/functionObjects/field/fieldCoordinateSystemTransform/fieldCoordinateSystemTransform.H
View file @
39e0368d
...
...
@@ -148,10 +148,10 @@ public:
//- Read the input data
virtual
bool
read
(
const
dictionary
&
);
//-
Execute, currently does nothing
//-
Calculate the transformed fields
virtual
bool
execute
(
const
bool
postProcess
=
false
);
//- Write
//- Write
the transformed fields
virtual
bool
write
(
const
bool
postProcess
=
false
);
};
...
...
src/postProcessing/functionObjects/field/vorticity/vorticity.H
View file @
39e0368d
...
...
@@ -83,7 +83,7 @@ public:
// Member Functions
//-
Execute, currently does nothing
//-
Calculate the vorticity field
virtual
bool
execute
(
const
bool
postProcess
=
false
);
};
...
...
src/postProcessing/functionObjects/utilities/yPlus/yPlus.C
View file @
39e0368d
...
...
@@ -254,7 +254,7 @@ bool Foam::functionObjects::yPlus::write(const bool postProcess)
const
volScalarField
&
yPlus
=
obr_
.
lookupObject
<
volScalarField
>
(
type
());
if
(
log_
)
Info
<<
" writing field "
<<
yPlus
.
name
()
<<
nl
<<
endl
;
if
(
log_
)
Info
<<
" writing field "
<<
yPlus
.
name
()
<<
endl
;
yPlus
.
write
();
...
...
src/postProcessing/functionObjects/utilities/yPlus/yPlus.H
View file @
39e0368d
...
...
@@ -120,10 +120,10 @@ public:
//- Read the yPlus data
virtual
bool
read
(
const
dictionary
&
);
//-
Execute, currently does nothing
//-
Calculate the yPlus field
virtual
bool
execute
(
const
bool
postProcess
=
false
);
//-
Calcula
te the yPlus
and write
//-
Wri
te the yPlus
field
virtual
bool
write
(
const
bool
postProcess
=
false
);
};
...
...
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