diff --git a/applications/modules/multiphaseEuler/populationBalance/coalescenceModels/AdachiStuartFokkink/AdachiStuartFokkink.H b/applications/modules/multiphaseEuler/populationBalance/coalescenceModels/AdachiStuartFokkink/AdachiStuartFokkink.H index 01b1eaa7d8..67a93f584f 100644 --- a/applications/modules/multiphaseEuler/populationBalance/coalescenceModels/AdachiStuartFokkink/AdachiStuartFokkink.H +++ b/applications/modules/multiphaseEuler/populationBalance/coalescenceModels/AdachiStuartFokkink/AdachiStuartFokkink.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2022-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -29,7 +29,7 @@ Description Applicable when particles are smaller than the Kolmogorov length scale. The coalescence rate is calculated by - f\[ + \f[ \frac{4}{3}\left(\frac{3\pi}{10}\right)^{0.5} \left(\frac{\epsilon}{\nu}\right)^{0.5}(d_i+d_j)^3 \f] diff --git a/applications/utilities/miscellaneous/foamDictionary/foamDictionary.C b/applications/utilities/miscellaneous/foamDictionary/foamDictionary.C index da6e51ff53..190dff0093 100644 --- a/applications/utilities/miscellaneous/foamDictionary/foamDictionary.C +++ b/applications/utilities/miscellaneous/foamDictionary/foamDictionary.C @@ -92,7 +92,7 @@ Usage otherwise to standard output - \par -includes - List the \c #include and \c #includeIfPresent files to standard output + List the \c \#include and \c \#includeIfPresent files to standard output - \par -output Path name of the output dictionary, defaults to the input dictionary diff --git a/doc/Doxygen/Doxyfile b/doc/Doxygen/Doxyfile index c738870e8c..eda77aa951 100644 --- a/doc/Doxygen/Doxyfile +++ b/doc/Doxygen/Doxyfile @@ -1624,7 +1624,7 @@ COMPACT_LATEX = NO # The default value is: a4. # This tag requires that the tag GENERATE_LATEX is set to YES. -PAPER_TYPE = a4wide +PAPER_TYPE = a4 # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names # that should be included in the LaTeX output. The package can be specified just @@ -2334,7 +2334,7 @@ PLANTUML_INCLUDE_PATH = # Minimum value: 0, maximum value: 10000, default value: 50. # This tag requires that the tag HAVE_DOT is set to YES. -DOT_GRAPH_MAX_NODES = 50 +DOT_GRAPH_MAX_NODES = 200 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs # generated by dot. A depth value of 3 means that only nodes reachable from the diff --git a/src/OpenFOAM/db/dictionary/functionEntries/calcIncludeEntry/calcIncludeEntry.H b/src/OpenFOAM/db/dictionary/functionEntries/calcIncludeEntry/calcIncludeEntry.H index 19a63184e6..8eba9db8e2 100644 --- a/src/OpenFOAM/db/dictionary/functionEntries/calcIncludeEntry/calcIncludeEntry.H +++ b/src/OpenFOAM/db/dictionary/functionEntries/calcIncludeEntry/calcIncludeEntry.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2023 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2023-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -25,9 +25,9 @@ Class Foam::functionEntries::calcIncludeEntry Description - Specify an include file for #calc, expects a single string to follow. + Specify an include file for \#calc, expects a single string to follow. - For example if functions from transform.H are used in the #calc expression + For example if functions from transform.H are used in the \#calc expression \verbatim angleOfAttack 5; // degs @@ -92,7 +92,7 @@ public: //- Execute the functionEntry in a sub-dict context static bool execute(dictionary& parentDict, Istream&); - //- Reset the cache of #calc include file names + //- Reset the cache of \#calc include file names static void clear(); //- Add the cached include file names to the codeInclude entry diff --git a/src/OpenFOAM/db/dictionary/functionEntries/ifeqEntry/ifeqEntry.H b/src/OpenFOAM/db/dictionary/functionEntries/ifeqEntry/ifeqEntry.H index 3d320e2ffd..42eb6f3225 100644 --- a/src/OpenFOAM/db/dictionary/functionEntries/ifeqEntry/ifeqEntry.H +++ b/src/OpenFOAM/db/dictionary/functionEntries/ifeqEntry/ifeqEntry.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2018-2022 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2018-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -56,7 +56,7 @@ Description - the comparison is a string comparison for any word/string/variable, integer comparison for two integers and floating point comparison for any floating point number. - - parsing of (non)matching \c #else, \c #endif is not very sophisticated + - parsing of (non)matching \c \#else, \c \#endif is not very sophisticated See also Foam::functionEntries::ifEntry diff --git a/src/OpenFOAM/db/functionObjects/functionObject/functionObject.H b/src/OpenFOAM/db/functionObjects/functionObject/functionObject.H index 625abbb249..8edb77ef0e 100644 --- a/src/OpenFOAM/db/functionObjects/functionObject/functionObject.H +++ b/src/OpenFOAM/db/functionObjects/functionObject/functionObject.H @@ -32,8 +32,6 @@ Description field and derived quantities. Alternatively, the same actions can be executed after the simulation using the \c -postProcess command-line option. - \subsection secFunctionObjects Using functionObjects - functionObjects are selected by entries in the $FOAM_CASE/system/functions dictionary e.g. to select the \c functionObjectType functionObject the following entry would be specified: diff --git a/src/OpenFOAM/db/typeInfo/typeInfo.H b/src/OpenFOAM/db/typeInfo/typeInfo.H index e40cdeaedf..3af60c3f65 100644 --- a/src/OpenFOAM/db/typeInfo/typeInfo.H +++ b/src/OpenFOAM/db/typeInfo/typeInfo.H @@ -21,8 +21,8 @@ License You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . -Typedef - Foam::typeInfo +InNamespace + Foam Description Basic run-time type information using word as the type's name. diff --git a/src/OpenFOAM/fields/Fields/symmTransformField/symmTransformField.H b/src/OpenFOAM/fields/Fields/symmTransformField/symmTransformField.H index a14a00ce92..baa2fcb5cc 100644 --- a/src/OpenFOAM/fields/Fields/symmTransformField/symmTransformField.H +++ b/src/OpenFOAM/fields/Fields/symmTransformField/symmTransformField.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -21,11 +21,11 @@ License You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . -Typedef - Foam::symmTransformField +InNamespace + Foam Description - Spatial transformation functions for primitive fields. + Spatial transformation functions for symmTensor fields. SourceFiles symmTransformField.C diff --git a/src/OpenFOAM/global/fileOperations/fileOperation/fileOperation.H b/src/OpenFOAM/global/fileOperations/fileOperation/fileOperation.H index fcfc92e07c..62dc207841 100644 --- a/src/OpenFOAM/global/fileOperations/fileOperation/fileOperation.H +++ b/src/OpenFOAM/global/fileOperations/fileOperation/fileOperation.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2017-2021 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2017-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -80,10 +80,10 @@ public: static const NamedEnum pathTypeNames_; //- Description of processor directory naming: - // - processor directory naming - // - whether directory contains a range + // + processor directory naming + // + whether directory contains a range // (so differs on different processors) - // - index in range + // + index in range typedef Tuple2> dirIndex; typedef List dirIndexList; diff --git a/src/OpenFOAM/meshes/meshShapes/face/faceListFwd.H b/src/OpenFOAM/meshes/meshShapes/face/faceListFwd.H index 832b996c12..2c01b06c45 100644 --- a/src/OpenFOAM/meshes/meshShapes/face/faceListFwd.H +++ b/src/OpenFOAM/meshes/meshShapes/face/faceListFwd.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -22,9 +22,7 @@ License along with OpenFOAM. If not, see . Typedef - Foam::faceListFwd - -Description + Foam::faceList \*---------------------------------------------------------------------------*/ diff --git a/src/OpenFOAM/primitives/hashes/Hasher/HasherInt.H b/src/OpenFOAM/primitives/hashes/Hasher/HasherInt.H index c7c23b5baf..9a9f558f53 100644 --- a/src/OpenFOAM/primitives/hashes/Hasher/HasherInt.H +++ b/src/OpenFOAM/primitives/hashes/Hasher/HasherInt.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -56,7 +56,7 @@ namespace Foam // \param[in] length - the number of values (not bytes) // \param[in] hash1 - the previous hash, or an arbitrary value // on output, the primary hash value - // \param[in] hash1 - the previous hash, or an arbitrary value + // \param[in] hash2 - the previous hash, or an arbitrary value // on output, the secondary hash value unsigned HasherDual ( diff --git a/src/ThermophysicalTransportModels/coupledThermophysicalTransportModels/lumpedMassTemperature/lumpedMassTemperatureFvPatchScalarField.H b/src/ThermophysicalTransportModels/coupledThermophysicalTransportModels/lumpedMassTemperature/lumpedMassTemperatureFvPatchScalarField.H index df4c1ce840..6130651bfe 100644 --- a/src/ThermophysicalTransportModels/coupledThermophysicalTransportModels/lumpedMassTemperature/lumpedMassTemperatureFvPatchScalarField.H +++ b/src/ThermophysicalTransportModels/coupledThermophysicalTransportModels/lumpedMassTemperature/lumpedMassTemperatureFvPatchScalarField.H @@ -32,7 +32,7 @@ Description the patch describes a closed volume (including in 2D meshes). Starting from an initial, specified \c T, the change in temperature is calculated over time according to an applied power source \c Q and the heat transferred - across the boundary \Q_{b} (positive into the lumped mass): + across the boundary \f$Q_{b}\f$ (positive into the lumped mass): \f[ dT/dt = frac{Q + Q_{b}}{\rho C_{v} V} @@ -75,8 +75,8 @@ SourceFiles \*---------------------------------------------------------------------------*/ -#ifndef BC_H -#define BC_H +#ifndef lumpedMassTemperatureFvPatchScalarField_H +#define lumpedMassTemperatureFvPatchScalarField_H #include "fixedValueFvPatchFields.H" #include "UniformDimensionedField.H" diff --git a/src/ThermophysicalTransportModels/fluidMulticomponentThermo/fluidMulticomponentThermophysicalTransportModel.H b/src/ThermophysicalTransportModels/fluidMulticomponentThermo/fluidMulticomponentThermophysicalTransportModel.H index 3eaa756a9e..05a43e8324 100644 --- a/src/ThermophysicalTransportModels/fluidMulticomponentThermo/fluidMulticomponentThermophysicalTransportModel.H +++ b/src/ThermophysicalTransportModels/fluidMulticomponentThermo/fluidMulticomponentThermophysicalTransportModel.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2020-2022 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2020-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -22,16 +22,16 @@ License along with OpenFOAM. If not, see . Typedef - Foam::compressible::thermophysicalTransportModel + Foam::fluidMulticomponentThermophysicalTransportModel Typedef - Foam::compressible::laminarThermophysicalTransportModel + Foam::laminarFluidMulticomponentThermophysicalTransportModel Typedef - Foam::compressible::RASThermophysicalTransportModel + Foam::RASFluidMulticomponentThermophysicalTransportModel Typedef - Foam::compressible::LESThermophysicalTransportModel + Foam::LESFluidMulticomponentThermophysicalTransportModel Description Typedefs for laminar, RAS and LES thermophysical transport models diff --git a/src/ThermophysicalTransportModels/fluidThermo/fluidThermoThermophysicalTransportModel.H b/src/ThermophysicalTransportModels/fluidThermo/fluidThermoThermophysicalTransportModel.H index 6d503b1419..7583ea8314 100644 --- a/src/ThermophysicalTransportModels/fluidThermo/fluidThermoThermophysicalTransportModel.H +++ b/src/ThermophysicalTransportModels/fluidThermo/fluidThermoThermophysicalTransportModel.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2020-2022 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2020-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -22,16 +22,16 @@ License along with OpenFOAM. If not, see . Typedef - Foam::compressible::fluidThermoThermophysicalTransportModel + Foam::fluidThermoThermophysicalTransportModel Typedef - Foam::compressible::laminarThermophysicalTransportModel + Foam::laminarFluidThermophysicalTransportModel Typedef - Foam::compressible::RASThermophysicalTransportModel + Foam::RASFluidThermophysicalTransportModel Typedef - Foam::compressible::LESThermophysicalTransportModel + Foam::LESFluidThermophysicalTransportModel Description Typedefs for laminar, RAS and LES thermophysical transport models diff --git a/src/ThermophysicalTransportModels/phaseFluidMulticomponentThermo/phaseFluidMulticomponentThermophysicalTransportModel.H b/src/ThermophysicalTransportModels/phaseFluidMulticomponentThermo/phaseFluidMulticomponentThermophysicalTransportModel.H index f11bba6475..c9c96defb1 100644 --- a/src/ThermophysicalTransportModels/phaseFluidMulticomponentThermo/phaseFluidMulticomponentThermophysicalTransportModel.H +++ b/src/ThermophysicalTransportModels/phaseFluidMulticomponentThermo/phaseFluidMulticomponentThermophysicalTransportModel.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2020-2022 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2020-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -22,16 +22,16 @@ License along with OpenFOAM. If not, see . Typedef - Foam::phaseCompressible::thermophysicalTransportModel + Foam::phaseFluidMulticomponentThermophysicalTransportModel Typedef - Foam::phaseCompressible::laminarThermophysicalTransportModel + Foam::laminarPhaseFluidMulticomponentThermophysicalTransportModel Typedef - Foam::phaseCompressible::RASThermophysicalTransportModel + Foam::RASPhaseFluidMulticomponentThermophysicalTransportModel Typedef - Foam::phaseCompressible::LESThermophysicalTransportModel + Foam::LESPhaseFluidMulticomponentThermophysicalTransportModel Description Typedefs for laminar, RAS and LES thermophysical transport models diff --git a/src/ThermophysicalTransportModels/phaseFluidThermo/phaseFluidThermophysicalTransportModel.H b/src/ThermophysicalTransportModels/phaseFluidThermo/phaseFluidThermophysicalTransportModel.H index 8ba07ec361..1c5edef8ab 100644 --- a/src/ThermophysicalTransportModels/phaseFluidThermo/phaseFluidThermophysicalTransportModel.H +++ b/src/ThermophysicalTransportModels/phaseFluidThermo/phaseFluidThermophysicalTransportModel.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2020-2021 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2020-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -22,16 +22,16 @@ License along with OpenFOAM. If not, see . Typedef - Foam::phaseCompressible::thermophysicalTransportModel + Foam::phaseFluidThermophysicalTransportModel Typedef - Foam::phaseCompressible::laminarThermophysicalTransportModel + Foam::laminarPhaseFluidThermophysicalTransportModel Typedef - Foam::phaseCompressible::RASThermophysicalTransportModel + Foam::RASPhaseFluidThermophysicalTransportModel Typedef - Foam::phaseCompressible::LESThermophysicalTransportModel + Foam::LESPhaseFluidThermophysicalTransportModel Description Typedefs for laminar, RAS and LES thermophysical transport models diff --git a/src/finiteVolume/cfdTools/general/MRF/derivedFvPatchFields/MRFnoSlip/MRFnoSlipFvPatchVectorField.H b/src/finiteVolume/cfdTools/general/MRF/derivedFvPatchFields/MRFnoSlip/MRFnoSlipFvPatchVectorField.H index 225b9f61f9..632393c60d 100644 --- a/src/finiteVolume/cfdTools/general/MRF/derivedFvPatchFields/MRFnoSlip/MRFnoSlipFvPatchVectorField.H +++ b/src/finiteVolume/cfdTools/general/MRF/derivedFvPatchFields/MRFnoSlip/MRFnoSlipFvPatchVectorField.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2022-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -49,6 +49,7 @@ Usage type MRFnoSlip; MRFZoneName rotor; } + \endverbatim See also Foam::MRFPatchField diff --git a/src/finiteVolume/cfdTools/general/MRF/derivedFvPatchFields/MRFslip/MRFslipFvPatchVectorField.H b/src/finiteVolume/cfdTools/general/MRF/derivedFvPatchFields/MRFslip/MRFslipFvPatchVectorField.H index 21699b5bb3..989349600b 100644 --- a/src/finiteVolume/cfdTools/general/MRF/derivedFvPatchFields/MRFslip/MRFslipFvPatchVectorField.H +++ b/src/finiteVolume/cfdTools/general/MRF/derivedFvPatchFields/MRFslip/MRFslipFvPatchVectorField.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2022-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -49,6 +49,7 @@ Usage type MRFslip; MRFZoneName rotor; } + \endverbatim See also Foam::MRFPatchField diff --git a/src/finiteVolume/fields/fvPatchFields/derived/prghTotalHydrostaticPressure/prghTotalHydrostaticPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/prghTotalHydrostaticPressure/prghTotalHydrostaticPressureFvPatchScalarField.H index 39460d6b61..9fc05f3acc 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/prghTotalHydrostaticPressure/prghTotalHydrostaticPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/prghTotalHydrostaticPressure/prghTotalHydrostaticPressureFvPatchScalarField.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2016-2023 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2016-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -34,11 +34,11 @@ Description where \vartable - p_rgh | Pressure - \rho g.(h - hRef) [Pa] - ph_rgh | Hydrostatic pressure - \rho g.(h - hRef) [Pa] + p_rgh | Pressure - rho g.(h - hRef) [Pa] + ph_rgh | Hydrostatic pressure - rho g.(h - hRef) [Pa] h | Height in the opposite direction to gravity hRef | Reference height in the opposite direction to gravity - \rho | Density + rho | Density g | Acceleration due to gravity [m/s^2] \endtable diff --git a/src/finiteVolume/fields/fvPatchFields/derived/swirlFlowRateInletVelocity/swirlFlowRateInletVelocityFvPatchVectorField.H b/src/finiteVolume/fields/fvPatchFields/derived/swirlFlowRateInletVelocity/swirlFlowRateInletVelocityFvPatchVectorField.H index 55c4c0399d..ec84885f00 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/swirlFlowRateInletVelocity/swirlFlowRateInletVelocityFvPatchVectorField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/swirlFlowRateInletVelocity/swirlFlowRateInletVelocityFvPatchVectorField.H @@ -67,7 +67,7 @@ Usage } \endverbatim - The \c volumetricFlowRate or \c massFlowRate and the \omega entries are + The \c volumetricFlowRate or \c massFlowRate and the \c omega entries are \c Function1 of time, see Foam::Function1s. The \c radialVelocity and \c tangentialVelocity entries are \c Function2 of time and radius, see Foam::Function2s. diff --git a/src/fvMeshMovers/motionSolver/fvMeshMoversMotionSolver.H b/src/fvMeshMovers/motionSolver/fvMeshMoversMotionSolver.H index bf76c1641c..9441805b11 100644 --- a/src/fvMeshMovers/motionSolver/fvMeshMoversMotionSolver.H +++ b/src/fvMeshMovers/motionSolver/fvMeshMoversMotionSolver.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2021-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -22,7 +22,7 @@ License along with OpenFOAM. If not, see . Class - Foam::fvMeshMovers:motionSolver + Foam::fvMeshMovers::motionSolver Description diff --git a/src/fvMeshMovers/multiValveEngine/multiValveEngine.H b/src/fvMeshMovers/multiValveEngine/multiValveEngine.H index efb96dc23c..01b2904a31 100644 --- a/src/fvMeshMovers/multiValveEngine/multiValveEngine.H +++ b/src/fvMeshMovers/multiValveEngine/multiValveEngine.H @@ -95,7 +95,7 @@ Description Some of the above parameters are highlighted in a given schematic piston-valve configuration w.r.t entries used to control piston motion. Furthermore, an example dictionary entries are provided below. - + \verbatim | | | | | | | | | | S | | @@ -121,6 +121,7 @@ Description | : || movingFrozenLayerThickness : | |________:_________________________\/____________________________:________| PISTON + \endverbatim \verbatim mover diff --git a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.H b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.H index 5333858f35..61b629e5fe 100644 --- a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.H +++ b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -598,9 +598,9 @@ public: ); //- Repatch faces according to surface nearest the face centre - // - calculate face-wise snap distance as max of point-wise - // - calculate face-wise nearest surface point - // - repatch face according to patch for surface point. + // + calculate face-wise snap distance as max of point-wise + // + calculate face-wise nearest surface point + // + repatch face according to patch for surface point. autoPtr repatchToSurface ( const snapParameters& snapParams, diff --git a/src/meshTools/coordinateSystems/coordinateSystem.H b/src/meshTools/coordinateSystems/coordinateSystem.H index 00660aa92a..1a629bba73 100644 --- a/src/meshTools/coordinateSystems/coordinateSystem.H +++ b/src/meshTools/coordinateSystems/coordinateSystem.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -49,8 +49,7 @@ Description -# EulerCoordinateRotation Type of co-ordinates: - -# \link cartesianCS cartesian \endlink - + -# cartesianCS cartesian SourceFiles coordinateSystem.C diff --git a/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.H b/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.H index 9a9ebbadaa..af2b3a0d9d 100644 --- a/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.H +++ b/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.H @@ -439,9 +439,9 @@ void selectCutEdges ); //- Divide into multiple normal bins -// - return REGION if != 2 normals -// - return REGION if 2 normals that make feature angle -// - otherwise return NONE and set normals,bins +// + return REGION if != 2 normals +// + return REGION if 2 normals that make feature angle +// + otherwise return NONE and set normals,bins surfaceFeatures::edgeStatus checkNonManifoldEdge ( const triSurface& surf, diff --git a/src/parallel/decompose/decompositionMethods/decompositionMethod/decompositionMethod.C b/src/parallel/decompose/decompositionMethods/decompositionMethod/decompositionMethod.C index bb0e2e4857..c4cffcdb30 100644 --- a/src/parallel/decompose/decompositionMethods/decompositionMethod/decompositionMethod.C +++ b/src/parallel/decompose/decompositionMethods/decompositionMethod/decompositionMethod.C @@ -826,17 +826,9 @@ Foam::labelList Foam::decompositionMethod::decompose ( const polyMesh& mesh, const scalarField& cellWeights, - - //- Whether owner and neighbour should be on same processor - // (takes priority over explicitConnections) const boolList& blockedFace, - - //- Whether whole sets of faces (and point neighbours) need to be kept - // on single processor const PtrList& specifiedProcessorFaces, const labelList& specifiedProcessor, - - //- Additional connections between boundary faces const List& explicitConnections ) { diff --git a/src/parallel/decompose/decompositionMethods/decompositionMethod/decompositionMethod.H b/src/parallel/decompose/decompositionMethods/decompositionMethod/decompositionMethod.H index ef0daf044f..cbce7abecb 100644 --- a/src/parallel/decompose/decompositionMethods/decompositionMethod/decompositionMethod.H +++ b/src/parallel/decompose/decompositionMethods/decompositionMethod/decompositionMethod.H @@ -300,16 +300,17 @@ public: labelList& finalDecomp ); - // Decompose a mesh with constraints: - // - blockedFace : whether owner and neighbour should be on same - // processor - // - specifiedProcessorFaces, specifiedProcessor : sets of faces - // that should go to same processor (as specified in - // specifiedProcessor, can be -1) - // - explicitConnections : connections between baffle faces - // (blockedFace should be false on these). Owner and - // neighbour on same processor. - // Set all to zero size to have unconstrained decomposition. + //- Decompose a mesh with constraints + // Constraints: + // - blockedFace : whether owner and neighbour should be on same + // processor + // - specifiedProcessorFaces, specifiedProcessor : sets of faces + // that should go to same processor (as specified in + // specifiedProcessor, can be -1) + // - explicitConnections : connections between baffle faces + // (blockedFace should be false on these). Owner and + // neighbour on same processor. + // Set all to zero size to have unconstrained decomposition. virtual labelList decompose ( const polyMesh& mesh, diff --git a/src/thermophysicalModels/specie/thermo/hPower/hPowerThermo.H b/src/thermophysicalModels/specie/thermo/hPower/hPowerThermo.H index 7908e70ab8..7ecc614d5b 100644 --- a/src/thermophysicalModels/specie/thermo/hPower/hPowerThermo.H +++ b/src/thermophysicalModels/specie/thermo/hPower/hPowerThermo.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2012-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -22,6 +22,9 @@ License along with OpenFOAM. If not, see . Class + Foam::hPowerThermo + +Description Enthalpy based thermodynamics package using a power function of temperature for the constant heat capacity at constant volume which is particularly suitable for solids at low temperatures: