mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: consistent naming of files containing the 'New' method
before:
- 'new' prefixed to camel-cased class name: eg, someClass -> newSomeClass
- 'New' prefixed to templated class name: eg, TmplClass -> NewTmplClass
- 'New' suffixed to class name: eg, someClass -> someClassNew
after:
- consistent 'New' suffixed to class name, no change of case
eg, someClass -> someClassNew
eg, TmplClass -> TmplClassNew
This commit is contained in:
@ -1,25 +1,25 @@
|
||||
XiModels/XiModel/XiModel.C
|
||||
XiModels/XiModel/newXiModel.C
|
||||
XiModels/XiModel/XiModelNew.C
|
||||
XiModels/fixed/fixed.C
|
||||
XiModels/algebraic/algebraic.C
|
||||
XiModels/transport/transport.C
|
||||
|
||||
XiModels/XiEqModels/XiEqModel/XiEqModel.C
|
||||
XiModels/XiEqModels/XiEqModel/newXiEqModel.C
|
||||
XiModels/XiEqModels/XiEqModel/XiEqModelNew.C
|
||||
XiModels/XiEqModels/Gulder/Gulder.C
|
||||
XiModels/XiEqModels/instabilityXiEq/instabilityXiEq.C
|
||||
XiModels/XiEqModels/SCOPEBlendXiEq/SCOPEBlendXiEq.C
|
||||
XiModels/XiEqModels/SCOPEXiEq/SCOPEXiEq.C
|
||||
|
||||
XiModels/XiGModels/XiGModel/XiGModel.C
|
||||
XiModels/XiGModels/XiGModel/newXiGModel.C
|
||||
XiModels/XiGModels/XiGModel/XiGModelNew.C
|
||||
XiModels/XiGModels/KTS/KTS.C
|
||||
XiModels/XiGModels/instabilityG/instabilityG.C
|
||||
|
||||
PDRModels/turbulence/PDRkEpsilon/PDRkEpsilon.C
|
||||
|
||||
PDRModels/dragModels/PDRDragModel/PDRDragModel.C
|
||||
PDRModels/dragModels/PDRDragModel/newPDRDragModel.C
|
||||
PDRModels/dragModels/PDRDragModel/PDRDragModelNew.C
|
||||
PDRModels/dragModels/basic/basic.C
|
||||
|
||||
PDRModels/XiEqModels/basicXiSubXiEq/basicXiSubXiEq.C
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
combustionModel/combustionModel.C
|
||||
combustionModel/newCombustionModel.C
|
||||
combustionModel/combustionModelNew.C
|
||||
|
||||
infinitelyFastChemistry/infinitelyFastChemistry.C
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
interPhaseChangeFoam.C
|
||||
phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/phaseChangeTwoPhaseMixture.C
|
||||
phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/newPhaseChangeTwoPhaseMixture.C
|
||||
phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/phaseChangeTwoPhaseMixtureNew.C
|
||||
phaseChangeTwoPhaseMixtures/Kunz/Kunz.C
|
||||
phaseChangeTwoPhaseMixtures/Merkle/Merkle.C
|
||||
phaseChangeTwoPhaseMixtures/SchnerrSauer/SchnerrSauer.C
|
||||
|
||||
@ -28,7 +28,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
phaseChangeTwoPhaseMixture.C
|
||||
newPhaseChangeModel.C
|
||||
phaseChangeModelNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
dragModels/dragModel/dragModel.C
|
||||
dragModels/dragModel/newDragModel.C
|
||||
dragModels/dragModel/dragModelNew.C
|
||||
dragModels/Ergun/Ergun.C
|
||||
dragModels/GidaspowErgunWenYu/GidaspowErgunWenYu.C
|
||||
dragModels/GidaspowSchillerNaumann/GidaspowSchillerNaumann.C
|
||||
|
||||
@ -28,7 +28,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
dragModel.C
|
||||
newDragModel.C
|
||||
dragModelNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -1,32 +1,32 @@
|
||||
kineticTheoryModel/kineticTheoryModel.C
|
||||
|
||||
viscosityModel/viscosityModel/viscosityModel.C
|
||||
viscosityModel/viscosityModel/newViscosityModel.C
|
||||
viscosityModel/viscosityModel/viscosityModelNew.C
|
||||
viscosityModel/Gidaspow/GidaspowViscosity.C
|
||||
viscosityModel/Syamlal/SyamlalViscosity.C
|
||||
viscosityModel/HrenyaSinclair/HrenyaSinclairViscosity.C
|
||||
viscosityModel/none/noneViscosity.C
|
||||
|
||||
conductivityModel/conductivityModel/conductivityModel.C
|
||||
conductivityModel/conductivityModel/newConductivityModel.C
|
||||
conductivityModel/conductivityModel/conductivityModelNew.C
|
||||
conductivityModel/Gidaspow/GidaspowConductivity.C
|
||||
conductivityModel/Syamlal/SyamlalConductivity.C
|
||||
conductivityModel/HrenyaSinclair/HrenyaSinclairConductivity.C
|
||||
|
||||
radialModel/radialModel/radialModel.C
|
||||
radialModel/radialModel/newRadialModel.C
|
||||
radialModel/radialModel/radialModelNew.C
|
||||
radialModel/CarnahanStarling/CarnahanStarlingRadial.C
|
||||
radialModel/Gidaspow/GidaspowRadial.C
|
||||
radialModel/LunSavage/LunSavageRadial.C
|
||||
radialModel/SinclairJackson/SinclairJacksonRadial.C
|
||||
|
||||
granularPressureModel/granularPressureModel/granularPressureModel.C
|
||||
granularPressureModel/granularPressureModel/newGranularPressureModel.C
|
||||
granularPressureModel/granularPressureModel/granularPressureModelNew.C
|
||||
granularPressureModel/Lun/LunPressure.C
|
||||
granularPressureModel/SyamlalRogersOBrien/SyamlalRogersOBrienPressure.C
|
||||
|
||||
frictionalStressModel/frictionalStressModel/frictionalStressModel.C
|
||||
frictionalStressModel/frictionalStressModel/newFrictionalStressModel.C
|
||||
frictionalStressModel/frictionalStressModel/frictionalStressModelNew.C
|
||||
frictionalStressModel/JohnsonJackson/JohnsonJacksonFrictionalStress.C
|
||||
frictionalStressModel/Schaeffer/SchaefferFrictionalStress.C
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
extrudeModel/extrudeModel.C
|
||||
extrudeModel/newExtrudeModel.C
|
||||
extrudeModel/extrudeModelNew.C
|
||||
linearNormal/linearNormal.C
|
||||
linearDirection/linearDirection.C
|
||||
linearRadial/linearRadial.C
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
tabulatedWallFunction/tabulatedWallFunction.C
|
||||
tabulatedWallFunction/newTabulatedWallFunction.C
|
||||
tabulatedWallFunction/tabulatedWallFunctionNew.C
|
||||
|
||||
SpaldingsLaw/SpaldingsLaw.C
|
||||
general/general.C
|
||||
|
||||
@ -6,7 +6,7 @@ ODESolversRK = ODESolvers/RK
|
||||
ODESolversSIBS = ODESolvers/SIBS
|
||||
|
||||
$(ODESolversODESolver)/ODESolver.C
|
||||
$(ODESolversODESolver)/newODESolver.C
|
||||
$(ODESolversODESolver)/ODESolverNew.C
|
||||
|
||||
$(ODESolversRK)/RK.C
|
||||
|
||||
|
||||
@ -258,13 +258,13 @@ $(GAMG)/GAMGSolverSolve.C
|
||||
|
||||
GAMGInterfaces = $(GAMG)/interfaces
|
||||
$(GAMGInterfaces)/GAMGInterface/GAMGInterface.C
|
||||
$(GAMGInterfaces)/GAMGInterface/newGAMGInterface.C
|
||||
$(GAMGInterfaces)/GAMGInterface/GAMGInterfaceNew.C
|
||||
$(GAMGInterfaces)/processorGAMGInterface/processorGAMGInterface.C
|
||||
$(GAMGInterfaces)/cyclicGAMGInterface/cyclicGAMGInterface.C
|
||||
|
||||
GAMGInterfaceFields = $(GAMG)/interfaceFields
|
||||
$(GAMGInterfaceFields)/GAMGInterfaceField/GAMGInterfaceField.C
|
||||
$(GAMGInterfaceFields)/GAMGInterfaceField/newGAMGInterfaceField.C
|
||||
$(GAMGInterfaceFields)/GAMGInterfaceField/GAMGInterfaceFieldNew.C
|
||||
$(GAMGInterfaceFields)/processorGAMGInterfaceField/processorGAMGInterfaceField.C
|
||||
$(GAMGInterfaceFields)/cyclicGAMGInterfaceField/cyclicGAMGInterfaceField.C
|
||||
|
||||
@ -328,7 +328,7 @@ polyMesh = meshes/polyMesh
|
||||
|
||||
polyPatches = $(polyMesh)/polyPatches
|
||||
$(polyPatches)/polyPatch/polyPatch.C
|
||||
$(polyPatches)/polyPatch/newPolyPatch.C
|
||||
$(polyPatches)/polyPatch/polyPatchNew.C
|
||||
|
||||
basicPolyPatches = $(polyPatches)/basic
|
||||
$(basicPolyPatches)/coupled/coupledPolyPatch.C
|
||||
@ -362,15 +362,15 @@ $(zone)/zone.C
|
||||
|
||||
cellZone = $(polyMesh)/zones/cellZone
|
||||
$(cellZone)/cellZone.C
|
||||
$(cellZone)/newCellZone.C
|
||||
$(cellZone)/cellZoneNew.C
|
||||
|
||||
faceZone = $(polyMesh)/zones/faceZone
|
||||
$(faceZone)/faceZone.C
|
||||
$(faceZone)/newFaceZone.C
|
||||
$(faceZone)/faceZoneNew.C
|
||||
|
||||
pointZone = $(polyMesh)/zones/pointZone
|
||||
$(pointZone)/pointZone.C
|
||||
$(pointZone)/newPointZone.C
|
||||
$(pointZone)/pointZoneNew.C
|
||||
|
||||
$(polyMesh)/polyMesh.C
|
||||
$(polyMesh)/polyMeshFromShapeMesh.C
|
||||
@ -438,7 +438,7 @@ $(pointMeshMapper)/pointPatchMapper.C
|
||||
pointPatches = $(pointMesh)/pointPatches
|
||||
$(pointPatches)/pointPatch/pointPatch.C
|
||||
$(pointPatches)/facePointPatch/facePointPatch.C
|
||||
$(pointPatches)/facePointPatch/newFacePointPatch.C
|
||||
$(pointPatches)/facePointPatch/facePointPatchNew.C
|
||||
|
||||
basicPointPatches = $(pointPatches)/basic
|
||||
$(basicPointPatches)/coupled/coupledPointPatch.C
|
||||
|
||||
@ -346,6 +346,6 @@ Ostream& operator<<
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "newPointPatchField.C"
|
||||
#include "pointPatchFieldNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -32,7 +32,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
polyPatch.C
|
||||
newPolyPatch.C
|
||||
polyPatchNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -34,7 +34,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
cellZone.C
|
||||
newCellZone.C
|
||||
cellZoneNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -33,7 +33,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
faceZone.C
|
||||
newFaceZone.C
|
||||
faceZoneNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -35,7 +35,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
pointZone.C
|
||||
newPointZone.C
|
||||
pointZoneNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
dynamicFvMesh/dynamicFvMesh.C
|
||||
dynamicFvMesh/newDynamicFvMesh.C
|
||||
dynamicFvMesh/dynamicFvMeshNew.C
|
||||
staticFvMesh/staticFvMesh.C
|
||||
dynamicMotionSolverFvMesh/dynamicMotionSolverFvMesh.C
|
||||
dynamicInkJetFvMesh/dynamicInkJetFvMesh.C
|
||||
@ -8,7 +8,7 @@ dynamicRefineFvMesh/dynamicRefineFvMesh.C
|
||||
solidBodyMotionFvMesh/solidBodyMotionFvMesh.C
|
||||
solidBodyMotionFunctions = solidBodyMotionFvMesh/solidBodyMotionFunctions
|
||||
$(solidBodyMotionFunctions)/solidBodyMotionFunction/solidBodyMotionFunction.C
|
||||
$(solidBodyMotionFunctions)/solidBodyMotionFunction/newSolidBodyMotionFunction.C
|
||||
$(solidBodyMotionFunctions)/solidBodyMotionFunction/solidBodyMotionFunctionNew.C
|
||||
$(solidBodyMotionFunctions)/SDA/SDA.C
|
||||
$(solidBodyMotionFunctions)/tabulated6DoFMotion/tabulated6DoFMotion.C
|
||||
$(solidBodyMotionFunctions)/linearMotion/linearMotion.C
|
||||
|
||||
@ -29,7 +29,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
dynamicFvMesh.C
|
||||
newDynamicFvMesh.C
|
||||
dynamicFvMeshNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -36,7 +36,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
solidBodyMotionFunction.C
|
||||
newDynamicFvMesh.C
|
||||
dynamicFvMeshNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@ $(enrichedPatch)/enrichedPatchMasterPoints.C
|
||||
|
||||
polyMeshModifier = polyTopoChange/polyMeshModifier
|
||||
$(polyMeshModifier)/polyMeshModifier.C
|
||||
$(polyMeshModifier)/newPolyMeshModifier.C
|
||||
$(polyMeshModifier)/polyMeshModifierNew.C
|
||||
|
||||
polyTopoChange/polyTopoChange/topoAction/topoActions.C
|
||||
polyTopoChange/polyTopoChanger/polyTopoChanger.C
|
||||
|
||||
@ -8,7 +8,7 @@ engineValve/engineValve.C
|
||||
enginePiston/enginePiston.C
|
||||
|
||||
engineMesh/engineMesh/engineMesh.C
|
||||
engineMesh/engineMesh/newEngineMesh.C
|
||||
engineMesh/engineMesh/engineMeshNew.C
|
||||
engineMesh/staticEngineMesh/staticEngineMesh.C
|
||||
engineMesh/layeredEngineMesh/layeredEngineMesh.C
|
||||
engineMesh/fvMotionSolverEngineMesh/fvMotionSolverEngineMesh.C
|
||||
|
||||
@ -9,7 +9,7 @@ $(fvBoundaryMesh)/fvBoundaryMesh.C
|
||||
|
||||
fvPatches = fvMesh/fvPatches
|
||||
$(fvPatches)/fvPatch/fvPatch.C
|
||||
$(fvPatches)/fvPatch/newFvPatch.C
|
||||
$(fvPatches)/fvPatch/fvPatchNew.C
|
||||
|
||||
basicFvPatches = $(fvPatches)/basic
|
||||
$(basicFvPatches)/coupled/coupledFvPatch.C
|
||||
@ -334,7 +334,7 @@ $(MRF)/MRFZones.C
|
||||
|
||||
SRF = $(general)/SRF
|
||||
$(SRF)/SRFModel/SRFModel/SRFModel.C
|
||||
$(SRF)/SRFModel/SRFModel/newSRFModel.C
|
||||
$(SRF)/SRFModel/SRFModel/SRFModelNew.C
|
||||
$(SRF)/SRFModel/rpm/rpm.C
|
||||
$(SRF)/derivedFvPatchFields/SRFVelocityFvPatchVectorField/SRFVelocityFvPatchVectorField.C
|
||||
|
||||
|
||||
@ -479,6 +479,6 @@ Foam::Ostream& Foam::operator<<(Ostream& os, const fvPatchField<Type>& ptf)
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
# include "newFvPatchField.C"
|
||||
# include "fvPatchFieldNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -37,7 +37,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
fvPatchField.C
|
||||
newFvPatchField.C
|
||||
fvPatchFieldNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -403,6 +403,6 @@ Ostream& operator<<(Ostream& os, const fvsPatchField<Type>& ptf)
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
# include "newFvsPatchField.C"
|
||||
# include "fvsPatchFieldNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -37,7 +37,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
fvsPatchField.C
|
||||
newFvsPatchField.C
|
||||
fvsPatchFieldNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -29,7 +29,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
fvPatch.C
|
||||
newFvPatch.C
|
||||
fvPatchNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -56,6 +56,6 @@ interpolation<Type>::interpolation
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
# include "newInterpolation.C"
|
||||
# include "interpolationNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -32,12 +32,12 @@ $(injector)/swirlInjector/swirlInjector.C
|
||||
$(injector)/definedInjector/definedInjector.C
|
||||
|
||||
$(atomizationModels)/atomizationModel/atomizationModel.C
|
||||
$(atomizationModels)/atomizationModel/newAtomizationModel.C
|
||||
$(atomizationModels)/atomizationModel/atomizationModelNew.C
|
||||
$(atomizationModels)/LISA/LISA.C
|
||||
$(atomizationModels)/noAtomization/noAtomization.C
|
||||
$(atomizationModels)/blobsSheetAtomization/blobsSheetAtomization.C
|
||||
|
||||
$(breakupModels)/breakupModel/newBreakupModel.C
|
||||
$(breakupModels)/breakupModel/breakupModelNew.C
|
||||
$(breakupModels)/breakupModel/breakupModel.C
|
||||
$(breakupModels)/noBreakup/noBreakup.C
|
||||
$(breakupModels)/reitzDiwakar/reitzDiwakar.C
|
||||
@ -46,24 +46,24 @@ $(breakupModels)/SHF/SHF.C
|
||||
$(breakupModels)/TAB/TAB.C
|
||||
$(breakupModels)/ETAB/ETAB.C
|
||||
|
||||
$(dragModels)/dragModel/newDragModel.C
|
||||
$(dragModels)/dragModel/dragModelNew.C
|
||||
$(dragModels)/dragModel/dragModel.C
|
||||
$(dragModels)/noDragModel/noDragModel.C
|
||||
$(dragModels)/standardDragModel/standardDragModel.C
|
||||
|
||||
$(evaporationModels)/evaporationModel/newEvaporationModel.C
|
||||
$(evaporationModels)/evaporationModel/evaporationModelNew.C
|
||||
$(evaporationModels)/evaporationModel/evaporationModel.C
|
||||
$(evaporationModels)/noEvaporation/noEvaporation.C
|
||||
$(evaporationModels)/RutlandFlashBoil/RutlandFlashBoil.C
|
||||
$(evaporationModels)/standardEvaporationModel/standardEvaporationModel.C
|
||||
$(evaporationModels)/saturateEvaporationModel/saturateEvaporationModel.C
|
||||
|
||||
$(heatTransferModels)/heatTransferModel/newHeatTransferModel.C
|
||||
$(heatTransferModels)/heatTransferModel/heatTransferModelNew.C
|
||||
$(heatTransferModels)/heatTransferModel/heatTransferModel.C
|
||||
$(heatTransferModels)/noHeatTransfer/noHeatTransfer.C
|
||||
$(heatTransferModels)/RanzMarshall/RanzMarshall.C
|
||||
|
||||
$(injectorModels)/injectorModel/newInjectorModel.C
|
||||
$(injectorModels)/injectorModel/injectorModelNew.C
|
||||
$(injectorModels)/injectorModel/injectorModel.C
|
||||
$(injectorModels)/constant/constInjector.C
|
||||
$(injectorModels)/Chomiak/Chomiak.C
|
||||
@ -73,19 +73,19 @@ $(injectorModels)/definedHollowCone/definedHollowCone.C
|
||||
$(injectorModels)/definedPressureSwirl/definedPressureSwirl.C
|
||||
$(injectorModels)/blobsSwirl/blobsSwirlInjector.C
|
||||
|
||||
$(wallModels)/wallModel/newWallModel.C
|
||||
$(wallModels)/wallModel/wallModelNew.C
|
||||
$(wallModels)/wallModel/wallModel.C
|
||||
$(wallModels)/removeParcel/removeParcel.C
|
||||
$(wallModels)/reflectParcel/reflectParcel.C
|
||||
|
||||
$(collisionModels)/collisionModel/collisionModel.C
|
||||
$(collisionModels)/collisionModel/newCollisionModel.C
|
||||
$(collisionModels)/collisionModel/collisionModelNew.C
|
||||
$(collisionModels)/noCollision/noCollision.C
|
||||
$(collisionModels)/ORourke/ORourkeCollisionModel.C
|
||||
$(collisionModels)/trajectoryModel/trajectoryModel.C
|
||||
|
||||
$(dispersionModels)/dispersionModel/dispersionModel.C
|
||||
$(dispersionModels)/dispersionModel/newDispersionModel.C
|
||||
$(dispersionModels)/dispersionModel/dispersionModelNew.C
|
||||
$(dispersionModels)/dispersionRASModel/dispersionRASModel.C
|
||||
$(dispersionModels)/dispersionLESModel/dispersionLESModel.C
|
||||
$(dispersionModels)/noDispersion/noDispersion.C
|
||||
|
||||
@ -84,7 +84,7 @@ Foam::BinaryCollisionModel<CloudType>::coeffDict() const
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "NewBinaryCollisionModel.C"
|
||||
#include "BinaryCollisionModelNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
|
||||
@ -29,7 +29,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
BinaryCollisionModel.C
|
||||
NewBinaryCollisionModel.C
|
||||
BinaryCollisionModelNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -80,7 +80,7 @@ const Foam::dictionary& Foam::InflowBoundaryModel<CloudType>::coeffDict() const
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "NewInflowBoundaryModel.C"
|
||||
#include "InflowBoundaryModelNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
|
||||
@ -30,7 +30,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
InflowBoundaryModel.C
|
||||
NewInflowBoundaryModel.C
|
||||
InflowBoundaryModelNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -81,7 +81,7 @@ Foam::WallInteractionModel<CloudType>::coeffDict() const
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "NewWallInteractionModel.C"
|
||||
#include "WallInteractionModelNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
|
||||
@ -29,7 +29,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
WallInteractionModel.C
|
||||
NewWallInteractionModel.C
|
||||
WallInteractionModelNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -48,6 +48,6 @@ Foam::IntegrationScheme<Type>::~IntegrationScheme()
|
||||
|
||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||
|
||||
#include "newIntegrationScheme.C"
|
||||
#include "IntegrationSchemeNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -32,7 +32,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
DataEntry.C
|
||||
NewDataEntry.C
|
||||
DataEntryNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -172,7 +172,7 @@ public:
|
||||
|
||||
#ifdef NoRepository
|
||||
# include "DataEntry.C"
|
||||
# include "NewDataEntry.C"
|
||||
# include "DataEntryNew.C"
|
||||
#endif
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
@ -79,6 +79,6 @@ const Foam::dictionary& Foam::DispersionModel<CloudType>::dict() const
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "NewDispersionModel.C"
|
||||
#include "DispersionModelNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -78,7 +78,7 @@ Foam::scalar Foam::DragModel<CloudType>::utc
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "NewDragModel.C"
|
||||
#include "DragModelNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
|
||||
@ -29,7 +29,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
DragModel.C
|
||||
NewDragModel.C
|
||||
DragModelNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -454,6 +454,6 @@ void Foam::InjectionModel<CloudType>::info(Ostream& os) const
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "NewInjectionModel.C"
|
||||
#include "InjectionModelNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -41,7 +41,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
InjectionModel.C
|
||||
NewInjectionModel.C
|
||||
InjectionModelNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -149,7 +149,7 @@ Foam::PatchInteractionModel<CloudType>::coeffDict() const
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "NewPatchInteractionModel.C"
|
||||
#include "PatchInteractionModelNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
|
||||
@ -29,7 +29,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
PatchInteractionModel.C
|
||||
NewPatchInteractionModel.C
|
||||
PatchInteractionModelNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -71,6 +71,6 @@ void Foam::PostProcessingModel<CloudType>::post()
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "NewPostProcessingModel.C"
|
||||
#include "PostProcessingModelNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -29,7 +29,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
PostProcessingModel.C
|
||||
NewPostProcessingModel.C
|
||||
PostProcessingModelNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@ -186,6 +186,6 @@ void Foam::SurfaceFilmModel<CloudType>::setParcelProperties
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "NewSurfaceFilmModel.C"
|
||||
#include "SurfaceFilmModelNew.C"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -29,7 +29,7 @@ Description
|
||||
|
||||
SourceFiles
|
||||
SurfaceFilmModel.C
|
||||
NewSurfaceFilmModel.C
|
||||
SurfaceFilmModelNew.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user