diff --git a/applications/solvers/compressible/rhoCentralFoam/BCs/rho/fixedRhoFvPatchScalarField.H b/applications/solvers/compressible/rhoCentralFoam/BCs/rho/fixedRhoFvPatchScalarField.H index 5779d86b9..0e2e83eb7 100644 --- a/applications/solvers/compressible/rhoCentralFoam/BCs/rho/fixedRhoFvPatchScalarField.H +++ b/applications/solvers/compressible/rhoCentralFoam/BCs/rho/fixedRhoFvPatchScalarField.H @@ -45,7 +45,6 @@ Description Usage - \table Property | Description | Required | Default value p | Pressure field name | no | p @@ -54,7 +53,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fixedRho; } diff --git a/applications/solvers/multiphase/reactingEulerFoam/reactingTwoPhaseEulerFoam/twoPhaseCompressibleTurbulenceModels/derivedFvPatchFields/alphatPhaseChangeJayatillekeWallFunction/alphatPhaseChangeJayatillekeWallFunctionFvPatchScalarField.H b/applications/solvers/multiphase/reactingEulerFoam/reactingTwoPhaseEulerFoam/twoPhaseCompressibleTurbulenceModels/derivedFvPatchFields/alphatPhaseChangeJayatillekeWallFunction/alphatPhaseChangeJayatillekeWallFunctionFvPatchScalarField.H index bdf3153c3..8b0e39b88 100755 --- a/applications/solvers/multiphase/reactingEulerFoam/reactingTwoPhaseEulerFoam/twoPhaseCompressibleTurbulenceModels/derivedFvPatchFields/alphatPhaseChangeJayatillekeWallFunction/alphatPhaseChangeJayatillekeWallFunctionFvPatchScalarField.H +++ b/applications/solvers/multiphase/reactingEulerFoam/reactingTwoPhaseEulerFoam/twoPhaseCompressibleTurbulenceModels/derivedFvPatchFields/alphatPhaseChangeJayatillekeWallFunction/alphatPhaseChangeJayatillekeWallFunctionFvPatchScalarField.H @@ -34,7 +34,6 @@ Description the Eulerian multiphase solvers. Usage - \table Property | Description | Required | Default value Prt | Turbulent Prandtl number | no | 0.85 @@ -45,7 +44,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type alphatPhaseChangeJayatillekeWallFunction; Prt 0.85; diff --git a/doc/codingStyleGuide.org b/doc/codingStyleGuide.org index fa25fa6fc..43e42c436 100644 --- a/doc/codingStyleGuide.org +++ b/doc/codingStyleGuide.org @@ -427,7 +427,7 @@ \verbatim patchName { - type myPatchType; + type patchType; refValue 100; value uniform 1; } diff --git a/etc/codeTemplates/BC/BC.H b/etc/codeTemplates/BC/BC.H index 1727dc016..c878d68d9 100644 --- a/etc/codeTemplates/BC/BC.H +++ b/etc/codeTemplates/BC/BC.H @@ -44,7 +44,6 @@ Description \endtable Usage - \table Property | Description | Req'd? | Default scalarData | single scalar value | yes | @@ -56,7 +55,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type NAME; scalarData -1; diff --git a/src/OpenFOAM/db/functionObjects/functionObject/functionObject.H b/src/OpenFOAM/db/functionObjects/functionObject/functionObject.H index fa407cce1..2405cac9d 100644 --- a/src/OpenFOAM/db/functionObjects/functionObject/functionObject.H +++ b/src/OpenFOAM/db/functionObjects/functionObject/functionObject.H @@ -42,10 +42,10 @@ Description \verbatim functions { - myFunctionObject // Name of functionObject entry + { type functionObjectType; - libs ("libMyFunctionObjectlib.so"); + libs ("libMyFunctionObjectlib.so"); region defaultRegion; enabled yes; timeStart 0; @@ -84,12 +84,12 @@ Description none | Execute/write every time-step \endtable - The sub-dictionary name \c myFunctionObject is chosen by the user, and is - typically used as the name of the output directory for any data written by - the functionObject. The \c type entry defines the type of function object - properties that follow. FunctionObjects are packaged into separate - libraries and the \c libs entry is used to specify which library - should be loaded. + The sub-dictionary name \c is chosen by the user, and + is typically used as the name of the output directory for any data written + by the functionObject. The \c type entry defines the type of function + object properties that follow. FunctionObjects are packaged into separate + libraries and the \c libs entry is used to specify which library should be + loaded. Class Foam::functionObject diff --git a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/convectiveHeatTransfer/convectiveHeatTransferFvPatchScalarField.H b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/convectiveHeatTransfer/convectiveHeatTransferFvPatchScalarField.H index 90eba83b1..3a3b61fb3 100644 --- a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/convectiveHeatTransfer/convectiveHeatTransferFvPatchScalarField.H +++ b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/convectiveHeatTransfer/convectiveHeatTransferFvPatchScalarField.H @@ -51,7 +51,6 @@ Description \endvartable Usage - \table Property | Description | Required | Default value L | Length scale [m] | yes | @@ -59,7 +58,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type convectiveHeatTransfer; L 0.1; diff --git a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/externalCoupledTemperatureMixed/externalCoupledTemperatureMixedFvPatchScalarField.H b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/externalCoupledTemperatureMixed/externalCoupledTemperatureMixedFvPatchScalarField.H index ad63aa652..0fd335ea8 100644 --- a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/externalCoupledTemperatureMixed/externalCoupledTemperatureMixedFvPatchScalarField.H +++ b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/externalCoupledTemperatureMixed/externalCoupledTemperatureMixedFvPatchScalarField.H @@ -84,7 +84,6 @@ Description Usage - \table Property | Description | Required | Default value commsDir | communications directory | yes | @@ -97,7 +96,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type externalCoupledTemperature; commsDir "$FOAM_CASE/comms"; diff --git a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/externalWallHeatFluxTemperature/externalWallHeatFluxTemperatureFvPatchScalarField.H b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/externalWallHeatFluxTemperature/externalWallHeatFluxTemperatureFvPatchScalarField.H index 0caa3cb40..a01786738 100644 --- a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/externalWallHeatFluxTemperature/externalWallHeatFluxTemperatureFvPatchScalarField.H +++ b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/externalWallHeatFluxTemperature/externalWallHeatFluxTemperatureFvPatchScalarField.H @@ -49,7 +49,6 @@ Description thermophysical package. Usage - \table Property | Description | Required | Default value kappa | thermal conductivity option | yes | @@ -65,7 +64,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type externalWallHeatFluxTemperature; kappa fluidThermo; diff --git a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/thermalBaffle1D/thermalBaffle1DFvPatchScalarField.H b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/thermalBaffle1D/thermalBaffle1DFvPatchScalarField.H index ac3464e1b..23dedf0b0 100644 --- a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/thermalBaffle1D/thermalBaffle1DFvPatchScalarField.H +++ b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/thermalBaffle1D/thermalBaffle1DFvPatchScalarField.H @@ -28,23 +28,22 @@ Group grpThermoBoundaryConditions Description + This BC solves a steady 1D thermal baffle. - This BC solves a steady 1D thermal baffle. The solid properties are - specify as dictionary. Optionaly radiative heat flux (Qr) can be - incorporated into the balance. Some under-relaxation might be needed on - Qr. - Baffle and solid properties need to be specified on the master side - of the baffle. + The solid properties are specify as dictionary. Optionaly radiative heat + flux (Qr) can be incorporated into the balance. Some under-relaxation might + be needed on Qr. Baffle and solid properties need to be specified on the + master side of the baffle. Usage Example of the boundary condition specification using constant solid thermo : \verbatim - myPatch_master + { type compressible::thermalBaffle1D; - samplePatch myPatch_slave; + samplePatch ; thickness uniform 0.005; // thickness [m] Qs uniform 100; // heat flux [W/m2] @@ -75,18 +74,16 @@ Usage value uniform 300; } - myPatch_slave + { type compressible::thermalBaffle1D; - samplePatch myPatch_master_master; + samplePatch ; Qr none; relaxation 1; } \endverbatim - - SourceFiles thermalBaffle1DFvPatchScalarField.C @@ -131,7 +128,7 @@ class thermalBaffle1DFvPatchScalarField mutable scalarField Qs_; //- Solid dictionary - dictionary solidDict_; + dictionary solidDict_; //- Solid thermo mutable autoPtr solidPtr_; diff --git a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentHeatFluxTemperature/turbulentHeatFluxTemperatureFvPatchScalarField.H b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentHeatFluxTemperature/turbulentHeatFluxTemperatureFvPatchScalarField.H index 5a9d914e0..c164c41ce 100644 --- a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentHeatFluxTemperature/turbulentHeatFluxTemperatureFvPatchScalarField.H +++ b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentHeatFluxTemperature/turbulentHeatFluxTemperatureFvPatchScalarField.H @@ -30,7 +30,6 @@ Description flux [W/m^2]. Usage - \table Property | Description | Required | Default value heatSource | 'power' [W] or 'flux' [W/m^2] | yes | diff --git a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.H b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.H index 7c6fb3ac2..2a5afaaf8 100644 --- a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.H +++ b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.H @@ -43,7 +43,6 @@ Description where KDelta is heat-transfer coefficient K * deltaCoeffs Usage - \table Property | Description | Required | Default value kappa | thermal conductivity option | yes | @@ -55,7 +54,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type compressible::turbulentTemperatureCoupledBaffleMixed; Tnbr T; diff --git a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureRadCoupledMixed/turbulentTemperatureRadCoupledMixedFvPatchScalarField.H b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureRadCoupledMixed/turbulentTemperatureRadCoupledMixedFvPatchScalarField.H index 6c9413dcd..e15a24047 100644 --- a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureRadCoupledMixed/turbulentTemperatureRadCoupledMixedFvPatchScalarField.H +++ b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureRadCoupledMixed/turbulentTemperatureRadCoupledMixedFvPatchScalarField.H @@ -36,7 +36,6 @@ Description or \c fluidThermo thermophysical package. Usage - \table Property | Description | Required | Default value kappa | thermal conductivity option | yes | @@ -50,7 +49,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type compressible::turbulentTemperatureRadCoupledMixed; Tnbr T; diff --git a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.H index f932003f7..392ec0fd0 100644 --- a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.H @@ -32,7 +32,6 @@ Description thermal diffusivity (usually\c alphat) based on the Jayatilleke model. Usage - \table Property | Description | Required | Default value Prt | turbulent Prandtl number | no | 0.85 @@ -43,7 +42,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type alphatJayatillekeWallFunction; Prt 0.85; diff --git a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatWallFunction/alphatWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatWallFunction/alphatWallFunctionFvPatchScalarField.H index d937a1f2e..ca4c35bc5 100644 --- a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatWallFunction/alphatWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatWallFunction/alphatWallFunctionFvPatchScalarField.H @@ -47,7 +47,6 @@ Description \endvartable Usage - \table Property | Description | Required | Default value nut | turbulence viscosity field name | no | nut @@ -56,7 +55,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type alphatWallFunction; nut nut; diff --git a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallHeatTransfer/wallHeatTransferFvPatchScalarField.H b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallHeatTransfer/wallHeatTransferFvPatchScalarField.H index d6a9d443e..ec12b1d57 100644 --- a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallHeatTransfer/wallHeatTransferFvPatchScalarField.H +++ b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/wallHeatTransfer/wallHeatTransferFvPatchScalarField.H @@ -32,7 +32,6 @@ Description transfer Usage - \table Property | Description | Required | Default value Tinf | wall temperature | yes | @@ -41,7 +40,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type wallHeatTransfer; Tinf uniform 500; diff --git a/src/TurbulenceModels/incompressible/turbulentTransportModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/incompressible/turbulentTransportModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.H index 1b718f983..5af8fe5f8 100644 --- a/src/TurbulenceModels/incompressible/turbulentTransportModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/incompressible/turbulentTransportModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.H @@ -32,7 +32,6 @@ Description for using wall functions, using the Jayatilleke 'P' function. Usage - \table Property | Description | Required | Default value Prt | turbulent Prandtl number | no | 0.85 @@ -43,7 +42,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type alphatJayatillekeWallFunction; } diff --git a/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/atmBoundaryLayer/atmBoundaryLayer.H b/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/atmBoundaryLayer/atmBoundaryLayer.H index 1ce35ddf4..8fddacb22 100644 --- a/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/atmBoundaryLayer/atmBoundaryLayer.H +++ b/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/atmBoundaryLayer/atmBoundaryLayer.H @@ -75,7 +75,6 @@ Description 95(2007), pp 355-369. Usage - \table Property | Description | Required | Default flowDir | Flow direction | yes | diff --git a/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/turbulentMixingLengthDissipationRateInlet/turbulentMixingLengthDissipationRateInletFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/turbulentMixingLengthDissipationRateInlet/turbulentMixingLengthDissipationRateInletFvPatchScalarField.H index eaf7aa8a4..d71c85ea8 100644 --- a/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/turbulentMixingLengthDissipationRateInlet/turbulentMixingLengthDissipationRateInletFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/turbulentMixingLengthDissipationRateInlet/turbulentMixingLengthDissipationRateInletFvPatchScalarField.H @@ -46,7 +46,6 @@ Description \endvartable Usage - \table Property | Description | Required | Default value mixingLength | Length scale [m] | yes | @@ -56,7 +55,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type turbulentMixingLengthDissipationRateInlet; mixingLength 0.005; diff --git a/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/turbulentMixingLengthFrequencyInlet/turbulentMixingLengthFrequencyInletFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/turbulentMixingLengthFrequencyInlet/turbulentMixingLengthFrequencyInletFvPatchScalarField.H index 9d2cc294e..9ee1dfac1 100644 --- a/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/turbulentMixingLengthFrequencyInlet/turbulentMixingLengthFrequencyInletFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/RAS/derivedFvPatchFields/turbulentMixingLengthFrequencyInlet/turbulentMixingLengthFrequencyInletFvPatchScalarField.H @@ -46,7 +46,6 @@ Description \endvartable Usage - \table Property | Description | Required | Default value mixingLength | Length scale [m] | yes | @@ -56,7 +55,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type turbulentMixingLengthFrequencyInlet; mixingLength 0.005; diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/porousBafflePressure/porousBafflePressureFvPatchField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/porousBafflePressure/porousBafflePressureFvPatchField.H index b14f4a410..db5c43a14 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/porousBafflePressure/porousBafflePressureFvPatchField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/porousBafflePressure/porousBafflePressureFvPatchField.H @@ -50,7 +50,6 @@ Description Usage - \table Property | Description | Required | Default value patchType | underlying patch type should be \c cyclic| yes | @@ -63,7 +62,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type porousBafflePressure; patchType cyclic; diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonLowReWallFunction/epsilonLowReWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonLowReWallFunction/epsilonLowReWallFunctionFvPatchScalarField.H index 21c5f12db..af62657f8 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonLowReWallFunction/epsilonLowReWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonLowReWallFunction/epsilonLowReWallFunctionFvPatchScalarField.H @@ -39,7 +39,6 @@ Description switch-over y+ value derived from kappa and E. Usage - \table Property | Description | Required | Default value Cmu | model coefficient | no | 0.09 @@ -49,7 +48,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type epsilonLowReWallFunction; } diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.H index d77dadc3e..9e8ace814 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.H @@ -44,7 +44,6 @@ Description \endvartable Usage - \table Property | Description | Required | Default value Cmu | model coefficient | no | 0.09 @@ -54,7 +53,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type epsilonWallFunction; } diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/fWallFunctions/fWallFunction/fWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/fWallFunctions/fWallFunction/fWallFunctionFvPatchScalarField.H index 5d6277801..3e6580cfd 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/fWallFunctions/fWallFunction/fWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/fWallFunctions/fWallFunction/fWallFunctionFvPatchScalarField.H @@ -35,7 +35,6 @@ Description switch-over y+ value derived from kappa and E. Usage - \table Property | Description | Required | Default value Cmu | model coefficient | no | 0.09 @@ -45,7 +44,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fWallFunction; } diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kLowReWallFunction/kLowReWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kLowReWallFunction/kLowReWallFunctionFvPatchScalarField.H index 02a3bd7ef..72977684d 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kLowReWallFunction/kLowReWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kLowReWallFunction/kLowReWallFunctionFvPatchScalarField.H @@ -35,7 +35,6 @@ Description switch-over y+ value derived from kappa and E. Usage - \table Property | Description | Required | Default value Cmu | model coefficient | no | 0.09 @@ -46,7 +45,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type kLowReWallFunction; } diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchField.H index 1fdfe933d..006f06b17 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchField.H @@ -35,10 +35,9 @@ Description It is a simple wrapper around the zero-gradient condition. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type kqRWallFunction; } diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutLowReWallFunction/nutLowReWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutLowReWallFunction/nutLowReWallFunctionFvPatchScalarField.H index c1acfded6..546862482 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutLowReWallFunction/nutLowReWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutLowReWallFunction/nutLowReWallFunctionFvPatchScalarField.H @@ -33,10 +33,9 @@ Description provides an access function to calculate y+. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type nutLowReWallFunction; } diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutURoughWallFunction/nutURoughWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutURoughWallFunction/nutURoughWallFunctionFvPatchScalarField.H index 7958e2681..b88b25212 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutURoughWallFunction/nutURoughWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutURoughWallFunction/nutURoughWallFunctionFvPatchScalarField.H @@ -32,7 +32,6 @@ Description when using wall functions for rough walls, based on velocity. Usage - \table Property | Description | Required | Default value roughnessHeight | roughness height | yes | @@ -42,7 +41,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type nutURoughWallFunction; roughnessHeight 1e-5; diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUSpaldingWallFunction/nutUSpaldingWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUSpaldingWallFunction/nutUSpaldingWallFunctionFvPatchScalarField.H index dda5793e1..c77301478 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUSpaldingWallFunction/nutUSpaldingWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUSpaldingWallFunction/nutUSpaldingWallFunctionFvPatchScalarField.H @@ -46,10 +46,9 @@ Description Usage - Example of the boundary condition specification: \verbatim - myPatch + { type nutUSpaldingWallFunction; } diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUTabulatedWallFunction/nutUTabulatedWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUTabulatedWallFunction/nutUTabulatedWallFunctionFvPatchScalarField.H index 477872fbf..86cf0d4b3 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUTabulatedWallFunction/nutUTabulatedWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUTabulatedWallFunction/nutUTabulatedWallFunctionFvPatchScalarField.H @@ -34,7 +34,6 @@ Description located in the $FOAM_CASE/constant directory. Usage - \table Property | Description | Required | Default value uPlusTable | U+ as a function of Re table name | yes | @@ -42,7 +41,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type nutTabulatedWallFunction; uPlusTable myUPlusTable; diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUWallFunction/nutUWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUWallFunction/nutUWallFunctionFvPatchScalarField.H index d3fbbeb2f..f93ba98d3 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUWallFunction/nutUWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUWallFunction/nutUWallFunctionFvPatchScalarField.H @@ -32,10 +32,9 @@ Description when using wall functions, based on velocity. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type nutUWallFunction; } diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutWallFunction/nutWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutWallFunction/nutWallFunctionFvPatchScalarField.H index ab06f04d6..56b73e224 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutWallFunction/nutWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutWallFunction/nutWallFunctionFvPatchScalarField.H @@ -33,7 +33,6 @@ Description - replicates OpenFOAM v1.5 (and earlier) behaviour Usage - \table Property | Description | Required | Default value Cmu | Cmu coefficient | no | 0.09 @@ -43,7 +42,7 @@ Usage Examples of the boundary condition specification: \verbatim - myPatch + { type nutWallFunction; value uniform 0.0; diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkAtmRoughWallFunction/nutkAtmRoughWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkAtmRoughWallFunction/nutkAtmRoughWallFunctionFvPatchScalarField.H index 2704c4c97..a96dfb7ae 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkAtmRoughWallFunction/nutkAtmRoughWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkAtmRoughWallFunction/nutkAtmRoughWallFunctionFvPatchScalarField.H @@ -47,7 +47,6 @@ Description \endvartable Usage - \table Property | Description | Required | Default value z0 | surface roughness length| yes | @@ -55,7 +54,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type nutkAtmRoughWallFunction; z0 uniform 0; diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkRoughWallFunction/nutkRoughWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkRoughWallFunction/nutkRoughWallFunctionFvPatchScalarField.H index 999833550..1eba8523c 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkRoughWallFunction/nutkRoughWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkRoughWallFunction/nutkRoughWallFunctionFvPatchScalarField.H @@ -38,7 +38,6 @@ Description - roughness constant = 0.5-1.0 Usage - \table Property | Description | Required | Default value Ks | sand-grain roughness height | yes | @@ -47,7 +46,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type nutkRoughWallFunction; Ks uniform 0; diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkWallFunction/nutkWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkWallFunction/nutkWallFunctionFvPatchScalarField.H index 5247fd7b2..fab8f67b4 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkWallFunction/nutkWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkWallFunction/nutkWallFunctionFvPatchScalarField.H @@ -33,10 +33,9 @@ Description - replicates OpenFOAM v1.5 (and earlier) behaviour Usage - Example of the boundary condition specification: \verbatim - myPatch + { type nutkWallFunction; } diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.H index 51ec6bb53..83b25df36 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.H @@ -51,7 +51,6 @@ Description \endverbatim Usage - \table Property | Description | Required | Default value Cmu | model coefficient | no | 0.09 @@ -62,7 +61,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type omegaWallFunction; } diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/v2WallFunctions/v2WallFunction/v2WallFunctionFvPatchScalarField.H b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/v2WallFunctions/v2WallFunction/v2WallFunctionFvPatchScalarField.H index 1055a5a5d..83efeab56 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/v2WallFunctions/v2WallFunction/v2WallFunctionFvPatchScalarField.H +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/v2WallFunctions/v2WallFunction/v2WallFunctionFvPatchScalarField.H @@ -37,7 +37,6 @@ Description Usage - \table Property | Description | Required | Default value Cmu | model coefficient | no | 0.09 @@ -47,7 +46,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type v2WallFunction; } diff --git a/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFFreestreamVelocityFvPatchVectorField/SRFFreestreamVelocityFvPatchVectorField.H b/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFFreestreamVelocityFvPatchVectorField/SRFFreestreamVelocityFvPatchVectorField.H index dabab17c6..8560c5edf 100644 --- a/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFFreestreamVelocityFvPatchVectorField/SRFFreestreamVelocityFvPatchVectorField.H +++ b/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFFreestreamVelocityFvPatchVectorField/SRFFreestreamVelocityFvPatchVectorField.H @@ -47,7 +47,6 @@ Description Usage - \table Property | Description | Required | Default value UInf | freestream velocity | yes | @@ -56,7 +55,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type SRFFreestreamVelocity; UInf uniform (0 0 0); diff --git a/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFVelocityFvPatchVectorField/SRFVelocityFvPatchVectorField.H b/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFVelocityFvPatchVectorField/SRFVelocityFvPatchVectorField.H index 2eeae499a..cdf96caba 100644 --- a/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFVelocityFvPatchVectorField/SRFVelocityFvPatchVectorField.H +++ b/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFVelocityFvPatchVectorField/SRFVelocityFvPatchVectorField.H @@ -59,7 +59,6 @@ Description Usage - \table Property | Description | Required | Default value inletValue | inlet velocity | yes | @@ -68,7 +67,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type SRFVelocity; inletValue uniform (0 0 0); diff --git a/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFWallVelocityFvPatchVectorField/SRFWallVelocityFvPatchVectorField.H b/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFWallVelocityFvPatchVectorField/SRFWallVelocityFvPatchVectorField.H index 5f967c336..4c3101993 100644 --- a/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFWallVelocityFvPatchVectorField/SRFWallVelocityFvPatchVectorField.H +++ b/src/finiteVolume/cfdTools/general/SRF/derivedFvPatchFields/SRFWallVelocityFvPatchVectorField/SRFWallVelocityFvPatchVectorField.H @@ -48,10 +48,9 @@ Description if the wall patch faces are irregular. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type SRFWallVelocity; value uniform (0 0 0); // Initial value diff --git a/src/finiteVolume/fields/fvPatchFields/basic/calculated/calculatedFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/basic/calculated/calculatedFvPatchField.H index ad7b36822..de6ae1ac6 100644 --- a/src/finiteVolume/fields/fvPatchFields/basic/calculated/calculatedFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/basic/calculated/calculatedFvPatchField.H @@ -33,10 +33,9 @@ Description e.g. \c updateCoeffs or \c evaluate. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type calculated; value uniform (0 0 0); // Required value entry diff --git a/src/finiteVolume/fields/fvPatchFields/basic/extrapolatedCalculated/extrapolatedCalculatedFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/basic/extrapolatedCalculated/extrapolatedCalculatedFvPatchField.H index 5ba454dd2..da998d3a8 100644 --- a/src/finiteVolume/fields/fvPatchFields/basic/extrapolatedCalculated/extrapolatedCalculatedFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/basic/extrapolatedCalculated/extrapolatedCalculatedFvPatchField.H @@ -34,10 +34,9 @@ Description internal and patch field values rather than returning zero. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type extrapolatedCalculated; } diff --git a/src/finiteVolume/fields/fvPatchFields/basic/fixedGradient/fixedGradientFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/basic/fixedGradient/fixedGradientFvPatchField.H index 305722018..622a52fcd 100644 --- a/src/finiteVolume/fields/fvPatchFields/basic/fixedGradient/fixedGradientFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/basic/fixedGradient/fixedGradientFvPatchField.H @@ -44,7 +44,6 @@ Description \endvartable Usage - \table Property | Description | Required | Default value gradient | gradient | yes | @@ -52,7 +51,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fixedGradient; gradient uniform 0; diff --git a/src/finiteVolume/fields/fvPatchFields/basic/fixedValue/fixedValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/basic/fixedValue/fixedValueFvPatchField.H index c210f17e0..3cf242142 100644 --- a/src/finiteVolume/fields/fvPatchFields/basic/fixedValue/fixedValueFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/basic/fixedValue/fixedValueFvPatchField.H @@ -32,7 +32,6 @@ Description class for a number of other boundary conditions. Usage - \table Property | Description | Required | Default value value | Patch face values | yes | @@ -40,7 +39,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fixedValue; value uniform 0; // Example for scalar field usage diff --git a/src/finiteVolume/fields/fvPatchFields/basic/mixed/mixedFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/basic/mixed/mixedFvPatchField.H index b51e69adc..1da39dc19 100644 --- a/src/finiteVolume/fields/fvPatchFields/basic/mixed/mixedFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/basic/mixed/mixedFvPatchField.H @@ -49,7 +49,6 @@ Description Usage - \table Property | Description | Required | Default value valueFraction | weight field | yes | diff --git a/src/finiteVolume/fields/fvPatchFields/basic/zeroGradient/zeroGradientFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/basic/zeroGradient/zeroGradientFvPatchField.H index 049e1f86f..c8c1ec4b5 100644 --- a/src/finiteVolume/fields/fvPatchFields/basic/zeroGradient/zeroGradientFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/basic/zeroGradient/zeroGradientFvPatchField.H @@ -32,10 +32,9 @@ Description internal field onto the patch faces. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type zeroGradient; } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.H index 06975886b..8122c2113 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.H @@ -32,10 +32,9 @@ Description boundaries. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type cyclic; } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.H index b371c9002..ebb2fb8cb 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.H @@ -33,10 +33,9 @@ Description an arbitrarily coupled mesh interface (ACMI) interpolation. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type cyclicACMI; } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.H index ef5cdcc96..7ad7bddbb 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.H @@ -33,10 +33,9 @@ Description an arbitrary mesh interface (AMI) interpolation. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type cyclicAMI; } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicSlip/cyclicSlipFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicSlip/cyclicSlipFvPatchField.H index 57a5f7df2..9645916cb 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicSlip/cyclicSlipFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicSlip/cyclicSlipFvPatchField.H @@ -32,10 +32,9 @@ Description condition, providing no new functionality. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type cyclicSlip; } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/empty/emptyFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/empty/emptyFvPatchField.H index 017acb422..b6b90e98a 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/empty/emptyFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/empty/emptyFvPatchField.H @@ -34,10 +34,9 @@ Description constitue solution directions. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type empty; } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.H index ddb4c5dee..bfe1b7570 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.H @@ -31,10 +31,9 @@ Description This boundary condition enables processor communication across patches. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type processor; } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/processorCyclic/processorCyclicFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/processorCyclic/processorCyclicFvPatchField.H index bdc81a727..1f492a95c 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/processorCyclic/processorCyclicFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/processorCyclic/processorCyclicFvPatchField.H @@ -32,10 +32,9 @@ Description patches. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type processor; } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/symmetry/symmetryFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/symmetry/symmetryFvPatchField.H index 8e988347d..ef808b36c 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/symmetry/symmetryFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/symmetry/symmetryFvPatchField.H @@ -31,10 +31,9 @@ Description This boundary condition enforces a symmetry constraint Usage - Example of the boundary condition specification: \verbatim - myPatch + { type symmetry; } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/symmetryPlane/symmetryPlaneFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/symmetryPlane/symmetryPlaneFvPatchField.H index 1dfb805c6..ab6057d9d 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/symmetryPlane/symmetryPlaneFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/symmetryPlane/symmetryPlaneFvPatchField.H @@ -31,10 +31,9 @@ Description This boundary condition enforces a symmetryPlane constraint Usage - Example of the boundary condition specification: \verbatim - myPatch + { type symmetryPlane; } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/wedge/wedgeFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/wedge/wedgeFvPatchField.H index d8aef9e6e..eab75d121 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/wedge/wedgeFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/wedge/wedgeFvPatchField.H @@ -32,10 +32,9 @@ Description it is applied to 2-D geometries. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type wedge; } diff --git a/src/finiteVolume/fields/fvPatchFields/derived/activeBaffleVelocity/activeBaffleVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/activeBaffleVelocity/activeBaffleVelocityFvPatchVectorField.H index b4639cf18..e720cadc7 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/activeBaffleVelocity/activeBaffleVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/activeBaffleVelocity/activeBaffleVelocityFvPatchVectorField.H @@ -55,7 +55,6 @@ Description The open fraction is then applied to scale the patch areas. Usage - \table Property | Description | Required | Default value p | pressure field name | no | p @@ -68,7 +67,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type activeBaffleVelocity; p p; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/activePressureForceBaffleVelocity/activePressureForceBaffleVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/activePressureForceBaffleVelocity/activePressureForceBaffleVelocityFvPatchVectorField.H index 25396f644..f645c0257 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/activePressureForceBaffleVelocity/activePressureForceBaffleVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/activePressureForceBaffleVelocity/activePressureForceBaffleVelocityFvPatchVectorField.H @@ -58,7 +58,6 @@ Description The open fraction is then applied to scale the patch areas. Usage - \table Property | Description | Required | Default value p | pressure field name | no | p @@ -74,7 +73,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type activePressureForceBaffleVelocity; p p; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/advective/advectiveFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/advective/advectiveFvPatchField.H index 10dfd7898..e5caf9786 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/advective/advectiveFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/advective/advectiveFvPatchField.H @@ -49,7 +49,6 @@ Description transmissive boundary condition. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -60,7 +59,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type advective; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/codedFixedValue/codedFixedValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/codedFixedValue/codedFixedValueFvPatchField.H index 9b7097b44..e8f7453d4 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/codedFixedValue/codedFixedValueFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/codedFixedValue/codedFixedValueFvPatchField.H @@ -32,10 +32,9 @@ Description fixedValueFvPatchField) which is then used to evaluate. Usage - Example: \verbatim - myPatch + { type codedFixedValue; value uniform 0; @@ -63,7 +62,7 @@ Usage which would have a corresponding entry: \verbatim - myPatch + { code #{ diff --git a/src/finiteVolume/fields/fvPatchFields/derived/codedMixed/codedMixedFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/codedMixed/codedMixedFvPatchField.H index 7484cbc80..37b20c9c4 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/codedMixed/codedMixedFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/codedMixed/codedMixedFvPatchField.H @@ -32,10 +32,9 @@ Description mixedFvPatchField) which is then used to evaluate. Usage - Example: \verbatim - myPatch + { type codedMixed; @@ -71,7 +70,7 @@ Usage which would have a corresponding entry \verbatim - myPatch + { code #{ diff --git a/src/finiteVolume/fields/fvPatchFields/derived/cylindricalInletVelocity/cylindricalInletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/cylindricalInletVelocity/cylindricalInletVelocityFvPatchVectorField.H index 1a2843d41..feaf17f0c 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/cylindricalInletVelocity/cylindricalInletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/cylindricalInletVelocity/cylindricalInletVelocityFvPatchVectorField.H @@ -33,7 +33,6 @@ Description and radial velocity. Usage - \table Property | Description | Required | Default value axis | axis of rotation | yes | @@ -45,7 +44,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type cylindricalInletVelocity; axis (0 0 1); diff --git a/src/finiteVolume/fields/fvPatchFields/derived/externalCoupledMixed/externalCoupledMixedFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/externalCoupledMixed/externalCoupledMixedFvPatchField.H index b5dc098ae..190ff28e5 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/externalCoupledMixed/externalCoupledMixedFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/externalCoupledMixed/externalCoupledMixedFvPatchField.H @@ -84,7 +84,6 @@ Description Usage - \table Property | Description | Required | Default value commsDir | communications directory | yes | @@ -98,7 +97,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type externalCoupled; commsDir "$FOAM_CASE/comms"; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H index 2bda5a598..301db5d0d 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H @@ -35,7 +35,6 @@ Description contant, polynomial, table values. Usage - \table Property | Description | Required | Default value patchType | underlying patch type should be \c cyclic| yes | @@ -46,7 +45,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fan; patchType cyclic; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fanPressure/fanPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/fanPressure/fanPressureFvPatchScalarField.H index 74b69ab13..aa4b19f28 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fanPressure/fanPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fanPressure/fanPressureFvPatchScalarField.H @@ -32,7 +32,6 @@ Description or outlet total pressure condition for a fan. Usage - \table Property | Description | Required | Default value fileName | fan curve file name | yes | diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fixedFluxExtrapolatedPressure/fixedFluxExtrapolatedPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/fixedFluxExtrapolatedPressure/fixedFluxExtrapolatedPressureFvPatchScalarField.H index 382d6b3db..1bdaee71b 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fixedFluxExtrapolatedPressure/fixedFluxExtrapolatedPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fixedFluxExtrapolatedPressure/fixedFluxExtrapolatedPressureFvPatchScalarField.H @@ -34,7 +34,7 @@ Description Example of the boundary condition specification: \verbatim - myPatch + { type fixedFluxExtrapolatedPressure; } diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fixedFluxPressure/fixedFluxPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/fixedFluxPressure/fixedFluxPressureFvPatchScalarField.H index f60932280..aa34bf663 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fixedFluxPressure/fixedFluxPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fixedFluxPressure/fixedFluxPressureFvPatchScalarField.H @@ -34,7 +34,7 @@ Description Example of the boundary condition specification: \verbatim - myPatch + { type fixedFluxPressure; } diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fixedInternalValueFvPatchField/fixedInternalValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/fixedInternalValueFvPatchField/fixedInternalValueFvPatchField.H index 7870fa712..4b1b997be 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fixedInternalValueFvPatchField/fixedInternalValueFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fixedInternalValueFvPatchField/fixedInternalValueFvPatchField.H @@ -33,10 +33,9 @@ Description behaviour is to act as a zero gradient condition. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type fixedInternalValue; value uniform 0; // place holder diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fixedJump/fixedJumpFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/fixedJump/fixedJumpFvPatchField.H index 6f81586f1..48d8ecbde 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fixedJump/fixedJumpFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fixedJump/fixedJumpFvPatchField.H @@ -35,7 +35,6 @@ Description 'owner' patch. Usage - \table Property | Description | Required | Default value patchType | underlying patch type should be \c cyclic| yes | @@ -44,7 +43,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fixedJump; patchType cyclic; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fixedJumpAMI/fixedJumpAMIFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/fixedJumpAMI/fixedJumpAMIFvPatchField.H index 7e5ebaa86..66e892ff9 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fixedJumpAMI/fixedJumpAMIFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fixedJumpAMI/fixedJumpAMIFvPatchField.H @@ -35,7 +35,6 @@ Description 'owner' patch. Usage - \table Property | Description | Required | Default value patchType | underlying patch type should be \c cyclic| yes | @@ -44,7 +43,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fixedJumpAMI; patchType cyclic; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fixedMean/fixedMeanFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/fixedMean/fixedMeanFvPatchField.H index f3fc4d912..ab356135c 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fixedMean/fixedMeanFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fixedMean/fixedMeanFvPatchField.H @@ -33,7 +33,6 @@ Description time-varying, mean value. Usage - \table Property | Description | Required | Default value meanValue | mean value Function1 | yes | @@ -41,7 +40,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fixedMean; meanValue 1.0; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fixedNormalInletOutletVelocity/fixedNormalInletOutletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/fixedNormalInletOutletVelocity/fixedNormalInletOutletVelocityFvPatchVectorField.H index 6ce56ecfe..95b45a82d 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fixedNormalInletOutletVelocity/fixedNormalInletOutletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fixedNormalInletOutletVelocity/fixedNormalInletOutletVelocityFvPatchVectorField.H @@ -42,7 +42,6 @@ Description apply zero-gradient condition to tangential components. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -52,7 +51,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fixedNormalInletOutletVelocity; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fixedNormalSlip/fixedNormalSlipFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/fixedNormalSlip/fixedNormalSlipFvPatchField.H index 48391c4e4..93c118062 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fixedNormalSlip/fixedNormalSlipFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fixedNormalSlip/fixedNormalSlipFvPatchField.H @@ -31,7 +31,6 @@ Description This boundary condition sets the patch-normal component to a fixed value. Usage - \table Property | Description | Required | Default value fixedValue | fixed value | yes | @@ -39,7 +38,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fixedNormalSlip; fixedValue uniform 0; // example entry for a scalar field diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fixedPressureCompressibleDensity/fixedPressureCompressibleDensityFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/fixedPressureCompressibleDensity/fixedPressureCompressibleDensityFvPatchScalarField.H index 98d701efa..a13f11984 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fixedPressureCompressibleDensity/fixedPressureCompressibleDensityFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fixedPressureCompressibleDensity/fixedPressureCompressibleDensityFvPatchScalarField.H @@ -49,7 +49,6 @@ Description \c thermodynamicProperties dictionary. Usage - \table Property | Description | Required | Default value p | pressure field name | no | p @@ -57,7 +56,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fixedPressureCompressibleDensity; p p; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fixedProfile/fixedProfileFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/fixedProfile/fixedProfileFvPatchField.H index 15d7af290..502be93b5 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fixedProfile/fixedProfileFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fixedProfile/fixedProfileFvPatchField.H @@ -31,7 +31,6 @@ Description This boundary condition provides a fixed value profile condition. Usage - \table Property | Description | Required | Default value profile | Profile Function1 | yes | @@ -41,7 +40,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type fixedProfile; profile csvFile; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.H index 09f627ebc..286004f97 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.H @@ -53,7 +53,7 @@ Usage Example of the boundary condition specification for a volumetric flow rate: \verbatim - myPatch + { type flowRateInletVelocity; volumetricFlowRate 0.2; @@ -64,7 +64,7 @@ Usage Example of the boundary condition specification for a mass flow rate: \verbatim - myPatch + { type flowRateInletVelocity; massFlowRate 0.2; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fluxCorrectedVelocity/fluxCorrectedVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/fluxCorrectedVelocity/fluxCorrectedVelocityFvPatchVectorField.H index 3014e4cfa..b4369b12b 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fluxCorrectedVelocity/fluxCorrectedVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fluxCorrectedVelocity/fluxCorrectedVelocityFvPatchVectorField.H @@ -56,7 +56,7 @@ Description Example of the boundary condition specification: \verbatim - myPatch + { type fluxCorrectedVelocity; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/freestream/freestreamFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/freestream/freestreamFvPatchField.H index 18f025314..258c38cee 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/freestream/freestreamFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/freestream/freestreamFvPatchField.H @@ -34,7 +34,6 @@ Description based on the sign of the flux. Usage - \table Property | Description | Required | Default value freestreamValue | freestream velocity | yes | @@ -43,7 +42,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type freestream; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.H index 56ec09a66..e8b5f2811 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.H @@ -33,7 +33,6 @@ Description based on the free-stream velocity. Usage - \table Property | Description | Required | Default value U | velocity field name | no | U @@ -43,7 +42,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type freestreamPressure; } diff --git a/src/finiteVolume/fields/fvPatchFields/derived/inletOutlet/inletOutletFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/inletOutlet/inletOutletFvPatchField.H index 06ae68b54..00e58e8c9 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/inletOutlet/inletOutletFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/inletOutlet/inletOutletFvPatchField.H @@ -32,7 +32,6 @@ Description specified inflow for the case of return flow. Usage - \table Property | Description | Required | Default value phi | Flux field name | no | phi @@ -41,7 +40,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type inletOutlet; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/inletOutletTotalTemperature/inletOutletTotalTemperatureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/inletOutletTotalTemperature/inletOutletTotalTemperatureFvPatchScalarField.H index 526b50cee..1f0b69523 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/inletOutletTotalTemperature/inletOutletTotalTemperatureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/inletOutletTotalTemperature/inletOutletTotalTemperatureFvPatchScalarField.H @@ -33,7 +33,6 @@ Description value is applied in the case of reverse flow. Usage - \table Property | Description | Required | Default value U | velocity field name | no | U @@ -46,7 +45,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type inletOutletTotalTemperature; U U; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/mappedField/mappedFieldFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/mappedField/mappedFieldFvPatchField.H index 72f2e59ff..2c2026545 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/mappedField/mappedFieldFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/mappedField/mappedFieldFvPatchField.H @@ -33,7 +33,6 @@ Description thr data locally. Usage - \table Property | Description | Required | Default value fieldName | name of field to be mapped | no | this field name @@ -43,7 +42,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type mappedField; fieldName T; // optional field name diff --git a/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedInternalValue/mappedFixedInternalValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedInternalValue/mappedFixedInternalValueFvPatchField.H index c3971cd4f..44c233b1c 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedInternalValue/mappedFixedInternalValueFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedInternalValue/mappedFixedInternalValueFvPatchField.H @@ -32,7 +32,6 @@ Description neighbour patch field to the boundary and internal values of *this. Usage - \table Property | Description | Required | Default value fieldName | name of field to be mapped | no | this field name @@ -41,7 +40,7 @@ Usage \endtable \verbatim - myPatch + { type mappedFixedInternalValue; fieldName T; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedPushedInternalValue/mappedFixedPushedInternalValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedPushedInternalValue/mappedFixedPushedInternalValueFvPatchField.H index 715c4043a..81ce8a514 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedPushedInternalValue/mappedFixedPushedInternalValueFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedPushedInternalValue/mappedFixedPushedInternalValueFvPatchField.H @@ -32,7 +32,6 @@ Description field to the boundary and internal cell values of *this. Usage - \table Property | Description | Required | Default value fieldName | name of field to be mapped | no | this field name @@ -42,7 +41,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type mappedFixedPushedInternalValue; fieldName T; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedValue/mappedFixedValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedValue/mappedFixedValueFvPatchField.H index c3d83898c..15257430f 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedValue/mappedFixedValueFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/mappedFixedValue/mappedFixedValueFvPatchField.H @@ -35,7 +35,6 @@ Description mappedPatchBase class. Usage - \table Property | Description | Required | Default value fieldName | name of field to be mapped | no | this field name @@ -46,7 +45,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type mapped; fieldName T; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/mappedFlowRate/mappedFlowRateFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/mappedFlowRate/mappedFlowRateFvPatchVectorField.H index a45d98218..99629b0fc 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/mappedFlowRate/mappedFlowRateFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/mappedFlowRate/mappedFlowRateFvPatchVectorField.H @@ -38,7 +38,6 @@ Description velocity when applying the mass basis. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -48,7 +47,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type mappedFlowRate; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/mappedVelocityFluxFixedValue/mappedVelocityFluxFixedValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/mappedVelocityFluxFixedValue/mappedVelocityFluxFixedValueFvPatchField.H index ffe67be23..52b16328c 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/mappedVelocityFluxFixedValue/mappedVelocityFluxFixedValueFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/mappedVelocityFluxFixedValue/mappedVelocityFluxFixedValueFvPatchField.H @@ -32,7 +32,6 @@ Description to this patch Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -40,7 +39,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type mappedVelocityFlux; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/movingWallVelocity/movingWallVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/movingWallVelocity/movingWallVelocityFvPatchVectorField.H index 67f97dd20..ca21c16a4 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/movingWallVelocity/movingWallVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/movingWallVelocity/movingWallVelocityFvPatchVectorField.H @@ -33,10 +33,9 @@ Description for moving reference frame (MRF) calculations. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type movingWallVelocity; value uniform (0 0 0); // Initial value diff --git a/src/finiteVolume/fields/fvPatchFields/derived/noSlip/noSlipFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/noSlip/noSlipFvPatchVectorField.H index 329b62da4..b3670f4c8 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/noSlip/noSlipFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/noSlip/noSlipFvPatchVectorField.H @@ -31,10 +31,9 @@ Description This boundary condition fixes the velocity to zero at walls. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type noSlip; } diff --git a/src/finiteVolume/fields/fvPatchFields/derived/outletInlet/outletInletFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/outletInlet/outletInletFvPatchField.H index 5de54e9f1..fe653214b 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/outletInlet/outletInletFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/outletInlet/outletInletFvPatchField.H @@ -32,7 +32,6 @@ Description specified outflow for the case of reverse flow. Usage - \table Property | Description | Required | Default value phi | Flux field name | no | phi @@ -41,7 +40,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type outletInlet; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/outletMappedUniformInlet/outletMappedUniformInletFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/outletMappedUniformInlet/outletMappedUniformInletFvPatchField.H index 65169d8ed..c777ff623 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/outletMappedUniformInlet/outletMappedUniformInletFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/outletMappedUniformInlet/outletMappedUniformInletFvPatchField.H @@ -33,7 +33,6 @@ Description field over this patch. Usage - \table Property | Description | Required | Default value outletPatchName | name of outlet patch | yes | @@ -42,7 +41,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type outletMappedUniformInlet; outletPatchName aPatch; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/outletPhaseMeanVelocity/outletPhaseMeanVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/outletPhaseMeanVelocity/outletPhaseMeanVelocityFvPatchVectorField.H index 7a1fd6c58..bafe02055 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/outletPhaseMeanVelocity/outletPhaseMeanVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/outletPhaseMeanVelocity/outletPhaseMeanVelocityFvPatchVectorField.H @@ -44,7 +44,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type outletPhaseMeanVelocity; Umean 1.2; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/partialSlip/partialSlipFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/partialSlip/partialSlipFvPatchField.H index e74b0f6bd..52170caa2 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/partialSlip/partialSlipFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/partialSlip/partialSlipFvPatchField.H @@ -32,7 +32,6 @@ Description slip is controlled by a user-supplied field. Usage - \table Property | Description | Required | Default value valueFraction | fraction od value used for boundary [0-1] | yes | @@ -40,7 +39,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type partialSlip; valueFraction uniform 0.1; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/phaseHydrostaticPressure/phaseHydrostaticPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/phaseHydrostaticPressure/phaseHydrostaticPressureFvPatchScalarField.H index 6eb085523..8d32b05ec 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/phaseHydrostaticPressure/phaseHydrostaticPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/phaseHydrostaticPressure/phaseHydrostaticPressureFvPatchScalarField.H @@ -49,7 +49,6 @@ Description - 0: apply a zero-gradient condition Usage - \table Property | Description | Required | Default value phaseFraction | phase-fraction field name | no | alpha @@ -60,7 +59,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type phaseHydrostaticPressure; phaseFraction alpha1; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/plenumPressure/plenumPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/plenumPressure/plenumPressureFvPatchScalarField.H index 200c130f1..489c37943 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/plenumPressure/plenumPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/plenumPressure/plenumPressureFvPatchScalarField.H @@ -64,7 +64,6 @@ Description \endverbatim Usage - \table Property | Description | Required | Default value gamma | ratio of specific heats | yes | none @@ -84,7 +83,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type plenumPressure; gamma 1.4; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/pressureDirectedInletOutletVelocity/pressureDirectedInletOutletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/pressureDirectedInletOutletVelocity/pressureDirectedInletOutletVelocityFvPatchVectorField.H index d52c186d2..60d0c0563 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/pressureDirectedInletOutletVelocity/pressureDirectedInletOutletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/pressureDirectedInletOutletVelocity/pressureDirectedInletOutletVelocityFvPatchVectorField.H @@ -34,7 +34,6 @@ Description is obtained from the flux with the specified inlet direction. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -44,7 +43,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type pressureDirectedInletOutletVelocity; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/pressureDirectedInletVelocity/pressureDirectedInletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/pressureDirectedInletVelocity/pressureDirectedInletVelocityFvPatchVectorField.H index 96c3a7afc..45bd87e61 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/pressureDirectedInletVelocity/pressureDirectedInletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/pressureDirectedInletVelocity/pressureDirectedInletVelocityFvPatchVectorField.H @@ -33,7 +33,6 @@ Description the specified inlet direction" direction. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -43,7 +42,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type pressureDirectedInletVelocity; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/pressureInletOutletParSlipVelocity/pressureInletOutletParSlipVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/pressureInletOutletParSlipVelocity/pressureInletOutletParSlipVelocityFvPatchVectorField.H index 67ffcd0ca..bb1b79783 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/pressureInletOutletParSlipVelocity/pressureInletOutletParSlipVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/pressureInletOutletParSlipVelocity/pressureInletOutletParSlipVelocityFvPatchVectorField.H @@ -36,7 +36,6 @@ Description A slip condition is applied tangential to the patch. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -45,7 +44,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type pressureInletOutletParSlipVelocity; value uniform 0; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/pressureInletOutletVelocity/pressureInletOutletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/pressureInletOutletVelocity/pressureInletOutletVelocityFvPatchVectorField.H index 997e61005..6ca9107e9 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/pressureInletOutletVelocity/pressureInletOutletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/pressureInletOutletVelocity/pressureInletOutletVelocityFvPatchVectorField.H @@ -36,7 +36,6 @@ Description The tangential patch velocity can be optionally specified. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -45,7 +44,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type pressureInletOutletVelocity; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/pressureInletUniformVelocity/pressureInletUniformVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/pressureInletUniformVelocity/pressureInletUniformVelocityFvPatchVectorField.H index ade86de99..03f01e6e1 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/pressureInletUniformVelocity/pressureInletUniformVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/pressureInletUniformVelocity/pressureInletUniformVelocityFvPatchVectorField.H @@ -34,10 +34,9 @@ Description normal to the patch faces. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type pressureInletUniformVelocity; value uniform 0; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/pressureInletVelocity/pressureInletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/pressureInletVelocity/pressureInletVelocityFvPatchVectorField.H index 4253b2ad5..4c024ef33 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/pressureInletVelocity/pressureInletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/pressureInletVelocity/pressureInletVelocityFvPatchVectorField.H @@ -33,10 +33,9 @@ Description a direction normal to the patch faces. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type pressureInletVelocity; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/pressureNormalInletOutletVelocity/pressureNormalInletOutletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/pressureNormalInletOutletVelocity/pressureNormalInletOutletVelocityFvPatchVectorField.H index 52766d712..2877c792a 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/pressureNormalInletOutletVelocity/pressureNormalInletOutletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/pressureNormalInletOutletVelocity/pressureNormalInletOutletVelocityFvPatchVectorField.H @@ -34,7 +34,6 @@ Description the flux with a direction normal to the patch faces. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -43,7 +42,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type pressureNormalInletOutletVelocity; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/prghPressure/prghPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/prghPressure/prghPressureFvPatchScalarField.H index 2c54638a8..69d45ffc2 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/prghPressure/prghPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/prghPressure/prghPressureFvPatchScalarField.H @@ -46,7 +46,6 @@ Description \endtable Usage - \table Property | Description | Required | Default value rho | rho field name | no | rho @@ -55,7 +54,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type prghPressure; rho rho; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/prghTotalHydrostaticPressure/prghTotalHydrostaticPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/prghTotalHydrostaticPressure/prghTotalHydrostaticPressureFvPatchScalarField.H index 64901c8c0..de4d2ec48 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/prghTotalHydrostaticPressure/prghTotalHydrostaticPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/prghTotalHydrostaticPressure/prghTotalHydrostaticPressureFvPatchScalarField.H @@ -46,7 +46,6 @@ Description \endtable Usage - \table Property | Description | Required | Default value U | Velocity field name | no | U @@ -58,7 +57,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type prghTotalHydrostaticPressure; value uniform 0; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/prghTotalPressure/prghTotalPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/prghTotalPressure/prghTotalPressureFvPatchScalarField.H index 138e94160..a28471217 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/prghTotalPressure/prghTotalPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/prghTotalPressure/prghTotalPressureFvPatchScalarField.H @@ -48,7 +48,6 @@ Description \endtable Usage - \table Property | Description | Required | Default value U | Velocity field name | no | U @@ -59,7 +58,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type prghTotalPressure; p0 uniform 0; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/rotatingPressureInletOutletVelocity/rotatingPressureInletOutletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/rotatingPressureInletOutletVelocity/rotatingPressureInletOutletVelocityFvPatchVectorField.H index 0ff40f875..ddb6cc5df 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/rotatingPressureInletOutletVelocity/rotatingPressureInletOutletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/rotatingPressureInletOutletVelocity/rotatingPressureInletOutletVelocityFvPatchVectorField.H @@ -34,7 +34,6 @@ Description from the flux with a direction normal to the patch faces. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -44,7 +43,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type rotatingPressureInletOutletVelocity; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/rotatingTotalPressure/rotatingTotalPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/rotatingTotalPressure/rotatingTotalPressureFvPatchScalarField.H index f1486e113..800df1126 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/rotatingTotalPressure/rotatingTotalPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/rotatingTotalPressure/rotatingTotalPressureFvPatchScalarField.H @@ -32,7 +32,6 @@ Description in a rotating frame. Usage - \table Property | Description | Required | Default value U | velocity field name | no | U @@ -46,7 +45,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type rotatingTotalPressure; U U; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/rotatingWallVelocity/rotatingWallVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/rotatingWallVelocity/rotatingWallVelocityFvPatchVectorField.H index 9d5c2ff9f..485a417bd 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/rotatingWallVelocity/rotatingWallVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/rotatingWallVelocity/rotatingWallVelocityFvPatchVectorField.H @@ -31,7 +31,6 @@ Description This boundary condition provides a rotational velocity condition. Usage - \table Property | Description | Required | Default value origin | origin of rotation in Cartesian co-ordinates | yes| @@ -41,7 +40,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type rotatingWallVelocity; origin (0 0 0); diff --git a/src/finiteVolume/fields/fvPatchFields/derived/slip/slipFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/slip/slipFvPatchField.H index 011ee4487..0e8382ff5 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/slip/slipFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/slip/slipFvPatchField.H @@ -31,10 +31,9 @@ Description This boundary condition provides a slip constraint. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type slip; } diff --git a/src/finiteVolume/fields/fvPatchFields/derived/supersonicFreestream/supersonicFreestreamFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/supersonicFreestream/supersonicFreestreamFvPatchVectorField.H index b10856aa4..54d0e92a6 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/supersonicFreestream/supersonicFreestreamFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/supersonicFreestream/supersonicFreestreamFvPatchVectorField.H @@ -37,7 +37,6 @@ Description the domain. Usage - \table Property | Description | Required | Default value T | Temperature field name | no | T @@ -51,7 +50,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type supersonicFreestream; UInf 500; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/surfaceNormalFixedValue/surfaceNormalFixedValueFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/surfaceNormalFixedValue/surfaceNormalFixedValueFvPatchVectorField.H index 935eceb57..23e6b1995 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/surfaceNormalFixedValue/surfaceNormalFixedValueFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/surfaceNormalFixedValue/surfaceNormalFixedValueFvPatchVectorField.H @@ -32,7 +32,6 @@ Description by its magnitude. Usage - \table Property | Description | Required | Default value refValue | reference value | yes | @@ -40,7 +39,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type surfaceNormalFixedValue; refValue uniform -10; // 10 INTO the domain diff --git a/src/finiteVolume/fields/fvPatchFields/derived/swirlFlowRateInletVelocity/swirlFlowRateInletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/swirlFlowRateInletVelocity/swirlFlowRateInletVelocityFvPatchVectorField.H index 16d750f1b..1bbc14668 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/swirlFlowRateInletVelocity/swirlFlowRateInletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/swirlFlowRateInletVelocity/swirlFlowRateInletVelocityFvPatchVectorField.H @@ -38,7 +38,6 @@ Description velocity when applying the mass basis. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -49,7 +48,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type swirlFlowRateInletVelocity; flowRate constant 0.2; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/syringePressure/syringePressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/syringePressure/syringePressureFvPatchScalarField.H index 1695a1e32..d7e456895 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/syringePressure/syringePressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/syringePressure/syringePressureFvPatchScalarField.H @@ -38,7 +38,6 @@ Description expansion/compression. Usage - \table Property | Description | Required | Default value Ap | syringe piston area [m2] | yes | @@ -55,7 +54,7 @@ Usage Example of the BC specification: \verbatim - myPatch + { type syringePressure; Ap 1.388e-6; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/timeVaryingMappedFixedValue/timeVaryingMappedFixedValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/timeVaryingMappedFixedValue/timeVaryingMappedFixedValueFvPatchField.H index 2ea101c48..3b3999317 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/timeVaryingMappedFixedValue/timeVaryingMappedFixedValueFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/timeVaryingMappedFixedValue/timeVaryingMappedFixedValueFvPatchField.H @@ -44,7 +44,6 @@ Description Values are interpolated linearly between times. Usage - \table Property | Description | Required | Default value setAverage | flag to activate setting of average value | yes | @@ -55,7 +54,7 @@ Usage \endtable \verbatim - myPatch + { type timeVaryingMappedFixedValue; setAverage false; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/totalPressure/totalPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/totalPressure/totalPressureFvPatchScalarField.H index 4cbc84763..bdbf00aa1 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/totalPressure/totalPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/totalPressure/totalPressureFvPatchScalarField.H @@ -91,7 +91,6 @@ Description Usage - \table Property | Description | Required | Default value U | Velocity field name | no | U @@ -104,7 +103,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type totalPressure; p0 uniform 1e5; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/totalTemperature/totalTemperatureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/totalTemperature/totalTemperatureFvPatchScalarField.H index 0abbcee5f..236056ff3 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/totalTemperature/totalTemperatureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/totalTemperature/totalTemperatureFvPatchScalarField.H @@ -31,7 +31,6 @@ Description This boundary condition provides a total temperature condition. Usage - \table Property | Description | Required | Default value U | Velocity field name | no | U @@ -43,7 +42,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type totalTemperature; T0 uniform 300; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/translatingWallVelocity/translatingWallVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/translatingWallVelocity/translatingWallVelocityFvPatchVectorField.H index 2302c84f3..d0d003f05 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/translatingWallVelocity/translatingWallVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/translatingWallVelocity/translatingWallVelocityFvPatchVectorField.H @@ -32,7 +32,6 @@ Description motion on walls. Usage - \table Property | Description | Required | Default value U | translational velocity | yes | @@ -40,7 +39,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type translatingWallVelocity; U (100 0 0); diff --git a/src/finiteVolume/fields/fvPatchFields/derived/turbulentInlet/turbulentInletFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/turbulentInlet/turbulentInletFvPatchField.H index 585be2d45..8df95c85c 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/turbulentInlet/turbulentInletFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/turbulentInlet/turbulentInletFvPatchField.H @@ -47,7 +47,6 @@ Description \endvartable Usage - \table Property | Description | Required | Default value fluctuationScale | RMS fluctuation scale (fraction of mean) | yes | @@ -57,7 +56,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type turbulentInlet; fluctuationScale 0.1; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/turbulentIntensityKineticEnergyInlet/turbulentIntensityKineticEnergyInletFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/turbulentIntensityKineticEnergyInlet/turbulentIntensityKineticEnergyInletFvPatchScalarField.H index 79977bd7c..36123904b 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/turbulentIntensityKineticEnergyInlet/turbulentIntensityKineticEnergyInletFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/turbulentIntensityKineticEnergyInlet/turbulentIntensityKineticEnergyInletFvPatchScalarField.H @@ -47,7 +47,6 @@ Description In the event of reverse flow, a zero-gradient condition is applied. Usage - \table Property | Description | Required | Default value intensity | fraction of mean field [0-1] | yes | @@ -57,7 +56,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type turbulentIntensityKineticEnergyInlet; intensity 0.05; // 5% turbulence diff --git a/src/finiteVolume/fields/fvPatchFields/derived/uniformDensityHydrostaticPressure/uniformDensityHydrostaticPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/uniformDensityHydrostaticPressure/uniformDensityHydrostaticPressureFvPatchScalarField.H index 23e4363fd..fb61f2f01 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/uniformDensityHydrostaticPressure/uniformDensityHydrostaticPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/uniformDensityHydrostaticPressure/uniformDensityHydrostaticPressureFvPatchScalarField.H @@ -45,7 +45,6 @@ Description \endtable Usage - \table Property | Description | Required | Default value rho | uniform density [kg/m3] | yes | @@ -55,7 +54,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type uniformDensityHydrostaticPressure; rho rho; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/uniformFixedGradient/uniformFixedGradientFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/uniformFixedGradient/uniformFixedGradientFvPatchField.H index 9566a0601..94f36f5ff 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/uniformFixedGradient/uniformFixedGradientFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/uniformFixedGradient/uniformFixedGradientFvPatchField.H @@ -31,7 +31,6 @@ Description This boundary condition provides a uniform fixed gradient condition. Usage - \table Property | Description | Required | Default value uniformGradient | uniform gradient | yes | @@ -39,7 +38,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type uniformFixedGradient; uniformGradient constant 0.2; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/uniformFixedValue/uniformFixedValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/uniformFixedValue/uniformFixedValueFvPatchField.H index 6e6fd3e49..36f397298 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/uniformFixedValue/uniformFixedValueFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/uniformFixedValue/uniformFixedValueFvPatchField.H @@ -31,7 +31,6 @@ Description This boundary condition provides a uniform fixed value condition. Usage - \table Property | Description | Required | Default value uniformValue | uniform value | yes | @@ -39,7 +38,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type uniformFixedValue; uniformValue constant 0.2; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/uniformInletOutlet/uniformInletOutletFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/uniformInletOutlet/uniformInletOutletFvPatchField.H index d1f3eab9d..bf1fa94d6 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/uniformInletOutlet/uniformInletOutletFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/uniformInletOutlet/uniformInletOutletFvPatchField.H @@ -31,7 +31,6 @@ Description Variant of inletOutlet boundary condition with uniform inletValue. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -40,7 +39,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type uniformInletOutlet; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/uniformJump/uniformJumpFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/uniformJump/uniformJumpFvPatchField.H index 5cc5e726a..a072af378 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/uniformJump/uniformJumpFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/uniformJump/uniformJumpFvPatchField.H @@ -33,7 +33,6 @@ Description value across the patch. Usage - \table Property | Description | Required | Default value patchType | underlying patch type should be \c cyclic| yes | @@ -42,7 +41,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type uniformJump; patchType cyclic; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/uniformJumpAMI/uniformJumpAMIFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/uniformJumpAMI/uniformJumpAMIFvPatchField.H index c0497cbea..5e6bdd206 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/uniformJumpAMI/uniformJumpAMIFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/uniformJumpAMI/uniformJumpAMIFvPatchField.H @@ -33,7 +33,6 @@ Description value across the patch. Usage - \table Property | Description | Required | Default value patchType | underlying patch type should be \c cyclicAMI| yes | @@ -42,7 +41,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type uniformJumpAMI; patchType cyclicAMI; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/uniformTotalPressure/uniformTotalPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/uniformTotalPressure/uniformTotalPressureFvPatchScalarField.H index a4f15cfe9..adfc012d7 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/uniformTotalPressure/uniformTotalPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/uniformTotalPressure/uniformTotalPressureFvPatchScalarField.H @@ -32,7 +32,6 @@ Description pressure boundary condition Foam::totalPressureFvPatchField. Usage - \table Property | Description | Required | Default value U | Velocity field name | no | U @@ -45,7 +44,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type uniformTotalPressure; p0 uniform 1e5; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/variableHeightFlowRate/variableHeightFlowRateFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/variableHeightFlowRate/variableHeightFlowRateFvPatchField.H index 000302bf7..edd786fcb 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/variableHeightFlowRate/variableHeightFlowRateFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/variableHeightFlowRate/variableHeightFlowRateFvPatchField.H @@ -42,7 +42,6 @@ Description - apply a fixed value condition, with a uniform level of the lower bound Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -52,7 +51,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type variableHeightFlowRate; lowerBound 0.0; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/variableHeightFlowRateInletVelocity/variableHeightFlowRateInletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/variableHeightFlowRateInletVelocity/variableHeightFlowRateInletVelocityFvPatchVectorField.H index 425a19193..14ecb86df 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/variableHeightFlowRateInletVelocity/variableHeightFlowRateInletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/variableHeightFlowRateInletVelocity/variableHeightFlowRateInletVelocityFvPatchVectorField.H @@ -35,7 +35,6 @@ Description face of the patch and alpha is ensured to be bound between 0 and 1. Usage - \table Property | Description | Required | Default value flowRate | volumetric flow rate [m3/s] | yes | @@ -44,7 +43,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type variableHeightFlowRateInletVelocity; flowRate 0.2; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/waveSurfacePressure/waveSurfacePressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/waveSurfacePressure/waveSurfacePressureFvPatchScalarField.H index 947471927..ef8214ee3 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/waveSurfacePressure/waveSurfacePressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/waveSurfacePressure/waveSurfacePressureFvPatchScalarField.H @@ -45,7 +45,6 @@ Description local volumetric flux. Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -55,7 +54,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type waveSurfacePressure; phi phi; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/waveTransmissive/waveTransmissiveFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/waveTransmissive/waveTransmissiveFvPatchField.H index 7758f6091..e2e6a6c96 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/waveTransmissive/waveTransmissiveFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/waveTransmissive/waveTransmissiveFvPatchField.H @@ -48,7 +48,6 @@ Description \endvartable Usage - \table Property | Description | Required | Default value phi | flux field name | no | phi @@ -59,7 +58,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type waveTransmissive; phi phi; diff --git a/src/functionObjects/lagrangian/cloudInfo/cloudInfo.H b/src/functionObjects/lagrangian/cloudInfo/cloudInfo.H index 3edb64e6e..9b1e4674e 100644 --- a/src/functionObjects/lagrangian/cloudInfo/cloudInfo.H +++ b/src/functionObjects/lagrangian/cloudInfo/cloudInfo.H @@ -50,7 +50,6 @@ Description Usage - \table Property | Description | Required | Default value type | type name: cloudInfo | yes | diff --git a/src/fvMotionSolver/pointPatchFields/derived/uniformInterpolatedDisplacement/uniformInterpolatedDisplacementPointPatchVectorField.H b/src/fvMotionSolver/pointPatchFields/derived/uniformInterpolatedDisplacement/uniformInterpolatedDisplacementPointPatchVectorField.H index 6de5f6a5f..9ec4cea65 100644 --- a/src/fvMotionSolver/pointPatchFields/derived/uniformInterpolatedDisplacement/uniformInterpolatedDisplacementPointPatchVectorField.H +++ b/src/fvMotionSolver/pointPatchFields/derived/uniformInterpolatedDisplacement/uniformInterpolatedDisplacementPointPatchVectorField.H @@ -30,7 +30,6 @@ Description Motion specified as pointVectorFields. Usage - Example: \verbatim walls diff --git a/src/fvOptions/sources/derived/actuationDiskSource/actuationDiskSource.H b/src/fvOptions/sources/derived/actuationDiskSource/actuationDiskSource.H index 66e1d2ae0..0411e6e81 100644 --- a/src/fvOptions/sources/derived/actuationDiskSource/actuationDiskSource.H +++ b/src/fvOptions/sources/derived/actuationDiskSource/actuationDiskSource.H @@ -45,7 +45,6 @@ Description \endvartable Usage - Example usage: \verbatim actuationDiskSourceCoeffs diff --git a/src/fvOptions/sources/derived/effectivenessHeatExchangerSource/effectivenessHeatExchangerSource.H b/src/fvOptions/sources/derived/effectivenessHeatExchangerSource/effectivenessHeatExchangerSource.H index 1c90a9738..b46506ff7 100644 --- a/src/fvOptions/sources/derived/effectivenessHeatExchangerSource/effectivenessHeatExchangerSource.H +++ b/src/fvOptions/sources/derived/effectivenessHeatExchangerSource/effectivenessHeatExchangerSource.H @@ -60,7 +60,6 @@ Description \endvartable Usage - Example usage: \verbatim effectivenessHeatExchangerSource1 diff --git a/src/fvOptions/sources/derived/explicitPorositySource/explicitPorositySource.H b/src/fvOptions/sources/derived/explicitPorositySource/explicitPorositySource.H index bb391ab6f..6bbb32b35 100644 --- a/src/fvOptions/sources/derived/explicitPorositySource/explicitPorositySource.H +++ b/src/fvOptions/sources/derived/explicitPorositySource/explicitPorositySource.H @@ -28,7 +28,6 @@ Description Explicit porosity source Usage - Example usage, here employing the Darcy-Forchheimer model: \verbatim explicitPorositySourceCoeffs diff --git a/src/fvOptions/sources/derived/radialActuationDiskSource/radialActuationDiskSource.H b/src/fvOptions/sources/derived/radialActuationDiskSource/radialActuationDiskSource.H index 107a24b1c..8fbcc2002 100644 --- a/src/fvOptions/sources/derived/radialActuationDiskSource/radialActuationDiskSource.H +++ b/src/fvOptions/sources/derived/radialActuationDiskSource/radialActuationDiskSource.H @@ -51,7 +51,6 @@ Description \f] Usage - Example usage: \verbatim actuationDiskSourceCoeffs diff --git a/src/fvOptions/sources/derived/rotorDiskSource/rotorDiskSource.H b/src/fvOptions/sources/derived/rotorDiskSource/rotorDiskSource.H index 87c6673a8..1135d5c61 100644 --- a/src/fvOptions/sources/derived/rotorDiskSource/rotorDiskSource.H +++ b/src/fvOptions/sources/derived/rotorDiskSource/rotorDiskSource.H @@ -31,7 +31,6 @@ Description rotor forces on a cylindrical region within the domain. Usage - Example usage: \verbatim rotorDiskSourceCoeffs diff --git a/src/fvOptions/sources/derived/tabulatedAccelerationSource/tabulatedAccelerationSource.H b/src/fvOptions/sources/derived/tabulatedAccelerationSource/tabulatedAccelerationSource.H index b1ad441c4..8fa6ace24 100644 --- a/src/fvOptions/sources/derived/tabulatedAccelerationSource/tabulatedAccelerationSource.H +++ b/src/fvOptions/sources/derived/tabulatedAccelerationSource/tabulatedAccelerationSource.H @@ -28,7 +28,6 @@ Description Solid-body 6-DoF acceleration source Usage - Example usage: \verbatim SBM diff --git a/src/fvOptions/sources/general/codedSource/CodedSource.H b/src/fvOptions/sources/general/codedSource/CodedSource.H index f09acc6ec..b484e9158 100644 --- a/src/fvOptions/sources/general/codedSource/CodedSource.H +++ b/src/fvOptions/sources/general/codedSource/CodedSource.H @@ -51,7 +51,6 @@ Description eqn is the fvMatrix Usage - Example usage in controlDict: \verbatim energySource diff --git a/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisTemperatureCoupled/filmPyrolysisTemperatureCoupledFvPatchScalarField.H b/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisTemperatureCoupled/filmPyrolysisTemperatureCoupledFvPatchScalarField.H index 2e068ccf4..096bea60d 100644 --- a/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisTemperatureCoupled/filmPyrolysisTemperatureCoupledFvPatchScalarField.H +++ b/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisTemperatureCoupled/filmPyrolysisTemperatureCoupledFvPatchScalarField.H @@ -35,7 +35,7 @@ Description Example of the boundary condition specification: \verbatim - myPatch + { type filmPyrolysisTemperatureCoupled; phi phi; // name of flux field (default = phi) diff --git a/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisVelocityCoupled/filmPyrolysisVelocityCoupledFvPatchVectorField.H b/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisVelocityCoupled/filmPyrolysisVelocityCoupledFvPatchVectorField.H index df19b8fbd..c907431cd 100644 --- a/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisVelocityCoupled/filmPyrolysisVelocityCoupledFvPatchVectorField.H +++ b/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisVelocityCoupled/filmPyrolysisVelocityCoupledFvPatchVectorField.H @@ -36,7 +36,7 @@ Description Example of the boundary condition specification: \verbatim - myPatch + { type filmPyrolysisVelocityCoupled; phi phi; // name of flux field (default = phi) diff --git a/src/regionModels/surfaceFilmModels/derivedFvPatchFields/filmHeightInletVelocity/filmHeightInletVelocityFvPatchVectorField.H b/src/regionModels/surfaceFilmModels/derivedFvPatchFields/filmHeightInletVelocity/filmHeightInletVelocityFvPatchVectorField.H index 33f2404f4..8c08e37f9 100644 --- a/src/regionModels/surfaceFilmModels/derivedFvPatchFields/filmHeightInletVelocity/filmHeightInletVelocityFvPatchVectorField.H +++ b/src/regionModels/surfaceFilmModels/derivedFvPatchFields/filmHeightInletVelocity/filmHeightInletVelocityFvPatchVectorField.H @@ -48,7 +48,6 @@ Description \endvartable Usage - \table Property | Description | Required | Default value phi | Flux field name | no | phi @@ -58,7 +57,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type filmHeightInletVelocity; phi phi; diff --git a/src/regionModels/surfaceFilmModels/derivedFvPatchFields/wallFunctions/alphatFilmWallFunction/alphatFilmWallFunctionFvPatchScalarField.H b/src/regionModels/surfaceFilmModels/derivedFvPatchFields/wallFunctions/alphatFilmWallFunction/alphatFilmWallFunctionFvPatchScalarField.H index 34089629a..fafc5ee65 100644 --- a/src/regionModels/surfaceFilmModels/derivedFvPatchFields/wallFunctions/alphatFilmWallFunction/alphatFilmWallFunctionFvPatchScalarField.H +++ b/src/regionModels/surfaceFilmModels/derivedFvPatchFields/wallFunctions/alphatFilmWallFunction/alphatFilmWallFunctionFvPatchScalarField.H @@ -34,7 +34,6 @@ Description mass released from the film model. Usage - \table Property | Description | Required | Default value B | model coefficient | no | 5.5 @@ -46,7 +45,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type alphatFilmWallFunction; B 5.5; diff --git a/src/regionModels/surfaceFilmModels/derivedFvPatchFields/wallFunctions/nutkFilmWallFunction/nutkFilmWallFunctionFvPatchScalarField.H b/src/regionModels/surfaceFilmModels/derivedFvPatchFields/wallFunctions/nutkFilmWallFunction/nutkFilmWallFunctionFvPatchScalarField.H index a26f42095..f25479b88 100644 --- a/src/regionModels/surfaceFilmModels/derivedFvPatchFields/wallFunctions/nutkFilmWallFunction/nutkFilmWallFunctionFvPatchScalarField.H +++ b/src/regionModels/surfaceFilmModels/derivedFvPatchFields/wallFunctions/nutkFilmWallFunction/nutkFilmWallFunctionFvPatchScalarField.H @@ -33,10 +33,9 @@ Description surface film models. Usage - Example of the boundary condition specification: \verbatim - myPatch + { type nutkFilmWallFunction; value uniform 0; diff --git a/src/regionModels/thermalBaffleModels/derivedFvPatchFields/thermalBaffle/thermalBaffleFvPatchScalarField.H b/src/regionModels/thermalBaffleModels/derivedFvPatchFields/thermalBaffle/thermalBaffleFvPatchScalarField.H index be080f831..0bb7a092c 100644 --- a/src/regionModels/thermalBaffleModels/derivedFvPatchFields/thermalBaffle/thermalBaffleFvPatchScalarField.H +++ b/src/regionModels/thermalBaffleModels/derivedFvPatchFields/thermalBaffle/thermalBaffleFvPatchScalarField.H @@ -46,7 +46,7 @@ Description Usage Example of the boundary condition specification: \verbatim - myPatch_master + { type compressible::thermalBaffle; @@ -103,7 +103,6 @@ Usage scatterModel none; } - // Extrude model for new region extrudeModel linearNormal; @@ -120,7 +119,7 @@ Usage Slave patch on primary region: \verbatim - myPatch_slave + { type compressible::thermalBaffle; kappa fluidThermo; @@ -128,7 +127,6 @@ Usage value uniform 300; \endverbatim - Patches on baffle region: \verbatim bottom @@ -148,7 +146,6 @@ Usage } \endverbatim - See also Foam::compressible::turbulentTemperatureCoupledBaffleMixedFvPatchScalarField Foam::regionModels::thermalBaffleModels::thermalBaffleModel diff --git a/src/thermophysicalModels/basic/derivedFvPatchFields/fixedEnergy/fixedEnergyFvPatchScalarField.H b/src/thermophysicalModels/basic/derivedFvPatchFields/fixedEnergy/fixedEnergyFvPatchScalarField.H index 593cf5011..537ca8cda 100644 --- a/src/thermophysicalModels/basic/derivedFvPatchFields/fixedEnergy/fixedEnergyFvPatchScalarField.H +++ b/src/thermophysicalModels/basic/derivedFvPatchFields/fixedEnergy/fixedEnergyFvPatchScalarField.H @@ -31,10 +31,9 @@ Description This boundary condition provides a fixed condition for internal energy Usage - Example of the boundary condition specification: \verbatim - myPatch + { type fixedEnergy; value uniform 100; diff --git a/src/thermophysicalModels/basic/derivedFvPatchFields/gradientEnergy/gradientEnergyFvPatchScalarField.H b/src/thermophysicalModels/basic/derivedFvPatchFields/gradientEnergy/gradientEnergyFvPatchScalarField.H index a2f83f01d..0b0c78adf 100644 --- a/src/thermophysicalModels/basic/derivedFvPatchFields/gradientEnergy/gradientEnergyFvPatchScalarField.H +++ b/src/thermophysicalModels/basic/derivedFvPatchFields/gradientEnergy/gradientEnergyFvPatchScalarField.H @@ -46,10 +46,9 @@ Description \endvartable Usage - Example of the boundary condition specification: \verbatim - myPatch + { type gradientEnergy; gradient uniform 10; diff --git a/src/thermophysicalModels/radiation/derivedFvPatchFields/MarshakRadiation/MarshakRadiationFvPatchScalarField.H b/src/thermophysicalModels/radiation/derivedFvPatchFields/MarshakRadiation/MarshakRadiationFvPatchScalarField.H index f4bac9631..7b31185df 100644 --- a/src/thermophysicalModels/radiation/derivedFvPatchFields/MarshakRadiation/MarshakRadiationFvPatchScalarField.H +++ b/src/thermophysicalModels/radiation/derivedFvPatchFields/MarshakRadiation/MarshakRadiationFvPatchScalarField.H @@ -35,7 +35,6 @@ Description user specified temperature field name. Usage - \table Property | Description | Required | Default value T | temperature field name | no | T @@ -43,7 +42,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type MarshakRadiation; T T; diff --git a/src/thermophysicalModels/radiation/derivedFvPatchFields/MarshakRadiationFixedTemperature/MarshakRadiationFixedTemperatureFvPatchScalarField.H b/src/thermophysicalModels/radiation/derivedFvPatchFields/MarshakRadiationFixedTemperature/MarshakRadiationFixedTemperatureFvPatchScalarField.H index c1a198442..d2c114a15 100644 --- a/src/thermophysicalModels/radiation/derivedFvPatchFields/MarshakRadiationFixedTemperature/MarshakRadiationFixedTemperatureFvPatchScalarField.H +++ b/src/thermophysicalModels/radiation/derivedFvPatchFields/MarshakRadiationFixedTemperature/MarshakRadiationFixedTemperatureFvPatchScalarField.H @@ -35,7 +35,6 @@ Description using the \c Trad entry. Usage - \table Property | Description | Required | Default value T | temperature field name | no | T @@ -43,7 +42,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type MarshakRadiationFixedTemperature; Trad uniform 1000; // radiation temperature field diff --git a/src/thermophysicalModels/radiation/derivedFvPatchFields/greyDiffusiveRadiation/greyDiffusiveRadiationMixedFvPatchScalarField.H b/src/thermophysicalModels/radiation/derivedFvPatchFields/greyDiffusiveRadiation/greyDiffusiveRadiationMixedFvPatchScalarField.H index 03ab4829b..e84f45bdc 100644 --- a/src/thermophysicalModels/radiation/derivedFvPatchFields/greyDiffusiveRadiation/greyDiffusiveRadiationMixedFvPatchScalarField.H +++ b/src/thermophysicalModels/radiation/derivedFvPatchFields/greyDiffusiveRadiation/greyDiffusiveRadiationMixedFvPatchScalarField.H @@ -34,7 +34,6 @@ Description temperature field boundary condition. Usage - \table Property | Description | Required | Default value T | temperature field name | no | T @@ -43,7 +42,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type greyDiffusiveRadiation; T T; diff --git a/src/thermophysicalModels/radiation/derivedFvPatchFields/greyDiffusiveViewFactor/greyDiffusiveViewFactorFixedValueFvPatchScalarField.H b/src/thermophysicalModels/radiation/derivedFvPatchFields/greyDiffusiveViewFactor/greyDiffusiveViewFactorFixedValueFvPatchScalarField.H index 85da20c9e..7a5085c95 100644 --- a/src/thermophysicalModels/radiation/derivedFvPatchFields/greyDiffusiveViewFactor/greyDiffusiveViewFactorFixedValueFvPatchScalarField.H +++ b/src/thermophysicalModels/radiation/derivedFvPatchFields/greyDiffusiveViewFactor/greyDiffusiveViewFactorFixedValueFvPatchScalarField.H @@ -32,7 +32,6 @@ Description heat flux, \c Qr, for use with the view factor model Usage - \table Property | Description | Required | Default value Qro | external radiative heat flux | yes | @@ -41,7 +40,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type greyDiffusiveRadiationViewFactor; Qro uniform 0; diff --git a/src/thermophysicalModels/radiation/derivedFvPatchFields/wideBandDiffusiveRadiation/wideBandDiffusiveRadiationMixedFvPatchScalarField.H b/src/thermophysicalModels/radiation/derivedFvPatchFields/wideBandDiffusiveRadiation/wideBandDiffusiveRadiationMixedFvPatchScalarField.H index f1a6905d4..0137f56e1 100644 --- a/src/thermophysicalModels/radiation/derivedFvPatchFields/wideBandDiffusiveRadiation/wideBandDiffusiveRadiationMixedFvPatchScalarField.H +++ b/src/thermophysicalModels/radiation/derivedFvPatchFields/wideBandDiffusiveRadiation/wideBandDiffusiveRadiationMixedFvPatchScalarField.H @@ -32,7 +32,6 @@ Description condition, where the patch temperature is specified. Usage - \table Property | Description | Required | Default value T | temperature field name | no | T @@ -40,7 +39,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type wideBandDiffusiveRadiation; value uniform 0; diff --git a/src/transportModels/twoPhaseProperties/alphaContactAngle/alphaContactAngle/alphaContactAngleFvPatchScalarField.H b/src/transportModels/twoPhaseProperties/alphaContactAngle/alphaContactAngle/alphaContactAngleFvPatchScalarField.H index d1af35cd7..e52eab3eb 100644 --- a/src/transportModels/twoPhaseProperties/alphaContactAngle/alphaContactAngle/alphaContactAngleFvPatchScalarField.H +++ b/src/transportModels/twoPhaseProperties/alphaContactAngle/alphaContactAngle/alphaContactAngleFvPatchScalarField.H @@ -46,7 +46,7 @@ Description the wall e.g.: \verbatim - myPatch + { type alphaContactAngle; limit none; diff --git a/src/transportModels/twoPhaseProperties/alphaContactAngle/temperatureDependentAlphaContactAngle/temperatureDependentAlphaContactAngleFvPatchScalarField.H b/src/transportModels/twoPhaseProperties/alphaContactAngle/temperatureDependentAlphaContactAngle/temperatureDependentAlphaContactAngleFvPatchScalarField.H index fa45c25ec..df08b5381 100644 --- a/src/transportModels/twoPhaseProperties/alphaContactAngle/temperatureDependentAlphaContactAngle/temperatureDependentAlphaContactAngleFvPatchScalarField.H +++ b/src/transportModels/twoPhaseProperties/alphaContactAngle/temperatureDependentAlphaContactAngle/temperatureDependentAlphaContactAngleFvPatchScalarField.H @@ -28,7 +28,6 @@ Description Temperature-dependent constant alphaContactAngle scalar boundary condition. Usage - \table Property | Description | Required | Default value T | Temperature field name | no | T @@ -37,7 +36,7 @@ Usage Example of the boundary condition specification: \verbatim - myPatch + { type temperatureDependentAlphaContactAngle; theta0 constant 60; diff --git a/src/triSurface/triSurface/interfaces/AC3D/writeAC.C b/src/triSurface/triSurface/interfaces/AC3D/writeAC.C index edddefab2..a8239eae3 100644 --- a/src/triSurface/triSurface/interfaces/AC3D/writeAC.C +++ b/src/triSurface/triSurface/interfaces/AC3D/writeAC.C @@ -52,16 +52,16 @@ void Foam::triSurface::writeAC(Ostream& os) const labelList faceMap; - surfacePatchList myPatches(calcPatches(faceMap)); + surfacePatchList patches(calcPatches(faceMap)); // Write header. Define materials. os << "AC3Db" << endl; - forAll(myPatches, patchi) + forAll(patches, patchi) { - const word& pName = myPatches[patchi].name(); + const word& pName = patches[patchi].name(); label colourI = patchi % 8; label colourCompI = 3 * colourI; @@ -75,16 +75,16 @@ void Foam::triSurface::writeAC(Ostream& os) const } os << "OBJECT world" << endl - << "kids " << myPatches.size() << endl; + << "kids " << patches.size() << endl; // Write patch points & faces. label faceIndex = 0; - forAll(myPatches, patchi) + forAll(patches, patchi) { - const surfacePatch& sp = myPatches[patchi]; + const surfacePatch& sp = patches[patchi]; os << "OBJECT poly" << endl << "name \"" << sp.name() << '"' << endl; diff --git a/src/triSurface/triSurface/interfaces/DX/writeDX.C b/src/triSurface/triSurface/interfaces/DX/writeDX.C index 668a3a8ac..9e28c0f5c 100644 --- a/src/triSurface/triSurface/interfaces/DX/writeDX.C +++ b/src/triSurface/triSurface/interfaces/DX/writeDX.C @@ -44,14 +44,14 @@ void triSurface::writeDXGeometry ) const { labelList faceMap; - surfacePatchList myPatches(calcPatches(faceMap)); + surfacePatchList patches(calcPatches(faceMap)); // Print patch names as comment os << "# Patches:" << endl; - forAll(myPatches, patchi) + forAll(patches, patchi) { os << "# " << patchi << " " - << myPatches[patchi].name() << endl; + << patches[patchi].name() << endl; } os << nl << endl; @@ -75,14 +75,14 @@ void triSurface::writeDXGeometry { label faceIndex = 0; - forAll(myPatches, patchi) + forAll(patches, patchi) { // Print all faces belonging to this patch for ( label patchFacei = 0; - patchFacei < myPatches[patchi].size(); + patchFacei < patches[patchi].size(); patchFacei++ ) { @@ -132,11 +132,11 @@ void triSurface::writeDX(const bool writeSorted, Ostream& os) const // Write patch number as data labelList faceMap; - surfacePatchList myPatches(calcPatches(faceMap)); + surfacePatchList patches(calcPatches(faceMap)); - forAll(myPatches, patchi) + forAll(patches, patchi) { - forAll(myPatches[patchi], patchFacei) + forAll(patches[patchi], patchFacei) { os << patchi << endl; } diff --git a/src/triSurface/triSurface/interfaces/GTS/writeGTS.C b/src/triSurface/triSurface/interfaces/GTS/writeGTS.C index 6b8f3b0de..d2d70282f 100644 --- a/src/triSurface/triSurface/interfaces/GTS/writeGTS.C +++ b/src/triSurface/triSurface/interfaces/GTS/writeGTS.C @@ -40,13 +40,13 @@ void triSurface::writeGTS(const bool writeSorted, Ostream& os) const labelList faceMap; - surfacePatchList myPatches(calcPatches(faceMap)); + surfacePatchList patches(calcPatches(faceMap)); // Print patch names as comment - forAll(myPatches, patchi) + forAll(patches, patchi) { os << "# " << patchi << " " - << myPatches[patchi].name() << endl; + << patches[patchi].name() << endl; } os << "#" << endl; @@ -82,12 +82,12 @@ void triSurface::writeGTS(const bool writeSorted, Ostream& os) const if (writeSorted) { label faceIndex = 0; - forAll(myPatches, patchi) + forAll(patches, patchi) { for ( label patchFacei = 0; - patchFacei < myPatches[patchi].size(); + patchFacei < patches[patchi].size(); patchFacei++ ) { diff --git a/src/triSurface/triSurface/interfaces/OBJ/writeOBJ.C b/src/triSurface/triSurface/interfaces/OBJ/writeOBJ.C index 1111e8b14..40abdae6a 100644 --- a/src/triSurface/triSurface/interfaces/OBJ/writeOBJ.C +++ b/src/triSurface/triSurface/interfaces/OBJ/writeOBJ.C @@ -45,15 +45,15 @@ void triSurface::writeOBJ(const bool writeSorted, Ostream& os) const labelList faceMap; - surfacePatchList myPatches(calcPatches(faceMap)); + surfacePatchList patches(calcPatches(faceMap)); const pointField& ps = points(); // Print patch names as comment - forAll(myPatches, patchi) + forAll(patches, patchi) { os << "# " << patchi << " " - << myPatches[patchi].name() << nl; + << patches[patchi].name() << nl; } os << "#" << nl; @@ -75,16 +75,16 @@ void triSurface::writeOBJ(const bool writeSorted, Ostream& os) const { label faceIndex = 0; - forAll(myPatches, patchi) + forAll(patches, patchi) { // Print all faces belonging to this patch - os << "g " << myPatches[patchi].name() << nl; + os << "g " << patches[patchi].name() << nl; for ( label patchFacei = 0; - patchFacei < myPatches[patchi].size(); + patchFacei < patches[patchi].size(); patchFacei++ ) { @@ -103,11 +103,11 @@ void triSurface::writeOBJ(const bool writeSorted, Ostream& os) const { // Get patch (=compact region) per face labelList patchIDs(size()); - forAll(myPatches, patchi) + forAll(patches, patchi) { - label facei = myPatches[patchi].start(); + label facei = patches[patchi].start(); - forAll(myPatches[patchi], i) + forAll(patches[patchi], i) { patchIDs[faceMap[facei++]] = patchi; } @@ -121,7 +121,7 @@ void triSurface::writeOBJ(const bool writeSorted, Ostream& os) const if (prevPatchi != patchIDs[facei]) { prevPatchi = patchIDs[facei]; - os << "g " << myPatches[patchIDs[facei]].name() << nl; + os << "g " << patches[patchIDs[facei]].name() << nl; } os << "f " << operator[](facei)[0] + 1 << ' ' diff --git a/src/triSurface/triSurface/interfaces/OFF/writeOFF.C b/src/triSurface/triSurface/interfaces/OFF/writeOFF.C index 686e6357c..838ee4760 100644 --- a/src/triSurface/triSurface/interfaces/OFF/writeOFF.C +++ b/src/triSurface/triSurface/interfaces/OFF/writeOFF.C @@ -40,13 +40,13 @@ void triSurface::writeOFF(const bool writeSorted, Ostream& os) const << "# Regions:" << endl; labelList faceMap; - surfacePatchList myPatches(calcPatches(faceMap)); + surfacePatchList patches(calcPatches(faceMap)); // Print patch names as comment - forAll(myPatches, patchi) + forAll(patches, patchi) { os << "# " << patchi << " " - << myPatches[patchi].name() << endl; + << patches[patchi].name() << endl; } os << nl << endl; @@ -72,14 +72,14 @@ void triSurface::writeOFF(const bool writeSorted, Ostream& os) const { label faceIndex = 0; - forAll(myPatches, patchi) + forAll(patches, patchi) { // Print all faces belonging to this patch for ( label patchFacei = 0; - patchFacei < myPatches[patchi].size(); + patchFacei < patches[patchi].size(); patchFacei++ ) { diff --git a/src/triSurface/triSurface/interfaces/SMESH/writeSMESH.C b/src/triSurface/triSurface/interfaces/SMESH/writeSMESH.C index 8651f55d0..46627f7e1 100644 --- a/src/triSurface/triSurface/interfaces/SMESH/writeSMESH.C +++ b/src/triSurface/triSurface/interfaces/SMESH/writeSMESH.C @@ -53,20 +53,20 @@ void triSurface::writeSMESH(const bool writeSorted, Ostream& os) const { labelList faceMap; - surfacePatchList myPatches(calcPatches(faceMap)); + surfacePatchList patches(calcPatches(faceMap)); os << size() << " 1" << endl; // 1 attribute: region number label faceIndex = 0; - forAll(myPatches, patchi) + forAll(patches, patchi) { // Print all faces belonging to this patch for ( label patchFacei = 0; - patchFacei < myPatches[patchi].size(); + patchFacei < patches[patchi].size(); patchFacei++ ) { diff --git a/src/triSurface/triSurface/interfaces/STL/writeSTL.C b/src/triSurface/triSurface/interfaces/STL/writeSTL.C index bb74d31cd..ffa4eb826 100644 --- a/src/triSurface/triSurface/interfaces/STL/writeSTL.C +++ b/src/triSurface/triSurface/interfaces/STL/writeSTL.C @@ -35,15 +35,15 @@ void Foam::triSurface::writeSTLASCII(const bool writeSorted, Ostream& os) const { labelList faceMap; - surfacePatchList myPatches(calcPatches(faceMap)); + surfacePatchList patches(calcPatches(faceMap)); if (writeSorted) { label faceIndex = 0; - forAll(myPatches, patchi) + forAll(patches, patchi) { // Print all faces belonging to this region - const surfacePatch& patch = myPatches[patchi]; + const surfacePatch& patch = patches[patchi]; os << "solid " << patch.name() << endl; @@ -84,11 +84,11 @@ void Foam::triSurface::writeSTLASCII(const bool writeSorted, Ostream& os) const { // Get patch (=compact region) per face labelList patchIDs(size()); - forAll(myPatches, patchi) + forAll(patches, patchi) { - label facei = myPatches[patchi].start(); + label facei = patches[patchi].start(); - forAll(myPatches[patchi], i) + forAll(patches[patchi], i) { patchIDs[faceMap[facei++]] = patchi; } @@ -103,11 +103,11 @@ void Foam::triSurface::writeSTLASCII(const bool writeSorted, Ostream& os) const if (currentPatchi != -1) { // Have already valid patch. Close it. - os << "endsolid " << myPatches[currentPatchi].name() + os << "endsolid " << patches[currentPatchi].name() << nl; } currentPatchi = patchIDs[facei]; - os << "solid " << myPatches[currentPatchi].name() << nl; + os << "solid " << patches[currentPatchi].name() << nl; } const vector& n = faceNormals()[facei]; @@ -133,7 +133,7 @@ void Foam::triSurface::writeSTLASCII(const bool writeSorted, Ostream& os) const if (currentPatchi != -1) { - os << "endsolid " << myPatches[currentPatchi].name() + os << "endsolid " << patches[currentPatchi].name() << nl; } } diff --git a/src/triSurface/triSurface/interfaces/TRI/writeTRI.C b/src/triSurface/triSurface/interfaces/TRI/writeTRI.C index 0050463cf..fbf421145 100644 --- a/src/triSurface/triSurface/interfaces/TRI/writeTRI.C +++ b/src/triSurface/triSurface/interfaces/TRI/writeTRI.C @@ -41,18 +41,18 @@ void triSurface::writeTRI(const bool writeSorted, Ostream& os) const labelList faceMap; - surfacePatchList myPatches(calcPatches(faceMap)); + surfacePatchList patches(calcPatches(faceMap)); if (writeSorted) { label faceIndex = 0; - forAll(myPatches, patchi) + forAll(patches, patchi) { for ( label patchFacei = 0; - patchFacei < myPatches[patchi].size(); + patchFacei < patches[patchi].size(); patchFacei++ ) { diff --git a/src/triSurface/triSurface/interfaces/VTK/writeVTK.C b/src/triSurface/triSurface/interfaces/VTK/writeVTK.C index 33bc7de55..41e33ea0c 100644 --- a/src/triSurface/triSurface/interfaces/VTK/writeVTK.C +++ b/src/triSurface/triSurface/interfaces/VTK/writeVTK.C @@ -65,20 +65,20 @@ void triSurface::writeVTK(const bool writeSorted, Ostream& os) const os << "POLYGONS " << size() << ' ' << 4*size() << nl; labelList faceMap; - surfacePatchList myPatches(calcPatches(faceMap)); + surfacePatchList patches(calcPatches(faceMap)); if (writeSorted) { label faceIndex = 0; - forAll(myPatches, patchi) + forAll(patches, patchi) { // Print all faces belonging to this patch for ( label patchFacei = 0; - patchFacei < myPatches[patchi].size(); + patchFacei < patches[patchi].size(); patchFacei++ ) { @@ -110,12 +110,12 @@ void triSurface::writeVTK(const bool writeSorted, Ostream& os) const faceIndex = 0; - forAll(myPatches, patchi) + forAll(patches, patchi) { for ( label patchFacei = 0; - patchFacei < myPatches[patchi].size(); + patchFacei < patches[patchi].size(); patchFacei++ ) {