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
f281f77e
Commit
f281f77e
authored
Nov 28, 2016
by
Henry Weller
Browse files
Updated member type comments
Resolves bug-report
http://bugs.openfoam.org/view.php?id=2356
parent
414b128f
Changes
83
Hide whitespace changes
Inline
Side-by-side
src/ODE/ODESolvers/ODESolver/ODESolver.C
View file @
f281f77e
...
...
@@ -34,7 +34,7 @@ namespace Foam
}
// * * * * * * * * * * * *
* Private
Member Functions * * * * * * * * * * * //
// * * * * * * * * * * * *
Protected
Member Functions * * * * * * * * * * * //
Foam
::
scalar
Foam
::
ODESolver
::
normalizeError
(
...
...
src/OpenFOAM/containers/Dictionaries/DictionaryBase/DictionaryBase.C
View file @
f281f77e
...
...
@@ -25,7 +25,7 @@ License
#include
"DictionaryBase.H"
// * * * * * * * * * * * *
* Private
Member Functions * * * * * * * * * * * //
// * * * * * * * * * * * *
Protected
Member Functions * * * * * * * * * * * //
template
<
class
IDLListType
,
class
T
>
void
Foam
::
DictionaryBase
<
IDLListType
,
T
>::
addEntries
()
...
...
src/OpenFOAM/db/IOstreams/Pstreams/UPstream.H
View file @
f281f77e
...
...
@@ -241,6 +241,7 @@ private:
const
label
index
);
protected:
// Protected data
...
...
src/OpenFOAM/db/Time/Time.C
View file @
f281f77e
...
...
@@ -78,7 +78,7 @@ const int Foam::Time::maxPrecision_(3 - log10(SMALL));
Foam
::
word
Foam
::
Time
::
controlDictName
(
"controlDict"
);
// * * * * * * * * * * * *
* Private
Member Functions * * * * * * * * * * * //
// * * * * * * * * * * * *
Protected
Member Functions * * * * * * * * * * * //
void
Foam
::
Time
::
adjustDeltaT
()
{
...
...
src/OpenFOAM/db/Time/Time.H
View file @
f281f77e
...
...
@@ -59,6 +59,7 @@ SourceFiles
namespace
Foam
{
// Forward declaration of classes
class
argList
;
...
...
@@ -86,6 +87,7 @@ class Time
//- The controlDict
IOdictionary
controlDict_
;
public:
//- Write control options
...
...
src/OpenFOAM/db/dynamicLibrary/codedBase/codedBase.C
View file @
f281f77e
...
...
@@ -278,6 +278,8 @@ void Foam::codedBase::createLibrary
}
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
void
Foam
::
codedBase
::
updateLibrary
(
const
word
&
name
...
...
@@ -350,7 +352,4 @@ Foam::codedBase::~codedBase()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
// ************************************************************************* //
src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/GAMGAgglomeration/GAMGAgglomeration.C
View file @
f281f77e
...
...
@@ -43,7 +43,7 @@ namespace Foam
}
// * * * * * * * * * * * *
* Private
Member Functions * * * * * * * * * * * //
// * * * * * * * * * * * *
Protected
Member Functions * * * * * * * * * * * //
void
Foam
::
GAMGAgglomeration
::
compactLevels
(
const
label
nCreatedLevels
)
{
...
...
src/OpenFOAM/meshes/polyMesh/mapPolyMesh/mapDistribute/mapDistributeBase.C
View file @
f281f77e
...
...
@@ -33,11 +33,11 @@ License
namespace
Foam
{
defineTypeNameAndDebug
(
mapDistributeBase
,
0
);
defineTypeNameAndDebug
(
mapDistributeBase
,
0
);
}
// * * * * * * * * * * * *
* Private
Member Functions * * * * * * * * * * * //
// * * * * * * * * * * * *
Protected
Member Functions * * * * * * * * * * * //
Foam
::
List
<
Foam
::
labelPair
>
Foam
::
mapDistributeBase
::
schedule
(
...
...
src/OpenFOAM/meshes/polyMesh/polyPatches/basic/coupled/coupledPolyPatch.C
View file @
f281f77e
...
...
@@ -51,7 +51,7 @@ namespace Foam
}
// * * * * * * * * * * * * Pr
ivate
Member Functions * * * * * * * * * * *
*
//
// * * * * * * * * * * * * Pr
otected
Member Functions * * * * * * * * * * * //
void
Foam
::
coupledPolyPatch
::
writeOBJ
(
Ostream
&
os
,
const
point
&
pt
)
{
...
...
src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/wedge/wedgePolyPatch.C
View file @
f281f77e
...
...
@@ -38,7 +38,8 @@ namespace Foam
addToRunTimeSelectionTable
(
polyPatch
,
wedgePolyPatch
,
dictionary
);
}
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
void
Foam
::
wedgePolyPatch
::
calcGeometry
(
PstreamBuffers
&
)
{
...
...
src/OpenFOAM/meshes/polyMesh/zones/faceZone/faceZone.C
View file @
f281f77e
...
...
@@ -43,7 +43,8 @@ namespace Foam
const
char
*
const
Foam
::
faceZone
::
labelsName
=
"faceLabels"
;
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
void
Foam
::
faceZone
::
calcFaceZonePatch
()
const
{
...
...
src/OpenFOAM/primitives/functions/Function1/Table/TableBase.C
View file @
f281f77e
...
...
@@ -27,7 +27,7 @@ License
#include
"Time.H"
#include
"interpolationWeights.H"
// * * * * * * * * * * * *
* Private
Member Functions * * * * * * * * * * * //
// * * * * * * * * * * * *
Protected
Member Functions * * * * * * * * * * * //
template
<
class
Type
>
const
Foam
::
interpolationWeights
&
...
...
src/OpenFOAM/primitives/functions/Function1/Table/TableBase.H
View file @
f281f77e
...
...
@@ -104,6 +104,9 @@ protected:
//- Return (demand driven) interpolator
const
interpolationWeights
&
interpolator
()
const
;
private:
//- Disallow default bitwise assignment
void
operator
=
(
const
TableBase
<
Type
>&
);
...
...
src/TurbulenceModels/incompressible/turbulentTransportModels/RAS/kkLOmega/kkLOmega.H
View file @
f281f77e
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-201
5
OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-201
6
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -112,7 +112,7 @@ class kkLOmega
:
public
eddyViscosity
<
incompressible
::
RASModel
>
{
// Private mem
m
ber functions
// Private member functions
tmp
<
volScalarField
>
fv
(
const
volScalarField
&
Ret
)
const
;
...
...
src/TurbulenceModels/incompressible/turbulentTransportModels/RAS/qZeta/qZeta.C
View file @
f281f77e
...
...
@@ -41,7 +41,7 @@ namespace RASModels
defineTypeNameAndDebug
(
qZeta
,
0
);
addToRunTimeSelectionTable
(
RASModel
,
qZeta
,
dictionary
);
// * * * * * * * * * * *
* Private
Member Functions * * * * * * * * * * * * //
// * * * * * * * * * * *
Protected
Member Functions * * * * * * * * * * * * //
tmp
<
volScalarField
>
qZeta
::
fMu
()
const
{
...
...
src/TurbulenceModels/turbulenceModels/Base/kOmegaSST/kOmegaSSTBase.C
View file @
f281f77e
...
...
@@ -33,7 +33,7 @@ License
namespace
Foam
{
// * * * * * * * * * * *
* Private
Member Functions * * * * * * * * * * * * //
// * * * * * * * * * * *
Protected
Member Functions * * * * * * * * * * * * //
template
<
class
TurbulenceModel
,
class
BasicTurbulenceModel
>
tmp
<
volScalarField
>
...
...
src/TurbulenceModels/turbulenceModels/LES/SpalartAllmarasIDDES/SpalartAllmarasIDDES.C
View file @
f281f77e
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-201
5
OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-201
6
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -87,8 +87,6 @@ tmp<volScalarField> SpalartAllmarasIDDES<BasicTurbulenceModel>::rd
}
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
template
<
class
BasicTurbulenceModel
>
tmp
<
volScalarField
>
SpalartAllmarasIDDES
<
BasicTurbulenceModel
>::
fd
(
...
...
@@ -99,6 +97,8 @@ tmp<volScalarField> SpalartAllmarasIDDES<BasicTurbulenceModel>::fd
}
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
template
<
class
BasicTurbulenceModel
>
tmp
<
volScalarField
>
SpalartAllmarasIDDES
<
BasicTurbulenceModel
>::
dTilda
(
...
...
src/TurbulenceModels/turbulenceModels/LES/dynamicKEqn/dynamicKEqn.C
View file @
f281f77e
...
...
@@ -33,7 +33,7 @@ namespace Foam
namespace
LESModels
{
// * * * * * * * * * * * *
* Private
Member Functions * * * * * * * * * * * //
// * * * * * * * * * * * *
Protected
Member Functions * * * * * * * * * * * //
template
<
class
BasicTurbulenceModel
>
volScalarField
dynamicKEqn
<
BasicTurbulenceModel
>::
Ck
...
...
src/TurbulenceModels/turbulenceModels/LES/dynamicLagrangian/dynamicLagrangian.C
View file @
f281f77e
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-201
5
OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-201
6
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -33,7 +33,7 @@ namespace Foam
namespace
LESModels
{
// * * * * * * * * * * * *
* Private
Member Functions * * * * * * * * * * * //
// * * * * * * * * * * * *
Protected
Member Functions * * * * * * * * * * * //
template
<
class
BasicTurbulenceModel
>
void
dynamicLagrangian
<
BasicTurbulenceModel
>::
correctNut
...
...
src/TurbulenceModels/turbulenceModels/RAS/realizableKE/realizableKE.C
View file @
f281f77e
...
...
@@ -34,7 +34,7 @@ namespace Foam
namespace
RASModels
{
// * * * * * * * * * * *
* Private
Member Functions * * * * * * * * * * * * //
// * * * * * * * * * * *
Protected
Member Functions * * * * * * * * * * * * //
template
<
class
BasicTurbulenceModel
>
tmp
<
volScalarField
>
realizableKE
<
BasicTurbulenceModel
>::
rCmu
...
...
Prev
1
2
3
4
5
Next
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