diff --git a/.gitlab/issue_templates/bug.md b/.gitlab/issue_templates/bug.md index 13017cdcfe0b7c0d10551da48590b06c17f80f23..35d57452c6af827a3557b1583f920b1e3f6948e4 100644 --- a/.gitlab/issue_templates/bug.md +++ b/.gitlab/issue_templates/bug.md @@ -49,7 +49,7 @@ <!-- Providing details of your set-up can help us identify any issues, e.g. - OpenFOAM version : v2406|v2312|v2306|v2212|v2206 etc + OpenFOAM version : v2412|v2406|v2312|v2306|v2212 etc Operating system : ubuntu|openSUSE|RedHat etc Hardware info : any info that may help? Compiler : gcc|clang etc diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 8d6cc649474bc5e2289a4d471778e409150685cd..8c3342d9f9846e0bf6beea57428c7eee6c5084dd 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -27,6 +27,7 @@ It is likely incomplete... - Bernhard Gschaider - Andrew Heather - David Hill +- Cristóbal Ibáñez - Yoshiaki Inoue - Mattijs Janssens - Andrew Jackson diff --git a/META-INFO/api-info b/META-INFO/api-info index 7828837f89b2e7a055b41e29882fdc144bf49a30..0c4d90cab54eb403faa997ae3095de00b987b00a 100644 --- a/META-INFO/api-info +++ b/META-INFO/api-info @@ -1,2 +1,2 @@ -api=2406 +api=2412 patch=0 diff --git a/README.md b/README.md index 2fe975eb5d0c363fc7525c14911b986185928947..719bc2eb25249b23232e7e9bd1612473d4fb5fc1 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,9 @@ Violations of the Trademark are monitored, and will be duly prosecuted. If OpenFOAM has already been compiled on your system, simply source the appropriate `etc/bashrc` or `etc/cshrc` file and get started. -For example, for the OpenFOAM-v2406 version: +For example, for the OpenFOAM-v2412 version: ``` -source /installation/path/OpenFOAM-v2406/etc/bashrc +source /installation/path/OpenFOAM-v2412/etc/bashrc ``` ## Compiling OpenFOAM @@ -127,8 +127,8 @@ These 3rd-party sources are normally located in a directory parallel to the OpenFOAM directory. For example, ``` /path/parent -|-- OpenFOAM-v2406 -\-- ThirdParty-v2406 +|-- OpenFOAM-v2412 +\-- ThirdParty-v2412 ``` There are, however, many cases where this simple convention is inadequate: @@ -136,7 +136,7 @@ There are, however, many cases where this simple convention is inadequate: operating system or cluster installation provides it) * When we have changed the OpenFOAM directory name to some arbitrary - directory name, e.g. openfoam-sandbox2406, etc.. + directory name, e.g. openfoam-sandbox2412, etc.. * When we would like any additional 3rd party software to be located inside of the OpenFOAM directory to ensure that the installation is @@ -156,9 +156,9 @@ when locating the ThirdParty directory with the following precedence: 2. PREFIX/ThirdParty-VERSION * this corresponds to the traditional approach 3. PREFIX/ThirdParty-vAPI - * allows for an updated value of VERSION, *eg*, `v2406-myCustom`, + * allows for an updated value of VERSION, *eg*, `v2412-myCustom`, without requiring a renamed ThirdParty. The API value would still - be `2406` and the original `ThirdParty-v2406/` would be found. + be `2412` and the original `ThirdParty-v2412/` would be found. 4. PREFIX/ThirdParty-API * same as the previous example, but using an unadorned API value. 5. PREFIX/ThirdParty-common diff --git a/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionTwoPhaseEulerFoam/fluid/setRegionFluidFields.H b/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionTwoPhaseEulerFoam/fluid/setRegionFluidFields.H index c11535179be7ea8eab7dd5a3dbdb3954907be6c8..d1c253ebb02a7253a39f1603a6332ef911f438ce 100644 --- a/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionTwoPhaseEulerFoam/fluid/setRegionFluidFields.H +++ b/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionTwoPhaseEulerFoam/fluid/setRegionFluidFields.H @@ -8,11 +8,13 @@ volVectorField& U1 = phase1.URef(); surfaceScalarField& phi1 = phase1.phiRef(); - const surfaceScalarField& alphaPhi1 = phase1.alphaPhi(); + const tmp<surfaceScalarField> talphaPhi1 = phase1.alphaPhi(); + const auto& alphaPhi1 = talphaPhi1(); volVectorField& U2 = phase2.URef(); surfaceScalarField& phi2 = phase2.phiRef(); - const surfaceScalarField& alphaPhi2 = phase2.alphaPhi(); + const tmp<surfaceScalarField> talphaPhi2 = phase2.alphaPhi(); + const auto& alphaPhi2 = talphaPhi2(); surfaceScalarField& phi = fluid.phi(); diff --git a/applications/solvers/incompressible/pimpleFoam/overPimpleDyMFoam/continuityErrs.H b/applications/solvers/incompressible/pimpleFoam/overPimpleDyMFoam/continuityErrs.H index 46e25d8c2a07bbc3570818803e9b4f34b0ccb936..ed1aea585cfebb76e9b7de10a0bd300288ebbe50 100644 --- a/applications/solvers/incompressible/pimpleFoam/overPimpleDyMFoam/continuityErrs.H +++ b/applications/solvers/incompressible/pimpleFoam/overPimpleDyMFoam/continuityErrs.H @@ -33,7 +33,12 @@ Description \*---------------------------------------------------------------------------*/ { - volScalarField contErr(interpolatedCells*cellMask*fvc::div(phi)); + const DimensionedField<scalar, volMesh> contErr + ( + interpolatedCells.internalField() + *cellMask.internalField() + *fvc::div(phi)().internalField() + ); scalar sumLocalContErr = runTime.deltaTValue()* mag(contErr)().weightedAverage(mesh.V()).value(); diff --git a/applications/solvers/incompressible/simpleFoam/Make/options b/applications/solvers/incompressible/simpleFoam/Make/options index 67583ec12278132619da348f0c3ce81fbfb6deda..57a17fa37483e0b4a4252f0b5b67375a964b4597 100644 --- a/applications/solvers/incompressible/simpleFoam/Make/options +++ b/applications/solvers/incompressible/simpleFoam/Make/options @@ -5,13 +5,17 @@ EXE_INC = \ -I$(LIB_SRC)/TurbulenceModels/turbulenceModels/lnInclude \ -I$(LIB_SRC)/TurbulenceModels/incompressible/lnInclude \ -I$(LIB_SRC)/transportModels \ - -I$(LIB_SRC)/transportModels/incompressible/singlePhaseTransportModel + -I$(LIB_SRC)/transportModels/incompressible/singlePhaseTransportModel \ + -I$(LIB_SRC)/dynamicMesh/lnInclude \ + -I$(LIB_SRC)/dynamicFvMesh/lnInclude EXE_LIBS = \ -lfiniteVolume \ -lfvOptions \ -lmeshTools \ -lsampling \ + -ldynamicMesh \ + -ldynamicFvMesh \ -lturbulenceModels \ -lincompressibleTurbulenceModels \ -lincompressibleTransportModels \ diff --git a/applications/solvers/incompressible/simpleFoam/overSimpleFoam/continuityErrs.H b/applications/solvers/incompressible/simpleFoam/overSimpleFoam/continuityErrs.H index 46e25d8c2a07bbc3570818803e9b4f34b0ccb936..ed1aea585cfebb76e9b7de10a0bd300288ebbe50 100644 --- a/applications/solvers/incompressible/simpleFoam/overSimpleFoam/continuityErrs.H +++ b/applications/solvers/incompressible/simpleFoam/overSimpleFoam/continuityErrs.H @@ -33,7 +33,12 @@ Description \*---------------------------------------------------------------------------*/ { - volScalarField contErr(interpolatedCells*cellMask*fvc::div(phi)); + const DimensionedField<scalar, volMesh> contErr + ( + interpolatedCells.internalField() + *cellMask.internalField() + *fvc::div(phi)().internalField() + ); scalar sumLocalContErr = runTime.deltaTValue()* mag(contErr)().weightedAverage(mesh.V()).value(); diff --git a/applications/solvers/incompressible/simpleFoam/simpleFoam.C b/applications/solvers/incompressible/simpleFoam/simpleFoam.C index 04f3d70f14cad1d2de487300ec2b58b577e751f6..e50abce5570e0962d9a23c4700aa5bd060fa83ad 100644 --- a/applications/solvers/incompressible/simpleFoam/simpleFoam.C +++ b/applications/solvers/incompressible/simpleFoam/simpleFoam.C @@ -64,6 +64,7 @@ Description \*---------------------------------------------------------------------------*/ #include "fvCFD.H" +#include "dynamicFvMesh.H" #include "singlePhaseTransportModel.H" #include "turbulentTransportModel.H" #include "simpleControl.H" @@ -83,7 +84,7 @@ int main(int argc, char *argv[]) #include "addCheckCaseOptions.H" #include "setRootCaseLists.H" #include "createTime.H" - #include "createMesh.H" + #include "createDynamicFvMesh.H" #include "createControl.H" #include "createFields.H" #include "initContinuityErrs.H" @@ -98,6 +99,14 @@ int main(int argc, char *argv[]) { Info<< "Time = " << runTime.timeName() << nl << endl; + // Do any mesh changes + mesh.controlledUpdate(); + + if (mesh.changing()) + { + MRF.update(); + } + // --- Pressure-velocity SIMPLE corrector { #include "UEqn.H" diff --git a/applications/solvers/multiphase/compressibleInterFoam/VoFphaseCompressibleTurbulenceModels/compressibleInterPhaseTransportModel.C b/applications/solvers/multiphase/compressibleInterFoam/VoFphaseCompressibleTurbulenceModels/compressibleInterPhaseTransportModel.C index 19ccb4eef9cc57c4693629f49542deb1bcd0cc2e..930b2b8a6e037613343ebb52d8654669f1b7ad36 100644 --- a/applications/solvers/multiphase/compressibleInterFoam/VoFphaseCompressibleTurbulenceModels/compressibleInterPhaseTransportModel.C +++ b/applications/solvers/multiphase/compressibleInterFoam/VoFphaseCompressibleTurbulenceModels/compressibleInterPhaseTransportModel.C @@ -74,8 +74,11 @@ Foam::compressibleInterPhaseTransportModel::compressibleInterPhaseTransportModel const volScalarField& alpha1(mixture_.alpha1()); const volScalarField& alpha2(mixture_.alpha2()); - const volScalarField& rho1 = mixture_.thermo1().rho(); - const volScalarField& rho2 = mixture_.thermo2().rho(); + const tmp<volScalarField> trho1 = mixture_.thermo1().rho(); + const tmp<volScalarField> trho2 = mixture_.thermo2().rho(); + + const auto& rho1 = trho1(); + const auto& rho2 = trho2(); alphaRhoPhi1_ = ( @@ -185,8 +188,8 @@ void Foam::compressibleInterPhaseTransportModel::correctPhasePhi() { if (twoPhaseTransport_) { - const volScalarField& rho1 = mixture_.thermo1().rho(); - const volScalarField& rho2 = mixture_.thermo2().rho(); + const tmp<volScalarField> rho1 = mixture_.thermo1().rho(); + const tmp<volScalarField> rho2 = mixture_.thermo2().rho(); alphaRhoPhi1_.ref() = fvc::interpolate(rho1)*alphaPhi10_; alphaRhoPhi2_.ref() = fvc::interpolate(rho2)*(phi_ - alphaPhi10_); diff --git a/applications/solvers/multiphase/interFoam/overInterDyMFoam/continuityErrs.H b/applications/solvers/multiphase/interFoam/overInterDyMFoam/continuityErrs.H index 46e25d8c2a07bbc3570818803e9b4f34b0ccb936..ed1aea585cfebb76e9b7de10a0bd300288ebbe50 100644 --- a/applications/solvers/multiphase/interFoam/overInterDyMFoam/continuityErrs.H +++ b/applications/solvers/multiphase/interFoam/overInterDyMFoam/continuityErrs.H @@ -33,7 +33,12 @@ Description \*---------------------------------------------------------------------------*/ { - volScalarField contErr(interpolatedCells*cellMask*fvc::div(phi)); + const DimensionedField<scalar, volMesh> contErr + ( + interpolatedCells.internalField() + *cellMask.internalField() + *fvc::div(phi)().internalField() + ); scalar sumLocalContErr = runTime.deltaTValue()* mag(contErr)().weightedAverage(mesh.V()).value(); diff --git a/applications/solvers/multiphase/reactingMultiphaseEulerFoam/EEqns.H b/applications/solvers/multiphase/reactingMultiphaseEulerFoam/EEqns.H index 22d875dce77ce6bc24f9b8a413992411e6089aa1..e69496b66823adb3fab04fa1d6ee38daca6cd7a9 100644 --- a/applications/solvers/multiphase/reactingMultiphaseEulerFoam/EEqns.H +++ b/applications/solvers/multiphase/reactingMultiphaseEulerFoam/EEqns.H @@ -12,8 +12,11 @@ for (int Ecorr=0; Ecorr<nEnergyCorrectors; Ecorr++) phaseModel& phase = fluid.anisothermalPhases()[anisothermalPhasei]; const volScalarField& alpha = phase; - const volScalarField& rho = phase.rho(); - const volVectorField& U = phase.U(); + const tmp<volScalarField> trho = phase.rho(); + const tmp<volVectorField> tU = phase.U(); + + const auto& rho = trho(); + const auto& U = tU(); fvScalarMatrix EEqn ( diff --git a/applications/solvers/multiphase/reactingMultiphaseEulerFoam/YEqns.H b/applications/solvers/multiphase/reactingMultiphaseEulerFoam/YEqns.H index 75e071490fdc0b2dd666dc6b2c59dff30c045a6e..0ae4c7343e95a93f3fa1322f4013cd439c29cc8d 100644 --- a/applications/solvers/multiphase/reactingMultiphaseEulerFoam/YEqns.H +++ b/applications/solvers/multiphase/reactingMultiphaseEulerFoam/YEqns.H @@ -11,7 +11,9 @@ UPtrList<volScalarField>& Y = phase.YActiveRef(); const volScalarField& alpha = phase; - const volScalarField& rho = phase.rho(); + const tmp<volScalarField> trho = phase.rho(); + + const auto& rho = trho(); forAll(Y, i) { diff --git a/applications/solvers/multiphase/reactingMultiphaseEulerFoam/pU/UEqns.H b/applications/solvers/multiphase/reactingMultiphaseEulerFoam/pU/UEqns.H index bb439af80896cdff72af387a499bb196f31c6827..f4bd02e9d4bd2d6e4c7ae7082d36b211f2adeec6 100644 --- a/applications/solvers/multiphase/reactingMultiphaseEulerFoam/pU/UEqns.H +++ b/applications/solvers/multiphase/reactingMultiphaseEulerFoam/pU/UEqns.H @@ -14,9 +14,11 @@ PtrList<fvVectorMatrix> UEqns(phases.size()); phaseModel& phase = fluid.movingPhases()[movingPhasei]; const volScalarField& alpha = phase; - const volScalarField& rho = phase.rho(); + const tmp<volScalarField> trho = phase.rho(); volVectorField& U = phase.URef(); + const auto& rho = trho(); + UEqns.set ( phase.index(), diff --git a/applications/solvers/multiphase/reactingMultiphaseEulerFoam/pUf/UEqns.H b/applications/solvers/multiphase/reactingMultiphaseEulerFoam/pUf/UEqns.H index cf72498e990996b8bd4e8d142f6b3b82e1198011..467bb44dc99a6288adaf1dd2cadf2fefe8abd95b 100644 --- a/applications/solvers/multiphase/reactingMultiphaseEulerFoam/pUf/UEqns.H +++ b/applications/solvers/multiphase/reactingMultiphaseEulerFoam/pUf/UEqns.H @@ -17,9 +17,11 @@ PtrList<fvVectorMatrix> UEqns(phases.size()); phaseModel& phase = fluid.movingPhases()[movingPhasei]; const volScalarField& alpha = phase; - const volScalarField& rho = phase.rho(); + const tmp<volScalarField> trho = phase.rho(); volVectorField& U = phase.URef(); + const auto& rho = trho(); + UEqns.set ( phase.index(), diff --git a/applications/solvers/multiphase/reactingTwoPhaseEulerFoam/createFieldRefs.H b/applications/solvers/multiphase/reactingTwoPhaseEulerFoam/createFieldRefs.H index edad54fa18c15af65171cbefbe03a2b2c11433b5..a8247c9e1cd5b5b240a57e1c0e31a07dfc5ce0e6 100644 --- a/applications/solvers/multiphase/reactingTwoPhaseEulerFoam/createFieldRefs.H +++ b/applications/solvers/multiphase/reactingTwoPhaseEulerFoam/createFieldRefs.H @@ -6,11 +6,13 @@ const volScalarField& alpha2 = phase2; volVectorField& U1 = phase1.URef(); surfaceScalarField& phi1 = phase1.phiRef(); -const surfaceScalarField& alphaPhi1 = phase1.alphaPhi(); +const tmp<surfaceScalarField> talphaPhi1 = phase1.alphaPhi(); +const auto& alphaPhi1 = talphaPhi1(); volVectorField& U2 = phase2.URef(); surfaceScalarField& phi2 = phase2.phiRef(); -const surfaceScalarField& alphaPhi2 = phase2.alphaPhi(); +const tmp<surfaceScalarField> talphaPhi2 = phase2.alphaPhi(); +const auto& alphaPhi2 = talphaPhi2(); surfaceScalarField& phi = fluid.phi(); diff --git a/applications/test/Function1/case1/constant/function1Properties b/applications/test/Function1/case1/constant/function1Properties index 9940ad56d2bd45b671d1bc823afed591dc5c5479..20bc491b410221d8dcff3c9091a00bee48a8d75c 100644 --- a/applications/test/Function1/case1/constant/function1Properties +++ b/applications/test/Function1/case1/constant/function1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/Function1/case1/system/controlDict b/applications/test/Function1/case1/system/controlDict index 6ffc896c5327156d0b86e78a45ccf457bf55a6eb..ee5033c6481a764f86cac169f5a14e63c3118eac 100644 --- a/applications/test/Function1/case1/system/controlDict +++ b/applications/test/Function1/case1/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/GAMGAgglomeration/Test-GAMGAgglomeration.C b/applications/test/GAMGAgglomeration/Test-GAMGAgglomeration.C index 7c09aefb649a55fc88c4e372ac241106166f857f..91e3693728ddd25738d48b8ee84fb5b467b76764 100644 --- a/applications/test/GAMGAgglomeration/Test-GAMGAgglomeration.C +++ b/applications/test/GAMGAgglomeration/Test-GAMGAgglomeration.C @@ -92,7 +92,10 @@ int main(int argc, char *argv[]) { fld[celli] = cellToCoarse[celli]; } - fld /= max(fld); + if (normalise) + { + fld /= max(fld); + } scalarAgglomeration.correctBoundaryConditions(); scalarAgglomeration.write(); diff --git a/applications/test/Hashing2/hashingTests b/applications/test/Hashing2/hashingTests index e3883f82ef45f07966aa7819e44ac8f86da7675c..3906125e9b845c88ba3205e24dd98c08d95b16ee 100644 --- a/applications/test/Hashing2/hashingTests +++ b/applications/test/Hashing2/hashingTests @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/PDRblockMesh/box0/system/PDRblockMeshDict b/applications/test/PDRblockMesh/box0/system/PDRblockMeshDict index e476cd9650ecdd160b70f7515c74510bab3fc5fc..6f8af14d9f046aaac930a2e3482710b7e270530a 100644 --- a/applications/test/PDRblockMesh/box0/system/PDRblockMeshDict +++ b/applications/test/PDRblockMesh/box0/system/PDRblockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/PDRblockMesh/box0/system/controlDict b/applications/test/PDRblockMesh/box0/system/controlDict index 146750221a6228c971ffb1670176c11cf14dc713..d67a2ef555664732ac536c0f6d67fcebf5eaaa60 100644 --- a/applications/test/PDRblockMesh/box0/system/controlDict +++ b/applications/test/PDRblockMesh/box0/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/PDRblockMesh/box0/system/fvSchemes b/applications/test/PDRblockMesh/box0/system/fvSchemes index 4862a13b3d5aab46559aeb7dfb547f56beb0878f..2418f32806a8539a6700dd0623e3351cc91add53 100644 --- a/applications/test/PDRblockMesh/box0/system/fvSchemes +++ b/applications/test/PDRblockMesh/box0/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/PDRblockMesh/box0/system/fvSolution b/applications/test/PDRblockMesh/box0/system/fvSolution index eeec2dc69ebd1c4d70ce49e02d085da6fa269fe8..8a6042922a8a3ad2abe1c5f307aa6de77d911086 100644 --- a/applications/test/PDRblockMesh/box0/system/fvSolution +++ b/applications/test/PDRblockMesh/box0/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/PatchFunction1/function1Properties b/applications/test/PatchFunction1/function1Properties index 57ade1f8320b4ee7752bca60dc6cd746394f2528..eac270e7d49bf2c2d076f5152d5dda8d1a1ab3d6 100644 --- a/applications/test/PatchFunction1/function1Properties +++ b/applications/test/PatchFunction1/function1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/codeStream/codeStreamDict1 b/applications/test/codeStream/codeStreamDict1 index 29ad9906475a11f67b0e4ff430e05e18595c66ec..87375bd5e691e86c25737865eb4f94ba135a3017 100644 --- a/applications/test/codeStream/codeStreamDict1 +++ b/applications/test/codeStream/codeStreamDict1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/compoundToken1/testDict1 b/applications/test/compoundToken1/testDict1 index e66b1ac5588e50f399aa3ec3f120368099f210b8..fe60a1565501378673a4c1aead74b83c6e0ec8e3 100644 --- a/applications/test/compoundToken1/testDict1 +++ b/applications/test/compoundToken1/testDict1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/compoundToken1/testDict2 b/applications/test/compoundToken1/testDict2 index f989f3e6a5511495fa0c0fd6b00cf359d7654cb4..1f9853df4153b9e267f590e0c5147dae399ebb65 100644 --- a/applications/test/compoundToken1/testDict2 +++ b/applications/test/compoundToken1/testDict2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/coordinateSystem/testCase0/constant/coordinateSystems b/applications/test/coordinateSystem/testCase0/constant/coordinateSystems index 3e88df8f6f54850c53f7c59ef9cbda8c680acae2..013c600f52479cae3d5017f9be1d99c1b58f10f9 100644 --- a/applications/test/coordinateSystem/testCase0/constant/coordinateSystems +++ b/applications/test/coordinateSystem/testCase0/constant/coordinateSystems @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/coordinateSystem/testCase0/system/controlDict b/applications/test/coordinateSystem/testCase0/system/controlDict index ac5d5639b5198afb548a80cdd0ad2889635d8f5e..3a443285ab55b24a9afa88f7e1ba8ad00e368127 100644 --- a/applications/test/coordinateSystem/testCase0/system/controlDict +++ b/applications/test/coordinateSystem/testCase0/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/coordinateSystem/testCase1/constant/coordinateSystems b/applications/test/coordinateSystem/testCase1/constant/coordinateSystems index 0f507f8ae1513c28110e90ab28f7623e7dfed3ee..a109afd9c7d8732cb5c6bc5685419eb3b748137d 100644 --- a/applications/test/coordinateSystem/testCase1/constant/coordinateSystems +++ b/applications/test/coordinateSystem/testCase1/constant/coordinateSystems @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/coordinateSystem/testCase1/system/controlDict b/applications/test/coordinateSystem/testCase1/system/controlDict index ac5d5639b5198afb548a80cdd0ad2889635d8f5e..3a443285ab55b24a9afa88f7e1ba8ad00e368127 100644 --- a/applications/test/coordinateSystem/testCase1/system/controlDict +++ b/applications/test/coordinateSystem/testCase1/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/coordinateSystem/testCsys1 b/applications/test/coordinateSystem/testCsys1 index 3def73caa8bfc059af33f3caf730831b5760b068..2c0bcad29cd5bf16c271cfdc0bbef02fc1854a7a 100644 --- a/applications/test/coordinateSystem/testCsys1 +++ b/applications/test/coordinateSystem/testCsys1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/coordinateSystem/testCsys2 b/applications/test/coordinateSystem/testCsys2 index 18c24bdfe529d8b44f3e57aa203133a17304fd09..4285dfff7511f5d30373dae8d43bf71679ef5132 100644 --- a/applications/test/coordinateSystem/testCsys2 +++ b/applications/test/coordinateSystem/testCsys2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/blockMeshDict1.calc b/applications/test/dictionary/blockMeshDict1.calc index 90caf2a5ac79e5e7049651b550297aaf72ae2e77..601225bb384e9557e67391c9a3d3553fbad55f1d 100644 --- a/applications/test/dictionary/blockMeshDict1.calc +++ b/applications/test/dictionary/blockMeshDict1.calc @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/blockMeshDict1.eval b/applications/test/dictionary/blockMeshDict1.eval index 96674468b1201852a23197c620b05f88bb878131..f3d6926a2b6403c730c44b572c4c084d53100e28 100644 --- a/applications/test/dictionary/blockMeshDict1.eval +++ b/applications/test/dictionary/blockMeshDict1.eval @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testDict b/applications/test/dictionary/testDict index ea4ef8abcace7d7d4d2cdce27375683722a2217d..bd39e8ea6f25f052a3f42ae502e9d1c7a273aaed 100644 --- a/applications/test/dictionary/testDict +++ b/applications/test/dictionary/testDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testDict2 b/applications/test/dictionary/testDict2 index c92a7620e0d882567f58f506d71410a0d1241465..daf8d48534a7465819de8d54c163a7627225c4d6 100644 --- a/applications/test/dictionary/testDict2 +++ b/applications/test/dictionary/testDict2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testDictAPI b/applications/test/dictionary/testDictAPI index da455073518d298c08f01ee1932df350f380a9c9..cd4cc9140cba814016d6bbc1e5ef4799d2577417 100644 --- a/applications/test/dictionary/testDictAPI +++ b/applications/test/dictionary/testDictAPI @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testDictCalc1 b/applications/test/dictionary/testDictCalc1 index 4b4f0eae79f42b30865df28312cee1c2c854e9ce..c31e538d04e27ab4f8d2e531a14987091f34564d 100644 --- a/applications/test/dictionary/testDictCalc1 +++ b/applications/test/dictionary/testDictCalc1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testDictEval1 b/applications/test/dictionary/testDictEval1 index e0389486930661147405f5333108124a2f4cd986..f597c4cf7654dfe81e4e02c22c3a849d9016a30f 100644 --- a/applications/test/dictionary/testDictEval1 +++ b/applications/test/dictionary/testDictEval1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testDictEval2 b/applications/test/dictionary/testDictEval2 index 987b7a4f74ef134f15e96193e9017982cebc4c0e..7b07cbd9f92b09a41e8e6664175f5ce51299ed2a 100644 --- a/applications/test/dictionary/testDictEval2 +++ b/applications/test/dictionary/testDictEval2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testDictEval3 b/applications/test/dictionary/testDictEval3 index 1de245d0ec3969e1de2807c26d8ac97537b98b6e..05139d64a38e5b66bf2da68779b6bddec5492313 100644 --- a/applications/test/dictionary/testDictEval3 +++ b/applications/test/dictionary/testDictEval3 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testDictEval4 b/applications/test/dictionary/testDictEval4 index c0484eaf294866c28a489fa9e25050f8c3ad563a..7ebcf136e0cf608cc5ef85f5a54d9dc58255d5a9 100644 --- a/applications/test/dictionary/testDictEval4 +++ b/applications/test/dictionary/testDictEval4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testDictEval5 b/applications/test/dictionary/testDictEval5 index 04cfadb2e404baa0924a508a2d10cbe286c03e29..28d8d31dc39c8bf7a5a1ba2128a7c4839830de23 100644 --- a/applications/test/dictionary/testDictEval5 +++ b/applications/test/dictionary/testDictEval5 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testDictList b/applications/test/dictionary/testDictList index e0afa733666b9262cd91ce7a20ae4d8b56e024e6..b1643441aadf4bf91e2a1cfed202d0d581b013cc 100644 --- a/applications/test/dictionary/testDictList +++ b/applications/test/dictionary/testDictList @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testDictRegex b/applications/test/dictionary/testDictRegex index eafc4ef03a12d7c02529e02afeafd89e64c9140d..b0b61c64e23c9e36299d524fdd5e399fa2abea98 100644 --- a/applications/test/dictionary/testDictRegex +++ b/applications/test/dictionary/testDictRegex @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testPrimitiveEntry b/applications/test/dictionary/testPrimitiveEntry index fcfc01fe2e5e0a171aea9d4827b6599127f078f3..d0c671a71bc1afff8813e6554332575eb820ebd9 100644 --- a/applications/test/dictionary/testPrimitiveEntry +++ b/applications/test/dictionary/testPrimitiveEntry @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionary/testSubkeyword b/applications/test/dictionary/testSubkeyword index 272f8d84b98e5e65590e2f4cee677a277f31c6ce..6254138b6700dfcaacd84bad5f08935a62b8e675 100644 --- a/applications/test/dictionary/testSubkeyword +++ b/applications/test/dictionary/testSubkeyword @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/dictionaryCopy/testDictCopy b/applications/test/dictionaryCopy/testDictCopy index 8ba9475131a6825d691b3dfd4c96cd7e704cd83f..513969f3ea048a5cce8e602ffa47bfbdf869836c 100644 --- a/applications/test/dictionaryCopy/testDictCopy +++ b/applications/test/dictionaryCopy/testDictCopy @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/exprEntry/testDict1 b/applications/test/exprEntry/testDict1 index 3923565fb306fbfb665225b546abb6ee7455c498..a04b300807a5a6670fe23bf67632577342a29a39 100644 --- a/applications/test/exprEntry/testDict1 +++ b/applications/test/exprEntry/testDict1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/fieldMapping/pipe1D/constant/manualDecomposition b/applications/test/fieldMapping/pipe1D/constant/manualDecomposition index 4ca26d32ddb4b8f2c056d530d2f9f233d203d181..b81bfc591be989b8dc871a5945546535230ed8d3 100644 --- a/applications/test/fieldMapping/pipe1D/constant/manualDecomposition +++ b/applications/test/fieldMapping/pipe1D/constant/manualDecomposition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/fieldMapping/pipe1D/constant/transportProperties b/applications/test/fieldMapping/pipe1D/constant/transportProperties index 871e36bb82ba3042deb8902e8235f19373ae2007..40fbf7a549089abce1af56124a7c2c14f2d5e4c7 100644 --- a/applications/test/fieldMapping/pipe1D/constant/transportProperties +++ b/applications/test/fieldMapping/pipe1D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/fieldMapping/pipe1D/system/blockMeshDict b/applications/test/fieldMapping/pipe1D/system/blockMeshDict index d6672563677fcf8d123521a2bb9cc9a47c02a29e..1c447b6e459cd56749f5046a804ed5e54b106979 100644 --- a/applications/test/fieldMapping/pipe1D/system/blockMeshDict +++ b/applications/test/fieldMapping/pipe1D/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/fieldMapping/pipe1D/system/controlDict b/applications/test/fieldMapping/pipe1D/system/controlDict index 5ae3e4f247c05b353c369d7efd6544ad7069b9d5..3649d4ca2f16e8a6a323f285071678e261ef6f5c 100644 --- a/applications/test/fieldMapping/pipe1D/system/controlDict +++ b/applications/test/fieldMapping/pipe1D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/fieldMapping/pipe1D/system/fvSchemes b/applications/test/fieldMapping/pipe1D/system/fvSchemes index a7131dd6c4d9a753e917f18acf902781f4fd909c..f8ce13944758926e160103b6be7eb13fc478c82d 100644 --- a/applications/test/fieldMapping/pipe1D/system/fvSchemes +++ b/applications/test/fieldMapping/pipe1D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/fieldMapping/pipe1D/system/fvSolution b/applications/test/fieldMapping/pipe1D/system/fvSolution index e8d26ebaf71bac3f235d8a26ed76b4237250ba79..477346c3b3a862118863e96cd36ecfec8ae7b7ac 100644 --- a/applications/test/fieldMapping/pipe1D/system/fvSolution +++ b/applications/test/fieldMapping/pipe1D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/gravityMeshObject/case1/constant/banana b/applications/test/gravityMeshObject/case1/constant/banana index 3e79cdd108e792b79599cada71c9a8e4f3ea8811..7121bb7614524e90c5153228ba27870c78699f6d 100644 --- a/applications/test/gravityMeshObject/case1/constant/banana +++ b/applications/test/gravityMeshObject/case1/constant/banana @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/gravityMeshObject/case1/constant/g b/applications/test/gravityMeshObject/case1/constant/g index ee1da146fdb46d82441319a86a9a2fecec928eba..0894e2bc7f24ba035d92ecfd7cfee415ef35aa01 100644 --- a/applications/test/gravityMeshObject/case1/constant/g +++ b/applications/test/gravityMeshObject/case1/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/gravityMeshObject/case1/constant/saturn b/applications/test/gravityMeshObject/case1/constant/saturn index c6e70e84e4775a7774bff8d27af080f08f8e276c..c7302f3f3b485712ecb93f9a5d3ecd305e0c9be5 100644 --- a/applications/test/gravityMeshObject/case1/constant/saturn +++ b/applications/test/gravityMeshObject/case1/constant/saturn @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/gravityMeshObject/case1/system/controlDict b/applications/test/gravityMeshObject/case1/system/controlDict index 06d786972f545dfadfeafc0534b69c1954275251..aaed029e49595e6b8993c74a14502c709cdb45d8 100644 --- a/applications/test/gravityMeshObject/case1/system/controlDict +++ b/applications/test/gravityMeshObject/case1/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/hexRef8/block/constant/manualDecomposition b/applications/test/hexRef8/block/constant/manualDecomposition index 4ca26d32ddb4b8f2c056d530d2f9f233d203d181..b81bfc591be989b8dc871a5945546535230ed8d3 100644 --- a/applications/test/hexRef8/block/constant/manualDecomposition +++ b/applications/test/hexRef8/block/constant/manualDecomposition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/hexRef8/block/constant/transportProperties b/applications/test/hexRef8/block/constant/transportProperties index 871e36bb82ba3042deb8902e8235f19373ae2007..40fbf7a549089abce1af56124a7c2c14f2d5e4c7 100644 --- a/applications/test/hexRef8/block/constant/transportProperties +++ b/applications/test/hexRef8/block/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/hexRef8/block/system/blockMeshDict b/applications/test/hexRef8/block/system/blockMeshDict index 460793d957763e6a734e9da733b3ca2cee144d2d..12526400712dbbb8039d6c8714d0a4aa9490ace0 100644 --- a/applications/test/hexRef8/block/system/blockMeshDict +++ b/applications/test/hexRef8/block/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/hexRef8/block/system/controlDict b/applications/test/hexRef8/block/system/controlDict index 2879c99ce298bece72b9e036cac96d1fee4157fd..a0dd0a183a899e030bba19f6fbdaf43643c44298 100644 --- a/applications/test/hexRef8/block/system/controlDict +++ b/applications/test/hexRef8/block/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/hexRef8/block/system/fvSchemes b/applications/test/hexRef8/block/system/fvSchemes index a7131dd6c4d9a753e917f18acf902781f4fd909c..f8ce13944758926e160103b6be7eb13fc478c82d 100644 --- a/applications/test/hexRef8/block/system/fvSchemes +++ b/applications/test/hexRef8/block/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/hexRef8/block/system/fvSolution b/applications/test/hexRef8/block/system/fvSolution index e8d26ebaf71bac3f235d8a26ed76b4237250ba79..477346c3b3a862118863e96cd36ecfec8ae7b7ac 100644 --- a/applications/test/hexRef8/block/system/fvSolution +++ b/applications/test/hexRef8/block/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/0/U b/applications/test/mapDistributePolyMesh/cavity/0/U index b2fe3135a7c2c2516e1567264bf6ca0f4a0215a4..06e4ec7e5aed265623d9cd8bec5c585f15d3010f 100644 --- a/applications/test/mapDistributePolyMesh/cavity/0/U +++ b/applications/test/mapDistributePolyMesh/cavity/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/0/p b/applications/test/mapDistributePolyMesh/cavity/0/p index ef4fcf836f6365c3cc11450d5ddf3f59808182b0..ccb6e4794f39cd55ee70f1040850b26d2bd32666 100644 --- a/applications/test/mapDistributePolyMesh/cavity/0/p +++ b/applications/test/mapDistributePolyMesh/cavity/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/0/phi b/applications/test/mapDistributePolyMesh/cavity/0/phi index 807552eff614c07cd62bf07eba388500dfd3730e..9f105f732a11abc7a5d363e9f047600329718cc5 100644 --- a/applications/test/mapDistributePolyMesh/cavity/0/phi +++ b/applications/test/mapDistributePolyMesh/cavity/0/phi @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/constant/transportProperties b/applications/test/mapDistributePolyMesh/cavity/constant/transportProperties index 871e36bb82ba3042deb8902e8235f19373ae2007..40fbf7a549089abce1af56124a7c2c14f2d5e4c7 100644 --- a/applications/test/mapDistributePolyMesh/cavity/constant/transportProperties +++ b/applications/test/mapDistributePolyMesh/cavity/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/blockMeshDict b/applications/test/mapDistributePolyMesh/cavity/system/blockMeshDict index 4cc52dc0b74cca2de12141f6c9a9c0762946a447..f17e873644c154edd5dc255cb1c51c4a6d58c4e0 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/blockMeshDict +++ b/applications/test/mapDistributePolyMesh/cavity/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/controlDict b/applications/test/mapDistributePolyMesh/cavity/system/controlDict index 88560e1e0ed86630b19b5df83e483ff1260c57a8..fe9936ea9c6dae876b0c3f4a6f905bb75bdec388 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/controlDict +++ b/applications/test/mapDistributePolyMesh/cavity/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/controlDict-latestTime b/applications/test/mapDistributePolyMesh/cavity/system/controlDict-latestTime index da24012b6ba6891bba68d87a439cfc9b3ba9c75b..586a0174621d4763531fae79844affe384cbcd24 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/controlDict-latestTime +++ b/applications/test/mapDistributePolyMesh/cavity/system/controlDict-latestTime @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/controlDict-startTime b/applications/test/mapDistributePolyMesh/cavity/system/controlDict-startTime index 88560e1e0ed86630b19b5df83e483ff1260c57a8..fe9936ea9c6dae876b0c3f4a6f905bb75bdec388 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/controlDict-startTime +++ b/applications/test/mapDistributePolyMesh/cavity/system/controlDict-startTime @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict b/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict index 5c82f89759d8f033b0de74be86aa72eb20bbb5aa..bc624a6bdc05041376bf43acc3e6ec892afdef33 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict +++ b/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict-hierarchical b/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict-hierarchical index d5306fb0c4bfcb61ace07f3fc63f160154080d74..4b7504bea6dd525e39512aa2906c7a3769a866ec 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict-hierarchical +++ b/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict-hierarchical @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict-scotch b/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict-scotch index 870efdf96771e6acafd9bc0bdf7eb6f827f9d271..b9bc3d1ae9eb87bd0b1404f9399504bd56796caf 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict-scotch +++ b/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict-scotch @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict.2 b/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict.2 index 28c9bd0655fa6116f32e5d90eab7a6935de96454..583127a1422f730042f3d20096524582f75a7654 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict.2 +++ b/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict.2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict.5 b/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict.5 index 6af33514f26ea5d8a59c73cd4f5f77b348a3744c..61cdb2ec3f9d6a239868435e7b8ef11b2941e248 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict.5 +++ b/applications/test/mapDistributePolyMesh/cavity/system/decomposeParDict.5 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/fvSchemes b/applications/test/mapDistributePolyMesh/cavity/system/fvSchemes index d98fb1d34a84bdff6f7d596c266fb5dd82eeb904..93dbf3dc7eb47bf13f0275f6c9f2f2a04b14cf72 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/fvSchemes +++ b/applications/test/mapDistributePolyMesh/cavity/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/fvSolution b/applications/test/mapDistributePolyMesh/cavity/system/fvSolution index 330d6a35fd08be816ba1b5ce9bcb1322f4250dfe..84df925e6124deeece3ee963991f9fe7c443535f 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/fvSolution +++ b/applications/test/mapDistributePolyMesh/cavity/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/mapDistributePolyMesh/cavity/system/processorField b/applications/test/mapDistributePolyMesh/cavity/system/processorField index a2ba129d618eca08ee102d84ef7b4a798a075e5e..2a66b14d3f484208fbc6a85222defc9f83b4b020 100644 --- a/applications/test/mapDistributePolyMesh/cavity/system/processorField +++ b/applications/test/mapDistributePolyMesh/cavity/system/processorField @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/T b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/T index f9ee66a651e311b6aa5ec5d52eb31adec3c69b34..2906a1887bdf6d913ab0138381e832853874252c 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/T +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/U b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/U index a1246f6443ba74f3fa2f0f758105e5c41347338d..e53186e4baef1d8de82844015d4dd9f2aba1b202 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/U +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/epsilon b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/epsilon index 1eea0f7c7a63823bbf559356956e8b30abe2ed2c..8d4a9d693a1b50732c123e7d61954f0c527d676f 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/epsilon +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/k b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/k index d11a43ee14679704acd72a493088d4b4b332fbcc..c50ff46066778a975b4ebeaec11bca419e77fa46 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/k +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/p b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/p index a46390c250ca70ee3337c8f1172b3352032e715b..374ba036336e46d08481592436316d2b37a59e55 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/p +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/p_rgh b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/p_rgh index fce7509da2cc48c6f0e95176f750d7ac5fe26a73..9b14fc7e48b38afc5200b1e030491e416df00c92 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/p_rgh +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/0/topAir/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/g b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/g index 32870956d50713b0b982f27ec3b8d43ef09b4105..eab9f8dc41cb39bb83064d222605b53605806199 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/g +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/regionProperties b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/regionProperties index d69e9ef84d6bde66f0b1ad92250aa2ef69d4c989..bae92429a4a002246cc8d96a57f291d1ab70cffa 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/regionProperties +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/radiationProperties b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/radiationProperties +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/thermophysicalProperties b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/thermophysicalProperties +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/turbulenceProperties b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/turbulenceProperties index f0c14e0b36b0fbba454fc551ecfd76fba5351058..bd671808c9fa08a172a41e34eaf0ab8e6a373113 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/turbulenceProperties +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/constant/topAir/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/controlDict b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/controlDict index bd6b19dd4e413d5f22c32d4d18132a7b23f37736..8befe768514fa013769fb4b642ace13835fb5707 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/controlDict +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/decomposeParDict b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/decomposeParDict index 86ffb4fba91b4e269323bc00fe5def947e4f15ea..9f1c48cd2f19935cc84c232b63c08879711cefb0 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/decomposeParDict +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/fvSchemes b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/fvSchemes index 0d18e212eab7ebc6438cdeaed51484171091fa33..4ac0c1600c5575e117cef0c6cabfae9a310e8616 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/fvSchemes +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/fvSolution b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/fvSolution index 886d8b907296f28e37e12f0459a702618bd4a462..5e457bb7bada3194e14cc71a32ebcf5274041e47 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/fvSolution +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/topAir/blockMeshDict b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/topAir/blockMeshDict index 62fd33a385b765063e187353a3b83bfd7ca61762..a28cf332037cb784ec05e6fc520e56d4a8af88aa 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/topAir/blockMeshDict +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/fluid/system/topAir/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/0/bottomSolid/T b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/0/bottomSolid/T index 4a4041052f5f25d8abbaa4c2516640c3d1f0618b..8dddf8c4f8d6a5978d1a712addcc60d2a7a54125 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/0/bottomSolid/T +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/0/bottomSolid/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/0/bottomSolid/p b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/0/bottomSolid/p index 2d379bf42c83d6398c1490fd6961fdb943106269..96f4271e7897c4e90150cf5411393f8fb6b90d20 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/0/bottomSolid/p +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/0/bottomSolid/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/bottomSolid/radiationProperties b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/bottomSolid/radiationProperties index 5cde2ae1222098950b2506ac957992eef315846b..79956236f3ff4210a1c6dd4c74a488394a1fd22d 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/bottomSolid/radiationProperties +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/bottomSolid/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/bottomSolid/thermophysicalProperties b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/bottomSolid/thermophysicalProperties index 5954c4103d193ce651fcf269127aca072fc5b05a..c2560eba1b25d1e208f4984d64278e9fd8dd8447 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/bottomSolid/thermophysicalProperties +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/bottomSolid/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/g b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/g index 32870956d50713b0b982f27ec3b8d43ef09b4105..eab9f8dc41cb39bb83064d222605b53605806199 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/g +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/regionProperties b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/regionProperties index 798b694942656f49273e48ffb84caed80440b6c4..aa91c2ed53a90e0806cd7ecc8e58fad183126a4a 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/regionProperties +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/blockMeshDict b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/blockMeshDict index 84d74dff2f97ea8ab307c908aaf27dfff3609518..980cc5a39c76443af15d1c42e19db95fc3f4be6e 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/blockMeshDict +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/fvSchemes b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/fvSchemes index 74c584a3323e5e98a431c0f7c345ba610398decc..9b4b5d52eece81ceb807868b3cb99187cb315c74 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/fvSchemes +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/fvSolution b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/fvSolution index 88b3f332a66154c3b71c21cd122c00f31934c153..d75c7897e59ed10c5c722ff016246d8f92e877b3 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/fvSolution +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/bottomSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/controlDict b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/controlDict index bd6b19dd4e413d5f22c32d4d18132a7b23f37736..8befe768514fa013769fb4b642ace13835fb5707 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/controlDict +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/decomposeParDict b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/decomposeParDict index 86ffb4fba91b4e269323bc00fe5def947e4f15ea..9f1c48cd2f19935cc84c232b63c08879711cefb0 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/decomposeParDict +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/fvSchemes b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/fvSchemes index 6b52e49180e75273299879175da9d41e5cf36f1f..1360e1a5ad08dc84b65e1799e95e8f7cc4408112 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/fvSchemes +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/fvSolution b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/fvSolution index bdb511f3c08002c5818e7f8cce59c44fe23170c5..63c2db89f4960e36994fed7f53f9f55a3422dbc0 100644 --- a/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/fvSolution +++ b/applications/test/multiWorld/chtMultiRegionSimpleFoam/solid/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1/0/T b/applications/test/multiWorld/solidFoam/solid1/0/T index 7bc953313f716f67b195171987430c7975a35e7a..8ac1ad9f2c0cdc85ba5e21cf99d8d299a09fd659 100644 --- a/applications/test/multiWorld/solidFoam/solid1/0/T +++ b/applications/test/multiWorld/solidFoam/solid1/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1/0/p b/applications/test/multiWorld/solidFoam/solid1/0/p index 7bee48b936b3c5917742e86eab1976493955d8d4..7f6c8436c87f85b52d9683bdfd0ceb9a521d6ae2 100644 --- a/applications/test/multiWorld/solidFoam/solid1/0/p +++ b/applications/test/multiWorld/solidFoam/solid1/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1/constant/g b/applications/test/multiWorld/solidFoam/solid1/constant/g index 32870956d50713b0b982f27ec3b8d43ef09b4105..eab9f8dc41cb39bb83064d222605b53605806199 100644 --- a/applications/test/multiWorld/solidFoam/solid1/constant/g +++ b/applications/test/multiWorld/solidFoam/solid1/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1/constant/radiationProperties b/applications/test/multiWorld/solidFoam/solid1/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/applications/test/multiWorld/solidFoam/solid1/constant/radiationProperties +++ b/applications/test/multiWorld/solidFoam/solid1/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1/constant/thermophysicalProperties b/applications/test/multiWorld/solidFoam/solid1/constant/thermophysicalProperties index 5954c4103d193ce651fcf269127aca072fc5b05a..c2560eba1b25d1e208f4984d64278e9fd8dd8447 100644 --- a/applications/test/multiWorld/solidFoam/solid1/constant/thermophysicalProperties +++ b/applications/test/multiWorld/solidFoam/solid1/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1/system/blockMeshDict b/applications/test/multiWorld/solidFoam/solid1/system/blockMeshDict index ebe4fd109f45cecf7fcc61d797bc4d9fd0cd8084..740fd916fb7f305f9d547db060cf91328823862e 100644 --- a/applications/test/multiWorld/solidFoam/solid1/system/blockMeshDict +++ b/applications/test/multiWorld/solidFoam/solid1/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1/system/controlDict b/applications/test/multiWorld/solidFoam/solid1/system/controlDict index 5777bb4f15b5776f99ecde06e4a7708a13312f36..70019b5aef3395c5247605145c8bfd3ff03158aa 100644 --- a/applications/test/multiWorld/solidFoam/solid1/system/controlDict +++ b/applications/test/multiWorld/solidFoam/solid1/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1/system/decomposeParDict b/applications/test/multiWorld/solidFoam/solid1/system/decomposeParDict index 86ffb4fba91b4e269323bc00fe5def947e4f15ea..9f1c48cd2f19935cc84c232b63c08879711cefb0 100644 --- a/applications/test/multiWorld/solidFoam/solid1/system/decomposeParDict +++ b/applications/test/multiWorld/solidFoam/solid1/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1/system/fvSchemes b/applications/test/multiWorld/solidFoam/solid1/system/fvSchemes index 1ea5e5c9ba3b34515559c63ce0fdf3bc1b98b0dd..c274690bf5ebc033e1897bbe731a55908c20a1a5 100644 --- a/applications/test/multiWorld/solidFoam/solid1/system/fvSchemes +++ b/applications/test/multiWorld/solidFoam/solid1/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1/system/fvSolution b/applications/test/multiWorld/solidFoam/solid1/system/fvSolution index c810bcbef63bcf479e7c5946348a536abad3382b..13b981931d40aa9ddbf11034bd7b49559a56201f 100644 --- a/applications/test/multiWorld/solidFoam/solid1/system/fvSolution +++ b/applications/test/multiWorld/solidFoam/solid1/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid1/T b/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid1/T index 7bc953313f716f67b195171987430c7975a35e7a..8ac1ad9f2c0cdc85ba5e21cf99d8d299a09fd659 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid1/T +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid1/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid1/p b/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid1/p index 7bee48b936b3c5917742e86eab1976493955d8d4..7f6c8436c87f85b52d9683bdfd0ceb9a521d6ae2 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid1/p +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid1/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid2/T b/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid2/T index 280044f46c1ef6e86b1a95fce0f7d7b9b64b7f73..147a617b6d39a295ce3d938e1defc5417c6bf6aa 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid2/T +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid2/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid2/p b/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid2/p index 39e1b174dc265d3e4c947e25466d1fea661f0ebf..a04df4dadc5e42f2314b0d3af10bf036361d0a8e 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid2/p +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/0.orig/solid2/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/constant/g b/applications/test/multiWorld/solidFoam/solid1_solid2/constant/g index 32870956d50713b0b982f27ec3b8d43ef09b4105..eab9f8dc41cb39bb83064d222605b53605806199 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/constant/g +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/constant/regionProperties b/applications/test/multiWorld/solidFoam/solid1_solid2/constant/regionProperties index 76132afadcca4f6a74afadb42783bf3fb0aa546a..c324d358aea090ae11b4fd7f85e34a9fd5a69175 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/constant/regionProperties +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/constant/solid1/radiationProperties b/applications/test/multiWorld/solidFoam/solid1_solid2/constant/solid1/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/constant/solid1/radiationProperties +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/constant/solid1/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/constant/solid1/thermophysicalProperties b/applications/test/multiWorld/solidFoam/solid1_solid2/constant/solid1/thermophysicalProperties index 5954c4103d193ce651fcf269127aca072fc5b05a..c2560eba1b25d1e208f4984d64278e9fd8dd8447 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/constant/solid1/thermophysicalProperties +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/constant/solid1/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/system/controlDict b/applications/test/multiWorld/solidFoam/solid1_solid2/system/controlDict index 1d6ed623791a5311c2294138c2ad4ea5e022c3aa..4c2a64563e5a559b8e704a896c9362ac14e56a9b 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/system/controlDict +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSchemes b/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSchemes index 1ea5e5c9ba3b34515559c63ce0fdf3bc1b98b0dd..c274690bf5ebc033e1897bbe731a55908c20a1a5 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSchemes +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSolution b/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSolution index 3655bbbf2ffc0b807092cd53ceab5578a34f31b3..1a6443038f07b35955bee7963234a73fcda24a6b 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSolution +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSolution-energyCoupling b/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSolution-energyCoupling index 3655bbbf2ffc0b807092cd53ceab5578a34f31b3..1a6443038f07b35955bee7963234a73fcda24a6b 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSolution-energyCoupling +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/system/fvSolution-energyCoupling @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/system/solid1/blockMeshDict b/applications/test/multiWorld/solidFoam/solid1_solid2/system/solid1/blockMeshDict index 32669c88e97bb5d6288d3529d975fc53ef75ae9b..bd30df2342a0f66e7254be1deb125b599fa5d371 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/system/solid1/blockMeshDict +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/system/solid1/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid1_solid2/system/solid2/blockMeshDict b/applications/test/multiWorld/solidFoam/solid1_solid2/system/solid2/blockMeshDict index 8af815d41c1d73746eb4ab8e36bd5e21ce0a8579..d8948f4281b86284c22c23f371d48d630060b8af 100644 --- a/applications/test/multiWorld/solidFoam/solid1_solid2/system/solid2/blockMeshDict +++ b/applications/test/multiWorld/solidFoam/solid1_solid2/system/solid2/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid2/0/T b/applications/test/multiWorld/solidFoam/solid2/0/T index 280044f46c1ef6e86b1a95fce0f7d7b9b64b7f73..147a617b6d39a295ce3d938e1defc5417c6bf6aa 100644 --- a/applications/test/multiWorld/solidFoam/solid2/0/T +++ b/applications/test/multiWorld/solidFoam/solid2/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid2/0/p b/applications/test/multiWorld/solidFoam/solid2/0/p index 39e1b174dc265d3e4c947e25466d1fea661f0ebf..a04df4dadc5e42f2314b0d3af10bf036361d0a8e 100644 --- a/applications/test/multiWorld/solidFoam/solid2/0/p +++ b/applications/test/multiWorld/solidFoam/solid2/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/multiWorld/solidFoam/solid2/system/blockMeshDict b/applications/test/multiWorld/solidFoam/solid2/system/blockMeshDict index bcf42cf23bdf6eef99482de98fa64d86ca4d8aa4..6259adc73c8c7dff41ee6904739aded8471478f6 100644 --- a/applications/test/multiWorld/solidFoam/solid2/system/blockMeshDict +++ b/applications/test/multiWorld/solidFoam/solid2/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/namedDictionary/testDict1 b/applications/test/namedDictionary/testDict1 index adfc10ac26e848b3c02f4fa7609f4549cac8e1c2..412dacbc454f8b4d205d0738e871a8c1e33343b2 100644 --- a/applications/test/namedDictionary/testDict1 +++ b/applications/test/namedDictionary/testDict1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/oneBlock_cyclic/0/T b/applications/test/parallel-comm1/oneBlock_cyclic/0/T index 25bb850ce60b35acc264b3211d93d0f8b782d758..a1ba33ac1a8fdefd619e019622a80e314dee56b9 100644 --- a/applications/test/parallel-comm1/oneBlock_cyclic/0/T +++ b/applications/test/parallel-comm1/oneBlock_cyclic/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/oneBlock_cyclic/constant/transportProperties b/applications/test/parallel-comm1/oneBlock_cyclic/constant/transportProperties index 39f9579daa9a80142e7865307d119d8f260ab7f2..b704d2b53f0e9d47ea19911e56dc2a5b6e04bdc2 100644 --- a/applications/test/parallel-comm1/oneBlock_cyclic/constant/transportProperties +++ b/applications/test/parallel-comm1/oneBlock_cyclic/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/oneBlock_cyclic/system/blockMeshDict b/applications/test/parallel-comm1/oneBlock_cyclic/system/blockMeshDict index 0717d45c2561a4e27730719be109ec9bd10278ca..98ef5708eefd07b101d758797fd1d59c341946ee 100644 --- a/applications/test/parallel-comm1/oneBlock_cyclic/system/blockMeshDict +++ b/applications/test/parallel-comm1/oneBlock_cyclic/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/oneBlock_cyclic/system/controlDict b/applications/test/parallel-comm1/oneBlock_cyclic/system/controlDict index 2731f22f2d091b622df1bcbcb01590d9f9b51523..935a76bf86b6a0d1f786581ca210b2a2f4dc38a3 100644 --- a/applications/test/parallel-comm1/oneBlock_cyclic/system/controlDict +++ b/applications/test/parallel-comm1/oneBlock_cyclic/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/oneBlock_cyclic/system/decomposeParDict b/applications/test/parallel-comm1/oneBlock_cyclic/system/decomposeParDict index 4bad0dfc917746a1a2a92315d38a3535f07fc4f6..84a3993427cf57e6c0eefcbec34fdb5d026e86d4 100644 --- a/applications/test/parallel-comm1/oneBlock_cyclic/system/decomposeParDict +++ b/applications/test/parallel-comm1/oneBlock_cyclic/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/oneBlock_cyclic/system/fvSchemes b/applications/test/parallel-comm1/oneBlock_cyclic/system/fvSchemes index cc30cf8904ea10c653b0c145cdd74e79cef014bc..e59f658b5d67d97f4cf283a06319c5afd57d4d42 100644 --- a/applications/test/parallel-comm1/oneBlock_cyclic/system/fvSchemes +++ b/applications/test/parallel-comm1/oneBlock_cyclic/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/oneBlock_cyclic/system/fvSolution b/applications/test/parallel-comm1/oneBlock_cyclic/system/fvSolution index 782b71974f40ecff90bc4b8c9ca7d7e2d44fe7a4..71c4436010793790e357f88609a20c0f67ee529a 100644 --- a/applications/test/parallel-comm1/oneBlock_cyclic/system/fvSolution +++ b/applications/test/parallel-comm1/oneBlock_cyclic/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/T b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/T index b412c656e65d6b41aba6607831a04e9fbc52f0b1..ce6b18b04347d8b9778af2c6abd567fd8e6a33a4 100644 --- a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/T +++ b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/cellToRegion b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/cellToRegion index 17560e6e5d0660e93451cf66d120efc03fc6e666..6cf4989d5339f2e33b84f5e2531818555517b360 100644 --- a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/cellToRegion +++ b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/cellToRegion @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/processorID b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/processorID index b4e207a07f47987f5bb9599ac00de09829b0bb87..b692fae86dc6a3e4bf16f534ab2ab5f4d6d8acfa 100644 --- a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/processorID +++ b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/0/processorID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/constant/transportProperties b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/constant/transportProperties index 39f9579daa9a80142e7865307d119d8f260ab7f2..b704d2b53f0e9d47ea19911e56dc2a5b6e04bdc2 100644 --- a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/constant/transportProperties +++ b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/blockMeshDict b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/blockMeshDict index 234c4cdbdde24648753a6afb63d1e7f84512681a..80c437c11d80c5aed265297f8502a38326498b8b 100644 --- a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/blockMeshDict +++ b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/controlDict b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/controlDict index 2731f22f2d091b622df1bcbcb01590d9f9b51523..935a76bf86b6a0d1f786581ca210b2a2f4dc38a3 100644 --- a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/controlDict +++ b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/decomposeParDict b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/decomposeParDict index d9f27c5d3427eeb5a693ef1f63f715e2ba98a553..786069381cc6ece4c5c5f93feeadecc57f8bb464 100644 --- a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/decomposeParDict +++ b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/fvSchemes b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/fvSchemes index cc30cf8904ea10c653b0c145cdd74e79cef014bc..e59f658b5d67d97f4cf283a06319c5afd57d4d42 100644 --- a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/fvSchemes +++ b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/fvSolution b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/fvSolution index 782b71974f40ecff90bc4b8c9ca7d7e2d44fe7a4..71c4436010793790e357f88609a20c0f67ee529a 100644 --- a/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/fvSolution +++ b/applications/test/parallel-comm1/twoBlocks_cyclicAMI/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/0.orig/T b/applications/test/parallelOverset/heatTransfer/0.orig/T index 833a8ce584ccd08d183a3f3e953b806eefc46b1a..66c9c9c1cd4e1ad64a1d8769ff615d04b0598882 100644 --- a/applications/test/parallelOverset/heatTransfer/0.orig/T +++ b/applications/test/parallelOverset/heatTransfer/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/0.orig/pointDisplacement b/applications/test/parallelOverset/heatTransfer/0.orig/pointDisplacement index ccc10feff4cfe059588701e2c9c6439780ffd30d..f1be6bbee81c3ae78f8c574b320f99153beb6395 100644 --- a/applications/test/parallelOverset/heatTransfer/0.orig/pointDisplacement +++ b/applications/test/parallelOverset/heatTransfer/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/0.orig/zoneID b/applications/test/parallelOverset/heatTransfer/0.orig/zoneID index 9235ad3aeb56df14fc7bd5725edf908fddc0fe8e..be401cdaea534359230d5e97a51632296f6877b7 100644 --- a/applications/test/parallelOverset/heatTransfer/0.orig/zoneID +++ b/applications/test/parallelOverset/heatTransfer/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/constant/dynamicMeshDict b/applications/test/parallelOverset/heatTransfer/constant/dynamicMeshDict index 71ac63592adc13407cc0480607f31b0dcf02ef80..17bf4a87d59ba7b72348836902e86facd7fa4747 100644 --- a/applications/test/parallelOverset/heatTransfer/constant/dynamicMeshDict +++ b/applications/test/parallelOverset/heatTransfer/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/constant/transportProperties b/applications/test/parallelOverset/heatTransfer/constant/transportProperties index baa2904b081f5ed55a8cb5b44f86f43c3b32c0d0..57cafa32604fc85c678d783ced29d9b0e3664319 100644 --- a/applications/test/parallelOverset/heatTransfer/constant/transportProperties +++ b/applications/test/parallelOverset/heatTransfer/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/system/blockMeshDict b/applications/test/parallelOverset/heatTransfer/system/blockMeshDict index 276b56bf9a716a2ee960e5a4a73fc5f76c4bb595..8799145d226b92b233d547a6b6147e1f279b49f2 100644 --- a/applications/test/parallelOverset/heatTransfer/system/blockMeshDict +++ b/applications/test/parallelOverset/heatTransfer/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/system/controlDict b/applications/test/parallelOverset/heatTransfer/system/controlDict index afa6e27e88065988983344393697029b02241a32..f867459e38bfb18c86b0088618ad6f6c8ef82a98 100644 --- a/applications/test/parallelOverset/heatTransfer/system/controlDict +++ b/applications/test/parallelOverset/heatTransfer/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/system/decomposeParDict b/applications/test/parallelOverset/heatTransfer/system/decomposeParDict index ba0ea0351a353cba9b229116181a3b5aa9380a81..62939130d3f19411e782f6ef7fc56294712b93e3 100644 --- a/applications/test/parallelOverset/heatTransfer/system/decomposeParDict +++ b/applications/test/parallelOverset/heatTransfer/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/system/fvSchemes b/applications/test/parallelOverset/heatTransfer/system/fvSchemes index 85dd06cce54044e3f6a1cbc204a1f2eb6064e647..a0afbab35b909054a54a06b127d2c98389680d69 100644 --- a/applications/test/parallelOverset/heatTransfer/system/fvSchemes +++ b/applications/test/parallelOverset/heatTransfer/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/system/fvSolution b/applications/test/parallelOverset/heatTransfer/system/fvSolution index 425ece7ffa14541091f0ca3836cf9ac5536e366a..1941ff95586c096d416a2a9dd32f657f1820104b 100644 --- a/applications/test/parallelOverset/heatTransfer/system/fvSolution +++ b/applications/test/parallelOverset/heatTransfer/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/system/postProcessingDict b/applications/test/parallelOverset/heatTransfer/system/postProcessingDict index 82e626844ab87c0c87824a10ddc33edf837e035e..cb6af56b44e4d61f5a66aa751db7db5f20e43dbf 100644 --- a/applications/test/parallelOverset/heatTransfer/system/postProcessingDict +++ b/applications/test/parallelOverset/heatTransfer/system/postProcessingDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/system/processorField b/applications/test/parallelOverset/heatTransfer/system/processorField index b1fc0f49db9a0afff2d2c1859bee1b9969b9b1b0..ac8ea14256dbd659725f03e86fb0c4ba33c59477 100644 --- a/applications/test/parallelOverset/heatTransfer/system/processorField +++ b/applications/test/parallelOverset/heatTransfer/system/processorField @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/system/setFieldsDict b/applications/test/parallelOverset/heatTransfer/system/setFieldsDict index 2f92137b3f093c78adfa4cd8edfacf6c60603e6c..8a279cb61d2761f6a1ac71047a82fcc9e65d3de0 100644 --- a/applications/test/parallelOverset/heatTransfer/system/setFieldsDict +++ b/applications/test/parallelOverset/heatTransfer/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/parallelOverset/heatTransfer/system/topoSetDict b/applications/test/parallelOverset/heatTransfer/system/topoSetDict index e54e2d61d4987e78e2c60c10e491fd81486a846f..6addbf8485c88d4d45740a7f5428f829c4689290 100644 --- a/applications/test/parallelOverset/heatTransfer/system/topoSetDict +++ b/applications/test/parallelOverset/heatTransfer/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/patchRegion/cavity_pinched/constant/transportProperties b/applications/test/patchRegion/cavity_pinched/constant/transportProperties index 871e36bb82ba3042deb8902e8235f19373ae2007..40fbf7a549089abce1af56124a7c2c14f2d5e4c7 100644 --- a/applications/test/patchRegion/cavity_pinched/constant/transportProperties +++ b/applications/test/patchRegion/cavity_pinched/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/patchRegion/cavity_pinched/system/blockMeshDict b/applications/test/patchRegion/cavity_pinched/system/blockMeshDict index 5648392987975b6d5eb248ba1cd32a4aae642779..71ba99696c064f68c5604e76563e4a45afd72e9b 100644 --- a/applications/test/patchRegion/cavity_pinched/system/blockMeshDict +++ b/applications/test/patchRegion/cavity_pinched/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/patchRegion/cavity_pinched/system/collapseDict b/applications/test/patchRegion/cavity_pinched/system/collapseDict index ec549fbf4603a7492fb697c0703d7d691981156f..d342df3715ced513a7c63312a9efd5affabb3eb5 100644 --- a/applications/test/patchRegion/cavity_pinched/system/collapseDict +++ b/applications/test/patchRegion/cavity_pinched/system/collapseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/patchRegion/cavity_pinched/system/controlDict b/applications/test/patchRegion/cavity_pinched/system/controlDict index 4503cc9de894067615d61af96684d2b5c887dd2b..5ce85b44ddd0c132ac58d311d83ab75b71f04cfd 100644 --- a/applications/test/patchRegion/cavity_pinched/system/controlDict +++ b/applications/test/patchRegion/cavity_pinched/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/patchRegion/cavity_pinched/system/decomposeParDict b/applications/test/patchRegion/cavity_pinched/system/decomposeParDict index d23c935022a44c52125114cb7104d711da327013..50d7d2bb4e2304e582f7a31aaf9651c26175685c 100644 --- a/applications/test/patchRegion/cavity_pinched/system/decomposeParDict +++ b/applications/test/patchRegion/cavity_pinched/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/patchRegion/cavity_pinched/system/fvSchemes b/applications/test/patchRegion/cavity_pinched/system/fvSchemes index 3edc14892c0c264cc5af6465cc737e8ba68a7af9..acd15ebe12a4ee696f5acbd629815053753af59e 100644 --- a/applications/test/patchRegion/cavity_pinched/system/fvSchemes +++ b/applications/test/patchRegion/cavity_pinched/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/patchRegion/cavity_pinched/system/fvSolution b/applications/test/patchRegion/cavity_pinched/system/fvSolution index 68b888be0cbbba20b54431d78341c4a9453f5135..d4205359e92bc1468d0e3cef33254ccc800ca18d 100644 --- a/applications/test/patchRegion/cavity_pinched/system/fvSolution +++ b/applications/test/patchRegion/cavity_pinched/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/0.orig/U b/applications/test/reconstructedDistanceFunction/case1/0.orig/U index 6c3f2d2a3545c46cba27f0e0ea2940651dc2cb19..99fc5aa786d43f802e53aa861f0f5304d1b3c553 100644 --- a/applications/test/reconstructedDistanceFunction/case1/0.orig/U +++ b/applications/test/reconstructedDistanceFunction/case1/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/0.orig/alpha1 b/applications/test/reconstructedDistanceFunction/case1/0.orig/alpha1 index afd0eb8095969dc28e96358f0d4a7c6ca0068a87..8c38b9b70e83c257457d9bb22f80e7265296628d 100644 --- a/applications/test/reconstructedDistanceFunction/case1/0.orig/alpha1 +++ b/applications/test/reconstructedDistanceFunction/case1/0.orig/alpha1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/0.orig/markedCells b/applications/test/reconstructedDistanceFunction/case1/0.orig/markedCells index 2898ebebe9c794f7fe6a30aba99599909dfe44d5..db525c3c31d29ff150938989daad5bf8064de72e 100644 --- a/applications/test/reconstructedDistanceFunction/case1/0.orig/markedCells +++ b/applications/test/reconstructedDistanceFunction/case1/0.orig/markedCells @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/constant/g b/applications/test/reconstructedDistanceFunction/case1/constant/g index d42c18970d2e12edd3b08a89dbf28cf88b349df9..1e0d82a5c5206578efba485eb2f67c52c9f228df 100644 --- a/applications/test/reconstructedDistanceFunction/case1/constant/g +++ b/applications/test/reconstructedDistanceFunction/case1/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/constant/transportProperties b/applications/test/reconstructedDistanceFunction/case1/constant/transportProperties index 4b75367d32660095390a8a1f723d0da157cbdd49..8acbd1547fe4786cce257664118eac3567c858fe 100644 --- a/applications/test/reconstructedDistanceFunction/case1/constant/transportProperties +++ b/applications/test/reconstructedDistanceFunction/case1/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/constant/turbulenceProperties b/applications/test/reconstructedDistanceFunction/case1/constant/turbulenceProperties index 388becd7687197651f88ddbc8506db0e2bda2b75..35b946104d7cb324cb6f57e403d61805b8f17013 100644 --- a/applications/test/reconstructedDistanceFunction/case1/constant/turbulenceProperties +++ b/applications/test/reconstructedDistanceFunction/case1/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/system/blockMeshDict b/applications/test/reconstructedDistanceFunction/case1/system/blockMeshDict index 51f6a9d8d0d689e0b71e9727659f72e7367ca1dc..177c0de9160482db43c9988fe54616b8e21420a4 100644 --- a/applications/test/reconstructedDistanceFunction/case1/system/blockMeshDict +++ b/applications/test/reconstructedDistanceFunction/case1/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/system/changeDictionaryDict b/applications/test/reconstructedDistanceFunction/case1/system/changeDictionaryDict index 5f4a18e53e0cef7cf79c4bc9b641be584ad2debf..9a8fac6e786d17c66c595bfa6ba039d46214a15f 100644 --- a/applications/test/reconstructedDistanceFunction/case1/system/changeDictionaryDict +++ b/applications/test/reconstructedDistanceFunction/case1/system/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/system/controlDict b/applications/test/reconstructedDistanceFunction/case1/system/controlDict index 051435b41f201af60be87d6bd76268cddcbe3350..186cde854d167f88041942b59c2192f673686569 100644 --- a/applications/test/reconstructedDistanceFunction/case1/system/controlDict +++ b/applications/test/reconstructedDistanceFunction/case1/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/system/decomposeParDict b/applications/test/reconstructedDistanceFunction/case1/system/decomposeParDict index a59a86b4105725aab1b8d7142ca8df0c4a2f5bfd..8008b3520f4785d2d5cfef32db92a1483d291e63 100644 --- a/applications/test/reconstructedDistanceFunction/case1/system/decomposeParDict +++ b/applications/test/reconstructedDistanceFunction/case1/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/system/fvSchemes b/applications/test/reconstructedDistanceFunction/case1/system/fvSchemes index 5365d72478dcdc0aa87f20f16f423c88f54ada4b..899075893ee4e6fd75f3d67241ca79cd0d32a4cb 100644 --- a/applications/test/reconstructedDistanceFunction/case1/system/fvSchemes +++ b/applications/test/reconstructedDistanceFunction/case1/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/system/fvSolution b/applications/test/reconstructedDistanceFunction/case1/system/fvSolution index 819c85d4309b9c64039781fbd5a5330d5500d4cc..682a16975062d4fd21b28cd2d62c48053b902a68 100644 --- a/applications/test/reconstructedDistanceFunction/case1/system/fvSolution +++ b/applications/test/reconstructedDistanceFunction/case1/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/system/isoSurfDict b/applications/test/reconstructedDistanceFunction/case1/system/isoSurfDict index 5369d845ed6a07f743be15d4f9bafd9e8365c478..59964a732614ccdceba765b01d2f837d96f291cd 100644 --- a/applications/test/reconstructedDistanceFunction/case1/system/isoSurfDict +++ b/applications/test/reconstructedDistanceFunction/case1/system/isoSurfDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/system/setAlphaFieldDict b/applications/test/reconstructedDistanceFunction/case1/system/setAlphaFieldDict index c31426fcac954718eb73cd8fe873d0ada08dcf38..b44051f67a60e2c0354005f736ca5ec3c477ff02 100644 --- a/applications/test/reconstructedDistanceFunction/case1/system/setAlphaFieldDict +++ b/applications/test/reconstructedDistanceFunction/case1/system/setAlphaFieldDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/reconstructedDistanceFunction/case1/system/topoSetDict b/applications/test/reconstructedDistanceFunction/case1/system/topoSetDict index 29adbd5729a1eaa88254b426bac3cef174e0e513..eb2faa58bdd0110990cc6e95d1dcfeb04189c257 100644 --- a/applications/test/reconstructedDistanceFunction/case1/system/topoSetDict +++ b/applications/test/reconstructedDistanceFunction/case1/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/regex1/testRegexps b/applications/test/regex1/testRegexps index 4d39ee8e8cc882b7e514335cc2d9e05b203fa51d..15c973d25a7fda364bf43a9de1b249d3c9b06390 100644 --- a/applications/test/regex1/testRegexps +++ b/applications/test/regex1/testRegexps @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/regex1/testRegexps2 b/applications/test/regex1/testRegexps2 index 3fc88e8eb46dc934a0a37721e9e4ab27e6c78c2f..2005b34081ae7e985a006029720ca79edc783ac1 100644 --- a/applications/test/regex1/testRegexps2 +++ b/applications/test/regex1/testRegexps2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/router/routerDict b/applications/test/router/routerDict index 4a1ca0b2cedb40245c613fdbde2d2da56403c6cb..c7e6870434f2bdbc591b8f5cfcab8ffbca2cbff4 100644 --- a/applications/test/router/routerDict +++ b/applications/test/router/routerDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/0.orig/T b/applications/test/setAlphaField/case1/0.orig/T index f03b7913d91ab30d011101504348a79bb385466d..73180f0e7f7dc176048b61ea178549d7e966f474 100644 --- a/applications/test/setAlphaField/case1/0.orig/T +++ b/applications/test/setAlphaField/case1/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/0.orig/U b/applications/test/setAlphaField/case1/0.orig/U index 466eb67c4f9f847dd6ef7e51f3d913503394fe1d..2c5632037a98628382c4b81f9f51f16ba587087c 100644 --- a/applications/test/setAlphaField/case1/0.orig/U +++ b/applications/test/setAlphaField/case1/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/0.orig/alpha.water b/applications/test/setAlphaField/case1/0.orig/alpha.water index fdd195c0d60b88db15fea2128c8bf640d01486a3..a47ee4d3419b11a253edce00bfbe80984131edd1 100644 --- a/applications/test/setAlphaField/case1/0.orig/alpha.water +++ b/applications/test/setAlphaField/case1/0.orig/alpha.water @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/0.orig/p b/applications/test/setAlphaField/case1/0.orig/p index 76617fbcddb46ef281102ff66b551d8e51917472..bf5346ee5d6e0d2419ba3258983f32ec92d40f62 100644 --- a/applications/test/setAlphaField/case1/0.orig/p +++ b/applications/test/setAlphaField/case1/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/0.orig/p_rgh b/applications/test/setAlphaField/case1/0.orig/p_rgh index 83b752acd9950cfd0903fe5a30ecd9678f507134..e217a7cc7421b8bb16e9de65ef67b32ef7f603d5 100644 --- a/applications/test/setAlphaField/case1/0.orig/p_rgh +++ b/applications/test/setAlphaField/case1/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/constant/g b/applications/test/setAlphaField/case1/constant/g index ee1da146fdb46d82441319a86a9a2fecec928eba..0894e2bc7f24ba035d92ecfd7cfee415ef35aa01 100644 --- a/applications/test/setAlphaField/case1/constant/g +++ b/applications/test/setAlphaField/case1/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/constant/thermophysicalProperties b/applications/test/setAlphaField/case1/constant/thermophysicalProperties index 32c5e631d7aded47b7554822d9dbf260f3d5a623..d9fc2b089aca1ce72a41768c52e09068050675d2 100644 --- a/applications/test/setAlphaField/case1/constant/thermophysicalProperties +++ b/applications/test/setAlphaField/case1/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/constant/thermophysicalProperties.air b/applications/test/setAlphaField/case1/constant/thermophysicalProperties.air index 6e58d575e5f90ef4fabee3172aa853cf90f717c1..74ec0995293e0196cdc1a3ef88a6e459a9801ad2 100644 --- a/applications/test/setAlphaField/case1/constant/thermophysicalProperties.air +++ b/applications/test/setAlphaField/case1/constant/thermophysicalProperties.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/constant/thermophysicalProperties.water b/applications/test/setAlphaField/case1/constant/thermophysicalProperties.water index 48befb92cb2ecce93c34e27edf545a4af217e6b2..617cbfdac2fb1d3c63a95e95ea1f33849c9ddae6 100644 --- a/applications/test/setAlphaField/case1/constant/thermophysicalProperties.water +++ b/applications/test/setAlphaField/case1/constant/thermophysicalProperties.water @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/constant/turbulenceProperties b/applications/test/setAlphaField/case1/constant/turbulenceProperties index f64cea1e5e358eddb2bccd9c97c58e159608c37d..57414d074078404168407ec8df6154f4cb58b4a0 100644 --- a/applications/test/setAlphaField/case1/constant/turbulenceProperties +++ b/applications/test/setAlphaField/case1/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/system/blockMeshDict b/applications/test/setAlphaField/case1/system/blockMeshDict index f9c3fdf08c6aefa095372e27d8e35752a2ed0f89..87e4b5993c157667dc08bb2b08c051fe5b27c152 100644 --- a/applications/test/setAlphaField/case1/system/blockMeshDict +++ b/applications/test/setAlphaField/case1/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/system/controlDict b/applications/test/setAlphaField/case1/system/controlDict index d6cb0aad12a9b2de624999fb6ed08e2aaac8b775..41995ca9259fe134ff4309a61668e17f1eb13062 100644 --- a/applications/test/setAlphaField/case1/system/controlDict +++ b/applications/test/setAlphaField/case1/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/system/decomposeParDict b/applications/test/setAlphaField/case1/system/decomposeParDict index 941f69efe7537c9b1b02a49d44c8e13e7a14a021..b95260ced9a582b725333f0f8c947c83638e1b95 100644 --- a/applications/test/setAlphaField/case1/system/decomposeParDict +++ b/applications/test/setAlphaField/case1/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/system/fvSchemes b/applications/test/setAlphaField/case1/system/fvSchemes index e15abe1769f47d22dce23f41188e484e9b403eec..c0b915f1bca11344911db7071f2d580fdfd3ebd5 100644 --- a/applications/test/setAlphaField/case1/system/fvSchemes +++ b/applications/test/setAlphaField/case1/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/system/fvSolution b/applications/test/setAlphaField/case1/system/fvSolution index ce7eb4904e503bcf6e72c7545f8dae7516a3c64c..bf4f5f6e35d1916d9ac1112fbb0dd971b934e9f3 100644 --- a/applications/test/setAlphaField/case1/system/fvSolution +++ b/applications/test/setAlphaField/case1/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/setAlphaField/case1/system/setAlphaFieldDict b/applications/test/setAlphaField/case1/system/setAlphaFieldDict index b121e7b6d428f842813d613f900f603f7b72a409..ba87399a969c374ce0e61c2b3ad0b83281d8f6a3 100644 --- a/applications/test/setAlphaField/case1/system/setAlphaFieldDict +++ b/applications/test/setAlphaField/case1/system/setAlphaFieldDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/spline/test-splines b/applications/test/spline/test-splines index 6b2c2287593e7806691db4e415275c5eb6592d78..e606c1a52d33391150a99b296e57f6c47ace7e50 100644 --- a/applications/test/spline/test-splines +++ b/applications/test/spline/test-splines @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/syncTools/block_2x2x1/constant/transportProperties b/applications/test/syncTools/block_2x2x1/constant/transportProperties index 3213de39bebdabb8ebe819cb7e087f8647142975..2e4f94d5f65d60a93b514a834bc4838d64a03b50 100644 --- a/applications/test/syncTools/block_2x2x1/constant/transportProperties +++ b/applications/test/syncTools/block_2x2x1/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/syncTools/block_2x2x1/system/blockMeshDict b/applications/test/syncTools/block_2x2x1/system/blockMeshDict index 573ec056a1ae16e3b7340bb2299639763a6c9914..47e49d9832283f0a71c108f7ba596c4d51f1b3f2 100644 --- a/applications/test/syncTools/block_2x2x1/system/blockMeshDict +++ b/applications/test/syncTools/block_2x2x1/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/syncTools/block_2x2x1/system/controlDict b/applications/test/syncTools/block_2x2x1/system/controlDict index 990b3a08ceff75c2a9d3939d2352a22b052233e9..45ab13e5ebf7c390078052b0819076166c9c3c7f 100644 --- a/applications/test/syncTools/block_2x2x1/system/controlDict +++ b/applications/test/syncTools/block_2x2x1/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/syncTools/block_2x2x1/system/decomposeParDict b/applications/test/syncTools/block_2x2x1/system/decomposeParDict index 013a59430db6ec816f6778999b0f4664a4e79bb4..8ec6db522dd52d731142230629e19fe70eda4abb 100644 --- a/applications/test/syncTools/block_2x2x1/system/decomposeParDict +++ b/applications/test/syncTools/block_2x2x1/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/syncTools/block_2x2x1/system/fvSchemes b/applications/test/syncTools/block_2x2x1/system/fvSchemes index d98fb1d34a84bdff6f7d596c266fb5dd82eeb904..93dbf3dc7eb47bf13f0275f6c9f2f2a04b14cf72 100644 --- a/applications/test/syncTools/block_2x2x1/system/fvSchemes +++ b/applications/test/syncTools/block_2x2x1/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/syncTools/block_2x2x1/system/fvSolution b/applications/test/syncTools/block_2x2x1/system/fvSolution index ae01a253720d54147edd21b28b0d8c82480ce804..15987dde04a0e2921452d8cdfcc574f38809343c 100644 --- a/applications/test/syncTools/block_2x2x1/system/fvSolution +++ b/applications/test/syncTools/block_2x2x1/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/syncTools/missing_cell/Allclean b/applications/test/syncTools/missing_cell/Allclean new file mode 100755 index 0000000000000000000000000000000000000000..b44c686537f5c140c2a58cecbb816c6ee6e05332 --- /dev/null +++ b/applications/test/syncTools/missing_cell/Allclean @@ -0,0 +1,11 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions +#------------------------------------------------------------------------------ + +cleanCase + +# Remove surface and features +rm -rf constant/triSurface + +#------------------------------------------------------------------------------ diff --git a/applications/test/syncTools/missing_cell/Allrun b/applications/test/syncTools/missing_cell/Allrun new file mode 100755 index 0000000000000000000000000000000000000000..740433838365032766c54cacfa2601daf54b91df --- /dev/null +++ b/applications/test/syncTools/missing_cell/Allrun @@ -0,0 +1,27 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + +#- Generate 2x2x1 cells +runApplication blockMesh + +#- Remove cell0 +runApplication topoSet +runApplication subsetMesh c0 -patch exposed0 -overwrite + +#- Put exposed faces (2) into separate patches +runApplication -s face topoSet +runApplication createPatch -overwrite + +#- Decompose - creates one processor without any faces in patches +runApplication decomposePar + +#- Extract inter-patch points. Should include processor that does not +#- have faces on patch ... +mkdir -p constant/triSurface +runParallel surfaceMeshExtract \ + -patches '(exposed0 exposed1)' -featureAngle 180 \ + constant/triSurface/blockMesh.obj + +#------------------------------------------------------------------------------ diff --git a/applications/test/syncTools/missing_cell/README.txt b/applications/test/syncTools/missing_cell/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..776e9a7483b2a6a19dd0adbb598cd16dc55a3579 --- /dev/null +++ b/applications/test/syncTools/missing_cell/README.txt @@ -0,0 +1,7 @@ +- 2x2x1 mesh +- remove one cell, exposing two faces +- move exposed faces into two patches +- decompose onto 3 +- run surfaceMeshExtract -featureAngle 180 +- should also mark points on the processor that has no + faces but is coupled diff --git a/applications/test/syncTools/missing_cell/constant/transportProperties b/applications/test/syncTools/missing_cell/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..2e4f94d5f65d60a93b514a834bc4838d64a03b50 --- /dev/null +++ b/applications/test/syncTools/missing_cell/constant/transportProperties @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +nu 0.01; + + +// ************************************************************************* // diff --git a/applications/test/syncTools/missing_cell/system/blockMeshDict b/applications/test/syncTools/missing_cell/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..d0b2cc4286ed538c335652714d1e2f459ae6468c --- /dev/null +++ b/applications/test/syncTools/missing_cell/system/blockMeshDict @@ -0,0 +1,88 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +scale 1; + +vertices +( + //- Single block + (0 0 0) + (2 0 0) + (2 2 0) + (0 2 0) + (0 0 2) + (2 0 2) + (2 2 2) + (0 2 2) +); + +blocks +( + hex (0 1 2 3 4 5 6 7) (2 2 1) simpleGrading (1 1 1) +); + +edges +( +); + +boundary +( + topWall + { + type wall; + faces + ( + (3 7 6 2) + ); + } + bottomWall + { + type wall; + faces + ( + (1 5 4 0) + ); + } + fixedWalls + { + type wall; + faces + ( + (0 4 7 3) + (2 6 5 1) + ); + } + frontAndBack + { + type patch; + faces + ( + (0 3 2 1) + (4 5 6 7) + ); + } + exposed0 + { + type patch; + faces (); + } +); + +mergePatchPairs +( +); + +// ************************************************************************* // diff --git a/applications/test/syncTools/missing_cell/system/controlDict b/applications/test/syncTools/missing_cell/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..45ab13e5ebf7c390078052b0819076166c9c3c7f --- /dev/null +++ b/applications/test/syncTools/missing_cell/system/controlDict @@ -0,0 +1,48 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application icoFoam; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 0.5; + +deltaT 0.005; + +writeControl timeStep; + +writeInterval 20; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 16; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable true; + +// ************************************************************************* // diff --git a/applications/test/syncTools/missing_cell/system/createPatchDict b/applications/test/syncTools/missing_cell/system/createPatchDict new file mode 100644 index 0000000000000000000000000000000000000000..7f1b90e1d3aaba2a65a6391ebdae28a3a0b12cfc --- /dev/null +++ b/applications/test/syncTools/missing_cell/system/createPatchDict @@ -0,0 +1,44 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object createPatchDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +pointSync false; + +// Patches to create. +patches +( + // Example of creating mapped patches using geometric matching + // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + { + // Name of new patch + name exposed1; + + // Dictionary to construct new patch from + patchInfo + { + type patch; + } + + // How to select the faces: + // - set : specify faceSet in 'set' + // - patches : specify names in 'patches' + // - autoPatch : attempts automatic patching of the specified + // candidates in 'patches'. + constructFrom set; + set exposed0; + } +); + +// ************************************************************************* // diff --git a/applications/test/syncTools/missing_cell/system/decomposeParDict b/applications/test/syncTools/missing_cell/system/decomposeParDict new file mode 100644 index 0000000000000000000000000000000000000000..9272f844402438bb71332290551795f6bfc17304 --- /dev/null +++ b/applications/test/syncTools/missing_cell/system/decomposeParDict @@ -0,0 +1,24 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + note "mesh decomposition control dictionary"; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +//- The total number of domains (mandatory) +numberOfSubdomains 3; + +//- The decomposition method (mandatory) +method scotch; + +// ************************************************************************* // diff --git a/applications/test/syncTools/missing_cell/system/fvSchemes b/applications/test/syncTools/missing_cell/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..93dbf3dc7eb47bf13f0275f6c9f2f2a04b14cf72 --- /dev/null +++ b/applications/test/syncTools/missing_cell/system/fvSchemes @@ -0,0 +1,51 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default Euler; +} + +gradSchemes +{ + default Gauss linear; + grad(p) Gauss linear; +} + +divSchemes +{ + default none; + div(phi,U) Gauss linear; +} + +laplacianSchemes +{ + default Gauss linear orthogonal; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default orthogonal; +} + + +// ************************************************************************* // diff --git a/applications/test/syncTools/missing_cell/system/fvSolution b/applications/test/syncTools/missing_cell/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..15987dde04a0e2921452d8cdfcc574f38809343c --- /dev/null +++ b/applications/test/syncTools/missing_cell/system/fvSolution @@ -0,0 +1,52 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + p + { + solver PCG; + preconditioner DIC; + tolerance 1e-06; + relTol 0.05; + } + + pFinal + { + $p; + relTol 0; + } + + U + { + solver smoothSolver; + smoother symGaussSeidel; + tolerance 1e-05; + relTol 0; + } +} + +PISO +{ + nCorrectors 2; + nNonOrthogonalCorrectors 0; + pRefCell 0; + pRefValue 0; +} + + +// ************************************************************************* // diff --git a/applications/test/syncTools/missing_cell/system/topoSetDict b/applications/test/syncTools/missing_cell/system/topoSetDict new file mode 100644 index 0000000000000000000000000000000000000000..fe95c248ff4c9f8c49082f8bbc752ae912c494c8 --- /dev/null +++ b/applications/test/syncTools/missing_cell/system/topoSetDict @@ -0,0 +1,48 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object topoSetDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +actions +( + { + name c0; + type cellSet; + action new; + source labelToCell; + value (0); + } + { + name c0; + type cellSet; + action invert; + } + + { + name exposed0; + type faceSet; + action new; + source patchToFace; + patch exposed0; + } + { + name exposed0; + type faceSet; + action subset; + source boxToFace; + box (-100 1 -100)(100 100 100); + } +); + +// ************************************************************************* // diff --git a/applications/test/volField/cavity/0/U b/applications/test/volField/cavity/0/U index b6b2a8c0d5481aaa6ef36701358b40a34d1ffd0f..4524444bb172454efaf3101e2b6b8cbd7f44324f 100644 --- a/applications/test/volField/cavity/0/U +++ b/applications/test/volField/cavity/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/volField/cavity/0/p b/applications/test/volField/cavity/0/p index 750b989d54040fa4fa7d9ec1eb20f0ac009c0af7..d5e989f0e8daf207fe0625a73781b92e5c8b08e8 100644 --- a/applications/test/volField/cavity/0/p +++ b/applications/test/volField/cavity/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/volField/cavity/constant/transportProperties b/applications/test/volField/cavity/constant/transportProperties index 871e36bb82ba3042deb8902e8235f19373ae2007..40fbf7a549089abce1af56124a7c2c14f2d5e4c7 100644 --- a/applications/test/volField/cavity/constant/transportProperties +++ b/applications/test/volField/cavity/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/volField/cavity/system/blockMeshDict b/applications/test/volField/cavity/system/blockMeshDict index 3460c49fb9e6fa923b06356e6cfd63c07128c67f..f3bdf00fc5480373368a9272a73be48823cf9838 100644 --- a/applications/test/volField/cavity/system/blockMeshDict +++ b/applications/test/volField/cavity/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/volField/cavity/system/controlDict b/applications/test/volField/cavity/system/controlDict index 88560e1e0ed86630b19b5df83e483ff1260c57a8..fe9936ea9c6dae876b0c3f4a6f905bb75bdec388 100644 --- a/applications/test/volField/cavity/system/controlDict +++ b/applications/test/volField/cavity/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/volField/cavity/system/fvSchemes b/applications/test/volField/cavity/system/fvSchemes index 251e5e8c468017c85b20679f3c142bc313881147..594ec825714fa829d1f74f45c0dc4a2481a71d78 100644 --- a/applications/test/volField/cavity/system/fvSchemes +++ b/applications/test/volField/cavity/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/volField/cavity/system/fvSolution b/applications/test/volField/cavity/system/fvSolution index 2a9649991feeae1fe87d7554c459bd11578b327a..29bc98b7a9baad1553afe998f1cb6211d9979d43 100644 --- a/applications/test/volField/cavity/system/fvSolution +++ b/applications/test/volField/cavity/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/wordRe/testRegexps b/applications/test/wordRe/testRegexps index a4b9ccd768e9de0ae4355b8d5b2fb57237e5b70a..c4169b2c467316d05a609c0f612abaa62181a7ff 100644 --- a/applications/test/wordRe/testRegexps +++ b/applications/test/wordRe/testRegexps @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/zoneDistribute/case1/system/blockMeshDict b/applications/test/zoneDistribute/case1/system/blockMeshDict index fa0ff0d902d6966d6afea36dd417040f66f50218..d7654cbaf64720087a3fdbe3ce7a42cc515163fb 100644 --- a/applications/test/zoneDistribute/case1/system/blockMeshDict +++ b/applications/test/zoneDistribute/case1/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/zoneDistribute/case1/system/controlDict b/applications/test/zoneDistribute/case1/system/controlDict index 136e87b1d506dd237f379fb87b1dc5579478eca6..f0f423ed07d644df81ec0dbf0d787b40ab6db118 100644 --- a/applications/test/zoneDistribute/case1/system/controlDict +++ b/applications/test/zoneDistribute/case1/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/zoneDistribute/case1/system/decomposeParDict b/applications/test/zoneDistribute/case1/system/decomposeParDict index d73c8f7447c19e431c853a443ef9915f8adcb768..1fe2000481e1eb2b7319b6c6361377dfbb3cc571 100644 --- a/applications/test/zoneDistribute/case1/system/decomposeParDict +++ b/applications/test/zoneDistribute/case1/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/zoneDistribute/case1/system/fvSchemes b/applications/test/zoneDistribute/case1/system/fvSchemes index 998f1e8ef8b845450a77663830809b3c9f1ba575..faa58392d216cacf5b8f3d3c8965cd56fa791b72 100644 --- a/applications/test/zoneDistribute/case1/system/fvSchemes +++ b/applications/test/zoneDistribute/case1/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/zoneDistribute/case1/system/fvSolution b/applications/test/zoneDistribute/case1/system/fvSolution index eeec2dc69ebd1c4d70ce49e02d085da6fa269fe8..8a6042922a8a3ad2abe1c5f307aa6de77d911086 100644 --- a/applications/test/zoneDistribute/case1/system/fvSolution +++ b/applications/test/zoneDistribute/case1/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/zoneDistribute/case1/system/meshQualityDict b/applications/test/zoneDistribute/case1/system/meshQualityDict index e010357d6421f398b8bf5b59a31461bbb9cf6658..dd25ead3ff12611cf7adb451ff7de23ba5a824ce 100644 --- a/applications/test/zoneDistribute/case1/system/meshQualityDict +++ b/applications/test/zoneDistribute/case1/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/zoneDistribute/case1/system/snappyHexMeshDict b/applications/test/zoneDistribute/case1/system/snappyHexMeshDict index bdf0175f961b34e4a2ee87b8641b386d0fcc4f47..23f9769b1a3e3ac2fd58ff26e3d3381d40fa71eb 100644 --- a/applications/test/zoneDistribute/case1/system/snappyHexMeshDict +++ b/applications/test/zoneDistribute/case1/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/test/zoneDistribute/case1/system/surfaceFeatureExtractDict b/applications/test/zoneDistribute/case1/system/surfaceFeatureExtractDict index 7dbb7225bfb2ccaae4baa95777d7ee7b2517f9d8..8b282d2a4b08642826e5d7ce19f4b7fdf9f79956 100644 --- a/applications/test/zoneDistribute/case1/system/surfaceFeatureExtractDict +++ b/applications/test/zoneDistribute/case1/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/utilities/mesh/conversion/vtkUnstructuredToFoam/Make/options b/applications/utilities/mesh/conversion/vtkUnstructuredToFoam/Make/options index 7ce182425d9bee4bef91ba2a36b6b8475fc1aeb2..89e5059ff9c376adaceebda068123f309769a214 100644 --- a/applications/utilities/mesh/conversion/vtkUnstructuredToFoam/Make/options +++ b/applications/utilities/mesh/conversion/vtkUnstructuredToFoam/Make/options @@ -1,5 +1,7 @@ EXE_INC = \ + -I$(LIB_SRC)/finiteVolume/lnInclude \ -I$(LIB_SRC)/fileFormats/lnInclude EXE_LIBS = \ + -lfiniteVolume \ -lfileFormats diff --git a/applications/utilities/mesh/conversion/vtkUnstructuredToFoam/vtkUnstructuredToFoam.C b/applications/utilities/mesh/conversion/vtkUnstructuredToFoam/vtkUnstructuredToFoam.C index cdc97fab330e0eaaa98730b39b1066d42264b3fc..9f43ea0fb3ddb3aac2da012e94c5aac271b5569d 100644 --- a/applications/utilities/mesh/conversion/vtkUnstructuredToFoam/vtkUnstructuredToFoam.C +++ b/applications/utilities/mesh/conversion/vtkUnstructuredToFoam/vtkUnstructuredToFoam.C @@ -34,23 +34,84 @@ Description Convert legacy VTK file (ascii) containing an unstructured grid to an OpenFOAM mesh without boundary information. +Usage + \b vtkUnstructuredToFoam \<XXX.vtk\> + + Options: + - \par -no-fields + Do not attempt to recreate volFields + Note The .vtk format does not contain any boundary information. - It is purely a description of the internal mesh. + It is purely a description of the internal mesh. This also limits the + usefulness of reconstructing the volFields. + Not extensively tested. \*---------------------------------------------------------------------------*/ #include "argList.H" #include "Time.H" -#include "polyMesh.H" +#include "fvMesh.H" #include "IFstream.H" #include "vtkUnstructuredReader.H" +#include "columnFvMesh.H" +#include "scalarIOField.H" +#include "vectorIOField.H" +#include "volFields.H" + using namespace Foam; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +template<class Type> +void constructVolFields(fvMesh& mesh, const vtkUnstructuredReader& reader) +{ + const auto fields(reader.cellData().csorted<IOField<Type>>()); + for (const auto& field : fields) + { + Info<< "Constructing volField " << field.name() << endl; + + // field is + // - cell data followed by + // - boundary face data + + + auto tfld = GeometricField<Type, fvPatchField, volMesh>::New + ( + field.name(), + mesh, + dimless + ); + auto& fld = tfld.ref(); + fld.instance() = mesh.time().timeName(); + fld.writeOpt() = IOobject::AUTO_WRITE; + + // Fill cell values + fld.internalFieldRef().field() = + UIndirectList<Type>(field, reader.cellMap()); + + // Fill boundary values + const auto& map = reader.faceMap(); + if (map.size()) + { + for (auto& pfld : fld.boundaryFieldRef()) + { + const auto& pp = pfld.patch(); + + forAll(pfld, i) + { + const label bFacei = pp.patch().offset()+i; + pfld[i] = field[map[bFacei]]; + } + } + } + + regIOobject::store(std::move(tfld)); + } +} + int main(int argc, char *argv[]) { @@ -61,11 +122,14 @@ int main(int argc, char *argv[]) ); argList::noParallel(); + argList::addOptionCompat("no-fields", {"noFields", 2106}); argList::addArgument("vtk-file", "The input legacy ascii vtk file"); #include "setRootCase.H" #include "createTime.H" + const bool doFields = !args.found("no-fields"); + IFstream mshStream(args.get<fileName>(1)); vtkUnstructuredReader reader(runTime, mshStream); @@ -96,6 +160,24 @@ int main(int argc, char *argv[]) mesh.removeFiles(); mesh.write(); + + if (doFields) + { + // Re-read mesh as fvMesh so we can have fields + Info<< "Re-reading mesh ..." << endl; + #include "createMesh.H" + + constructVolFields<scalar>(mesh, reader); + constructVolFields<vector>(mesh, reader); + constructVolFields<sphericalTensor>(mesh, reader); + constructVolFields<symmTensor>(mesh, reader); + constructVolFields<tensor>(mesh, reader); + + // No need to write the mesh, only fields + mesh.thisDb().write(); + } + + Info<< "End\n" << endl; return 0; diff --git a/applications/utilities/mesh/conversion/writeMeshObj/writeMeshObj.C b/applications/utilities/mesh/conversion/writeMeshObj/writeMeshObj.C index 9a594ec2da78b60106e4ac9d5cffd5a17e34958a..a5c85cd07df121728295e02f2b41b5bae04110f6 100644 --- a/applications/utilities/mesh/conversion/writeMeshObj/writeMeshObj.C +++ b/applications/utilities/mesh/conversion/writeMeshObj/writeMeshObj.C @@ -67,8 +67,6 @@ void writeOBJ(const point& pt, Ostream& os) // All edges of mesh void writePoints(const polyMesh& mesh, const fileName& timeName) { - label vertI = 0; - fileName pointFile(mesh.time().path()/"meshPoints_" + timeName + ".obj"); Info<< "Writing mesh points and edges to " << pointFile << endl; @@ -78,7 +76,6 @@ void writePoints(const polyMesh& mesh, const fileName& timeName) forAll(mesh.points(), pointi) { writeOBJ(mesh.points()[pointi], pointStream); - vertI++; } forAll(mesh.edges(), edgeI) diff --git a/applications/utilities/mesh/generation/extrude/extrudeMesh/extrudeMesh.C b/applications/utilities/mesh/generation/extrude/extrudeMesh/extrudeMesh.C index aed6edfbea3609967611fb628c3db5cd2bb4cb1d..9023c4f1642f518de12e59fed5189616434f484c 100644 --- a/applications/utilities/mesh/generation/extrude/extrudeMesh/extrudeMesh.C +++ b/applications/utilities/mesh/generation/extrude/extrudeMesh/extrudeMesh.C @@ -99,21 +99,21 @@ label findPatchID(const polyBoundaryMesh& patches, const word& name) } -labelList patchFaces(const polyBoundaryMesh& patches, const wordList& names) +labelList patchFaces(const polyBoundaryMesh& patches, const wordRes& names) { + const labelList patchIDs(patches.indices(names)); + label n = 0; - forAll(names, i) + for (label patchi : patchIDs) { - const polyPatch& pp = patches[findPatchID(patches, names[i])]; - - n += pp.size(); + n += patches[patchi].size(); } labelList faceLabels(n); n = 0; - forAll(names, i) + for (label patchi : patchIDs) { - const polyPatch& pp = patches[findPatchID(patches, names[i])]; + const polyPatch& pp = patches[patchi]; forAll(pp, j) { @@ -128,24 +128,25 @@ labelList patchFaces(const polyBoundaryMesh& patches, const wordList& names) void zoneFaces ( const faceZoneMesh& fzs, - const wordList& names, + const wordRes& names, labelList& faceLabels, bitSet& faceFlip ) { + const labelList zoneIDs(fzs.indices(names)); + label n = 0; - forAll(names, i) + for (label zonei : zoneIDs) { - const auto& pp = fzs[fzs.findZoneID(names[i])]; - n += pp.size(); + n += fzs[zonei].size(); } faceLabels.setSize(n); faceFlip.setSize(n); n = 0; - forAll(names, i) + for (label zonei : zoneIDs) { - const auto& pp = fzs[fzs.findZoneID(names[i])]; + const auto& pp = fzs[zonei]; const boolList& ppFlip = pp.flipMap(); forAll(pp, i) { @@ -345,8 +346,8 @@ int main(int argc, char *argv[]) sourceCaseDir = sourceCaseDir/("processor" + Foam::name(Pstream::myProcNo())); } - wordList sourcePatches; - wordList sourceFaceZones; + wordRes sourcePatches; + wordRes sourceFaceZones; if ( dict.readIfPresent @@ -868,13 +869,13 @@ int main(int argc, char *argv[]) frontPatchFaces = patchFaces ( meshFromSurface().boundaryMesh(), - wordList(1, frontPatchName) + wordRes(1, frontPatchName) ); backPatchName = "otherSide"; backPatchFaces = patchFaces ( meshFromSurface().boundaryMesh(), - wordList(1, backPatchName) + wordRes(1, backPatchName) ); } diff --git a/applications/utilities/mesh/generation/extrude/extrudeToRegionMesh/extrudeToRegionMesh.C b/applications/utilities/mesh/generation/extrude/extrudeToRegionMesh/extrudeToRegionMesh.C index f558637ce545b3ee2c44c11f441c1705041be4b3..90ff0fc3f5f90a885285e9ee2a2d5b6fb8ae1eca 100644 --- a/applications/utilities/mesh/generation/extrude/extrudeToRegionMesh/extrudeToRegionMesh.C +++ b/applications/utilities/mesh/generation/extrude/extrudeToRegionMesh/extrudeToRegionMesh.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2015-2022 OpenCFD Ltd. + Copyright (C) 2015-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -1110,8 +1110,9 @@ void setCouplingInfo fvMesh& mesh, const labelList& zoneToPatch, const word& sampleRegion, - const mappedWallPolyPatch::sampleMode mode, - const List<pointField>& offsets + const mappedPatchBase::sampleMode mode, + const List<pointField>& offsets, + const List<boundBox>& bbs ) { const polyBoundaryMesh& patches = mesh.boundaryMesh(); @@ -1132,7 +1133,6 @@ void setCouplingInfo if (isA<mappedWallPolyPatch>(pp)) { - const boundBox bb(pp.points(), pp.meshPoints(), true); const vector avgOffset = gAverage(offsets[zoneI]); const scalar mergeSqrDist = gMax(magSqr(offsets[zoneI]-avgOffset)); @@ -1157,7 +1157,7 @@ void setCouplingInfo // Verify uniformity of offset // (same check as blockMesh geom merge) - if (mergeSqrDist < magSqr(10*SMALL*bb.span())) + if (mergeSqrDist < magSqr(10*SMALL*bbs[zoneI].span())) { Info<< "uniform offset " << avgOffset << endl; } @@ -2468,7 +2468,10 @@ int main(int argc, char *argv[]) // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ List<pointField> topOffsets(zoneNames.size()); + List<boundBox> topBbs(zoneNames.size()); + List<pointField> bottomOffsets(zoneNames.size()); + List<boundBox> bottomBbs(zoneNames.size()); forAll(regionMesh.boundaryMesh(), patchi) { @@ -2480,11 +2483,13 @@ int main(int argc, char *argv[]) { label zoneI = interRegionTopPatch.find(patchi); topOffsets[zoneI] = calcOffset(extrudePatch, extruder, pp); + topBbs[zoneI] = boundBox(pp.points(), pp.meshPoints(), true); } else if (interRegionBottomPatch.found(patchi)) { label zoneI = interRegionBottomPatch.find(patchi); bottomOffsets[zoneI] = calcOffset(extrudePatch, extruder, pp); + bottomBbs[zoneI] = boundBox(pp.points(), pp.meshPoints(), true); } } } @@ -2501,7 +2506,8 @@ int main(int argc, char *argv[]) interRegionTopPatch, regionName, // name of main mesh sampleMode, // sampleMode - topOffsets + topOffsets, + topBbs ); // Correct bottom patches for offset @@ -2511,7 +2517,8 @@ int main(int argc, char *argv[]) interRegionBottomPatch, regionName, sampleMode, // sampleMode - bottomOffsets + bottomOffsets, + bottomBbs ); // Remove any unused patches @@ -2530,7 +2537,8 @@ int main(int argc, char *argv[]) interMeshTopPatch, shellRegionName, // name of shell mesh sampleMode, // sampleMode - -topOffsets + -topOffsets, + topBbs ); // Correct bottom patches for offset @@ -2540,7 +2548,8 @@ int main(int argc, char *argv[]) interMeshBottomPatch, shellRegionName, sampleMode, - -bottomOffsets + -bottomOffsets, + bottomBbs ); } diff --git a/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMeshApp.C b/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMeshApp.C index a469731d1232dadd8bbf242750bfaefa64489569..1d491c7825952ff25c86990f362b35a547bb5721 100644 --- a/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMeshApp.C +++ b/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMeshApp.C @@ -47,7 +47,6 @@ Note #include "polyTopoChange.H" #include "MeshedSurface.H" #include "edgeCollapser.H" -#include "addPatchCellLayer.H" #include "patchToPoly2DMesh.H" #include "globalIndex.H" #include "topoSet.H" diff --git a/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/cellShapeControl/cellShapeControlMesh/cellShapeControlMesh.C b/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/cellShapeControl/cellShapeControlMesh/cellShapeControlMesh.C index 27ebc07801cfa99aa2c477ebc4b21416ffb12fce..0fb484b53374cb520490d1719c081561f407c006 100644 --- a/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/cellShapeControl/cellShapeControlMesh/cellShapeControlMesh.C +++ b/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/cellShapeControl/cellShapeControlMesh/cellShapeControlMesh.C @@ -743,12 +743,12 @@ Foam::label Foam::cellShapeControlMesh::estimateCellCount cit->vertex(3)->point() ); - pointFromPoint centre = topoint(CGAL::centroid(tet)); + const auto tetCentre = CGAL::centroid(tet); if ( - Pstream::parRun() - && !decomposition().positionOnThisProcessor(centre) + UPstream::parRun() + && !decomposition().positionOnThisProcessor(topoint(tetCentre)) ) { continue; diff --git a/applications/utilities/mesh/generation/snappyHexMesh/snappyHexMesh.C b/applications/utilities/mesh/generation/snappyHexMesh/snappyHexMesh.C index 2002149f2255a6b077bd4c902ce178367b7242bc..2cec08501cc23bd6a86e5867285be78065ceffdb 100644 --- a/applications/utilities/mesh/generation/snappyHexMesh/snappyHexMesh.C +++ b/applications/utilities/mesh/generation/snappyHexMesh/snappyHexMesh.C @@ -825,6 +825,17 @@ int main(int argc, char *argv[]) #include "setSystemMeshDictionaryIO.H" const IOdictionary meshDict(dictIO); + // Overall mesh generation mode + const meshRefinement::MeshType meshType + ( + meshRefinement::MeshTypeNames.getOrDefault + ( + "type", + meshDict, + meshRefinement::CASTELLATED + ) + ); + // all surface geometry const dictionary& geometryDict = @@ -1339,6 +1350,7 @@ int main(int argc, char *argv[]) shells, // for volume (inside/outside) refinement limitShells, // limit of volume refinement labelList(), // initial faces to test + meshType, // how to operate dryRun ); diff --git a/applications/utilities/mesh/manipulation/createPatch/createPatch.C b/applications/utilities/mesh/manipulation/createPatch/createPatch.C index f07f49bfad32692906c29aa2c963161121b59d49..b255fcf58fd11109b34579790e5c0d515f36504c 100644 --- a/applications/utilities/mesh/manipulation/createPatch/createPatch.C +++ b/applications/utilities/mesh/manipulation/createPatch/createPatch.C @@ -52,6 +52,7 @@ Description #include "IOPtrList.H" #include "polyTopoChange.H" #include "polyModifyFace.H" +#include "polyAddFace.H" #include "wordRes.H" #include "processorMeshes.H" #include "IOdictionary.H" @@ -344,6 +345,7 @@ void matchPatchFaces void changePatchID ( + const bool modify, const fvMesh& mesh, const label faceID, const label patchID, @@ -361,21 +363,43 @@ void changePatchID zoneFlip = fZone.flipMap()[fZone.whichFace(faceID)]; } - meshMod.setAction - ( - polyModifyFace + if (modify) + { + meshMod.setAction ( - mesh.faces()[faceID], // face - faceID, // face ID - mesh.faceOwner()[faceID], // owner - -1, // neighbour - false, // flip flux - patchID, // patch ID - false, // remove from zone - zoneID, // zone ID - zoneFlip // zone flip - ) - ); + polyModifyFace + ( + mesh.faces()[faceID], // face + faceID, // face ID + mesh.faceOwner()[faceID], // owner + -1, // neighbour + false, // flip flux + patchID, // patch ID + false, // remove from zone + zoneID, // zone ID + zoneFlip // zone flip + ) + ); + } + else + { + meshMod.setAction + ( + polyAddFace + ( + mesh.faces()[faceID], // modified face + mesh.faceOwner()[faceID], // owner + -1, // neighbour + -1, // master point + -1, // master edge + faceID, // master face + false, // face flip + patchID, // patch for face + zoneID, // zone for face + zoneFlip // face flip in zone + ) + ); + } } @@ -399,7 +423,9 @@ void changePatchID << " existing boundary faces." << exit(FatalError); } - if (!isRepatchedBoundary.set(facei-mesh.nInternalFaces())) + const bool isFirst = + isRepatchedBoundary.set(facei-mesh.nInternalFaces()); + if (!isFirst) { static label nWarnings = 0; if (nWarnings == 0) @@ -413,14 +439,14 @@ void changePatchID << " name " << mesh.boundaryMesh()[patchID].name() << " is already marked for patch " << newPatchi << " name " << mesh.boundaryMesh()[newPatchi].name() - << ". Suppressing further warnings" + << ". Creating duplicate face. Suppressing further warnings" //<< exit(FatalError); << endl; } nWarnings++; } - changePatchID(mesh, facei, patchID, meshMod); + changePatchID(isFirst, mesh, facei, patchID, meshMod); } } diff --git a/applications/utilities/mesh/manipulation/subsetMesh/subsetMesh.C b/applications/utilities/mesh/manipulation/subsetMesh/subsetMesh.C index 1a195e360067a55c75931ae294c340663fd467d1..1b195acc0322956076116ac4dd7f71335a82c787 100644 --- a/applications/utilities/mesh/manipulation/subsetMesh/subsetMesh.C +++ b/applications/utilities/mesh/manipulation/subsetMesh/subsetMesh.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2016-2023 OpenCFD Ltd. + Copyright (C) 2016-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -220,7 +220,7 @@ PtrList<FieldType> subsetFields const pointMesh& pMesh ) { - const fvMesh& baseMesh = subsetter.baseMesh(); + //const fvMesh& baseMesh = subsetter.baseMesh(); const UPtrList<const IOobject> fieldObjects ( @@ -247,8 +247,8 @@ PtrList<FieldType> subsetFields IOobject ( io.name(), - baseMesh.time().timeName(), - baseMesh, + pMesh.thisDb().time().timeName(), + pMesh.thisDb(), IOobjectOption::MUST_READ, IOobjectOption::NO_WRITE, IOobjectOption::NO_REGISTER @@ -382,6 +382,8 @@ int main(int argc, char *argv[]) #include "createTime.H" #include "createNamedMesh.H" + // Make sure pointMesh gets constructed/read as well + (void)pointMesh::New(mesh, IOobject::READ_IF_PRESENT); // arg[1] = word (cellSet) or wordRes (cellZone) // const word selectionName = args[1]; @@ -583,7 +585,7 @@ int main(int argc, char *argv[]) // Read point fields and subset // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - const pointMesh& pMesh = pointMesh::New(mesh); + const pointMesh& pMesh = pointMesh::New(mesh, IOobject::READ_IF_PRESENT); #undef createSubsetFields #define createSubsetFields(FieldType, Variable) \ @@ -663,6 +665,18 @@ int main(int argc, char *argv[]) subsetter.subMesh().write(); processorMeshes::removeFiles(subsetter.subMesh()); + auto* subPointMeshPtr = + subsetter.subMesh().thisDb().findObject<pointMesh> + ( + pointMesh::typeName + ); + if (subPointMeshPtr) + { + pointMesh& subPointMesh = const_cast<pointMesh&>(*subPointMeshPtr); + subPointMesh.setInstance(subsetter.subMesh().facesInstance()); + subPointMesh.write(); + } + // Volume fields for (const auto& fld : vScalarFlds) { fld.write(); } diff --git a/applications/utilities/mesh/manipulation/transformPoints/transformPoints.C b/applications/utilities/mesh/manipulation/transformPoints/transformPoints.C index 6f2777d61f40fc4220274fea24c9ea840e515211..ed6e367d6088f42f2581abe53f4dc4fac26f6035 100644 --- a/applications/utilities/mesh/manipulation/transformPoints/transformPoints.C +++ b/applications/utilities/mesh/manipulation/transformPoints/transformPoints.C @@ -83,6 +83,10 @@ Note pitch (rotation about y) yaw (rotation about z) + - with -rotate and two exactly opposing vectors it will actually mirror + the geometry. Use any of the other rotation options instead or use + two steps, each 90 degrees. + \*---------------------------------------------------------------------------*/ #include "argList.H" diff --git a/applications/utilities/parallelProcessing/decomposePar/decomposePar.C b/applications/utilities/parallelProcessing/decomposePar/decomposePar.C index 1309cac153b088a937807cbba93348489cacf185..43222468845d083d27f36ed94df32ce6d54a8ae9 100644 --- a/applications/utilities/parallelProcessing/decomposePar/decomposePar.C +++ b/applications/utilities/parallelProcessing/decomposePar/decomposePar.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation - Copyright (C) 2016-2022 OpenCFD Ltd. + Copyright (C) 2016-2022,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -176,7 +176,7 @@ autoPtr<labelIOList> procAddressing const objectRegistry& procRegistry, const word& name, const word& instance, - const word& local = fvMesh::meshSubDir + const word& local = polyMesh::meshSubDir ) { return autoPtr<labelIOList>::New @@ -218,17 +218,22 @@ const labelIOList& procAddressing PtrList<labelIOList>& procAddressingList ) { - const fvMesh& procMesh = procMeshList[proci]; + const auto& procMesh = procMeshList[proci]; - if (!procAddressingList.set(proci)) - { - procAddressingList.set + return procAddressingList.try_emplace + ( + proci, + IOobject ( - proci, - procAddressing(procMesh, name, procMesh.facesInstance()) - ); - } - return procAddressingList[proci]; + name, + procMesh.facesInstance(), + polyMesh::meshSubDir, + procMesh, + IOobject::MUST_READ, + IOobject::NO_WRITE, + IOobject::NO_REGISTER + ) + ); } @@ -661,6 +666,9 @@ int main(int argc, char *argv[]) ), decompDictFile ); + // Make sure pointMesh gets read as well + (void)pointMesh::New(mesh, IOobject::READ_IF_PRESENT); + // Decompose the mesh if (!decomposeFieldsOnly) @@ -780,6 +788,7 @@ int main(int argc, char *argv[]) PtrList<labelIOList> cellProcAddressingList(mesh.nProcs()); PtrList<labelIOList> boundaryProcAddressingList(mesh.nProcs()); PtrList<labelIOList> pointProcAddressingList(mesh.nProcs()); + PtrList<labelIOList> pointBoundaryProcAddressingList(mesh.nProcs()); PtrList<fvFieldDecomposer> fieldDecomposerList(mesh.nProcs()); PtrList<pointFieldDecomposer> pointFieldDecomposerList @@ -864,7 +873,10 @@ int main(int argc, char *argv[]) // Point fields // ~~~~~~~~~~~~ - const pointMesh& pMesh = pointMesh::New(mesh); + + // Read decomposed pointMesh + const pointMesh& pMesh = + pointMesh::New(mesh, IOobject::READ_IF_PRESENT); pointFieldDecomposer::fieldsCache pointFieldCache; @@ -1133,7 +1145,34 @@ int main(int argc, char *argv[]) pointProcAddressingList ); - const pointMesh& procPMesh = pointMesh::New(procMesh); + const pointMesh& procPMesh = + pointMesh::New(procMesh, IOobject::READ_IF_PRESENT); + + if (!pointBoundaryProcAddressingList.set(proci)) + { + pointBoundaryProcAddressingList.set + ( + proci, + autoPtr<labelIOList>::New + ( + IOobject + ( + "boundaryProcAddressing", + procMesh.facesInstance(), + polyMesh::meshSubDir + /pointMesh::meshSubDir, + procPMesh.thisDb(), + IOobject::READ_IF_PRESENT, + IOobject::NO_WRITE, + IOobject::NO_REGISTER + ), + boundaryProcAddressing + ) + ); + } + const auto& pointBoundaryProcAddressing = + pointBoundaryProcAddressingList[proci]; + if (!pointFieldDecomposerList.set(proci)) { @@ -1145,7 +1184,7 @@ int main(int argc, char *argv[]) pMesh, procPMesh, pointProcAddressing, - boundaryProcAddressing + pointBoundaryProcAddressing ) ); } @@ -1157,6 +1196,12 @@ int main(int argc, char *argv[]) if (times.size() == 1) { + // Early deletion + pointBoundaryProcAddressingList.set + ( + proci, + nullptr + ); pointProcAddressingList.set(proci, nullptr); pointFieldDecomposerList.set(proci, nullptr); } diff --git a/applications/utilities/parallelProcessing/decomposePar/domainDecomposition.C b/applications/utilities/parallelProcessing/decomposePar/domainDecomposition.C index 2158e2a19e45b638270f05a9d76332919b247db2..b77f2777fb3dfc4bd74aee6441aae864505fb2d4 100644 --- a/applications/utilities/parallelProcessing/decomposePar/domainDecomposition.C +++ b/applications/utilities/parallelProcessing/decomposePar/domainDecomposition.C @@ -44,6 +44,12 @@ License #include "decompositionModel.H" #include "hexRef8Data.H" +// For handling pointMeshes with additional patches +#include "pointMesh.H" +#include "meshPointPatch.H" +#include "processorPointPatch.H" +#include "DynamicField.H" + // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // void Foam::domainDecomposition::mark @@ -740,6 +746,115 @@ bool Foam::domainDecomposition::writeDecomposition(const bool decomposeSets) procMesh.write(); + // Add pointMesh if it was available + const auto* pMeshPtr = + thisDb().cfindObject<pointMesh>(pointMesh::typeName); + if (pMeshPtr) + { + const auto& pMesh = *pMeshPtr; + const auto& pMeshBoundary = pMesh.boundary(); + + + // 1. Generate pointBoundaryMesh from polyBoundaryMesh (so ignoring + // any additional patches + const auto& procPointMesh = pointMesh::New(procMesh); + + pointBoundaryMesh& procBoundary = + const_cast<pointBoundaryMesh&>(procPointMesh.boundary()); + + // Keep track if it differs from the polyBoundaryMesh since then + // we need to write the boundary file. + bool differsFromPoly = false; + + // 2. Explicitly add subsetted meshPointPatches + forAll(pMeshBoundary, patchi) + { + const auto* mppPtr = isA<meshPointPatch>(pMeshBoundary[patchi]); + if (mppPtr && (procBoundary.findPatchID(mppPtr->name()) == -1)) + { + const auto& mpp = *mppPtr; + + DynamicList<label> procMeshPoints(mpp.size()); + DynamicField<vector> procNormals(mpp.size()); + forAll(mpp.meshPoints(), i) + { + const label pointi = mpp.meshPoints()[i]; + const label procPointi = pointLookup[pointi]; + if (procPointi != -1) + { + procMeshPoints.append(procPointi); + procNormals.append(mpp.pointNormals()[i]); + } + } + + procBoundary.push_back + ( + new meshPointPatch + ( + mpp.name(), + procMeshPoints, + procNormals, + procBoundary.size(), + procBoundary, + meshPointPatch::typeName + ) + ); + differsFromPoly = true; + } + } + + // 3. Shuffle new patches before any processor patches + labelList oldToNew(procBoundary.size()); + label newPatchi = 0; + forAll(procBoundary, patchi) + { + if (!isA<processorPointPatch>(procBoundary[patchi])) + { + oldToNew[patchi] = newPatchi; + + if (newPatchi != patchi) + { + differsFromPoly = true; + } + + newPatchi++; + } + } + + // decomposed-to-undecomposed patch numbering + labelList boundaryProcAddressing(identity(newPatchi)); + boundaryProcAddressing.setSize(procBoundary.size(), -1); + + forAll(procBoundary, patchi) + { + if (isA<processorPointPatch>(procBoundary[patchi])) + { + oldToNew[patchi] = newPatchi++; + } + } + procBoundary.reorder(oldToNew, true); + + + if (differsFromPoly) + { + // Write pointMesh/boundary + procBoundary.write(); + + // Write pointMesh/boundaryProcAddressing + IOobject ioAddr + ( + "boundaryProcAddressing", + procMesh.facesInstance(), + polyMesh::meshSubDir/pointMesh::meshSubDir, + procPointMesh.thisDb(), + IOobject::NO_READ, + IOobject::NO_WRITE, + IOobject::NO_REGISTER + ); + IOListRef<label>(ioAddr, boundaryProcAddressing).write(); + } + } + // Write points if pointsInstance differing from facesInstance if (facesInstancePointsPtr_) { diff --git a/applications/utilities/parallelProcessing/reconstructPar/reconstructPar.C b/applications/utilities/parallelProcessing/reconstructPar/reconstructPar.C index 4d2910373d9c06e24d5444dee3ef0ff928fbe6c3..0e8f7f7b39cddf1a346702878af331a307517393 100644 --- a/applications/utilities/parallelProcessing/reconstructPar/reconstructPar.C +++ b/applications/utilities/parallelProcessing/reconstructPar/reconstructPar.C @@ -427,24 +427,18 @@ int main(int argc, char *argv[]) { Info<< "Reconstructing point fields" << nl << endl; - const pointMesh& pMesh = pointMesh::New(mesh); - PtrList<pointMesh> pMeshes(procMeshes.meshes().size()); - - forAll(pMeshes, proci) - { - pMeshes.set - ( - proci, - new pointMesh(procMeshes.meshes()[proci]) - ); - } + const pointMesh& pMesh = pointMesh::New + ( + mesh, + IOobject::READ_IF_PRESENT + ); pointFieldReconstructor reconstructor ( pMesh, - pMeshes, + procMeshes.pointMeshes(), procMeshes.pointProcAddressing(), - procMeshes.boundaryProcAddressing() + procMeshes.pointMeshBoundaryProcAddressing() ); reconstructor.reconstructAllFields(objects, selectedFields); diff --git a/applications/utilities/parallelProcessing/reconstructParMesh/Make/options b/applications/utilities/parallelProcessing/reconstructParMesh/Make/options index 792a51bf7fce4e4db070d172f67aac88e26b0fc4..b2bacc9e10a4ed730c4c15e17d50c377aa44afaa 100644 --- a/applications/utilities/parallelProcessing/reconstructParMesh/Make/options +++ b/applications/utilities/parallelProcessing/reconstructParMesh/Make/options @@ -1,9 +1,13 @@ EXE_INC = \ -I$(LIB_SRC)/finiteVolume/lnInclude \ -I$(LIB_SRC)/meshTools/lnInclude \ + -I$(LIB_SRC)/finiteArea/lnInclude \ + -I$(LIB_SRC)/parallel/reconstruct/faReconstruct/lnInclude \ -I$(LIB_SRC)/dynamicMesh/lnInclude EXE_LIBS = \ -lfiniteVolume \ -lmeshTools \ + -lfiniteArea \ + -lfaReconstruct \ -ldynamicMesh diff --git a/applications/utilities/parallelProcessing/reconstructParMesh/reconstructParMesh.C b/applications/utilities/parallelProcessing/reconstructParMesh/reconstructParMesh.C index c77a2742a22609f9ae1313edd1a42ffa6abe997b..56eaa1d4d9cf1a2255f5c9df66582806613a00a1 100644 --- a/applications/utilities/parallelProcessing/reconstructParMesh/reconstructParMesh.C +++ b/applications/utilities/parallelProcessing/reconstructParMesh/reconstructParMesh.C @@ -73,6 +73,9 @@ Usage #include "regionProperties.H" #include "fvMeshTools.H" +#include "faMeshReconstructor.H" +#include "ignoreFaPatch.H" + using namespace Foam; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -573,6 +576,160 @@ void printWarning() } +// Used to determine the correspondence between the edges. +// See faMeshReconstructor::calcAddressing +void determineFaEdgeMapping +( + const uindirectPrimitivePatch& onePatch,// reconstructed faMesh patch + const PtrList<faMesh>& procFaMeshes, // individual faMeshes + const labelListList& pointProcAddressing, // procPolyMesh to reconstructed + + labelListList& faEdgeProcAddressing +) +{ + // Determines ordering from faMesh to onePatch (= recsontructed faMesh) + + // From two polyMesh points to patch-edge label + EdgeMap<label> pointsToOnePatchEdge(onePatch.nEdges()); + { + const edgeList& edges = onePatch.edges(); + const labelList& mp = onePatch.meshPoints(); + + forAll(edges, edgei) + { + const edge meshE(mp, edges[edgei]); + pointsToOnePatchEdge.insert(meshE, edgei); + } + } + + // Now we can create the mapping from patch-edge on processor + // to patch-edge on onePatch + + faEdgeProcAddressing.resize_nocopy(procFaMeshes.size()); + forAll(procFaMeshes, proci) + { + const auto& procPatch = procFaMeshes[proci].patch(); + const auto& edges = procPatch.edges(); + const auto& mp = procPatch.meshPoints(); + const auto& ppAddressing = pointProcAddressing[proci]; + + labelList& edgeProcAddr = faEdgeProcAddressing[proci]; + edgeProcAddr.resize_nocopy(edges.size()); + + label edgei = 0; + for + ( + ; + edgei < procPatch.nEdges(); //procPatch.nInternalEdges(); + edgei++ + ) + { + const edge meshE(mp, edges[edgei]); + const edge onePatchE(ppAddressing, meshE); + + edgeProcAddr[edgei] = pointsToOnePatchEdge[onePatchE]; + } + } +} + + +void sortFaEdgeMapping +( + const uindirectPrimitivePatch& onePatch,// reconstructed faMesh patch + const PtrList<faMesh>& procFaMeshes, // individual faMeshes + const labelListList& pointProcAddressing, // procPolyMesh to reconstructed + + labelListList& faEdgeProcAddressing, // per proc the map to the master + labelListList& singlePatchEdgeLabels // per patch the map to the master +) +{ + // From faMeshReconstructor.C - edge shuffling on patches + + Map<label> remapGlobal(2*onePatch.nEdges()); + for (label edgei = 0; edgei < onePatch.nInternalEdges(); ++edgei) + { + remapGlobal.insert(edgei, remapGlobal.size()); + } + + + const faMesh& procMesh0 = procFaMeshes[0]; + const label nNonProcessor = procMesh0.boundary().nNonProcessor(); + + singlePatchEdgeLabels.resize_nocopy(nNonProcessor); + + forAll(singlePatchEdgeLabels, patchi) + { + if (isA<ignoreFaPatch>(procMesh0.boundary()[patchi])) + { + // These are not real edges + continue; + } + + forAll(procFaMeshes, proci) + { + const faMesh& procMesh = procFaMeshes[proci]; + const faPatch& fap = procMesh.boundary()[patchi]; + + labelList patchEdgeLabels(fap.edgeLabels()); + + // Renumber from local edges to global edges (natural order) + for (label& edgeId : patchEdgeLabels) + { + edgeId = faEdgeProcAddressing[proci][edgeId]; + } + + // Combine from all processors + singlePatchEdgeLabels[patchi].append(patchEdgeLabels); + } + + // Sorted order will be the original non-decomposed order + Foam::sort(singlePatchEdgeLabels[patchi]); + + for (const label sortedEdgei : singlePatchEdgeLabels[patchi]) + { + remapGlobal.insert(sortedEdgei, remapGlobal.size()); + } + } + + { + // Use the map to rewrite the local faEdgeProcAddressing + + labelListList newEdgeProcAddr(faEdgeProcAddressing); + + forAll(procFaMeshes, proci) + { + const faMesh& procMesh = procFaMeshes[proci]; + + label edgei = procMesh.nInternalEdges(); + + for (const faPatch& fap : procMesh.boundary()) + { + for (const label patchEdgei : fap.edgeLabels()) + { + const label globalEdgei = + faEdgeProcAddressing[proci][patchEdgei]; + + const auto fnd = remapGlobal.cfind(globalEdgei); + if (fnd.good()) + { + newEdgeProcAddr[proci][edgei] = fnd.val(); + ++edgei; + } + else + { + FatalErrorInFunction + << "Failed to find edge " << globalEdgei + << " this indicates a programming error" << nl + << exit(FatalError); + } + } + } + } + faEdgeProcAddressing = std::move(newEdgeProcAddr); + } +} + + int main(int argc, char *argv[]) { argList::addNote @@ -614,6 +771,12 @@ int main(int argc, char *argv[]) "Write cell distribution as a labelList - for use with 'manual' " "decomposition method or as a volScalarField for post-processing." ); + argList::addBoolOption + ( + "no-finite-area", + "Suppress finiteArea mesh reconstruction", + true // Advanced option + ); #include "addAllRegionOptions.H" @@ -625,7 +788,7 @@ int main(int argc, char *argv[]) const bool fullMatch = args.found("fullMatch"); const bool procMatch = args.found("procMatch"); const bool writeCellDist = args.found("cellDist"); - + bool doFiniteArea = !args.found("no-finite-area"); const bool writeAddrOnly = args.found("addressing-only"); const scalar mergeTol = @@ -1234,21 +1397,31 @@ int main(int argc, char *argv[]) Info<< "Reconstructing addressing from processor meshes" << " to the newly reconstructed mesh" << nl << endl; + + // Read finite-area + PtrList<faMesh> procFaMeshes(databases.size()); + PtrList<polyMesh> procMeshes(databases.size()); + forAll(databases, proci) { Info<< "Processor " << proci << nl << "Read processor mesh: " << (databases[proci].caseName()/regionDir) << endl; - polyMesh procMesh + procMeshes.set ( - IOobject + proci, + new polyMesh ( - regionName, - databases[proci].timeName(), - databases[proci] + IOobject + ( + regionName, + databases[proci].timeName(), + databases[proci] + ) ) ); + const polyMesh& procMesh = procMeshes[proci]; writeMaps ( @@ -1260,6 +1433,264 @@ int main(int argc, char *argv[]) pointProcAddressing[proci], boundProcAddressing[proci] ); + + + if (doFiniteArea) + { + const word boundaryInst = + procMesh.time().findInstance + ( + procMesh.meshDir(), + "boundary" + ); + + IOobject io + ( + "faBoundary", + boundaryInst, + faMesh::meshDir(procMesh, word::null), + procMesh.time(), + IOobject::READ_IF_PRESENT, + IOobject::NO_WRITE, + IOobject::NO_REGISTER + ); + + if (io.typeHeaderOk<faBoundaryMesh>(true)) + { + // Always based on the volume decomposition! + procFaMeshes.set(proci, new faMesh(procMesh)); + } + } + } + + + // Finite-area mapping + doFiniteArea = false; + forAll(procFaMeshes, proci) + { + if (procFaMeshes.set(proci)) + { + doFiniteArea = true; + } + } + + if (doFiniteArea) + { + // Addressing from processor to reconstructed case + labelListList faFaceProcAddressing(nProcs); + labelListList faEdgeProcAddressing(nProcs); + labelListList faPointProcAddressing(nProcs); + labelListList faBoundProcAddressing(nProcs); + + + // boundProcAddressing + // ~~~~~~~~~~~~~~~~~~~ + + forAll(procFaMeshes, proci) + { + const auto& procMesh = procFaMeshes[proci]; + const auto& bm = procMesh.boundary(); + + faBoundProcAddressing[proci] = identity(bm.size()); + // Mark processor patches + for + ( + label patchi = bm.nNonProcessor(); + patchi < bm.size(); + ++patchi + ) + { + faBoundProcAddressing[proci][patchi] = -1; + } + } + + + // Re-read reconstructed polyMesh. Note: could probably be avoided + // by merging into loops above. + const polyMesh masterMesh + ( + IOobject + ( + regionName, + runTime.timeName(), + runTime + ), + true + ); + + + // faceProcAddressing + // ~~~~~~~~~~~~~~~~~~ + + DynamicList<label> masterFaceLabels; + label nPatchFaces = 0; + forAll(procFaMeshes, proci) + { + const auto& procMesh = procFaMeshes[proci]; + const auto& procPolyFaces = procMesh.faceLabels(); + const auto& fpa = faceProcAddressing[proci]; + + labelList& faceAddr = faFaceProcAddressing[proci]; + faceAddr.resize_nocopy(procPolyFaces.size()); + + // Map to masterPolyMesh faces + forAll(procPolyFaces, i) + { + const label facei = procPolyFaces[i]; + masterFaceLabels.append(fpa[facei]); + faceAddr[i] = nPatchFaces++; + } + } + + + // faMesh itself + // ~~~~~~~~~~~~~ + + // Set up to read-if-present + IOobject io(masterMesh); + io.readOpt(IOobject::READ_IF_PRESENT); + + // Construct without patches + faMesh masterFaMesh + ( + masterMesh, + std::move(masterFaceLabels), + io + ); + + const uindirectPrimitivePatch& masterPatch = + masterFaMesh.patch(); + + + // pointProcAddressing + // ~~~~~~~~~~~~~~~~~~~ + + const auto& mpm = masterPatch.meshPointMap(); + forAll(procFaMeshes, proci) + { + const auto& procPatch = procFaMeshes[proci].patch(); + const auto& mp = procPatch.meshPoints(); + + labelList& pointAddr = faPointProcAddressing[proci]; + pointAddr.resize_nocopy(mp.size()); + + forAll(mp, i) + { + pointAddr[i] = mpm[pointProcAddressing[proci][mp[i]]]; + } + } + + + // edgeProcAddressing + // ~~~~~~~~~~~~~~~~~~ + // 1. straight mapping from proc faMesh back to reconstructed + // faMesh + determineFaEdgeMapping + ( + masterPatch, // reconstructed faMesh patch + procFaMeshes, // individual faMeshes + pointProcAddressing, // procPolyMesh to reconstructed + + faEdgeProcAddressing + ); + + + // Per patch all edges on the masterPatch + labelListList singlePatchEdgeLabels; + + // 2. edgeProcAddressing : fix ordering on patches + sortFaEdgeMapping + ( + masterPatch, // reconstructed faMesh patch + procFaMeshes, // individual faMeshes + pointProcAddressing, // procPolyMesh to reconstructed + + faEdgeProcAddressing, // per proc the map to the master + singlePatchEdgeLabels // per patch the map to the master + ); + + + const faMesh& procMesh0 = procFaMeshes[0]; + + + // Add faPatches + // ~~~~~~~~~~~~~ + + faPatchList completePatches(singlePatchEdgeLabels.size()); + label nPatches = 0; + forAll(completePatches, patchi) + { + const labelList& patchEdgeLabels = + singlePatchEdgeLabels[patchi]; + + const faPatch& fap = procMesh0.boundary()[patchi]; + + if (isA<ignoreFaPatch>(fap)) + { + // These are not real edges + continue; + } + + const label neiPolyPatchId = fap.ngbPolyPatchIndex(); + + completePatches.set + ( + nPatches, + fap.clone + ( + masterFaMesh.boundary(), + patchEdgeLabels, + nPatches, // index + neiPolyPatchId + ) + ); + + ++nPatches; + } + + completePatches.resize(nPatches); + + // Serial mesh - no parallel communication + + const bool oldParRun = Pstream::parRun(false); + + masterFaMesh.addFaPatches(completePatches); + + Pstream::parRun(oldParRun); // Restore parallel state + + + // Write mesh & individual addressing + // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + faMeshReconstructor::writeMesh + ( + masterMesh.time().timeName(), + masterFaMesh, + masterFaMesh.faceLabels() + ); + + forAll(procFaMeshes, proci) + { + const faMesh& procMesh = procFaMeshes[proci]; + + faMeshReconstructor::writeAddressing + ( + IOobject + ( + "procAddressing", + masterMesh.time().timeName(), + faMesh::meshSubDir, + procMesh.thisDb(), + IOobject::NO_READ, + IOobject::NO_WRITE, + IOobject::NO_REGISTER + ), + faBoundProcAddressing[proci], + faFaceProcAddressing[proci], + faPointProcAddressing[proci], + faEdgeProcAddressing[proci] + ); + } } } } diff --git a/applications/utilities/postProcessing/lagrangian/particleTracks/particleTrackProperties b/applications/utilities/postProcessing/lagrangian/particleTracks/particleTrackProperties index 283d3b0a934a77f92df165764a4dd0612b2e071d..d30c1e412c833fb02da750e3730753cf90094e08 100644 --- a/applications/utilities/postProcessing/lagrangian/particleTracks/particleTrackProperties +++ b/applications/utilities/postProcessing/lagrangian/particleTracks/particleTrackProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/utilities/preProcessing/PDR/pdrFields/obstacles/ObstaclesDict b/applications/utilities/preProcessing/PDR/pdrFields/obstacles/ObstaclesDict index 97245fc6c49c296cd69e12c856ca3e13b36d8956..2f6d7db18ac8a9bded5ad26fcdb246efdda60bec 100644 --- a/applications/utilities/preProcessing/PDR/pdrFields/obstacles/ObstaclesDict +++ b/applications/utilities/preProcessing/PDR/pdrFields/obstacles/ObstaclesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/utilities/preProcessing/PDR/pdrFields/optionalData/optionalData.H b/applications/utilities/preProcessing/PDR/pdrFields/optionalData/optionalData.H deleted file mode 100644 index b9a1cd7ffa77f85bbe9b1e406e8af032f323d090..0000000000000000000000000000000000000000 --- a/applications/utilities/preProcessing/PDR/pdrFields/optionalData/optionalData.H +++ /dev/null @@ -1,171 +0,0 @@ -/*---------------------------------------------------------------------------*\ - ========= | - \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | - \\ / A nd | www.openfoam.com - \\/ M anipulation | -------------------------------------------------------------------------------- - Copyright (C) 2020 OpenCFD Ltd. -------------------------------------------------------------------------------- -License - This file is part of OpenFOAM. - - OpenFOAM is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - OpenFOAM is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - for more details. - - You should have received a copy of the GNU General Public License - along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. - -Class - Foam::optionalData - -Description - A simplified version of std::optional (c++17), with much simpler - construction semantics. - -\*---------------------------------------------------------------------------*/ - -#ifndef optionalData_H -#define optionalData_H - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -namespace Foam -{ - -/*---------------------------------------------------------------------------*\ - Class optionalData Declaration -\*---------------------------------------------------------------------------*/ - -template<class T> -class optionalData -{ - // Private Data - - //- Validity of the value - bool good_; - - //- The value - T value_; - - -public: - - // Generated Methods - - //- Copy construct - optionalData(const optionalData<T>&) = default; - - //- Move construct - optionalData(optionalData<T>&&) = default; - - //- Copy assignment - optionalData<T>& operator=(const optionalData<T>&) = default; - - //- Move assignment - optionalData<T>& operator=(optionalData<T>&&) = default; - - - // Constructors - - //- Default construct - optionalData() - : - good_(false), - value_() - {} - - //- Copy construct from value - optionalData(const T& val) - : - good_(true), - value_(val) - {} - - //- Move construct from value - optionalData(T&& val) - : - good_(true), - value_(std::move(val)) - {} - - - // Member Functions - - //- True if it has a value - bool has_value() const noexcept - { - return good_; - } - - //- Access to the value - T& value() noexcept - { - return value_; - } - - //- Access to the value - const T& value() const noexcept - { - return value_; - } - - //- Return value or default - const T& value_or(const T& deflt) const - { - return good_ ? value_ : deflt; - } - - - // Member Operators - - //- True if it has a value - explicit operator bool() const noexcept - { - return good_; - } - - //- Access the value - const T& operator*() const noexcept - { - return value_; - } - - //- Access the value - T& operator*() noexcept - { - return value_; - } - - //- Copy assignment from value - void operator=(const T& val) - { - good_ = true; - value_ = val; - } - - //- Move assignment from value - void operator=(T&& val) - { - good_ = true; - value_ = std::move(val); - } -}; - - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -} // End namespace Foam - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -#endif - -// ************************************************************************* // diff --git a/applications/utilities/preProcessing/setAlphaField/setAlphaFieldDict b/applications/utilities/preProcessing/setAlphaField/setAlphaFieldDict index c5e38202f72e2e529c97c940f787342d6b107fd6..ef3f3838299d6b02f0ff4793294b20b350a28c2f 100644 --- a/applications/utilities/preProcessing/setAlphaField/setAlphaFieldDict +++ b/applications/utilities/preProcessing/setAlphaField/setAlphaFieldDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/utilities/preProcessing/setExprBoundaryFields/setExprBoundaryFieldsDict b/applications/utilities/preProcessing/setExprBoundaryFields/setExprBoundaryFieldsDict index cb3b2a2383f8353a0c2972e15108736ace275d06..9a259385649b4fca16406d106178e8e66ffa4128 100644 --- a/applications/utilities/preProcessing/setExprBoundaryFields/setExprBoundaryFieldsDict +++ b/applications/utilities/preProcessing/setExprBoundaryFields/setExprBoundaryFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/utilities/preProcessing/setExprFields/setExprFieldsDict b/applications/utilities/preProcessing/setExprFields/setExprFieldsDict index 5c6ac3b35aad92803139f44d3a6665d7e1a963ab..4b2a70191adcf19360bcc0ec4b794ac7ec96438c 100644 --- a/applications/utilities/preProcessing/setExprFields/setExprFieldsDict +++ b/applications/utilities/preProcessing/setExprFields/setExprFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/utilities/preProcessing/viewFactorsGen/viewFactorsGen.C b/applications/utilities/preProcessing/viewFactorsGen/viewFactorsGen.C index 9e9c3d344093b85ce5ffeaeb6130ff1f914429b3..a13eac5fea9967320614782f5663559a7c1b11df 100644 --- a/applications/utilities/preProcessing/viewFactorsGen/viewFactorsGen.C +++ b/applications/utilities/preProcessing/viewFactorsGen/viewFactorsGen.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2016-2022 OpenCFD Ltd. + Copyright (C) 2016-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -119,7 +119,13 @@ typedef std::vector<Triangle>::iterator Iterator; typedef CGAL::AABB_triangle_primitive<K, Iterator> Primitive; typedef CGAL::AABB_traits<K, Primitive> AABB_triangle_traits; typedef CGAL::AABB_tree<AABB_triangle_traits> Tree; + +// Used boost::optional prior to CGAL-6.0 +#if (CGAL_VERSION_NR < 1060000910) typedef boost::optional +#else +typedef std::optional +#endif < Tree::Intersection_and_primitive_id<Segment>::Type > Segment_intersection; diff --git a/applications/utilities/surface/surfaceBooleanFeatures/surfaceBooleanFeatures.C b/applications/utilities/surface/surfaceBooleanFeatures/surfaceBooleanFeatures.C index b7f2715b253ac96b1bae0d758899d97d6408fd67..009ce430eb057ebd185f7ecae3338e30b0ed6b64 100644 --- a/applications/utilities/surface/surfaceBooleanFeatures/surfaceBooleanFeatures.C +++ b/applications/utilities/surface/surfaceBooleanFeatures/surfaceBooleanFeatures.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2016-2022 OpenCFD Ltd. + Copyright (C) 2016-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -108,7 +108,12 @@ typedef CGAL::AABB_face_graph_triangle_primitive typedef CGAL::AABB_traits<K, Primitive> Traits; typedef CGAL::AABB_tree<Traits> Tree; +// Used boost::optional prior to CGAL-6.0 +#if (CGAL_VERSION_NR < 1060000910) typedef boost::optional +#else +typedef std::optional +#endif < Tree::Intersection_and_primitive_id<Segment>::Type > Segment_intersection; @@ -647,7 +652,12 @@ labelPair edgeIntersectionsCGAL // Get intersection object if ( + // Used boost::variant prior to CGAL-6.0 + #if (CGAL_VERSION_NR < 1060000910) const Point* ptPtr = boost::get<Point>(&(intersect->first)) + #else + const Point* ptPtr = std::get_if<Point>(&(intersect->first)) + #endif ) { point pt @@ -679,7 +689,12 @@ labelPair edgeIntersectionsCGAL } else if ( + // Used boost::variant prior to CGAL-6.0 + #if (CGAL_VERSION_NR < 1060000910) const Segment* sPtr = boost::get<Segment>(&(intersect->first)) + #else + const Segment* sPtr = std::get_if<Segment>(&(intersect->first)) + #endif ) { #if defined (CGAL_VERSION_NR) && (CGAL_VERSION_NR < 1041400000) diff --git a/applications/utilities/surface/surfaceFeatureExtract/surfaceFeatureExtract.C b/applications/utilities/surface/surfaceFeatureExtract/surfaceFeatureExtract.C index f7c45eddcfd3ff22957c7af0926c585c48ba6dbb..7d8a908eb60661fb58e86497a322790e39048219 100644 --- a/applications/utilities/surface/surfaceFeatureExtract/surfaceFeatureExtract.C +++ b/applications/utilities/surface/surfaceFeatureExtract/surfaceFeatureExtract.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2015-2022 OpenCFD Ltd. + Copyright (C) 2015-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -476,6 +476,15 @@ int main(int argc, char *argv[]) ); } + if (!subsetDict.getOrDefault("strictNonManifoldEdges", true)) + { + Info<< "Removing all non-manifold edges" + << " (edges with > 2 connected faces)" + << endl; + + features().excludeNonManifold(edgeStat); + } + // Suboption: "openEdges" (false: remove open edges) if (!subsetDict.getOrDefault("openEdges", true)) { diff --git a/applications/utilities/surface/surfaceMeshConvert/coordinateSystems b/applications/utilities/surface/surfaceMeshConvert/coordinateSystems index 214153fcbbb73c5284443f4cd56666a795a78fe4..6f899180b3ce308457a4c60a18f2826402632e8a 100644 --- a/applications/utilities/surface/surfaceMeshConvert/coordinateSystems +++ b/applications/utilities/surface/surfaceMeshConvert/coordinateSystems @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/applications/utilities/surface/surfaceMeshExtract/Make/options b/applications/utilities/surface/surfaceMeshExtract/Make/options index 5ae72ebd31bdf7500846ee0dca7a4c123ff4fb43..09d94545a79d41316204b2dad2085ce4c5c22b21 100644 --- a/applications/utilities/surface/surfaceMeshExtract/Make/options +++ b/applications/utilities/surface/surfaceMeshExtract/Make/options @@ -1,7 +1,9 @@ EXE_INC = \ -I$(LIB_SRC)/surfMesh/lnInclude \ + -I$(LIB_SRC)/fileFormats/lnInclude \ -I$(LIB_SRC)/meshTools/lnInclude EXE_LIBS = \ -lsurfMesh \ + -lfileFormats \ -lmeshTools diff --git a/applications/utilities/surface/surfaceMeshExtract/surfaceMeshExtract.C b/applications/utilities/surface/surfaceMeshExtract/surfaceMeshExtract.C index 3387ad26411d3504e2bbd384a540e8dec8a2488f..6f276914579981810a6e6fe31eb2ca43f0a6725d 100644 --- a/applications/utilities/surface/surfaceMeshExtract/surfaceMeshExtract.C +++ b/applications/utilities/surface/surfaceMeshExtract/surfaceMeshExtract.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2017-2023 OpenCFD Ltd. + Copyright (C) 2017-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -34,13 +34,39 @@ Description Extract patch or faceZone surfaces from a polyMesh. Depending on output surface format triangulates faces. - Region numbers on faces no guaranteed to be the same as the patch indices. + Region numbers on faces not guaranteed to be the same as the patch indices. Optionally only extracts named patches. + Optionally filters out points on faceZones, feature-edges and + featurePoints and generates pointPatches + for these - written to pointMesh/boundary. + If run in parallel, processor patches get filtered out by default and the mesh is merged (based on topology). +Usage + \b surfaceMeshExtract [OPTION] \<surfacefile\> + + Options: + - \par -patches NAME | LIST + Specify single patch or multiple patches (name or regex) to extract + + - \par -faceZones NAME | LIST + Specify single zone or multiple face zones (name or regex) to extract + + - \par -exclude-patches NAME | LIST + Exclude single or multiple patches (name or regex) from extraction + + - \par -excludeProcPatches + Exclude processor patches (default if parallel) + + - \par -featureAngle \<angle\> + Extract feature edges/points and put into separate point-patches + + - \par -extractZonePoints + Extract all face zone points and put into separate point-patches + \*---------------------------------------------------------------------------*/ #include "MeshedSurface.H" @@ -48,6 +74,7 @@ Description #include "argList.H" #include "Time.H" #include "polyMesh.H" +#include "pointMesh.H" #include "emptyPolyPatch.H" #include "processorPolyPatch.H" #include "ListListOps.H" @@ -56,11 +83,79 @@ Description #include "globalMeshData.H" #include "globalIndex.H" #include "timeSelector.H" +#include "meshPointPatch.H" +#include "unitConversion.H" +#include "dummyTransform.H" +#include "syncTools.H" +#include "processorPointPatch.H" +#include "pointMeshTools.H" +#include "OBJstream.H" using namespace Foam; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +void writeOBJ +( + const fileName& path, + const pointPatch& pp +) +{ + const meshPointPatch& ppp = refCast<const meshPointPatch>(pp); + const polyMesh& mesh = ppp.boundaryMesh().mesh().mesh(); + + // Count constraints + label maxConstraint = 0; + const auto& constraints = ppp.constraints(); + forAll(constraints, i) + { + maxConstraint = max(maxConstraint, constraints[i].first()); + } + reduce(maxConstraint, maxOp<label>()); + + const pointField localPoints(mesh.points(), ppp.meshPoints()); + + if (maxConstraint == 3) + { + OBJstream os + ( + path + / ppp.name()+"_fixedPoints.obj" + ); + os.write(localPoints); + Info<< "Written pointPatch " << ppp.name() << " to " << os.name() + << endl; + } + else if (maxConstraint == 2) + { + OBJstream os + ( + path + / ppp.name()+"_slidingPoints.obj" + ); + forAll(localPoints, i) + { + os.write(localPoints[i], constraints[i].second()); + } + Info<< "Written pointPatch " << ppp.name() << " to " << os.name() + << " as coordinates and normals" + << endl; + } + else if (maxConstraint == 1) + { + OBJstream os + ( + path + / ppp.name()+"_surfacePoints.obj" + ); + os.write(localPoints); + Info<< "Written pointPatch " << ppp.name() << " to " << os.name() + << " as coordinates" + << endl; + } +} + + labelList getSelectedPatches ( const polyBoundaryMesh& patches, @@ -107,6 +202,286 @@ labelList getSelectedPatches } +label addMeshPointPatches +( + const polyMesh& mesh, + const pointMesh& pMesh, + + const uindirectPrimitivePatch& allBoundary, + const labelUList& faceToZone, + const surfZoneIdentifierList& surfZones, + const labelList& faceZoneToCompactZone, + + const scalar edgeFeatureAngle, + const scalar pointFeatureAngle, + const bool verbose = true, + const bool writePoints = false +) +{ + const auto& pointBm = pMesh.boundary(); + const auto& fzs = mesh.faceZones(); + const label nPointPatches = pointBm.size(); + const pointField& points = mesh.points(); + + + // Feature edge(points) internal to a zone + labelListList zoneToMeshPoints; + List<pointConstraintList> zoneToConstraints; + + // Feature edge(points) in between zones + labelList twoZoneMeshPoints; + pointConstraintList twoZoneConstraints; + + // Feature points on > 2 zones + labelList multiZoneMeshPoints; + pointConstraintList multiZoneConstraints; + + pointMeshTools::featurePointsEdges + ( + mesh, + allBoundary, + // Per boundary face to zone + faceToZone, + // Number of zones + surfZones.size(), + edgeFeatureAngle, + //const scalar pointFeatureAngle, //not yet done + + // Feature edge(points) internal to a zone + zoneToMeshPoints, + zoneToConstraints, + + // Feature edge(points) in between zones + twoZoneMeshPoints, + twoZoneConstraints, + + // Feature points on > 2 zones + multiZoneMeshPoints, + multiZoneConstraints + ); + + + // Add per-zone patches + if (faceZoneToCompactZone.size()) + { + // Calculate point normals consistent across whole patch + const pointField pointNormals + ( + PatchTools::pointNormals + ( + mesh, + allBoundary + ) + ); + + forAll(faceZoneToCompactZone, zonei) + { + const label compacti = faceZoneToCompactZone[zonei]; + if (compacti != -1) + { + const word patchName(surfZones[compacti].name()); + + if (pointBm.findPatchID(patchName) == -1) + { + // Extract the points originating from the faceZone. Can + // - re-call featurePointsEdges with 0 feature angle so + // all points go into the feature edges + // - mark using faceToZone the correct points + // - or assume the whole faceZone was extracted: + const uindirectPrimitivePatch fzPatch + ( + UIndirectList<face> + ( + mesh.faces(), + fzs[zonei].addressing() + ), + points + ); + const auto& mp = fzPatch.meshPoints(); + + const vector nullVector(vector::uniform(0)); + + // Extract pointNormal (or 0) on all patch/connected points + vectorField meshPointNormals(mesh.nPoints(), nullVector); + for (const label pointi : mp) + { + const label allPointi = + allBoundary.meshPointMap()[pointi]; + meshPointNormals[pointi] = pointNormals[allPointi]; + } + syncTools::syncPointList + ( + mesh, + meshPointNormals, + maxMagSqrEqOp<vector>(), + nullVector + ); + + // Extract indices with non-zero pointNormal + DynamicList<label> meshPoints(mp.size()); + forAll(meshPointNormals, pointi) + { + if (meshPointNormals[pointi] != nullVector) + { + meshPoints.append(pointi); + } + } + + const_cast<pointBoundaryMesh&>(pointBm).push_back + ( + new meshPointPatch + ( + patchName, + meshPoints, + vectorField(meshPointNormals, meshPoints), + pointBm.size(), + pointBm, + meshPointPatch::typeName + ) + ); + + if (verbose) + { + const auto& ppp = pointBm.last(); + Info<< "Added zone pointPatch " << ppp.name() + << " with " + << returnReduce(meshPoints.size(), sumOp<label>()) + << " points" << endl; + } + if (writePoints) + { + writeOBJ(mesh.path(), pointBm.last()); + } + } + } + } + } + + + // Add per-patch feature-edges + forAll(zoneToMeshPoints, zonei) + { + const label nPoints = + returnReduce(zoneToMeshPoints[zonei].size(), sumOp<label>()); + + const word patchName(surfZones[zonei].name() + "Edges"); + + if (nPoints && (pointBm.findPatchID(patchName) == -1)) + { + const_cast<pointBoundaryMesh&>(pointBm).push_back + ( + new meshPointPatch + ( + patchName, + zoneToMeshPoints[zonei], + zoneToConstraints[zonei], + pointBm.size(), + pointBm, + meshPointPatch::typeName + ) + ); + + if (verbose) + { + const auto& ppp = pointBm.last(); + Info<< "Added feature-edges pointPatch " << ppp.name() + << " with " << nPoints << " points" << endl; + } + if (writePoints) + { + writeOBJ(mesh.path(), pointBm.last()); + } + } + } + + + // Add inter-patch points + + const word allEdgePatchName("boundaryEdges"); + const label nPatchEdgePoints = + returnReduce(twoZoneMeshPoints.size(), sumOp<label>()); + if (nPatchEdgePoints && (pointBm.findPatchID(allEdgePatchName) == -1)) + { + const_cast<pointBoundaryMesh&>(pointBm).push_back + ( + new meshPointPatch + ( + allEdgePatchName, + twoZoneMeshPoints, + twoZoneConstraints, + pointBm.size(), + pointBm, + meshPointPatch::typeName + ) + ); + + if (verbose) + { + const auto& ppp = pointBm.last(); + Info<< "Added inter-patch pointPatch " << ppp.name() + << " with " << nPatchEdgePoints << " points" << endl; + } + if (writePoints) + { + writeOBJ(mesh.path(), pointBm.last()); + } + } + + + const word allPointPatchName("boundaryPoints"); + const label nMultiPoints = + returnReduce(multiZoneMeshPoints.size(), sumOp<label>()); + if (nMultiPoints && (pointBm.findPatchID(allPointPatchName) == -1)) + { + const_cast<pointBoundaryMesh&>(pointBm).push_back + ( + new meshPointPatch + ( + allPointPatchName, + multiZoneMeshPoints, + multiZoneConstraints, + pointBm.size(), + pointBm, + meshPointPatch::typeName + ) + ); + + if (verbose) + { + const auto& ppp = pointBm.last(); + Info<< "Added multi-patch pointPatch " << ppp.name() + << " with " << nMultiPoints << " points" << endl; + } + if (writePoints) + { + writeOBJ(mesh.path(), pointBm.last()); + } + } + + + // Shuffle into order + labelList oldToNew(pointBm.size()); + label newPatchi = 0; + forAll(pointBm, patchi) + { + if (!isA<processorPointPatch>(pointBm[patchi])) + { + oldToNew[patchi] = newPatchi++; + } + } + forAll(pointBm, patchi) + { + if (isA<processorPointPatch>(pointBm[patchi])) + { + oldToNew[patchi] = newPatchi++; + } + } + const_cast<pointBoundaryMesh&>(pointBm).reorder(oldToNew, true); + + return pointBm.size() - nPointPatches; +} + + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // int main(int argc, char *argv[]) @@ -114,8 +489,6 @@ int main(int argc, char *argv[]) argList::addNote ( "Extract patch or faceZone surfaces from a polyMesh." - " The name is historical, it only triangulates faces" - " when the output format requires it." ); timeSelector::addOptions(); @@ -153,6 +526,22 @@ int main(int argc, char *argv[]) true // mark as an advanced option ); argList::addOptionCompat("exclude-patches", {"excludePatches", 2306}); + argList::addOption + ( + "featureAngle", + "angle", + "Auto-extract feature edges/points and put into separate point-patches" + ); + argList::addBoolOption + ( + "extractZonePoints", + "Extract point-patches for selected faceZones" + ); + argList::addBoolOption + ( + "writeOBJ", + "Write added pointPatch points to .obj files" + ); #include "setRootCase.H" #include "createTime.H" @@ -200,9 +589,37 @@ int main(int argc, char *argv[]) << nl << endl; } + scalar featureAngle = 180.0; + const bool specifiedFeature = args.readIfPresent + ( + "featureAngle", + featureAngle + ); + + const bool extractZonePoints = args.found("extractZonePoints"); + const bool writeOBJ = args.found("writeOBJ"); + Info<< "Reading mesh from time " << runTime.value() << endl; #include "createNamedPolyMesh.H" + if (specifiedFeature) + { + Info<< "Detecting all sharp (>" << featureAngle + << " degrees) patch edges." << nl << endl; + + if (extractZonePoints) + { + Info<< "Extracting all faceZone points as pointPatches." + << nl << endl; + } + + //#include "createNamedPointMesh.H" + // Do not read constant/pointMesh - construct from polyMesh only + Info<< "Create pointMesh for time = " + << runTime.timeName() << Foam::nl << Foam::endl; + (void)pointMesh::New(mesh); + } + // User specified times instantList timeDirs = timeSelector::select0(runTime, args); @@ -249,7 +666,7 @@ int main(int argc, char *argv[]) // Construct table of patches to include. const polyBoundaryMesh& bMesh = mesh.boundaryMesh(); - labelList patchIds = + const labelList patchIds = ( (includePatches.size() || excludePatches.size()) ? getSelectedPatches(bMesh, includePatches, excludePatches) @@ -276,7 +693,13 @@ int main(int argc, char *argv[]) // Mesh face and compact zone indx DynamicList<label> faceLabels; DynamicList<label> compactZones; + // Per compact 'zone' index the name and location + surfZoneIdentifierList surfZones; + // Per local patch to compact 'zone' index (or -1) + labelList patchToCompactZone(bMesh.size(), -1); + // Per local faceZone to compact 'zone' index (or -1) + labelList faceZoneToCompactZone(bMesh.size(), -1); { // Collect sizes. Hash on names to handle local-only patches (e.g. // processor patches) @@ -317,9 +740,18 @@ int main(int argc, char *argv[]) Pstream::broadcast(compactZoneID); + // Zones + surfZones.resize_nocopy(compactZoneID.size()); + forAllConstIters(compactZoneID, iter) + { + surfZones[*iter] = surfZoneIdentifier(iter.key(), *iter); + Info<< "surfZone " << *iter + << " : " << surfZones[*iter].name() + << endl; + } + + // Rework HashTable into labelList just for speed of conversion - labelList patchToCompactZone(bMesh.size(), -1); - labelList faceZoneToCompactZone(bMesh.size(), -1); forAllConstIters(compactZoneID, iter) { label patchi = bMesh.findPatchID(iter.key()); @@ -362,7 +794,7 @@ int main(int argc, char *argv[]) // Addressing engine for all faces - uindirectPrimitivePatch allBoundary + const uindirectPrimitivePatch allBoundary ( UIndirectList<face>(mesh.faces(), faceLabels), mesh.points() @@ -400,7 +832,7 @@ int main(int argc, char *argv[]) // Gather all ZoneIDs List<labelList> gatheredZones(Pstream::nProcs()); - gatheredZones[Pstream::myProcNo()].transfer(compactZones); + gatheredZones[Pstream::myProcNo()] = compactZones; Pstream::gatherList(gatheredZones); // On master combine all points, faces, zones @@ -428,16 +860,6 @@ int main(int argc, char *argv[]) gatheredZones.clear(); - // Zones - surfZoneIdentifierList surfZones(compactZoneID.size()); - forAllConstIters(compactZoneID, iter) - { - surfZones[*iter] = surfZoneIdentifier(iter.key(), *iter); - Info<< "surfZone " << *iter - << " : " << surfZones[*iter].name() - << endl; - } - UnsortedMeshedSurface<face> unsortedFace ( std::move(allPoints), @@ -464,6 +886,39 @@ int main(int argc, char *argv[]) sortedFace.write(globalCasePath); } + + + if (specifiedFeature) + { + // Add edge patches + const auto& pMesh = pointMesh::New(mesh); + + const label nAdded = addMeshPointPatches + ( + mesh, + pMesh, + + allBoundary, // all patches together + compactZones, // originating compactZone + surfZones, // per compactZone the index + ( + extractZonePoints + ? faceZoneToCompactZone // per faceZone the compactZone + : labelList::null() + ), + + featureAngle, + featureAngle, + + true, + writeOBJ + ); + + if (nAdded) + { + pMesh.boundary().write(); + } + } } Info<< "End\n" << endl; diff --git a/bin/foamInstallationTest b/bin/foamInstallationTest index 8adaabd6b8d025a2dd9e9af54391a11d2d24d626..adf9fc152e11b3871a68a34f036187cead9218df 100755 --- a/bin/foamInstallationTest +++ b/bin/foamInstallationTest @@ -7,7 +7,7 @@ # \\/ M anipulation | #------------------------------------------------------------------------------ # Copyright (C) 2011-2015 OpenFOAM Foundation -# Copyright (C) 2019-2021 OpenCFD Ltd. +# Copyright (C) 2019-2024 OpenCFD Ltd. #------------------------------------------------------------------------------ # License # This file is part of OpenFOAM, distributed under GPL-3.0-or-later. @@ -22,8 +22,8 @@ #------------------------------------------------------------------------------ # Base settings -MIN_VERSION_GCC=4.8.5 -MIN_VERSION_LLVM=3.7.1 +MIN_VERSION_GCC=7.5.0 +MIN_VERSION_LLVM=7.0.1 # General WIDTH=20 @@ -242,11 +242,11 @@ reportExecutable() ;; flex) - VERSION=$(flex --version /dev/null 2>&1 \ + VERSION=$(flex --version 2>/dev/null \ | sed -ne 's/flex \([0-9][0-9.]*\).*/\1/p') ;; make) - VERSION=$(make --version /dev/null 2>&1 \ + VERSION=$(make --version 2>/dev/null \ | sed -ne 's/^.*[Mm]ake \([0-9][0-9.]*\).*/\1/p') ;; wmake) @@ -264,15 +264,30 @@ reportExecutable() esac echo "ERROR: $SHORT_NAME version is too old for this release of OpenFOAM" echo " User version : $VERSION" - echo " Minimum required: $MIN_VERSION_GCC" + echo " Minimum required: $MIN_VERSION_LLVM" echo fatalError="x${fatalError}" fi ;; *gcc* | *g++*) + # parse things like this + # -- + # ... + # gcc version 7.5.0 (SUSE Linux) + # -- VERSION=$($APP_NAME -v 2>&1 \ | sed -ne 's/^gcc version \([0-9][0-9.]*\).*/\1/p') + # Fallback? + # parse things like this + # -- + # gcc (SUSE Linux) 7.5.0 + # g++ (SUSE Linux) 7.5.0 + # -- + [ -n "$VERSION" ] || \ + VERSION=$($APP_NAME --version 2>/dev/null \ + | sed -ne '1{s/^g.*) \([0-9][.0-9]*\).*/\1/p;}') + if ! vercmp_3 "$MIN_VERSION_GCC" "$VERSION" then case "$APP_NAME" in diff --git a/doc/Build.md b/doc/Build.md index bb20e72f8d6bb75d42fa6a39726657c4296282c4..12a7263926bca88187c2b642f0fd3d952d70d1dc 100644 --- a/doc/Build.md +++ b/doc/Build.md @@ -1,23 +1,23 @@ ## Getting the code -Links to all code packs are available on https://dl.openfoam.com. For OpenFOAM-v2406: +Links to all code packs are available on https://dl.openfoam.com. For OpenFOAM-v2412: - https://dl.openfoam.com/source/latest/ -- Source: https://dl.openfoam.com/source/v2406/OpenFOAM-v2406.tgz -- ThirdParty: https://dl.openfoam.com/source/v2406/ThirdParty-v2406.tgz +- Source: https://dl.openfoam.com/source/v2412/OpenFOAM-v2412.tgz +- ThirdParty: https://dl.openfoam.com/source/v2412/ThirdParty-v2412.tgz ## OpenFOAM® Quick Build Guide Prior to building, ensure that the [system requirements][link openfoam-require] are satisfied (including any special [cross-compiling][wiki-cross-compile] considerations), and source the correct OpenFOAM environment. -For example, for the OpenFOAM-v2406 version: +For example, for the OpenFOAM-v2412 version: ``` -source <installation path>/OpenFOAM-v2406/etc/bashrc +source <installation path>/OpenFOAM-v2412/etc/bashrc ``` e.g. if installed under the `~/openfoam` directory ``` -source ~/openfoam/OpenFOAM-v2406/etc/bashrc +source ~/openfoam/OpenFOAM-v2412/etc/bashrc ``` diff --git a/doc/BuildIssues.md b/doc/BuildIssues.md index 44b0202490f4dd629e09b946d9acb044754df722..9faa22087a76c196b2cba6b1dee6e3004cffb0ff 100644 --- a/doc/BuildIssues.md +++ b/doc/BuildIssues.md @@ -1,4 +1,4 @@ -## Known Build Issues (v2406, v2312, v2306, v2212, v2206, v2112, v2106, v2012) +## Known Build Issues (v2412, v2406, v2312, v2306, v2212, v2206, v2112, v2106, v2012) ### Windows cross-compilation diff --git a/etc/bashrc b/etc/bashrc index c65844adafc65d040f3c6b1ba883ec58c53156ee..fcbc0e14f7657ca22b0814f0d775632eb33dc330 100644 --- a/etc/bashrc +++ b/etc/bashrc @@ -55,7 +55,7 @@ # [WM_PROJECT_VERSION] - A human-readable version name # A development version is often named 'com' - as in www.openfoam.com -export WM_PROJECT_VERSION=v2406 +export WM_PROJECT_VERSION=v2412 #------------------------------------------------------------------------------ # Configuration environment variables. diff --git a/etc/caseDicts/annotated/PDRMeshDict b/etc/caseDicts/annotated/PDRMeshDict index f522a64eb1c2612f2060cf49d44eb454e251c48a..de601a2250085391161c9290c0672b724d2ec0c3 100644 --- a/etc/caseDicts/annotated/PDRMeshDict +++ b/etc/caseDicts/annotated/PDRMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/PDRblockMeshDict b/etc/caseDicts/annotated/PDRblockMeshDict index dfceb8b01987f824b9ed0ffc46ec4573cb433a77..2ec32bd1ff114d523a993a716ee193e247662111 100644 --- a/etc/caseDicts/annotated/PDRblockMeshDict +++ b/etc/caseDicts/annotated/PDRblockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/ROMfieldsDict b/etc/caseDicts/annotated/ROMfieldsDict index 2adb13165b04cfae06109e4a697528e2d0b0fc5b..cf9812501f58b80d6d8d356b819c3cef2d3ee50a 100644 --- a/etc/caseDicts/annotated/ROMfieldsDict +++ b/etc/caseDicts/annotated/ROMfieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/adiabaticFlameTDict b/etc/caseDicts/annotated/adiabaticFlameTDict index e36b8db8479b5452810d9f9df0b331a3b53ad30f..907a8e9abf159de78b57d1adeba4e1ba1597f9ff 100644 --- a/etc/caseDicts/annotated/adiabaticFlameTDict +++ b/etc/caseDicts/annotated/adiabaticFlameTDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/adiosWriteDict b/etc/caseDicts/annotated/adiosWriteDict index 87efd373d9ebdc80d561a3ad3b7d54facbf4eb62..b84fdd9f22334245b809a1b01a6f508a80423349 100644 --- a/etc/caseDicts/annotated/adiosWriteDict +++ b/etc/caseDicts/annotated/adiosWriteDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/blockMeshDict b/etc/caseDicts/annotated/blockMeshDict index 0dff06a88dd5bac9913b79ec12425c110411567c..d02304329f553d81f6b39874203464897d0909f8 100644 --- a/etc/caseDicts/annotated/blockMeshDict +++ b/etc/caseDicts/annotated/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/boxTurbDict b/etc/caseDicts/annotated/boxTurbDict index 7a690399d515fb59d5442e27ae7eed32bc2de2cd..feb0aa808c1d3e096d78426a935927b8e0e5fea2 100644 --- a/etc/caseDicts/annotated/boxTurbDict +++ b/etc/caseDicts/annotated/boxTurbDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/changeDictionaryDict b/etc/caseDicts/annotated/changeDictionaryDict index a1a3415fa66fd9056105e2ef70df34c9b693c60a..3c876e2a52768b39b93040223c2e39f2e28621ac 100644 --- a/etc/caseDicts/annotated/changeDictionaryDict +++ b/etc/caseDicts/annotated/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/collapseDict b/etc/caseDicts/annotated/collapseDict index 0e0472c7e864d64c0b3f1aa0c9b1d7248ec359b3..3ee5c553f80251ab20967c6b8929008f64ace7b7 100644 --- a/etc/caseDicts/annotated/collapseDict +++ b/etc/caseDicts/annotated/collapseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/createBafflesDict b/etc/caseDicts/annotated/createBafflesDict index 882907eae6c052ebe82b90b53d8c39e45a8a4f6d..a5ad78732360742c0c7e4403850d5b49d98ec16c 100644 --- a/etc/caseDicts/annotated/createBafflesDict +++ b/etc/caseDicts/annotated/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/createBoxTurbDict b/etc/caseDicts/annotated/createBoxTurbDict index 8d01b5e8837dca71d39b84ffb2d8ec825a479912..d65c808db9e3442689e6a04dc7d5192467830da2 100644 --- a/etc/caseDicts/annotated/createBoxTurbDict +++ b/etc/caseDicts/annotated/createBoxTurbDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/createPatchDict b/etc/caseDicts/annotated/createPatchDict index 8582a9c698c91e9e48ba7aa9af505d066d4ee6db..61f282dc46ef877faa8446ccfa02b259d53aa13e 100644 --- a/etc/caseDicts/annotated/createPatchDict +++ b/etc/caseDicts/annotated/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -168,6 +168,69 @@ patches // Wildcards&patchGroups allowed. patches (coupling_group); } + + + // Example of creating cyclicACMI patch pair + // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // (creates duplicate faces for blockage) + { + // Name of new patch + name left_couple; + + // Dictionary to construct new patch from + patchInfo + { + type cyclicACMI; + neighbourPatch right_couple; + nonOverlapPatch left_blockage; + } + + // Select faces + constructFrom set; + set left_faces_set; + } + + { + name left_blockage; + patchInfo + { + type wall; + } + + // Select faces + constructFrom set; + set left_faces_set; + } + + { + // Name of new patch + name right_couple; + + // Dictionary to construct new patch from + patchInfo + { + type cyclicACMI; + neighbourPatch left_couple; + nonOverlapPatch right_blockage; + } + + // Select faces + constructFrom set; + set right_faces_set; + } + + { + name right_blockage; + // Dictionary to construct new patch from + patchInfo + { + type wall; + } + + // Select faces + constructFrom set; + set right_faces_set; + } ); // ************************************************************************* // diff --git a/etc/caseDicts/annotated/decomposeParDict b/etc/caseDicts/annotated/decomposeParDict index 53c44c33e6c254a5be39d940af4592a90b750863..cccf556befff227c2f43eb4c915754ae8b854ed8 100644 --- a/etc/caseDicts/annotated/decomposeParDict +++ b/etc/caseDicts/annotated/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/dsmcInitialiseDict b/etc/caseDicts/annotated/dsmcInitialiseDict index 23cd78fef879ab17aada7059f71a9c389d6e754d..70bf97c570a486ae48c2f060ab71c09e464c7d40 100644 --- a/etc/caseDicts/annotated/dsmcInitialiseDict +++ b/etc/caseDicts/annotated/dsmcInitialiseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/equilibriumFlameTDict b/etc/caseDicts/annotated/equilibriumFlameTDict index b8726508b23d0259948ad4e12ac7dce0b3816fb4..84d25bdd1a2afa8f0076ee341fea8cd8f0e23cee 100644 --- a/etc/caseDicts/annotated/equilibriumFlameTDict +++ b/etc/caseDicts/annotated/equilibriumFlameTDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/extrude2DMeshDict b/etc/caseDicts/annotated/extrude2DMeshDict index a43a554dbf56ac982d7131366da4ee481e47a73f..02a53b0c4f459a0684ce0e940f88395eed73cc6a 100644 --- a/etc/caseDicts/annotated/extrude2DMeshDict +++ b/etc/caseDicts/annotated/extrude2DMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/extrudeMeshDict b/etc/caseDicts/annotated/extrudeMeshDict index 6832d739bb120399487b474470cc1d0447f8a331..fa6ebbea9f1ee918cc0d87eb154175be8eda508c 100644 --- a/etc/caseDicts/annotated/extrudeMeshDict +++ b/etc/caseDicts/annotated/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -26,6 +26,7 @@ constructFrom patch; // If construct from patch/mesh: sourceCase "<case>"; // and one of sourcePatches or sourceFaceZones (but not both): +// (note: wildcards allowed) sourceFaceZones (someFacesZone); sourcePatches (movingWall); diff --git a/etc/caseDicts/annotated/extrudeToRegionMeshDict b/etc/caseDicts/annotated/extrudeToRegionMeshDict index acb2808bc058c4970e55fc28709d9245f2446002..083de8734f19e77da885287ff1198d1d2c13c102 100644 --- a/etc/caseDicts/annotated/extrudeToRegionMeshDict +++ b/etc/caseDicts/annotated/extrudeToRegionMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/fieldCoordinateSystemTransformDict b/etc/caseDicts/annotated/fieldCoordinateSystemTransformDict index 2ef2aac82fdf19126c8c6e66688f38871fa48cf9..ff2c2fc7df242aa603430fd5c75dba8d230ea121 100644 --- a/etc/caseDicts/annotated/fieldCoordinateSystemTransformDict +++ b/etc/caseDicts/annotated/fieldCoordinateSystemTransformDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/foamDataToFluentDict b/etc/caseDicts/annotated/foamDataToFluentDict index 93ab47f37d470286a74d86a884ea44e42d0f581a..1a20e8e3aeaf780d224a45675092c71aff159b78 100644 --- a/etc/caseDicts/annotated/foamDataToFluentDict +++ b/etc/caseDicts/annotated/foamDataToFluentDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/foamyHexMeshDict b/etc/caseDicts/annotated/foamyHexMeshDict index dec5dfc00929058f03766d159d31288f43eef0d0..bdf67f692410aca101a9816745dece5dfece0d10 100644 --- a/etc/caseDicts/annotated/foamyHexMeshDict +++ b/etc/caseDicts/annotated/foamyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/foamyQuadMeshDict b/etc/caseDicts/annotated/foamyQuadMeshDict index 61787c87e25ac5a9b164e0de067a4d11acfcb01a..94ebf2d8157cb4bbfe83cfc9e11ec822a5dd1e82 100644 --- a/etc/caseDicts/annotated/foamyQuadMeshDict +++ b/etc/caseDicts/annotated/foamyQuadMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/mapFieldsDict b/etc/caseDicts/annotated/mapFieldsDict index e693c2847b02c6fc7a0c00d36c77d56515076022..81335b2c15862bc30dcc870736ef247f30b90cd6 100644 --- a/etc/caseDicts/annotated/mapFieldsDict +++ b/etc/caseDicts/annotated/mapFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/mdEquilibrationDict b/etc/caseDicts/annotated/mdEquilibrationDict index 603a076d856ec54e01cdfd30e49cfdb3274932a0..3500481f900c8532a3a0438e68b895a1109410eb 100644 --- a/etc/caseDicts/annotated/mdEquilibrationDict +++ b/etc/caseDicts/annotated/mdEquilibrationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/mdInitialiseDict b/etc/caseDicts/annotated/mdInitialiseDict index 9fe5cc1e1e095ffd2507cfa23620324df25f4d07..ace0d0ffd8b0125b4e3ca1995ec34c4d86e6fd34 100644 --- a/etc/caseDicts/annotated/mdInitialiseDict +++ b/etc/caseDicts/annotated/mdInitialiseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/mergeOrSplitBafflesDict b/etc/caseDicts/annotated/mergeOrSplitBafflesDict index bf125ccd0e7e23ae63e69b4a3f40d58dacc04d12..5d27aeace7f5c5f7eec79bc8d1bc6dba32191416 100644 --- a/etc/caseDicts/annotated/mergeOrSplitBafflesDict +++ b/etc/caseDicts/annotated/mergeOrSplitBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/meshQualityDict-collapseEdges b/etc/caseDicts/annotated/meshQualityDict-collapseEdges index 3e10a9330e65213255d386e496f3502709e6d7ee..4a5bb27d5b365a4cad5548eb04a3d392de8a4709 100644 --- a/etc/caseDicts/annotated/meshQualityDict-collapseEdges +++ b/etc/caseDicts/annotated/meshQualityDict-collapseEdges @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/mirrorMeshDict b/etc/caseDicts/annotated/mirrorMeshDict index 695508c817237c1d175f04f525538efa22dbf6b3..db69a352949b73dd321b8569d133196d949e8931 100644 --- a/etc/caseDicts/annotated/mirrorMeshDict +++ b/etc/caseDicts/annotated/mirrorMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/mixtureAdiabaticFlameTDict b/etc/caseDicts/annotated/mixtureAdiabaticFlameTDict index 13c1eeaeb7a31188a4a744fed522fc75d6f97119..df6108e25e870f9bbfd21bd5ac3e86d68637bf1f 100644 --- a/etc/caseDicts/annotated/mixtureAdiabaticFlameTDict +++ b/etc/caseDicts/annotated/mixtureAdiabaticFlameTDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/modifyMeshDict b/etc/caseDicts/annotated/modifyMeshDict index a41c29d364610c4bbb7fb3e06719520eabad9018..8b05f5578993fddd2327aaccb818f3f86ff76265 100644 --- a/etc/caseDicts/annotated/modifyMeshDict +++ b/etc/caseDicts/annotated/modifyMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/noiseDict b/etc/caseDicts/annotated/noiseDict index 768d98f63baa4e16ba31608502eb3c2ace8c5e3d..f330787a05700f7384b058ec8d72d7c4b412ce03 100644 --- a/etc/caseDicts/annotated/noiseDict +++ b/etc/caseDicts/annotated/noiseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/obstaclesDict b/etc/caseDicts/annotated/obstaclesDict index d08689f34424d6c86f95cca383b12830f8f30618..92a893a61fafcdcf647e7e28ad0bf65476bb0dc3 100644 --- a/etc/caseDicts/annotated/obstaclesDict +++ b/etc/caseDicts/annotated/obstaclesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/optimisationDict b/etc/caseDicts/annotated/optimisationDict index 56b8f75a3e09ada80c77c730fc5b17856e8e97ee..2896f315a05fdf106cd1da70ef52c49888e29942 100644 --- a/etc/caseDicts/annotated/optimisationDict +++ b/etc/caseDicts/annotated/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/particleTrackDict b/etc/caseDicts/annotated/particleTrackDict index 088e54a28b95ed694079ad0dbc164cf137047dc0..c954acbe81816b8785ef4a6138503d971a3ee196 100644 --- a/etc/caseDicts/annotated/particleTrackDict +++ b/etc/caseDicts/annotated/particleTrackDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/pdfDict b/etc/caseDicts/annotated/pdfDict index ec213e555f4adbac27b08f5a0755e595d53a7086..929121fdbfa485d25c612f9bd9bd02251ea16e67 100644 --- a/etc/caseDicts/annotated/pdfDict +++ b/etc/caseDicts/annotated/pdfDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/postChannelDict b/etc/caseDicts/annotated/postChannelDict index 6552c217dd959dd066de1bb9536630a9121db0f6..e5d75163fd5806226aa5f5e497a24f8a8099e5c4 100644 --- a/etc/caseDicts/annotated/postChannelDict +++ b/etc/caseDicts/annotated/postChannelDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/potentialDict b/etc/caseDicts/annotated/potentialDict index 176949a13ef339cb1c000fec8d921999f7a0da37..db9d65f54b9809fd188e04faef0973a39926b99b 100644 --- a/etc/caseDicts/annotated/potentialDict +++ b/etc/caseDicts/annotated/potentialDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/probesDict b/etc/caseDicts/annotated/probesDict index 61486f97f72b3d4aa4987ec738a3188306109a27..08c1aef8f6c81761e66f25d7d8af07cee1650e15 100644 --- a/etc/caseDicts/annotated/probesDict +++ b/etc/caseDicts/annotated/probesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/processorFieldDict b/etc/caseDicts/annotated/processorFieldDict index c87e4281d4aee37216b56e8153e12388e5a428c7..3a1767fb096a4cb8e4d035ced70283003529170b 100644 --- a/etc/caseDicts/annotated/processorFieldDict +++ b/etc/caseDicts/annotated/processorFieldDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/readFieldsDict b/etc/caseDicts/annotated/readFieldsDict index 7f27880829deb5ba370178f52117e04a0a19bd10..e0f7896f3be436ddece00d5eed9402ec85cf0287 100644 --- a/etc/caseDicts/annotated/readFieldsDict +++ b/etc/caseDicts/annotated/readFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/refineMeshDict b/etc/caseDicts/annotated/refineMeshDict index 8da26d99df7479863bac9567c09d57f2988b33ce..60392d6fcfbfbde09855747d5e8ad03f7fc1b3c3 100644 --- a/etc/caseDicts/annotated/refineMeshDict +++ b/etc/caseDicts/annotated/refineMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/renumberMeshDict b/etc/caseDicts/annotated/renumberMeshDict index 1bf012a57eff5a811ae1451d8fa9896a46d204b0..dabcea98d94b21bf0dbb14d3de793bf1d48f0324 100644 --- a/etc/caseDicts/annotated/renumberMeshDict +++ b/etc/caseDicts/annotated/renumberMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/runTimePostProcessingDict b/etc/caseDicts/annotated/runTimePostProcessingDict index f43e23cf568818fbef68a0fd78487c5cf2b96cec..b3a444cfb1d966d3a7b26cf40f69ef0c132c260e 100644 --- a/etc/caseDicts/annotated/runTimePostProcessingDict +++ b/etc/caseDicts/annotated/runTimePostProcessingDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/sampleDict b/etc/caseDicts/annotated/sampleDict index beeaa1f0db07690c4ef8bdf96a9fdd8dbce3fb37..0c34ce2dcf84e74d4f9a9c7a506c3bd01747c6d5 100644 --- a/etc/caseDicts/annotated/sampleDict +++ b/etc/caseDicts/annotated/sampleDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/selectCellsDict b/etc/caseDicts/annotated/selectCellsDict index 796961429487361d0a59553d12ac1d60cbf7ff20..bdd5dc76d5bb6b94268478ef03377531c1a96d90 100644 --- a/etc/caseDicts/annotated/selectCellsDict +++ b/etc/caseDicts/annotated/selectCellsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/setAlphaFieldDict b/etc/caseDicts/annotated/setAlphaFieldDict index a3db655c4182eef4f365b61c1cf5c2af3651b5c5..da17ab20b296a22b858b4fa44fd5bf01d17fb465 100644 --- a/etc/caseDicts/annotated/setAlphaFieldDict +++ b/etc/caseDicts/annotated/setAlphaFieldDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/setExprBoundaryFieldsDict b/etc/caseDicts/annotated/setExprBoundaryFieldsDict index 39390e88f6ea217eb40709f2324e0e7cedea77fd..87efc4e1f2c35221f00ef9991e0f4aff491600c2 100644 --- a/etc/caseDicts/annotated/setExprBoundaryFieldsDict +++ b/etc/caseDicts/annotated/setExprBoundaryFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/setExprFieldsDict b/etc/caseDicts/annotated/setExprFieldsDict index ee3c92f76802fe508e86b2ecf44b04d2369ae700..3fd0c60e03e7c59c8e85bf5179be53fff4dd9e98 100644 --- a/etc/caseDicts/annotated/setExprFieldsDict +++ b/etc/caseDicts/annotated/setExprFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/setFieldsDict b/etc/caseDicts/annotated/setFieldsDict index f36e68f7e835234120b44365847b8f6e270cc5fe..ab2760d21f8eb29d2930053c9c06842aa6e0e7e3 100644 --- a/etc/caseDicts/annotated/setFieldsDict +++ b/etc/caseDicts/annotated/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/snappyHexMeshDict b/etc/caseDicts/annotated/snappyHexMeshDict index c45b2bfa65ee8a3d5d418466321bf9bb533dc91f..013ce51bf71b754e01941c0ea2f671af37a955fb 100644 --- a/etc/caseDicts/annotated/snappyHexMeshDict +++ b/etc/caseDicts/annotated/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -14,6 +14,12 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +// Type of mesh generation: +// - castellated (default) +// - castellatedBufferLayer +//type castellatedBufferLayer; + + // Which of the steps to run castellatedMesh true; snap true; @@ -267,6 +273,10 @@ castellatedMeshControls // these can be done with feature edge snapping (so can leave // level (0 0)) //curvatureLevel (10 0 10 -1); + + // Optional disabling of buffer layer addition (if switched on by + // type = castellatedBufferLayer) + addBufferLayers false; } } @@ -605,6 +615,18 @@ snapControls //- Attract points only to the surface they originate from. Default // false. This can improve snapping of intersecting surfaces. // strictRegionSnap true; + + + // Choice of mesh motion algorithm to inflate layers (only used for mode + // castellatedBufferLayer) + + //solver displacementPointSmoothing; + //displacementPointSmoothingCoeffs + //{ + // // Use laplacian to untangle problem areas + // pointSmoother laplacian; + // nPointSmootherIter 10; + //} } // Settings for the layer addition. diff --git a/etc/caseDicts/annotated/snappyRefineMeshDict b/etc/caseDicts/annotated/snappyRefineMeshDict index 2c1879ea78288c61f863af4e6f8c82116e6bf861..109f445043dc6d2db7bbef6a39b1e42b75f778e9 100644 --- a/etc/caseDicts/annotated/snappyRefineMeshDict +++ b/etc/caseDicts/annotated/snappyRefineMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/stitchMeshDict b/etc/caseDicts/annotated/stitchMeshDict index c0fdaac81d70c295d99c4559fc2333ebc5f5e71d..a1e47840d4a8efac15f942c6e067d911daef7b47 100644 --- a/etc/caseDicts/annotated/stitchMeshDict +++ b/etc/caseDicts/annotated/stitchMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/surfaceFeatureExtractDict b/etc/caseDicts/annotated/surfaceFeatureExtractDict index ce9e135edd76ca3f4af3b24a10e3adbab93eda25..4f176f62afdd78378aa65dd0ce12bf745cf450e7 100644 --- a/etc/caseDicts/annotated/surfaceFeatureExtractDict +++ b/etc/caseDicts/annotated/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -100,6 +100,11 @@ surface2.nas // the faces form more than two different normal planes) nonManifoldEdges yes; + // Like nonManifoldEdges but is purely topological - does not + // check for normals. Either use nonManifoldEdges or + // strictNonManifoldEdges + //strictNonManifoldEdges false; + // Keep open edges (edges with 1 connected face) openEdges yes; } diff --git a/etc/caseDicts/annotated/surfaceHookUpDict b/etc/caseDicts/annotated/surfaceHookUpDict index 94e4f49b63cddbea22e49817d1296a0b78d18c29..815850ede4a10da8e66531ad9ceb338187590991 100644 --- a/etc/caseDicts/annotated/surfaceHookUpDict +++ b/etc/caseDicts/annotated/surfaceHookUpDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/surfacePatchDict b/etc/caseDicts/annotated/surfacePatchDict index b1581c94f4bbac2f1049984257c42872b7b0102c..3252817581b455385673e332658b5173949ef486 100644 --- a/etc/caseDicts/annotated/surfacePatchDict +++ b/etc/caseDicts/annotated/surfacePatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/surfaceSubsetDict b/etc/caseDicts/annotated/surfaceSubsetDict index 06366738d19f51de36d1d6085856a4e332a5c100..1b1647ffd8924a124b5ed4a51bef41246686b348 100644 --- a/etc/caseDicts/annotated/surfaceSubsetDict +++ b/etc/caseDicts/annotated/surfaceSubsetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/toleranceDict b/etc/caseDicts/annotated/toleranceDict index 169b6c4f07081eb2354a7c7ba57f5b1029a0d42d..c960a5c2585c8466d745d2c7b5951271082e1e75 100644 --- a/etc/caseDicts/annotated/toleranceDict +++ b/etc/caseDicts/annotated/toleranceDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/topoSetDict b/etc/caseDicts/annotated/topoSetDict index 5f8d13684f8564c43fecda08d5af05d7af3913c0..29caa9456ac4ce83c2649668284d285b340a2425 100644 --- a/etc/caseDicts/annotated/topoSetDict +++ b/etc/caseDicts/annotated/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/topoSetSourcesDict b/etc/caseDicts/annotated/topoSetSourcesDict index 58727baa7e3fa6a61731f581188855d5fc2058ea..00e188f7017df0741654aff6287ad8ee9a0bfd85 100644 --- a/etc/caseDicts/annotated/topoSetSourcesDict +++ b/etc/caseDicts/annotated/topoSetSourcesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -501,6 +501,15 @@ pointSet_doc } + //- All points of pointpatch + { + source patchToPoint; + patches ("patch.*"); + // or + patch somePatch; + } + + //- Copy elements from pointSet { source pointToPoint; diff --git a/etc/caseDicts/annotated/turbulenceFieldsDict b/etc/caseDicts/annotated/turbulenceFieldsDict index 8c3bdac2cb8cf883097b8537936fbc79bf71ce37..01e4469580aef27ea5a745c244ab3347975ca919 100644 --- a/etc/caseDicts/annotated/turbulenceFieldsDict +++ b/etc/caseDicts/annotated/turbulenceFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/viewFactorsDict b/etc/caseDicts/annotated/viewFactorsDict index 806d1de5848502e89566272e32a20372c6d9e6e7..f6a0b125e3e4305756c9bccadcb410736dba9f7d 100644 --- a/etc/caseDicts/annotated/viewFactorsDict +++ b/etc/caseDicts/annotated/viewFactorsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/annotated/wallFunctionDict b/etc/caseDicts/annotated/wallFunctionDict index 4a56bf250a7553a0ecb900e002fe4246babc0263..a8fae45a8052db2ea28e89f3cc67dc1e5e3c74b9 100644 --- a/etc/caseDicts/annotated/wallFunctionDict +++ b/etc/caseDicts/annotated/wallFunctionDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/boundaries b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/boundaries index 1906b2571cae39cadf97d0529e117c47a042458c..929b997309c4f224bc6fc1beee897502631b54f9 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/boundaries +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/boundaries @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/inlet b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/inlet index dc8c5857cadf27bf17fbd769f6569c92f3d9459e..2158d36e9a7d0a2088420d98f44804eabe370f83 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/inlet +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/inlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/inletOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/inletOptions index 9de239b0237ee6b84b8d1f59fe3e14f85bc5c00a..f94baf8725d760ce3fa23549528102e76d124fcf 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/inletOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/inletOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/outlet b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/outlet index 80ced5d91f9807f2e80b91590f7ea86c38521b23..9a0eebbd3f994a3834716d8c67564b173ef09096 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/outlet +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/outlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/outletOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/outletOptions index a48472620ad10844b9af4c6f745dc32daec49fa4..0a589d9cd246d5d7cc5bd95cb197c2e48749b1bc 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/outletOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/outletOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/wall b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/wall index 0e067b4f1740c9c33bee65e1f85d0232d16cde79..e192a5302cda706578a8f4a419ba7b2f0f78aba0 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/wall +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/wall @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/wallOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/wallOptions index 7a50f5385f6ce37ef84bfa887bb2d3e7d387b81a..5b7fc04d96dfeda8ee7607c073b488dad457498c 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/wallOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/buoyant/wallOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/inlet b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/inlet index dc8c5857cadf27bf17fbd769f6569c92f3d9459e..2158d36e9a7d0a2088420d98f44804eabe370f83 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/inlet +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/inlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/inletOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/inletOptions index e1327825444cf9b7c6de4bbb69c37bdaafe9576e..2d63d5d9e7e8a810dbe615048c4e2bca27aa0247 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/inletOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/inletOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/outlet b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/outlet index 6933abf8713b4b999eeb28f1e74b9f23601a5e32..98ffd3c651d1f8a32c5ebf0d860508a485f01a03 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/outlet +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/outlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/outletOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/outletOptions index 22a3b7d035232482ea1be6a0565df3a99da0f189..fadd9d44efe3cc050b79978ea8651a90f3d8a30e 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/outletOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/outletOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/wall b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/wall index 6c30540fe4a7d9569bfc2b01441cee3f68ee0ae7..fe5f2fcc364d004b4989800ed62a1ec5e4ba6249 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/wall +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/wall @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/wallOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/wallOptions index c9a729ad32f02da745e581e7d4089082b2f22cbe..c8ecb57bb281f3b1ba52e2c9bb9d525ebffc9c42 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/wallOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/compressible/wallOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/inlet b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/inlet index 40747deccdcf5bdf9d93564aaf6e9c6fefa2aeca..a5372bb8b6bdf50aa957c161b6f3edf45ef4b117 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/inlet +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/inlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/inletOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/inletOptions index 19c22fc23a2aaad36abb5fbe82d35b4344ded4bf..63132605f94cb850da8c9502acf68c7818aae5ce 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/inletOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/inletOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/outlet b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/outlet index eb35977345c1dba58abd418653df7ee9232a2855..c76f816b01ac1b17c42a9497becb4a363252eab4 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/outlet +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/outlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/wall b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/wall index 7acc950e52c70dd61c46276768256df1c75f972a..41074260293f3f96230986b086d43673a5c1fdea 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/wall +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/wall @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/wallOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/wallOptions index 9b73cb9050200dfbdf5bc5bfe5b288177793d353..fcb6559579ced4fcf6f00bec83a34372cc59d3d9 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/wallOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/incompressible/wallOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/inlet b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/inlet index 8106cb4c9eb7781297b1d1e0f4dedc64b8838628..c81215790e79f3e62fbd65d86f7e0c2763dcabf6 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/inlet +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/inlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/inletOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/inletOptions index 9a6b281b1be24c6883fec24b3d42eca2b35cf6bc..74b5c21acc2db00830801c5d138c776e8ac0b2d6 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/inletOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/inletOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/outlet b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/outlet index a8a8cd66a3fb441bea814718ac1e47978a7e6aee..4299380b5edccd4927ed04039426517bf6c24eb9 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/outlet +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/outlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/outletOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/outletOptions index 4df0a5ac784e891fffd4777b3c79b4b00de1673e..5e66277911b686088a2c3ee1ffeead9ca16cb0a6 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/outletOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/outletOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/wall b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/wall index 17fc23000d7faec2a517c731f817a6accda9b770..e0c7349d1a922e973bd4cc74fde8a68131c60d78 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/wall +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/wall @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/wallOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/wallOptions index f9171e1c6e4d1ec6bd3968510d7b6fb046c3b635..f7f0dc42b17c43479df7b0cfe3f9d597c9fd41ef 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/wallOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/wallOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/solid/wall b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/solid/wall index a751be07eebc18f70b025b8f109f39d5a11fcf43..53a895fd4ac04bcf7d0455fec8bfb5b0dc69b88b 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/solid/wall +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/solid/wall @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/solid/wallOptions b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/solid/wallOptions index e7dd4fe44a0dc25d2743352fd5b538bba8b4dab7..122627f14952ca90b293967785a14e8d4174c6bd 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/solid/wallOptions +++ b/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/solid/wallOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kEpsilon b/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kEpsilon index 4cf02a9228302145e1a9c08770dd0b1df788dceb..58bd44753477d7b2e9997f5aa8f3ec2a3ea260ea 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kEpsilon +++ b/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kEpsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kOmega b/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kOmega index db57e8f0213782d6c4881292ca64de10c8f29f6b..1e75b1abf33073d64cfcc9ff224e4e45bfe1f226 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kOmega +++ b/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kOmega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kOmegaSST b/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kOmegaSST index efe8270c67c899af0cf4fcc4151a0ffc1ee32d5f..f933bb3466a6ef51d3c8f282b339d847e35f6501 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kOmegaSST +++ b/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/kOmegaSST @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/laminar b/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/laminar index 2fdcb6e82c9ee51137a32bf9653796edf381e1b9..715b15d62be503e9486d98a0e5cd19b0c6e1986f 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/laminar +++ b/etc/caseDicts/createZeroDirectoryTemplates/models/turbulence/laminar @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/solvers/chtMultiRegionFoam b/etc/caseDicts/createZeroDirectoryTemplates/solvers/chtMultiRegionFoam index 3ee9016cea3f3d6dd3eaa34ccc573a54b620a68d..2402db95a4cd382dea73bd3f5dda737b7452d928 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/solvers/chtMultiRegionFoam +++ b/etc/caseDicts/createZeroDirectoryTemplates/solvers/chtMultiRegionFoam @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/solvers/icoFoam b/etc/caseDicts/createZeroDirectoryTemplates/solvers/icoFoam index f846f49085eac287133a3d36d060e3b93b419e76..01f791820952afc2856fde9347b9f9548072ffc0 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/solvers/icoFoam +++ b/etc/caseDicts/createZeroDirectoryTemplates/solvers/icoFoam @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/solvers/pimpleFoam b/etc/caseDicts/createZeroDirectoryTemplates/solvers/pimpleFoam index afb5b591c8deefb7b7e83bd750e8d7bfe94aae3e..c20f855aa3643007f34f2002867aeae87196945a 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/solvers/pimpleFoam +++ b/etc/caseDicts/createZeroDirectoryTemplates/solvers/pimpleFoam @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/solvers/pisoFoam b/etc/caseDicts/createZeroDirectoryTemplates/solvers/pisoFoam index edc4a0369464c30e2ecf3e55d4357497a566bd46..b734aa1e77f93770be3f8bec3811cd3638d8d123 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/solvers/pisoFoam +++ b/etc/caseDicts/createZeroDirectoryTemplates/solvers/pisoFoam @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/solvers/rhoPimpleFoam b/etc/caseDicts/createZeroDirectoryTemplates/solvers/rhoPimpleFoam index 3b810275a945f73d40ca04f767557cbff1e17ae1..1d46d18f24603d4c2c4b7ff27393f7d875d988c2 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/solvers/rhoPimpleFoam +++ b/etc/caseDicts/createZeroDirectoryTemplates/solvers/rhoPimpleFoam @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/createZeroDirectoryTemplates/solvers/simpleFoam b/etc/caseDicts/createZeroDirectoryTemplates/solvers/simpleFoam index dcfba2a69bd7308831d630c9a7b989ce077a138c..c0a5598acaa8ba5419db7bb25bacbfd60ace5791 100644 --- a/etc/caseDicts/createZeroDirectoryTemplates/solvers/simpleFoam +++ b/etc/caseDicts/createZeroDirectoryTemplates/solvers/simpleFoam @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/foamyHexMeshDict b/etc/caseDicts/foamyHexMeshDict index 4c38a427a1d4c0040ebfb88ef8bd19eb57feeccf..be25cb78abbb458d7c1e2045f029d0ceca847e2c 100644 --- a/etc/caseDicts/foamyHexMeshDict +++ b/etc/caseDicts/foamyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/general/coordinateSystem/cartesianXY b/etc/caseDicts/general/coordinateSystem/cartesianXY index 7e9f8f35fca58aaa94bc91507f7cd993d5f428d1..7aaed5de4c3d4121b773a59c7e508f4bb611cb60 100644 --- a/etc/caseDicts/general/coordinateSystem/cartesianXY +++ b/etc/caseDicts/general/coordinateSystem/cartesianXY @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/general/coordinateSystem/cartesianXZ b/etc/caseDicts/general/coordinateSystem/cartesianXZ index 0d685e273b16b28078e076614cd9f54c10024985..6ebb580e4f36fcf75fe6e0d57f376ce11096a1e7 100644 --- a/etc/caseDicts/general/coordinateSystem/cartesianXZ +++ b/etc/caseDicts/general/coordinateSystem/cartesianXZ @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/general/coordinateSystem/cartesianYZ b/etc/caseDicts/general/coordinateSystem/cartesianYZ index bcc2972cb81bb5f748bb8f53739a37204b53e4be..5d284324014740bb18ff41e7ae6c61e4a6857867 100644 --- a/etc/caseDicts/general/coordinateSystem/cartesianYZ +++ b/etc/caseDicts/general/coordinateSystem/cartesianYZ @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/general/coordinateSystem/cylindrical b/etc/caseDicts/general/coordinateSystem/cylindrical index a565c561f1fac03c70327520d3d707cfabb007fd..321811060dd6b9ffdb41d4b032464bc5cfdeb0dd 100644 --- a/etc/caseDicts/general/coordinateSystem/cylindrical +++ b/etc/caseDicts/general/coordinateSystem/cylindrical @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/general/fvOptions/porosity/porousZone b/etc/caseDicts/general/fvOptions/porosity/porousZone index a48c566f894f4b6dd56493c7f96f04fc2a21a2c9..78a08f4600feef3f2bfbb31ebc4f70f25736c6ad 100644 --- a/etc/caseDicts/general/fvOptions/porosity/porousZone +++ b/etc/caseDicts/general/fvOptions/porosity/porousZone @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/general/fvSolution/relaxationFactors/steadyState b/etc/caseDicts/general/fvSolution/relaxationFactors/steadyState index 3b816ae29eab82ee911d50050414b398257fcdf8..1c273825c05c5562d90d7a932bc86ccd28eca4d7 100644 --- a/etc/caseDicts/general/fvSolution/relaxationFactors/steadyState +++ b/etc/caseDicts/general/fvSolution/relaxationFactors/steadyState @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/general/fvSolution/relaxationFactors/transient b/etc/caseDicts/general/fvSolution/relaxationFactors/transient index 286157418d7f65c7aebe4b2e81fabbfced82e2a6..5b6b653819a5dac759c3a17b977faac33d71dc5f 100644 --- a/etc/caseDicts/general/fvSolution/relaxationFactors/transient +++ b/etc/caseDicts/general/fvSolution/relaxationFactors/transient @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/insitu/adios/adiosWrite.cfg b/etc/caseDicts/insitu/adios/adiosWrite.cfg index 373d5f15b9c8d8f5f32e0510b5e34649696c82cb..7fdd4f09c12065fe9e9f615536c730b3b7d0606c 100644 --- a/etc/caseDicts/insitu/adios/adiosWrite.cfg +++ b/etc/caseDicts/insitu/adios/adiosWrite.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/insitu/catalyst/catalyst.cfg b/etc/caseDicts/insitu/catalyst/catalyst.cfg index 9f53f0d58de07de0e3789612ab4c94b8343e2dbb..23bb4b38b7dfb4890e00b3a7727e0873ae4bacff 100644 --- a/etc/caseDicts/insitu/catalyst/catalyst.cfg +++ b/etc/caseDicts/insitu/catalyst/catalyst.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/mesh/generation/meshQualityDict.cfg b/etc/caseDicts/mesh/generation/meshQualityDict.cfg index 162d5913afd8f218f5f8c0785726930c853b4bbc..0fbbee7e7e1da0c2cc26202d8841911eba3434e2 100644 --- a/etc/caseDicts/mesh/generation/meshQualityDict.cfg +++ b/etc/caseDicts/mesh/generation/meshQualityDict.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/mesh/generation/snappyHexMeshDict.cfg b/etc/caseDicts/mesh/generation/snappyHexMeshDict.cfg index 0acb8d59f1e1e79084b4819e45252a85f095bdb4..b3105ea5ac771400b9f3fe6c004fc1ac6e9b629f 100644 --- a/etc/caseDicts/mesh/generation/snappyHexMeshDict.cfg +++ b/etc/caseDicts/mesh/generation/snappyHexMeshDict.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/mesh/manipulation/refineRegion/refineMeshDict b/etc/caseDicts/mesh/manipulation/refineRegion/refineMeshDict index 19ecfffae78345426e0bc44ed03a3daa0905d308..de7d3955b3e009905fc7becc75253ba4d6f921ba 100644 --- a/etc/caseDicts/mesh/manipulation/refineRegion/refineMeshDict +++ b/etc/caseDicts/mesh/manipulation/refineRegion/refineMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/mesh/manipulation/refineRegion/topoSetDict b/etc/caseDicts/mesh/manipulation/refineRegion/topoSetDict index 91d8736c74d11b175dae0ad14de0f8e09f670a6a..028d2519d639d9aa26d2dc5b2b664a2c0bd383e3 100644 --- a/etc/caseDicts/mesh/manipulation/refineRegion/topoSetDict +++ b/etc/caseDicts/mesh/manipulation/refineRegion/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/meshQualityDict b/etc/caseDicts/meshQualityDict index 7c46956cfa1b43faf34ee03486450523a4cf19cc..c1cbda9550a69039ecdae2f4a95044d40fe0bf98 100644 --- a/etc/caseDicts/meshQualityDict +++ b/etc/caseDicts/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/fields/AMIWeights b/etc/caseDicts/postProcessing/fields/AMIWeights index 30ac99ed4d2a462bbc132dae507899aff7103bb1..5e5f8400e982d07c351f10328bde2cf8ebb5d3d8 100644 --- a/etc/caseDicts/postProcessing/fields/AMIWeights +++ b/etc/caseDicts/postProcessing/fields/AMIWeights @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/CourantNo b/etc/caseDicts/postProcessing/fields/CourantNo index d6a4ed9ed895a91480d5cb84203d67cf5ddf8f31..9440ac93948e5eb3c4d3fd79cb7428e5f506c92e 100644 --- a/etc/caseDicts/postProcessing/fields/CourantNo +++ b/etc/caseDicts/postProcessing/fields/CourantNo @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/LambVector b/etc/caseDicts/postProcessing/fields/LambVector index 51821d4b4fea9f609da3480de420cd6479eddd08..12885c303362df2304e9af5c66c78eaaac798ea0 100644 --- a/etc/caseDicts/postProcessing/fields/LambVector +++ b/etc/caseDicts/postProcessing/fields/LambVector @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/Lambda2 b/etc/caseDicts/postProcessing/fields/Lambda2 index 1624e2bbe91d781335d254dc7ebd499fc61c5e32..441469b7457d0b281760002d0e5154e6e676e093 100644 --- a/etc/caseDicts/postProcessing/fields/Lambda2 +++ b/etc/caseDicts/postProcessing/fields/Lambda2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/MachNo b/etc/caseDicts/postProcessing/fields/MachNo index 0401989af513f649fadc3adbc4a9de2dd864acb9..c92cda23172f9401424d961d9e875bf29ca2ccf3 100644 --- a/etc/caseDicts/postProcessing/fields/MachNo +++ b/etc/caseDicts/postProcessing/fields/MachNo @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/ObukhovLength b/etc/caseDicts/postProcessing/fields/ObukhovLength index 722407d16337c90dbbd6277dfa30709c70561601..2e226d45cbd6ce1b39eb2fa2369a222f3619ce5c 100644 --- a/etc/caseDicts/postProcessing/fields/ObukhovLength +++ b/etc/caseDicts/postProcessing/fields/ObukhovLength @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/PecletNo b/etc/caseDicts/postProcessing/fields/PecletNo index c5a1e998377d84c9a9eaf295715afea054f50a78..7374c6df92efb5f24c80a5ecc4e1eea3295d3e39 100644 --- a/etc/caseDicts/postProcessing/fields/PecletNo +++ b/etc/caseDicts/postProcessing/fields/PecletNo @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/Q b/etc/caseDicts/postProcessing/fields/Q index a8df80569c921162cf259ddebcacd94b78396823..486b6bebc0ebcc28f3f17d0e16521ae432ffe150 100644 --- a/etc/caseDicts/postProcessing/fields/Q +++ b/etc/caseDicts/postProcessing/fields/Q @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/R b/etc/caseDicts/postProcessing/fields/R index eaa3d73764df2fea7a3cbeffe330a121dabdaf78..31031b95d67842da7844378ddc11186b9877de3c 100644 --- a/etc/caseDicts/postProcessing/fields/R +++ b/etc/caseDicts/postProcessing/fields/R @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/XiReactionRate b/etc/caseDicts/postProcessing/fields/XiReactionRate index e6f268117aa7327db143e29f5623643f13d6d6d9..12727bf1a793e18a69b5fbfad5ce673a64f5d2d9 100644 --- a/etc/caseDicts/postProcessing/fields/XiReactionRate +++ b/etc/caseDicts/postProcessing/fields/XiReactionRate @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/add b/etc/caseDicts/postProcessing/fields/add index 4ef45123fcaa0c3af57fd9ecb8eaabcba963b787..9d19a66a3ae4a2ab7476b1828ac34dce01eb0fbe 100644 --- a/etc/caseDicts/postProcessing/fields/add +++ b/etc/caseDicts/postProcessing/fields/add @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/components b/etc/caseDicts/postProcessing/fields/components index a76b3a1d71a76dd7a6c9ca395e9510b35e3f4672..51f3a8de76fe8e1e1aa20a977ff497da39663bf6 100644 --- a/etc/caseDicts/postProcessing/fields/components +++ b/etc/caseDicts/postProcessing/fields/components @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/ddt b/etc/caseDicts/postProcessing/fields/ddt index a106cd003d3e51f482d19d2bba1c890e031b3179..a09644ef958a69cce8f031c6a7b1952ceae2ec10 100644 --- a/etc/caseDicts/postProcessing/fields/ddt +++ b/etc/caseDicts/postProcessing/fields/ddt @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/div b/etc/caseDicts/postProcessing/fields/div index d066818fd18f0c874c7fd9f09d92a9c57363d207..39459e0925bc2661beeb4ae3488864bbae267fe8 100644 --- a/etc/caseDicts/postProcessing/fields/div +++ b/etc/caseDicts/postProcessing/fields/div @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/energySpectrum b/etc/caseDicts/postProcessing/fields/energySpectrum index b59ef9fd89a8dd6bd699234d7e839378f934f377..788c64372204ed271c7744501e74dd3ef3e1a95f 100644 --- a/etc/caseDicts/postProcessing/fields/energySpectrum +++ b/etc/caseDicts/postProcessing/fields/energySpectrum @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/enstrophy b/etc/caseDicts/postProcessing/fields/enstrophy index 4e4c58c8388eb1a28a2ac0a913a14dcfdd84d6c0..2854eb9ab050a0bb80390140941dc9daaed4f0cf 100644 --- a/etc/caseDicts/postProcessing/fields/enstrophy +++ b/etc/caseDicts/postProcessing/fields/enstrophy @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/fieldMinMax b/etc/caseDicts/postProcessing/fields/fieldMinMax index 27379b805ad3021bce518a6e664d1d9d7f3290fc..259854e1808a87257dde70690e15bbc345fcdb38 100644 --- a/etc/caseDicts/postProcessing/fields/fieldMinMax +++ b/etc/caseDicts/postProcessing/fields/fieldMinMax @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/flowType b/etc/caseDicts/postProcessing/fields/flowType index f079fe95757b8be02e340245a1b8e54b491150b3..44d8f236b0825dd594b1697f98f9bd13c5d6e4bc 100644 --- a/etc/caseDicts/postProcessing/fields/flowType +++ b/etc/caseDicts/postProcessing/fields/flowType @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/grad b/etc/caseDicts/postProcessing/fields/grad index 32835603e95cdbabb939feed07fc79b2a15e6944..661dd96e050de754eca0fd9da9813a4dbda68105 100644 --- a/etc/caseDicts/postProcessing/fields/grad +++ b/etc/caseDicts/postProcessing/fields/grad @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/heatTransferCoeff b/etc/caseDicts/postProcessing/fields/heatTransferCoeff index 30043561893775ac55f30d9f7523ec9930c5825b..68fb8d31880d3bf836554acfdb7952c513136116 100644 --- a/etc/caseDicts/postProcessing/fields/heatTransferCoeff +++ b/etc/caseDicts/postProcessing/fields/heatTransferCoeff @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/log b/etc/caseDicts/postProcessing/fields/log index 0f2b080f577069b645ec2905f90ce0a4baed33bd..d3a650f1e46e1cf2a93b144b93a6be8befc7c05c 100644 --- a/etc/caseDicts/postProcessing/fields/log +++ b/etc/caseDicts/postProcessing/fields/log @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/mag b/etc/caseDicts/postProcessing/fields/mag index c07b8dc70530b7c1a677ebfa83ec4c91f5344e5f..04986784e8dc8874eb04f52546ab8a1d8e83362b 100644 --- a/etc/caseDicts/postProcessing/fields/mag +++ b/etc/caseDicts/postProcessing/fields/mag @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/magSqr b/etc/caseDicts/postProcessing/fields/magSqr index fc6d3f19969e2b0b8ee4937aee497aa0a124638a..711ca8ec6aa6def7881aad316be5e4fb8d6d3d81 100644 --- a/etc/caseDicts/postProcessing/fields/magSqr +++ b/etc/caseDicts/postProcessing/fields/magSqr @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/processorField b/etc/caseDicts/postProcessing/fields/processorField index e9660c809ef5a784ceb8d019ab94fb1eae0e9486..e72bcfac58a237bb23c6180bcbf9d50da368b251 100644 --- a/etc/caseDicts/postProcessing/fields/processorField +++ b/etc/caseDicts/postProcessing/fields/processorField @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/randomise b/etc/caseDicts/postProcessing/fields/randomise index bd79bab1abcf750b26bc395a5f3a7221f2084620..a56e97eef67bb5ed8e9714265f9c02be1bb52915 100644 --- a/etc/caseDicts/postProcessing/fields/randomise +++ b/etc/caseDicts/postProcessing/fields/randomise @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/randomise.cfg b/etc/caseDicts/postProcessing/fields/randomise.cfg index 20d98fc7aa09247ed3dd7281779d3f523bc0ccbf..3ea06aed50516a0302aaae332fc4ce841c112279 100644 --- a/etc/caseDicts/postProcessing/fields/randomise.cfg +++ b/etc/caseDicts/postProcessing/fields/randomise.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/fields/streamFunction b/etc/caseDicts/postProcessing/fields/streamFunction index 5c485023f230ce7049cb2414d1284aa1406be6e6..cf2d3bf576d5b58d363455e0d4a5028cde3d795d 100644 --- a/etc/caseDicts/postProcessing/fields/streamFunction +++ b/etc/caseDicts/postProcessing/fields/streamFunction @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/subtract b/etc/caseDicts/postProcessing/fields/subtract index 277a517feed16945b1ba12d13b2a26fdbef2820e..9368d3bbdf62de1ad62d9acc34733352933e7143 100644 --- a/etc/caseDicts/postProcessing/fields/subtract +++ b/etc/caseDicts/postProcessing/fields/subtract @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/turbulenceFields b/etc/caseDicts/postProcessing/fields/turbulenceFields index 1b45cf9c0c0dc5d40d26fce58373883621db0987..6af733758e08738e9232f2c0a95a9e53832024f1 100644 --- a/etc/caseDicts/postProcessing/fields/turbulenceFields +++ b/etc/caseDicts/postProcessing/fields/turbulenceFields @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/vorticity b/etc/caseDicts/postProcessing/fields/vorticity index 524391161cea2ba83c4204a96e3da3adb79c05e4..ddc796eb8e0759987b90b2df2e406b6421551014 100644 --- a/etc/caseDicts/postProcessing/fields/vorticity +++ b/etc/caseDicts/postProcessing/fields/vorticity @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/wallHeatFlux b/etc/caseDicts/postProcessing/fields/wallHeatFlux index 3d4297a3c1e4dd4674611dbabc953481d0f30355..07fcfcf693b07f476c0f41f4bec1a11797c9a0a1 100644 --- a/etc/caseDicts/postProcessing/fields/wallHeatFlux +++ b/etc/caseDicts/postProcessing/fields/wallHeatFlux @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/wallShearStress b/etc/caseDicts/postProcessing/fields/wallShearStress index 836ee40527034f5019365487b858adb04c9ca6bd..6293f423954444e5436f75fa9a02c72a45aef55c 100644 --- a/etc/caseDicts/postProcessing/fields/wallShearStress +++ b/etc/caseDicts/postProcessing/fields/wallShearStress @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/writeCellCentres b/etc/caseDicts/postProcessing/fields/writeCellCentres index 26e97d45b22ba4027a84c670abc833347a169864..b80926c6a73e331b743caaa301e132ff5040f92c 100644 --- a/etc/caseDicts/postProcessing/fields/writeCellCentres +++ b/etc/caseDicts/postProcessing/fields/writeCellCentres @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/writeCellVolumes b/etc/caseDicts/postProcessing/fields/writeCellVolumes index b7b912510322b95a8d145a62ca7c7003f3815fdd..5c0a9eeb5ff8c02cfbff1a0c551fb2383247dafb 100644 --- a/etc/caseDicts/postProcessing/fields/writeCellVolumes +++ b/etc/caseDicts/postProcessing/fields/writeCellVolumes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/writeObjects b/etc/caseDicts/postProcessing/fields/writeObjects index 19754c5987d48babc1a0ce5ba8c25d312a606fc1..f0c872628c91575547e559b086a3a0061b54d68c 100644 --- a/etc/caseDicts/postProcessing/fields/writeObjects +++ b/etc/caseDicts/postProcessing/fields/writeObjects @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/fields/yPlus b/etc/caseDicts/postProcessing/fields/yPlus index 518eeb638ce89a6cc64f373d8e4db9f8b5d4835e..e5883a56933129ebbbb0fb46879f5de802be3caa 100644 --- a/etc/caseDicts/postProcessing/fields/yPlus +++ b/etc/caseDicts/postProcessing/fields/yPlus @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/flowRate/flowRateFaceZone b/etc/caseDicts/postProcessing/flowRate/flowRateFaceZone index 47c19a007391ca61c409197172589ef07fc4088b..4f2c57b38783311a88d190c340d1bd24325bc60c 100644 --- a/etc/caseDicts/postProcessing/flowRate/flowRateFaceZone +++ b/etc/caseDicts/postProcessing/flowRate/flowRateFaceZone @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/flowRate/flowRateFaceZone.cfg b/etc/caseDicts/postProcessing/flowRate/flowRateFaceZone.cfg index 540f34ded45ef8473e1fc20a68101e05947a0ea1..61ec14ad5b763fef83067aed1d604b9b6cdc7c0e 100644 --- a/etc/caseDicts/postProcessing/flowRate/flowRateFaceZone.cfg +++ b/etc/caseDicts/postProcessing/flowRate/flowRateFaceZone.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/flowRate/flowRatePatch b/etc/caseDicts/postProcessing/flowRate/flowRatePatch index 7d94e858599a5b0f12769dfdde3f8b90a0d240d7..4b5079cb81e8af7cbacb5c7acb0e823d8734078b 100644 --- a/etc/caseDicts/postProcessing/flowRate/flowRatePatch +++ b/etc/caseDicts/postProcessing/flowRate/flowRatePatch @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/flowRate/flowRatePatch.cfg b/etc/caseDicts/postProcessing/flowRate/flowRatePatch.cfg index 9637fd2ef247efc466db23132c26999f927ed354..3a01144bec7b5cdf223040263f865dec4d41a77e 100644 --- a/etc/caseDicts/postProcessing/flowRate/flowRatePatch.cfg +++ b/etc/caseDicts/postProcessing/flowRate/flowRatePatch.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/flowRate/volFlowRateSurface b/etc/caseDicts/postProcessing/flowRate/volFlowRateSurface index 295cbdbea0867ee1d9cf8967270ca117332bf682..429c0cbf8466fb0c8229d228501ea804d5451d09 100644 --- a/etc/caseDicts/postProcessing/flowRate/volFlowRateSurface +++ b/etc/caseDicts/postProcessing/flowRate/volFlowRateSurface @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/flowRate/volFlowRateSurface.cfg b/etc/caseDicts/postProcessing/flowRate/volFlowRateSurface.cfg index e19f710b01cc5babdb26abaedd9092579578ce9b..2afdaa731cde5648be960d279b1d1d031e226fad 100644 --- a/etc/caseDicts/postProcessing/flowRate/volFlowRateSurface.cfg +++ b/etc/caseDicts/postProcessing/flowRate/volFlowRateSurface.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/forces/forceCoeffs.cfg b/etc/caseDicts/postProcessing/forces/forceCoeffs.cfg index 09af6e9bc33c2ffc55ae7ff47762c1878567a52d..aee57dec7c496caef8c0cd34879fc9566d1101af 100644 --- a/etc/caseDicts/postProcessing/forces/forceCoeffs.cfg +++ b/etc/caseDicts/postProcessing/forces/forceCoeffs.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/forces/forceCoeffsCompressible b/etc/caseDicts/postProcessing/forces/forceCoeffsCompressible index e9324bd1073263dcaa71f2b7182d61a29d187ee3..645e88ed37a1e803523f12dcff8c89d4e1458000 100644 --- a/etc/caseDicts/postProcessing/forces/forceCoeffsCompressible +++ b/etc/caseDicts/postProcessing/forces/forceCoeffsCompressible @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/forces/forceCoeffsIncompressible b/etc/caseDicts/postProcessing/forces/forceCoeffsIncompressible index 3519379726483f74715da3e85770433893fcd6b9..49b143151fae7d5ba02e823b95baa04cfac0ee76 100644 --- a/etc/caseDicts/postProcessing/forces/forceCoeffsIncompressible +++ b/etc/caseDicts/postProcessing/forces/forceCoeffsIncompressible @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/forces/forceCoeffsIncompressible.cfg b/etc/caseDicts/postProcessing/forces/forceCoeffsIncompressible.cfg index 0aada5416b9509645813a6d7ed3cb44eaeaef420..7a90540d832d45b25bef2fcfd553667e2874559b 100644 --- a/etc/caseDicts/postProcessing/forces/forceCoeffsIncompressible.cfg +++ b/etc/caseDicts/postProcessing/forces/forceCoeffsIncompressible.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/forces/forces.cfg b/etc/caseDicts/postProcessing/forces/forces.cfg index 7375f2c7c81884f76600854c21d36190898f0028..27030946a5680141ae77275582cff72c990187a4 100644 --- a/etc/caseDicts/postProcessing/forces/forces.cfg +++ b/etc/caseDicts/postProcessing/forces/forces.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/forces/forcesCompressible b/etc/caseDicts/postProcessing/forces/forcesCompressible index 7d8148cc507eaae7d860e5a360d5aef4943f95cb..cc48c30f42575c9cf2f493b99654515024ddbcb4 100644 --- a/etc/caseDicts/postProcessing/forces/forcesCompressible +++ b/etc/caseDicts/postProcessing/forces/forcesCompressible @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/forces/forcesIncompressible b/etc/caseDicts/postProcessing/forces/forcesIncompressible index 90fd8605c683bedfb1f2ccc9c126f9c1d738db5b..3958e077dea3ac7043c84c72449ad3d36fa9543f 100644 --- a/etc/caseDicts/postProcessing/forces/forcesIncompressible +++ b/etc/caseDicts/postProcessing/forces/forcesIncompressible @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/forces/forcesIncompressible.cfg b/etc/caseDicts/postProcessing/forces/forcesIncompressible.cfg index 0cb30b1b0d17ab902439de59a6badbea3935c069..352763f983688455ad2c99308302868fd2cb4e44 100644 --- a/etc/caseDicts/postProcessing/forces/forcesIncompressible.cfg +++ b/etc/caseDicts/postProcessing/forces/forcesIncompressible.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/graphs/graph.cfg b/etc/caseDicts/postProcessing/graphs/graph.cfg index 34d22ba40cc7dbb2d0e1f44f51ec85f314ac70f0..a8fab4eccae4bf6bb43eb0383922e526d84081c1 100644 --- a/etc/caseDicts/postProcessing/graphs/graph.cfg +++ b/etc/caseDicts/postProcessing/graphs/graph.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/graphs/sampleDict.cfg b/etc/caseDicts/postProcessing/graphs/sampleDict.cfg index a4e9669f6c9eddee12b084149fa6306744785693..e5500c6ec3565fea481f9f4e1dd5724c01ce60bd 100644 --- a/etc/caseDicts/postProcessing/graphs/sampleDict.cfg +++ b/etc/caseDicts/postProcessing/graphs/sampleDict.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/graphs/singleGraph b/etc/caseDicts/postProcessing/graphs/singleGraph index 67a2be2f8c6f3709d4628f703068eb13b54c252e..3234f8b3c0bb03b3436e569129dffa2c467f7968 100644 --- a/etc/caseDicts/postProcessing/graphs/singleGraph +++ b/etc/caseDicts/postProcessing/graphs/singleGraph @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/lagrangian/dsmcFields b/etc/caseDicts/postProcessing/lagrangian/dsmcFields index 2e8f61c1f546020b8a8927cd1e2b2988b8c2185a..9971e0961f1e3ad170affea7cfe24c6f36fa1ad7 100644 --- a/etc/caseDicts/postProcessing/lagrangian/dsmcFields +++ b/etc/caseDicts/postProcessing/lagrangian/dsmcFields @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/minMax/cellMax b/etc/caseDicts/postProcessing/minMax/cellMax index 39f307414f3cde5702e83ce90acecbeff0b18a03..dca02185ffe389fec739649230ab5a7db07c1f31 100644 --- a/etc/caseDicts/postProcessing/minMax/cellMax +++ b/etc/caseDicts/postProcessing/minMax/cellMax @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/minMax/cellMin b/etc/caseDicts/postProcessing/minMax/cellMin index 01b17cacf60f23e3a8b0d304b13811e1729882c6..61b75aa92fe6c45ab1c7c106a34177814c42e69f 100644 --- a/etc/caseDicts/postProcessing/minMax/cellMin +++ b/etc/caseDicts/postProcessing/minMax/cellMin @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/minMax/cellMin.cfg b/etc/caseDicts/postProcessing/minMax/cellMin.cfg index c6fdb1e10c06593b1adaef26a22aa4dbfb1e1c68..02e564e5734e78766148a4592d1a337a610037ce 100644 --- a/etc/caseDicts/postProcessing/minMax/cellMin.cfg +++ b/etc/caseDicts/postProcessing/minMax/cellMin.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/minMax/cellMinMax.cfg b/etc/caseDicts/postProcessing/minMax/cellMinMax.cfg index 6b1743bced44b50e07689a6d52dc278f4738709d..8f89a238b6532cf7e8d8811d23c2e2d168b86acc 100644 --- a/etc/caseDicts/postProcessing/minMax/cellMinMax.cfg +++ b/etc/caseDicts/postProcessing/minMax/cellMinMax.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/minMax/faceMax b/etc/caseDicts/postProcessing/minMax/faceMax index 5500eaa96b5fbacd54cb4ca64c58ba86692f5181..f9054abc024a5a3e88430e688096c34d65645c0a 100644 --- a/etc/caseDicts/postProcessing/minMax/faceMax +++ b/etc/caseDicts/postProcessing/minMax/faceMax @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/minMax/faceMin b/etc/caseDicts/postProcessing/minMax/faceMin index 5db3b9532799c4be6a858216fd72706bff4816eb..d2c5c959de09d117f018ca31f9c5667556156e22 100644 --- a/etc/caseDicts/postProcessing/minMax/faceMin +++ b/etc/caseDicts/postProcessing/minMax/faceMin @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/minMax/faceMin.cfg b/etc/caseDicts/postProcessing/minMax/faceMin.cfg index 9e755bdc49e6c1dd856a17c729fb3b7462ae1e62..047e8be9b4ca5beecc6fd2765c6cce14e2445079 100644 --- a/etc/caseDicts/postProcessing/minMax/faceMin.cfg +++ b/etc/caseDicts/postProcessing/minMax/faceMin.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/minMax/faceMinMax.cfg b/etc/caseDicts/postProcessing/minMax/faceMinMax.cfg index 407b3f0526a1753c231e9873174c22a896ed3cb5..634dee77ebab9ede7182b899c2becbb9d93c72a2 100644 --- a/etc/caseDicts/postProcessing/minMax/faceMinMax.cfg +++ b/etc/caseDicts/postProcessing/minMax/faceMinMax.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/minMax/fieldMinMax.cfg b/etc/caseDicts/postProcessing/minMax/fieldMinMax.cfg index 711ba37fb8de12d5c617dc5b2a9005e86dd8c6f1..f70764a13fd123471d00307b63e1db1c09435578 100644 --- a/etc/caseDicts/postProcessing/minMax/fieldMinMax.cfg +++ b/etc/caseDicts/postProcessing/minMax/fieldMinMax.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/minMax/minMaxComponents b/etc/caseDicts/postProcessing/minMax/minMaxComponents index 31a60a7f9d53b7d78c2c6551cc39c71f08291bae..355f341bd220b23cd0c891f582874465e512852a 100644 --- a/etc/caseDicts/postProcessing/minMax/minMaxComponents +++ b/etc/caseDicts/postProcessing/minMax/minMaxComponents @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/minMax/minMaxComponents.cfg b/etc/caseDicts/postProcessing/minMax/minMaxComponents.cfg index e1f5d4df52d4957952adac1a5005346316b8ea57..df554f51205ca2af1b8694cd61e516a6198264ba 100644 --- a/etc/caseDicts/postProcessing/minMax/minMaxComponents.cfg +++ b/etc/caseDicts/postProcessing/minMax/minMaxComponents.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/minMax/minMaxMagnitude b/etc/caseDicts/postProcessing/minMax/minMaxMagnitude index 3006661bc9f1500f6f14c14747578da2023409f5..571edfc2b78894da4564632fbefa692ae8553de4 100644 --- a/etc/caseDicts/postProcessing/minMax/minMaxMagnitude +++ b/etc/caseDicts/postProcessing/minMax/minMaxMagnitude @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/numerical/solverInfo b/etc/caseDicts/postProcessing/numerical/solverInfo index 50540a6fea6ceb34def6c18c8a60a3dce0ddeb44..58b81a79704ea0d004a996e0abab536bbbbb4171 100644 --- a/etc/caseDicts/postProcessing/numerical/solverInfo +++ b/etc/caseDicts/postProcessing/numerical/solverInfo @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/numerical/solverInfo.cfg b/etc/caseDicts/postProcessing/numerical/solverInfo.cfg index 45b1ed1e291807751fe0d6b505b70472f9ba6a2e..b65f36e034b5a675a008dbcfa094c8431e036afe 100644 --- a/etc/caseDicts/postProcessing/numerical/solverInfo.cfg +++ b/etc/caseDicts/postProcessing/numerical/solverInfo.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/pressure/pressure.cfg b/etc/caseDicts/postProcessing/pressure/pressure.cfg index 5f0f7b2b053d21da850e9745d7a19cb3a0182620..c3e9ae9151d51aafc3b3f54a82c33e2f0943b9c1 100644 --- a/etc/caseDicts/postProcessing/pressure/pressure.cfg +++ b/etc/caseDicts/postProcessing/pressure/pressure.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/pressure/pressureDifference.cfg b/etc/caseDicts/postProcessing/pressure/pressureDifference.cfg index 90411fff58679b57b06c425faadd5edad3076271..56cdc6c9903c72b06e35c2835eeb5d5d57cfbb1d 100644 --- a/etc/caseDicts/postProcessing/pressure/pressureDifference.cfg +++ b/etc/caseDicts/postProcessing/pressure/pressureDifference.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/pressure/pressureDifferencePatch b/etc/caseDicts/postProcessing/pressure/pressureDifferencePatch index 78a394618b1983dc3ad006f55aa09c0362936c70..e42bed5116c2c0acee5db0608e8201b4a94e7063 100644 --- a/etc/caseDicts/postProcessing/pressure/pressureDifferencePatch +++ b/etc/caseDicts/postProcessing/pressure/pressureDifferencePatch @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/pressure/pressureDifferencePatch.cfg b/etc/caseDicts/postProcessing/pressure/pressureDifferencePatch.cfg index a9a9be3f4cf3b51a677337b7100c20598a73d5de..6bdff8239cd21bba53eba7e96a2ed23adf26919a 100644 --- a/etc/caseDicts/postProcessing/pressure/pressureDifferencePatch.cfg +++ b/etc/caseDicts/postProcessing/pressure/pressureDifferencePatch.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/pressure/pressureDifferenceSurface b/etc/caseDicts/postProcessing/pressure/pressureDifferenceSurface index 69eb52c5eb927deaaa62828a235bec594476655f..4ded775a2cb7af3fd37439f8a9abfc902a6adca1 100644 --- a/etc/caseDicts/postProcessing/pressure/pressureDifferenceSurface +++ b/etc/caseDicts/postProcessing/pressure/pressureDifferenceSurface @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/pressure/pressureDifferenceSurface.cfg b/etc/caseDicts/postProcessing/pressure/pressureDifferenceSurface.cfg index 489417f1459cfce1e6d129bca9ec08545c49b2cd..4d0151841fc6212bf5ceb64c602e79e97da2483e 100644 --- a/etc/caseDicts/postProcessing/pressure/pressureDifferenceSurface.cfg +++ b/etc/caseDicts/postProcessing/pressure/pressureDifferenceSurface.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/pressure/staticPressure b/etc/caseDicts/postProcessing/pressure/staticPressure index 2cf3412d1ef67af0b17491cfdd87960b81765990..d6d3deaeeca21b60513b8af3e59eef5d27baaf0c 100644 --- a/etc/caseDicts/postProcessing/pressure/staticPressure +++ b/etc/caseDicts/postProcessing/pressure/staticPressure @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/pressure/staticPressure.cfg b/etc/caseDicts/postProcessing/pressure/staticPressure.cfg index c32381a3310715c51a624fb514300765a9be8884..cabae4e506ba40bedc23d3c3862e1188e854a0d7 100644 --- a/etc/caseDicts/postProcessing/pressure/staticPressure.cfg +++ b/etc/caseDicts/postProcessing/pressure/staticPressure.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/pressure/totalPressureCompressible b/etc/caseDicts/postProcessing/pressure/totalPressureCompressible index a9d594aa340308da2123e48dbf3c8f7be4eddecf..bfc4ff28fe747eb1188068c69a4caa6ace52b957 100644 --- a/etc/caseDicts/postProcessing/pressure/totalPressureCompressible +++ b/etc/caseDicts/postProcessing/pressure/totalPressureCompressible @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/pressure/totalPressureCompressible.cfg b/etc/caseDicts/postProcessing/pressure/totalPressureCompressible.cfg index 4c830dfc9314b8d36d4e14525e62837d600fb415..f305694042f72a36d06147b3e6afdbfa361e6ad7 100644 --- a/etc/caseDicts/postProcessing/pressure/totalPressureCompressible.cfg +++ b/etc/caseDicts/postProcessing/pressure/totalPressureCompressible.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/pressure/totalPressureIncompressible b/etc/caseDicts/postProcessing/pressure/totalPressureIncompressible index 6e74873f6c29e3f9c2159d47ef44f752af2da03a..663933dcd2cfe2477b03d58d36d1eef64c387ba6 100644 --- a/etc/caseDicts/postProcessing/pressure/totalPressureIncompressible +++ b/etc/caseDicts/postProcessing/pressure/totalPressureIncompressible @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/pressure/totalPressureIncompressible.cfg b/etc/caseDicts/postProcessing/pressure/totalPressureIncompressible.cfg index 7460e480059a400e05793c04cd36d8f1d0fa9124..c871234608bf0c06015d6de82e244517a3b4f21b 100644 --- a/etc/caseDicts/postProcessing/pressure/totalPressureIncompressible.cfg +++ b/etc/caseDicts/postProcessing/pressure/totalPressureIncompressible.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/probes/boundaryCloud b/etc/caseDicts/postProcessing/probes/boundaryCloud index cb7cf124063114df0837968eb952ce42417d3e4b..5accc7f727511206feb53a016d8ce0f3772e8872 100644 --- a/etc/caseDicts/postProcessing/probes/boundaryCloud +++ b/etc/caseDicts/postProcessing/probes/boundaryCloud @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/probes/boundaryCloud.cfg b/etc/caseDicts/postProcessing/probes/boundaryCloud.cfg index 0e054d121063b09ae716991b96303b3d9608bed9..836afa92b672faab11439eccd7bb191451fe1d49 100644 --- a/etc/caseDicts/postProcessing/probes/boundaryCloud.cfg +++ b/etc/caseDicts/postProcessing/probes/boundaryCloud.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/probes/cloud.cfg b/etc/caseDicts/postProcessing/probes/cloud.cfg index eac66edea1e5f608daf61ed6e052fcb8497fffe1..54006e55619a0c9851aaf4e0a8b1c5f1aca2d027 100644 --- a/etc/caseDicts/postProcessing/probes/cloud.cfg +++ b/etc/caseDicts/postProcessing/probes/cloud.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/probes/internalCloud b/etc/caseDicts/postProcessing/probes/internalCloud index bb353f4b7c604e8f955f8335376dfeb13e3ab88b..9a733962e156b1b00423216fd2b92f946e467849 100644 --- a/etc/caseDicts/postProcessing/probes/internalCloud +++ b/etc/caseDicts/postProcessing/probes/internalCloud @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/probes/internalCloud.cfg b/etc/caseDicts/postProcessing/probes/internalCloud.cfg index 1b20a8add41ddb820e406f7b4934b7f889d3d2d3..c3edf1a968d01589e0a4f5d76f7c2ceda6c04870 100644 --- a/etc/caseDicts/postProcessing/probes/internalCloud.cfg +++ b/etc/caseDicts/postProcessing/probes/internalCloud.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/probes/probes b/etc/caseDicts/postProcessing/probes/probes index 18f277233debba2e33dddfcc89b1d8b159618d59..d7ce5e6a2afd2abd4910fa7536e5414599283f52 100644 --- a/etc/caseDicts/postProcessing/probes/probes +++ b/etc/caseDicts/postProcessing/probes/probes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/probes/probes.cfg b/etc/caseDicts/postProcessing/probes/probes.cfg index 302fb4fd36ba88d2f5ec7cd5375e92e07e1eca90..d58c85ac98e088f80274e4790c2bfb231bb3147d 100644 --- a/etc/caseDicts/postProcessing/probes/probes.cfg +++ b/etc/caseDicts/postProcessing/probes/probes.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/solvers/scalarTransport/scalarTransport b/etc/caseDicts/postProcessing/solvers/scalarTransport/scalarTransport index bf2b1cb36635b9d85578e794cc725c34046d8661..01da99c17ed9f8867268072cd1749ba68d56b257 100644 --- a/etc/caseDicts/postProcessing/solvers/scalarTransport/scalarTransport +++ b/etc/caseDicts/postProcessing/solvers/scalarTransport/scalarTransport @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/solvers/scalarTransport/scalarTransport.cfg b/etc/caseDicts/postProcessing/solvers/scalarTransport/scalarTransport.cfg index 0c3ab885b829fd82065594b54a48ae2af9f845b7..77cfc31e1101a7081b61b6017711825ce1fa510e 100644 --- a/etc/caseDicts/postProcessing/solvers/scalarTransport/scalarTransport.cfg +++ b/etc/caseDicts/postProcessing/solvers/scalarTransport/scalarTransport.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/surfaceFieldValue/faceZone.cfg b/etc/caseDicts/postProcessing/surfaceFieldValue/faceZone.cfg index 8c9f952fd79a384e9fc3a95b6a8b152f4b6f8a7c..a3ea3a68da04da15c6989c8f9f8512913c98f55c 100644 --- a/etc/caseDicts/postProcessing/surfaceFieldValue/faceZone.cfg +++ b/etc/caseDicts/postProcessing/surfaceFieldValue/faceZone.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/surfaceFieldValue/patch.cfg b/etc/caseDicts/postProcessing/surfaceFieldValue/patch.cfg index 8f5d161b1c718f3a9dea3f9067cd2654ff6f4692..40828d1addbde7cb17db5d6316cea51fa04b71c8 100644 --- a/etc/caseDicts/postProcessing/surfaceFieldValue/patch.cfg +++ b/etc/caseDicts/postProcessing/surfaceFieldValue/patch.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/surfaceFieldValue/patchAverage b/etc/caseDicts/postProcessing/surfaceFieldValue/patchAverage index 4efce230ba9330b4f01f562cd74d420f01eee347..dfa47363b438c928932fd77bc1b5e38d6ad5f39e 100644 --- a/etc/caseDicts/postProcessing/surfaceFieldValue/patchAverage +++ b/etc/caseDicts/postProcessing/surfaceFieldValue/patchAverage @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/surfaceFieldValue/patchIntegrate b/etc/caseDicts/postProcessing/surfaceFieldValue/patchIntegrate index 2a6815f6e7cbbfe5a108a224d79a84213b9e0d5b..83e76c6a2e663cf1fed1f6493edc6260b29edecd 100644 --- a/etc/caseDicts/postProcessing/surfaceFieldValue/patchIntegrate +++ b/etc/caseDicts/postProcessing/surfaceFieldValue/patchIntegrate @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/surfaceFieldValue/surfaceRegion.cfg b/etc/caseDicts/postProcessing/surfaceFieldValue/surfaceRegion.cfg index b47cf520554e2835a95b465e58f19937cee4df2f..ea76837aa218716f939a7ffbc2dc2a8ad6e670b8 100644 --- a/etc/caseDicts/postProcessing/surfaceFieldValue/surfaceRegion.cfg +++ b/etc/caseDicts/postProcessing/surfaceFieldValue/surfaceRegion.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/surfaceFieldValue/triSurfaceRegion.cfg b/etc/caseDicts/postProcessing/surfaceFieldValue/triSurfaceRegion.cfg index bfaa3d305c2fba7cd6f4b40212ad8b0f2cad377d..b3791ef6338a122f49867ce0ea3c6473dd5c97be 100644 --- a/etc/caseDicts/postProcessing/surfaceFieldValue/triSurfaceRegion.cfg +++ b/etc/caseDicts/postProcessing/surfaceFieldValue/triSurfaceRegion.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/visualization/runTimePostPro.cfg b/etc/caseDicts/postProcessing/visualization/runTimePostPro.cfg index 48e8d6564ad8c6bd373d65ef8c7649daa986a413..3a785b758cfb0f6cbd9fd89078c191c8aa88fa96 100644 --- a/etc/caseDicts/postProcessing/visualization/runTimePostPro.cfg +++ b/etc/caseDicts/postProcessing/visualization/runTimePostPro.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/visualization/streamlines b/etc/caseDicts/postProcessing/visualization/streamlines index 88db7428b8242647fb9d1755c2c82d7340c622bd..538474a137074d66595abb6bef6df7f2258667ef 100644 --- a/etc/caseDicts/postProcessing/visualization/streamlines +++ b/etc/caseDicts/postProcessing/visualization/streamlines @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/visualization/streamlines.cfg b/etc/caseDicts/postProcessing/visualization/streamlines.cfg index d82adbddcfbe595ec63e3bcd4faf60824dd70398..014c7b50d4b8bf8db314640549adc8d79296c86d 100644 --- a/etc/caseDicts/postProcessing/visualization/streamlines.cfg +++ b/etc/caseDicts/postProcessing/visualization/streamlines.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/postProcessing/visualization/surfaces b/etc/caseDicts/postProcessing/visualization/surfaces index 168bbd17b13bfe7922f9cc88bc6739e2e9d7808d..031e787d08f3639e5dc54d1ffb03eb8ee219add4 100644 --- a/etc/caseDicts/postProcessing/visualization/surfaces +++ b/etc/caseDicts/postProcessing/visualization/surfaces @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/postProcessing/visualization/surfaces.cfg b/etc/caseDicts/postProcessing/visualization/surfaces.cfg index 4df007e631a88b73495ed98f3f0276b928a60f68..544dff50a7d21656ed457630a41f64171bbdb58f 100644 --- a/etc/caseDicts/postProcessing/visualization/surfaces.cfg +++ b/etc/caseDicts/postProcessing/visualization/surfaces.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/profiling/parallel.cfg b/etc/caseDicts/profiling/parallel.cfg index eac135d29f7d096c9a34db97e9117f2ba9d66176..1a705ebb23db90e6beaebfeead9811a9db846674 100644 --- a/etc/caseDicts/profiling/parallel.cfg +++ b/etc/caseDicts/profiling/parallel.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Version: v2406 + \\ / O peration | Version: v2412 \\ / A nd | Website: www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- diff --git a/etc/caseDicts/setConstraintTypes b/etc/caseDicts/setConstraintTypes index 25586b42279527f4e20cfdfcad8e62b1f4b815c3..15ac7c931c2d0e79d1c16a40b4e2c70830148ac9 100644 --- a/etc/caseDicts/setConstraintTypes +++ b/etc/caseDicts/setConstraintTypes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/solvers/scalarTransport/s b/etc/caseDicts/solvers/scalarTransport/s index d5a54a1e0ef200cc4e2156ea0f62ad20b6bd86f0..4a416073f5b66f67fd2526afa7a59ae1545b025a 100644 --- a/etc/caseDicts/solvers/scalarTransport/s +++ b/etc/caseDicts/solvers/scalarTransport/s @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/solvers/scalarTransport/scalarTransportDict b/etc/caseDicts/solvers/scalarTransport/scalarTransportDict index 648a80372daaec4f0608bcda322226582b46229a..5c88ba92e8562011df9abf3cda78b1336da7acc4 100644 --- a/etc/caseDicts/solvers/scalarTransport/scalarTransportDict +++ b/etc/caseDicts/solvers/scalarTransport/scalarTransportDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/solvers/scalarTransport/scalarTransportDict.cfg b/etc/caseDicts/solvers/scalarTransport/scalarTransportDict.cfg index 9b8e7c656dd0a7cc6a813775c5a8e26c7158c1c6..d4b33b1ed95a0b90cd47634fcd69e2e07611f95a 100644 --- a/etc/caseDicts/solvers/scalarTransport/scalarTransportDict.cfg +++ b/etc/caseDicts/solvers/scalarTransport/scalarTransportDict.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/caseDicts/surface/surfaceFeatureExtractDict.cfg b/etc/caseDicts/surface/surfaceFeatureExtractDict.cfg index e851fd9dc05fcda9ee5804786941659a9e3d6369..a648e0cf2a42deb00432c7f833fbe2670de45d85 100644 --- a/etc/caseDicts/surface/surfaceFeatureExtractDict.cfg +++ b/etc/caseDicts/surface/surfaceFeatureExtractDict.cfg @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/cellModels b/etc/cellModels index 83475a72992915d6da6d7f966868ba1d3d6c979c..b820bf6f35d21e8aa5f82ba1d55c4de704b99f4d 100644 --- a/etc/cellModels +++ b/etc/cellModels @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/colourTables b/etc/colourTables index 291ecd5d48ce1877c52149dbba0464d073d41166..d93720494d0a70f1473bb3ebbf96e18994da2798 100644 --- a/etc/colourTables +++ b/etc/colourTables @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/config.sh/completion_cache b/etc/config.sh/completion_cache index 50d2e1c2dbabc0600af453ad2ed279c8fc1d92d9..2e694a8a9518fc1f4a92515fa6fa0c5f6f9f70d9 100644 --- a/etc/config.sh/completion_cache +++ b/etc/config.sh/completion_cache @@ -196,7 +196,7 @@ _of_complete_cache_[reactingMultiphaseEulerFoam]="-case -decomposeParDict -fileH _of_complete_cache_[reactingParcelFoam]="-case -decomposeParDict -fileHandler -world | -dry-run -dry-run-write -listFunctionObjects -listFvOptions -listRegisteredSwitches -listScalarBCs -listSwitches -listTurbulenceModels -listUnsetSwitches -listVectorBCs -mpi-threads -noFunctionObjects -parallel -postProcess -doc -help" _of_complete_cache_[reactingTwoPhaseEulerFoam]="-case -decomposeParDict -fileHandler -world | -dry-run -dry-run-write -listFunctionObjects -listFvOptions -listRegisteredSwitches -listScalarBCs -listSwitches -listUnsetSwitches -listVectorBCs -mpi-threads -noFunctionObjects -parallel -postProcess -doc -help" _of_complete_cache_[reconstructPar]="-case -fields -fileHandler -lagrangianFields -region -regions -time | -allRegions -constant -latestTime -newTimes -no-fields -no-lagrangian -no-sets -noFunctionObjects -noZero -verbose -withZero -doc -help" -_of_complete_cache_[reconstructParMesh]="-case -fileHandler -mergeTol -region -regions -time | -addressing-only -allRegions -cellDist -constant -fullMatch -latestTime -noFunctionObjects -noZero -procMatch -verbose -withZero -doc -help" +_of_complete_cache_[reconstructParMesh]="-case -fileHandler -mergeTol -region -regions -time | -addressing-only -allRegions -cellDist -constant -fullMatch -latestTime -no-finite-area -noFunctionObjects -noZero -procMatch -verbose -withZero -doc -help" _of_complete_cache_[reconstructPointDistribution]="-case -decomposeParDict -fileHandler -time -world | -constant -latestTime -mpi-threads -noFunctionObjects -noZero -parallel -doc -help" _of_complete_cache_[redistributePar]="-case -decomposeParDict -fileHandler -region -regions -time -world | -allRegions -cellDist -constant -decompose -dry-run -latestTime -mpi-threads -newTimes -no-finite-area -noZero -overwrite -parallel -reconstruct -verbose -withZero -doc -help" _of_complete_cache_[refineHexMesh]="-case -decomposeParDict -fileHandler -region -world | -minSet -mpi-threads -overwrite -parallel -doc -help" @@ -265,7 +265,7 @@ _of_complete_cache_[surfaceInflate]="-case -featureAngle -fileHandler -nSmooth | _of_complete_cache_[surfaceLambdaMuSmooth]="-featureFile | -doc -help" _of_complete_cache_[surfaceMeshConvert]="-case -dict -fileHandler -from -read-format -read-scale -to -write-format -write-scale | -clean -noFunctionObjects -tri -verbose -doc -help" _of_complete_cache_[surfaceMeshExport]="-case -dict -fileHandler -from -name -read-scale -to -write-format -write-scale | -clean -noFunctionObjects -verbose -doc -help" -_of_complete_cache_[surfaceMeshExtract]="-case -decomposeParDict -exclude-patches -faceZones -fileHandler -patches -region -time -world | -constant -excludeProcPatches -latestTime -mpi-threads -noFunctionObjects -noZero -parallel -doc -help" +_of_complete_cache_[surfaceMeshExtract]="-case -decomposeParDict -exclude-patches -faceZones -featureAngle -fileHandler -patches -region -time -world | -constant -excludeProcPatches -extractZonePoints -latestTime -mpi-threads -noFunctionObjects -noZero -parallel -writeOBJ -doc -help" _of_complete_cache_[surfaceMeshImport]="-case -dict -fileHandler -from -name -read-format -read-scale -to -write-scale | -clean -noFunctionObjects -verbose -doc -help" _of_complete_cache_[surfaceMeshInfo]="-case -fileHandler -scale | -areas -noFunctionObjects -xml -doc -help" _of_complete_cache_[surfaceOrient]="-case -fileHandler -scale | -inside -noFunctionObjects -usePierceTest -doc -help" diff --git a/etc/controlDict b/etc/controlDict index 552f12c520154ec761f55a04314914a921a8984a..5ca48e8d73e0494c07dcc487faf69832951886ad 100644 --- a/etc/controlDict +++ b/etc/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -223,6 +223,11 @@ OptimisationSwitches //- Enable enforced consistency of constraint bcs after 'local' operations. // Default is on. Set to 0/false to revert to <v2306 behaviour //localConsistency 0; + + //- Since v2412 wall distance is calculated on a combined patch, created + // from all the individual wall patches. Set to 0/false to revert to + // <v2412 behaviour + //useCombinedWallPatch 0; } diff --git a/etc/cshrc b/etc/cshrc index e7ed50257eb570c0f51788d5bdf49f56b2a17af7..62afef798251821d5c7b5f884fe4ac70f4da370c 100644 --- a/etc/cshrc +++ b/etc/cshrc @@ -55,7 +55,7 @@ # [WM_PROJECT_VERSION] - A human-readable version name # A development version is often named 'com' - as in www.openfoam.com -setenv WM_PROJECT_VERSION v2406 +setenv WM_PROJECT_VERSION v2412 #------------------------------------------------------------------------------ # Configuration environment variables. diff --git a/etc/templates/axisymmetricJet/0/U b/etc/templates/axisymmetricJet/0/U index 899b561d75390fcf747f348ccdcb39a6dc1ad7cb..271dfe166f42a4e71c20eb20afe598f7f39bcb93 100644 --- a/etc/templates/axisymmetricJet/0/U +++ b/etc/templates/axisymmetricJet/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/0/epsilon b/etc/templates/axisymmetricJet/0/epsilon index b07a43df0aa2a6aee2d630ec901d6c690d55f963..e9ff43fb973d350337120445b0c167d7dc374895 100644 --- a/etc/templates/axisymmetricJet/0/epsilon +++ b/etc/templates/axisymmetricJet/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/0/k b/etc/templates/axisymmetricJet/0/k index 660354d0ad540418e95163a1b0b0ac50e51b0734..73dc8cb1fb490406a20ac67706e290e34d524b79 100644 --- a/etc/templates/axisymmetricJet/0/k +++ b/etc/templates/axisymmetricJet/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/0/nut b/etc/templates/axisymmetricJet/0/nut index 741f6cfd801c88f00cbeca335c87817a26d90c4d..6e2f9c61ac0d2986795f346797bf185592bda018 100644 --- a/etc/templates/axisymmetricJet/0/nut +++ b/etc/templates/axisymmetricJet/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/0/omega b/etc/templates/axisymmetricJet/0/omega index c6b678971cd46850eaad3350e775a51de0e97f02..fa0522d79768286c3ba90d932b5bffdc2cf611c7 100644 --- a/etc/templates/axisymmetricJet/0/omega +++ b/etc/templates/axisymmetricJet/0/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/0/p b/etc/templates/axisymmetricJet/0/p index e7f8a2fedad326f1755a76ffef3a531467f6d443..5a341cd4b4452d1fdea93d06a930124c1f04c5e9 100644 --- a/etc/templates/axisymmetricJet/0/p +++ b/etc/templates/axisymmetricJet/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/constant/transportProperties b/etc/templates/axisymmetricJet/constant/transportProperties index 023ee0408d0e49ed1109d3b67f1a580e91c7f8e8..8e1218024966e4848688c3d459c93992bbf0e05a 100644 --- a/etc/templates/axisymmetricJet/constant/transportProperties +++ b/etc/templates/axisymmetricJet/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/constant/turbulenceProperties b/etc/templates/axisymmetricJet/constant/turbulenceProperties index 8a72f93240738f341ca039b84997e4cef1af9217..221ee04103103e1ff57ba313284af80e6feb30cf 100644 --- a/etc/templates/axisymmetricJet/constant/turbulenceProperties +++ b/etc/templates/axisymmetricJet/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/system/blockMeshDict b/etc/templates/axisymmetricJet/system/blockMeshDict index 90a2ea0b4c0bd553c920af246b91a4f82493add9..fd8d53bc9eb56519f64f44aecc76f806385a987b 100644 --- a/etc/templates/axisymmetricJet/system/blockMeshDict +++ b/etc/templates/axisymmetricJet/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/system/controlDict b/etc/templates/axisymmetricJet/system/controlDict index 70e7f897bf9c78de66f36b30408a2fda24f353c5..bec873b2b431cd1bb96613fae111085348f6fbc9 100644 --- a/etc/templates/axisymmetricJet/system/controlDict +++ b/etc/templates/axisymmetricJet/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/system/extrudeMeshDict b/etc/templates/axisymmetricJet/system/extrudeMeshDict index b7438699eab8e4a976ccc5125d8f2366030e2270..ac38427727e5cb9d4c3deeba2f10af2a0a28a4bf 100644 --- a/etc/templates/axisymmetricJet/system/extrudeMeshDict +++ b/etc/templates/axisymmetricJet/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/system/fvSchemes b/etc/templates/axisymmetricJet/system/fvSchemes index 15fac9930e95efa224f0d0e99f544dd9cd947215..86f6bbd361bfd73f82ee9dfc693d04fe048c444a 100644 --- a/etc/templates/axisymmetricJet/system/fvSchemes +++ b/etc/templates/axisymmetricJet/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/system/fvSolution b/etc/templates/axisymmetricJet/system/fvSolution index 1e474e3173c814f4b235a9f7347cb0e346075dc4..a9ee56dfc839242d938196c0c0f980fbbc875d33 100644 --- a/etc/templates/axisymmetricJet/system/fvSolution +++ b/etc/templates/axisymmetricJet/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/axisymmetricJet/system/graph b/etc/templates/axisymmetricJet/system/graph index 0591aa60f6cf0408820ba4b95abccc0128c43df0..b0b99076e2912c0db5fb7d744596f123ff3b8538 100644 --- a/etc/templates/axisymmetricJet/system/graph +++ b/etc/templates/axisymmetricJet/system/graph @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/0/T b/etc/templates/closedVolume/0/T index 003fcd230de0f40e4acaf6067e03f723f04ea4b2..de4627514b514262bf995fe0899920ca572f79db 100644 --- a/etc/templates/closedVolume/0/T +++ b/etc/templates/closedVolume/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/0/U b/etc/templates/closedVolume/0/U index 5d14185669435472ec783914eff3155e850ef7db..fb43b1edba03e437e1bbbcc3c1b09c12f3ae4a24 100644 --- a/etc/templates/closedVolume/0/U +++ b/etc/templates/closedVolume/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/0/alphat b/etc/templates/closedVolume/0/alphat index fa876338054e38c8c3a61c9bc561600cd8d90e2d..212ed7dbe6e58a6050a69af0f8cd48ee076e73ac 100644 --- a/etc/templates/closedVolume/0/alphat +++ b/etc/templates/closedVolume/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/0/epsilon b/etc/templates/closedVolume/0/epsilon index ec5d777c618a7b41c79743453937c9204308e447..813022ce4b58a47e34c9171c5aed3b2571eea7de 100644 --- a/etc/templates/closedVolume/0/epsilon +++ b/etc/templates/closedVolume/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/0/k b/etc/templates/closedVolume/0/k index 6b5b39e6a7168a3d0e2d2eb24dba25759f412443..5f4b1a1251165f9dc2ed343b0c3f3272229a9ca9 100644 --- a/etc/templates/closedVolume/0/k +++ b/etc/templates/closedVolume/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/0/nut b/etc/templates/closedVolume/0/nut index 8abef15ce9c35362334ec2775adc5c7da93437bf..a561190a41ce5893b971ce2afadddc0cd50b99a2 100644 --- a/etc/templates/closedVolume/0/nut +++ b/etc/templates/closedVolume/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/0/omega b/etc/templates/closedVolume/0/omega index 1356265598444515c162c2700c3a2a944506781c..2de5a32697617e93185c6d28bf0d49acbc94d84c 100644 --- a/etc/templates/closedVolume/0/omega +++ b/etc/templates/closedVolume/0/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/0/p b/etc/templates/closedVolume/0/p index be96f373f9f964ed7d54e6c100028e8586e29dca..711145a2bcf2197129e1ddf9b5b724a45fd04d73 100644 --- a/etc/templates/closedVolume/0/p +++ b/etc/templates/closedVolume/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/0/p_rgh b/etc/templates/closedVolume/0/p_rgh index 46ccb38533dd74ad1b135ff375a28548e271ac50..c3c8ecd4a73e52a79aed711b8d678c0c77b78c27 100644 --- a/etc/templates/closedVolume/0/p_rgh +++ b/etc/templates/closedVolume/0/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/constant/g b/etc/templates/closedVolume/constant/g index 32870956d50713b0b982f27ec3b8d43ef09b4105..eab9f8dc41cb39bb83064d222605b53605806199 100644 --- a/etc/templates/closedVolume/constant/g +++ b/etc/templates/closedVolume/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/constant/transportProperties b/etc/templates/closedVolume/constant/transportProperties index 0e2ceb9b7c1594dd68b03d84a11d328cfa1a6871..cc6b11ad02ffed2938f34801733e6ebc5e749574 100644 --- a/etc/templates/closedVolume/constant/transportProperties +++ b/etc/templates/closedVolume/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/constant/turbulenceProperties b/etc/templates/closedVolume/constant/turbulenceProperties index 24b75a09139408d6c3ccf1bb7c405f8ed8ac89d8..31d5e76c4082825fb3ba57bf3831404dcd1f483c 100644 --- a/etc/templates/closedVolume/constant/turbulenceProperties +++ b/etc/templates/closedVolume/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/system/blockMeshDict b/etc/templates/closedVolume/system/blockMeshDict index 6923f6cb7404e0f667ec6f4bfa8de0301e1754db..eb7112d10ec8edfdb3082379425071df56df4919 100644 --- a/etc/templates/closedVolume/system/blockMeshDict +++ b/etc/templates/closedVolume/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/system/controlDict b/etc/templates/closedVolume/system/controlDict index a371767d7cf521c4abdef33da5536ca0badcb15d..0608f0c6934f7d014c4486efcb49fe22a644ee4a 100644 --- a/etc/templates/closedVolume/system/controlDict +++ b/etc/templates/closedVolume/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/system/fvSchemes b/etc/templates/closedVolume/system/fvSchemes index 5b2f00b55ad1fa7b3a63fcded104dd2b431d202c..bd9492a516e83e53fe0aec3c224f2bf7be902cd4 100644 --- a/etc/templates/closedVolume/system/fvSchemes +++ b/etc/templates/closedVolume/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/system/fvSolution b/etc/templates/closedVolume/system/fvSolution index 00a55fc299505cbf898e4cad76c332b5ff502892..d4708e82003770e5f6c45cc815da6cb0053933dc 100644 --- a/etc/templates/closedVolume/system/fvSolution +++ b/etc/templates/closedVolume/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/system/meshQualityDict b/etc/templates/closedVolume/system/meshQualityDict index 0f376ab4b5c06c3132cb92babe7dd5ed28539e1a..fedcb5b906b00a68953190b37a65b34ec3a7f492 100644 --- a/etc/templates/closedVolume/system/meshQualityDict +++ b/etc/templates/closedVolume/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/system/snappyHexMeshDict b/etc/templates/closedVolume/system/snappyHexMeshDict index 937d0a2491d6c6c241aedff0d4870432e03b4b4c..5ec9e548e325e9f9352cffc222f8c3441e5c56e4 100644 --- a/etc/templates/closedVolume/system/snappyHexMeshDict +++ b/etc/templates/closedVolume/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolume/system/surfaceFeatureExtractDict b/etc/templates/closedVolume/system/surfaceFeatureExtractDict index f5f5e9010bd6e906f6cecbd9ea780bf04f9093e4..ef3a880754c1e9b60ecb2a3f88a7659747deef64 100644 --- a/etc/templates/closedVolume/system/surfaceFeatureExtractDict +++ b/etc/templates/closedVolume/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/0/U b/etc/templates/closedVolumeRotating/0/U index 35607e96b1d0cefad0b886c8f683900d40b4909f..038a049174685d2fcb3933c74e6c837c467cd739 100644 --- a/etc/templates/closedVolumeRotating/0/U +++ b/etc/templates/closedVolumeRotating/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/0/k b/etc/templates/closedVolumeRotating/0/k index 97207294e4df02e1e387983e46522b000ef3b561..68f46c8f90c0813f2aaf83cb68f09495d771f3fe 100644 --- a/etc/templates/closedVolumeRotating/0/k +++ b/etc/templates/closedVolumeRotating/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/0/nut b/etc/templates/closedVolumeRotating/0/nut index 8abef15ce9c35362334ec2775adc5c7da93437bf..a561190a41ce5893b971ce2afadddc0cd50b99a2 100644 --- a/etc/templates/closedVolumeRotating/0/nut +++ b/etc/templates/closedVolumeRotating/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/0/omega b/etc/templates/closedVolumeRotating/0/omega index aa0751868ea11cae9eb90741900bd0451d8ad7d9..6fbbe75eb1868b44ed00bc85fd834eb0cd2708a0 100644 --- a/etc/templates/closedVolumeRotating/0/omega +++ b/etc/templates/closedVolumeRotating/0/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/0/p b/etc/templates/closedVolumeRotating/0/p index be96f373f9f964ed7d54e6c100028e8586e29dca..711145a2bcf2197129e1ddf9b5b724a45fd04d73 100644 --- a/etc/templates/closedVolumeRotating/0/p +++ b/etc/templates/closedVolumeRotating/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/constant/MRFProperties b/etc/templates/closedVolumeRotating/constant/MRFProperties index edb26e2ce82cc179e7aff67543f807408dd54c14..6850bd50e4ef904c1276fa04268bfa8e71e778da 100644 --- a/etc/templates/closedVolumeRotating/constant/MRFProperties +++ b/etc/templates/closedVolumeRotating/constant/MRFProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/constant/dynamicMeshDict b/etc/templates/closedVolumeRotating/constant/dynamicMeshDict index d48265ab4091ebac3828bb7bb8c757e557038c1e..a78fc0cf06740140febe0eb527d8e26d947fcf76 100644 --- a/etc/templates/closedVolumeRotating/constant/dynamicMeshDict +++ b/etc/templates/closedVolumeRotating/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/constant/rotatingZoneProperties b/etc/templates/closedVolumeRotating/constant/rotatingZoneProperties index 37fe7049e55352d47642ffa87c5348bf78b91b03..b61487dc37cf1204d84fecdc70109f69d6f44bac 100644 --- a/etc/templates/closedVolumeRotating/constant/rotatingZoneProperties +++ b/etc/templates/closedVolumeRotating/constant/rotatingZoneProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/constant/transportProperties b/etc/templates/closedVolumeRotating/constant/transportProperties index 023ee0408d0e49ed1109d3b67f1a580e91c7f8e8..8e1218024966e4848688c3d459c93992bbf0e05a 100644 --- a/etc/templates/closedVolumeRotating/constant/transportProperties +++ b/etc/templates/closedVolumeRotating/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/constant/turbulenceProperties b/etc/templates/closedVolumeRotating/constant/turbulenceProperties index 8a72f93240738f341ca039b84997e4cef1af9217..221ee04103103e1ff57ba313284af80e6feb30cf 100644 --- a/etc/templates/closedVolumeRotating/constant/turbulenceProperties +++ b/etc/templates/closedVolumeRotating/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/system/blockMeshDict b/etc/templates/closedVolumeRotating/system/blockMeshDict index 2a826b9d27ad15ea6317839dbe6973ff51473e97..6237fce208e6b30f793b16ad2ac04665fab15eb1 100644 --- a/etc/templates/closedVolumeRotating/system/blockMeshDict +++ b/etc/templates/closedVolumeRotating/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/system/blockMeshDict-box b/etc/templates/closedVolumeRotating/system/blockMeshDict-box index 6923f6cb7404e0f667ec6f4bfa8de0301e1754db..eb7112d10ec8edfdb3082379425071df56df4919 100644 --- a/etc/templates/closedVolumeRotating/system/blockMeshDict-box +++ b/etc/templates/closedVolumeRotating/system/blockMeshDict-box @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/system/controlDict b/etc/templates/closedVolumeRotating/system/controlDict index 8b9dc3810beae62ff838d77ef106ab16d7b5d56c..f4e1b95d8517f2a5fea36046fa4604623888dcbc 100644 --- a/etc/templates/closedVolumeRotating/system/controlDict +++ b/etc/templates/closedVolumeRotating/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/system/createBafflesDict b/etc/templates/closedVolumeRotating/system/createBafflesDict index b10db3f3f6ea76a597795bcc6aeecff18b1dc5b9..bd78ef6ed0c05a2f68ed7679986699c24c27f74c 100644 --- a/etc/templates/closedVolumeRotating/system/createBafflesDict +++ b/etc/templates/closedVolumeRotating/system/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/system/fvSchemes b/etc/templates/closedVolumeRotating/system/fvSchemes index f81d5c1a4c76f0f7ca7c99c9fc56ff0ace547438..b59fcc4d93a347531c7ab6c9ece3166f1dc08679 100644 --- a/etc/templates/closedVolumeRotating/system/fvSchemes +++ b/etc/templates/closedVolumeRotating/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/system/fvSolution b/etc/templates/closedVolumeRotating/system/fvSolution index 1e474e3173c814f4b235a9f7347cb0e346075dc4..a9ee56dfc839242d938196c0c0f980fbbc875d33 100644 --- a/etc/templates/closedVolumeRotating/system/fvSolution +++ b/etc/templates/closedVolumeRotating/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/system/meshQualityDict b/etc/templates/closedVolumeRotating/system/meshQualityDict index 0f376ab4b5c06c3132cb92babe7dd5ed28539e1a..fedcb5b906b00a68953190b37a65b34ec3a7f492 100644 --- a/etc/templates/closedVolumeRotating/system/meshQualityDict +++ b/etc/templates/closedVolumeRotating/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/system/snappyHexMeshDict b/etc/templates/closedVolumeRotating/system/snappyHexMeshDict index 2a8e7f191cbf29557db1deb5983b5f4c8528461d..628c3d77eacbf15034bed0c3da7de08849cb6807 100644 --- a/etc/templates/closedVolumeRotating/system/snappyHexMeshDict +++ b/etc/templates/closedVolumeRotating/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/closedVolumeRotating/system/surfaceFeatureExtractDict b/etc/templates/closedVolumeRotating/system/surfaceFeatureExtractDict index 60697349a1632701498a3e49698f134a20810b3d..7e20a5e16e6199a790e6ad9464d5f8418bfcaeee 100644 --- a/etc/templates/closedVolumeRotating/system/surfaceFeatureExtractDict +++ b/etc/templates/closedVolumeRotating/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/0/T b/etc/templates/compressibleInflowOutflow/0/T index 20fabb9a8fd71065ec2f1e32a4a00bbf70f7eb3e..5a54fb678e884859e1212b9440ddd6cc89fbbab0 100644 --- a/etc/templates/compressibleInflowOutflow/0/T +++ b/etc/templates/compressibleInflowOutflow/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/0/U b/etc/templates/compressibleInflowOutflow/0/U index 12a6965549315a1f9e30ea4c98cb6e3e1520030f..b348caef5a8382338ce59b0523180c40981d88ae 100644 --- a/etc/templates/compressibleInflowOutflow/0/U +++ b/etc/templates/compressibleInflowOutflow/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/0/alphat b/etc/templates/compressibleInflowOutflow/0/alphat index 752f34c3e1e8eada50efbf6379c724724992f1db..53f358869b4e19c9f703516cd27140e0bf6e52a8 100644 --- a/etc/templates/compressibleInflowOutflow/0/alphat +++ b/etc/templates/compressibleInflowOutflow/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/0/epsilon b/etc/templates/compressibleInflowOutflow/0/epsilon index c175dcd777444d7dfdea7262fc251bc5b787c52c..392a2dc4011c041b568d3ec5057ffbf010f19ac8 100644 --- a/etc/templates/compressibleInflowOutflow/0/epsilon +++ b/etc/templates/compressibleInflowOutflow/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/0/k b/etc/templates/compressibleInflowOutflow/0/k index daee8c90884a73f54c470e28da7d1834e0435803..e54edbda5fe00a15913dacd242af3c7ba2747d2a 100644 --- a/etc/templates/compressibleInflowOutflow/0/k +++ b/etc/templates/compressibleInflowOutflow/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/0/nut b/etc/templates/compressibleInflowOutflow/0/nut index ac5a2fadd822678ebe95a1a8933702bdba85cbd4..7c97d4bdfff0cf600cb48978448c51f7dd7190b6 100644 --- a/etc/templates/compressibleInflowOutflow/0/nut +++ b/etc/templates/compressibleInflowOutflow/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/0/omega b/etc/templates/compressibleInflowOutflow/0/omega index 7c5138b6f797ae72449a3d8974d7f5c2bc2985c0..5147b9890fbe752ca38175b82025efdcec4e4a3d 100644 --- a/etc/templates/compressibleInflowOutflow/0/omega +++ b/etc/templates/compressibleInflowOutflow/0/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/0/p b/etc/templates/compressibleInflowOutflow/0/p index ef035ea8156ab148ec587536793808194dc04b93..05651c93bc8b1045bac9160c9b036644196c8b2a 100644 --- a/etc/templates/compressibleInflowOutflow/0/p +++ b/etc/templates/compressibleInflowOutflow/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/constant/thermophysicalProperties b/etc/templates/compressibleInflowOutflow/constant/thermophysicalProperties index 6920b2f0812c5c1f8933dbfba401ce5ca544ca40..94f7063407724a83cfd7a1ba008a9216bc4d7572 100644 --- a/etc/templates/compressibleInflowOutflow/constant/thermophysicalProperties +++ b/etc/templates/compressibleInflowOutflow/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/constant/turbulenceProperties b/etc/templates/compressibleInflowOutflow/constant/turbulenceProperties index 24b75a09139408d6c3ccf1bb7c405f8ed8ac89d8..31d5e76c4082825fb3ba57bf3831404dcd1f483c 100644 --- a/etc/templates/compressibleInflowOutflow/constant/turbulenceProperties +++ b/etc/templates/compressibleInflowOutflow/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/system/blockMeshDict b/etc/templates/compressibleInflowOutflow/system/blockMeshDict index b295eb8c9fe29ce2a9b1d468ce4de539ecbaa9e4..ebe2993faa23ee011db65ee85c7141a3d1019d02 100644 --- a/etc/templates/compressibleInflowOutflow/system/blockMeshDict +++ b/etc/templates/compressibleInflowOutflow/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/system/controlDict b/etc/templates/compressibleInflowOutflow/system/controlDict index fa327d6e5cad35edea2ebd090832edf0acc87fe0..eba8586290ba7001c275e44b365e444a3ecff966 100644 --- a/etc/templates/compressibleInflowOutflow/system/controlDict +++ b/etc/templates/compressibleInflowOutflow/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/system/fvSchemes b/etc/templates/compressibleInflowOutflow/system/fvSchemes index 90ad9e5233cb2245659c9fc704f9462a482ecd75..9526c6a2b08c8958da9f85542be4b2d8baf31934 100644 --- a/etc/templates/compressibleInflowOutflow/system/fvSchemes +++ b/etc/templates/compressibleInflowOutflow/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/system/fvSolution b/etc/templates/compressibleInflowOutflow/system/fvSolution index 08b9241ee8d52683ad0482d97f5bcbdf60159244..744029fb09a2c4eb83598adffbd3da52f20a6ac4 100644 --- a/etc/templates/compressibleInflowOutflow/system/fvSolution +++ b/etc/templates/compressibleInflowOutflow/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/system/meshQualityDict b/etc/templates/compressibleInflowOutflow/system/meshQualityDict index 0f376ab4b5c06c3132cb92babe7dd5ed28539e1a..fedcb5b906b00a68953190b37a65b34ec3a7f492 100644 --- a/etc/templates/compressibleInflowOutflow/system/meshQualityDict +++ b/etc/templates/compressibleInflowOutflow/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/system/snappyHexMeshDict b/etc/templates/compressibleInflowOutflow/system/snappyHexMeshDict index c1b33258928d1064f53b14270ae73397bbe72c5c..882c576d106a38fcb07c7f39ad977a564579e617 100644 --- a/etc/templates/compressibleInflowOutflow/system/snappyHexMeshDict +++ b/etc/templates/compressibleInflowOutflow/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/compressibleInflowOutflow/system/surfaceFeatureExtractDict b/etc/templates/compressibleInflowOutflow/system/surfaceFeatureExtractDict index f5f5e9010bd6e906f6cecbd9ea780bf04f9093e4..ef3a880754c1e9b60ecb2a3f88a7659747deef64 100644 --- a/etc/templates/compressibleInflowOutflow/system/surfaceFeatureExtractDict +++ b/etc/templates/compressibleInflowOutflow/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/0/U b/etc/templates/inflowOutflow/0/U index 12a6965549315a1f9e30ea4c98cb6e3e1520030f..b348caef5a8382338ce59b0523180c40981d88ae 100644 --- a/etc/templates/inflowOutflow/0/U +++ b/etc/templates/inflowOutflow/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/0/k b/etc/templates/inflowOutflow/0/k index daee8c90884a73f54c470e28da7d1834e0435803..e54edbda5fe00a15913dacd242af3c7ba2747d2a 100644 --- a/etc/templates/inflowOutflow/0/k +++ b/etc/templates/inflowOutflow/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/0/nut b/etc/templates/inflowOutflow/0/nut index 5a60c99a86fbf9059a112014a5f93fc30cbabc97..a15a0e9584f1d9c377ec0373f119dcbedebd44c3 100644 --- a/etc/templates/inflowOutflow/0/nut +++ b/etc/templates/inflowOutflow/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/0/omega b/etc/templates/inflowOutflow/0/omega index 7c5138b6f797ae72449a3d8974d7f5c2bc2985c0..5147b9890fbe752ca38175b82025efdcec4e4a3d 100644 --- a/etc/templates/inflowOutflow/0/omega +++ b/etc/templates/inflowOutflow/0/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/0/p b/etc/templates/inflowOutflow/0/p index 8667da8d37cf8698c4b0ba34d7d41d796557a163..9250266e2fe158afd2a069fa90e350dbca2b8ed3 100644 --- a/etc/templates/inflowOutflow/0/p +++ b/etc/templates/inflowOutflow/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/constant/transportProperties b/etc/templates/inflowOutflow/constant/transportProperties index 023ee0408d0e49ed1109d3b67f1a580e91c7f8e8..8e1218024966e4848688c3d459c93992bbf0e05a 100644 --- a/etc/templates/inflowOutflow/constant/transportProperties +++ b/etc/templates/inflowOutflow/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/constant/turbulenceProperties b/etc/templates/inflowOutflow/constant/turbulenceProperties index 8a72f93240738f341ca039b84997e4cef1af9217..221ee04103103e1ff57ba313284af80e6feb30cf 100644 --- a/etc/templates/inflowOutflow/constant/turbulenceProperties +++ b/etc/templates/inflowOutflow/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/system/blockMeshDict b/etc/templates/inflowOutflow/system/blockMeshDict index b295eb8c9fe29ce2a9b1d468ce4de539ecbaa9e4..ebe2993faa23ee011db65ee85c7141a3d1019d02 100644 --- a/etc/templates/inflowOutflow/system/blockMeshDict +++ b/etc/templates/inflowOutflow/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/system/controlDict b/etc/templates/inflowOutflow/system/controlDict index 8b9dc3810beae62ff838d77ef106ab16d7b5d56c..f4e1b95d8517f2a5fea36046fa4604623888dcbc 100644 --- a/etc/templates/inflowOutflow/system/controlDict +++ b/etc/templates/inflowOutflow/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/system/fvSchemes b/etc/templates/inflowOutflow/system/fvSchemes index f81d5c1a4c76f0f7ca7c99c9fc56ff0ace547438..b59fcc4d93a347531c7ab6c9ece3166f1dc08679 100644 --- a/etc/templates/inflowOutflow/system/fvSchemes +++ b/etc/templates/inflowOutflow/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/system/fvSolution b/etc/templates/inflowOutflow/system/fvSolution index 1e474e3173c814f4b235a9f7347cb0e346075dc4..a9ee56dfc839242d938196c0c0f980fbbc875d33 100644 --- a/etc/templates/inflowOutflow/system/fvSolution +++ b/etc/templates/inflowOutflow/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/system/meshQualityDict b/etc/templates/inflowOutflow/system/meshQualityDict index 0f376ab4b5c06c3132cb92babe7dd5ed28539e1a..fedcb5b906b00a68953190b37a65b34ec3a7f492 100644 --- a/etc/templates/inflowOutflow/system/meshQualityDict +++ b/etc/templates/inflowOutflow/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/system/snappyHexMeshDict b/etc/templates/inflowOutflow/system/snappyHexMeshDict index c1b33258928d1064f53b14270ae73397bbe72c5c..882c576d106a38fcb07c7f39ad977a564579e617 100644 --- a/etc/templates/inflowOutflow/system/snappyHexMeshDict +++ b/etc/templates/inflowOutflow/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflow/system/surfaceFeatureExtractDict b/etc/templates/inflowOutflow/system/surfaceFeatureExtractDict index f5f5e9010bd6e906f6cecbd9ea780bf04f9093e4..ef3a880754c1e9b60ecb2a3f88a7659747deef64 100644 --- a/etc/templates/inflowOutflow/system/surfaceFeatureExtractDict +++ b/etc/templates/inflowOutflow/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/0/U b/etc/templates/inflowOutflowRotating/0/U index 2930257a8c5c845a62df793658b17f930f4bdcf5..457cdd2210ac2ef6662937dcfcfe7e3429cba8cc 100644 --- a/etc/templates/inflowOutflowRotating/0/U +++ b/etc/templates/inflowOutflowRotating/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/0/k b/etc/templates/inflowOutflowRotating/0/k index daee8c90884a73f54c470e28da7d1834e0435803..e54edbda5fe00a15913dacd242af3c7ba2747d2a 100644 --- a/etc/templates/inflowOutflowRotating/0/k +++ b/etc/templates/inflowOutflowRotating/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/0/nut b/etc/templates/inflowOutflowRotating/0/nut index 5a60c99a86fbf9059a112014a5f93fc30cbabc97..a15a0e9584f1d9c377ec0373f119dcbedebd44c3 100644 --- a/etc/templates/inflowOutflowRotating/0/nut +++ b/etc/templates/inflowOutflowRotating/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/0/omega b/etc/templates/inflowOutflowRotating/0/omega index 7c5138b6f797ae72449a3d8974d7f5c2bc2985c0..5147b9890fbe752ca38175b82025efdcec4e4a3d 100644 --- a/etc/templates/inflowOutflowRotating/0/omega +++ b/etc/templates/inflowOutflowRotating/0/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/0/p b/etc/templates/inflowOutflowRotating/0/p index 8667da8d37cf8698c4b0ba34d7d41d796557a163..9250266e2fe158afd2a069fa90e350dbca2b8ed3 100644 --- a/etc/templates/inflowOutflowRotating/0/p +++ b/etc/templates/inflowOutflowRotating/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/constant/MRFProperties b/etc/templates/inflowOutflowRotating/constant/MRFProperties index edb26e2ce82cc179e7aff67543f807408dd54c14..6850bd50e4ef904c1276fa04268bfa8e71e778da 100644 --- a/etc/templates/inflowOutflowRotating/constant/MRFProperties +++ b/etc/templates/inflowOutflowRotating/constant/MRFProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/constant/dynamicMeshDict b/etc/templates/inflowOutflowRotating/constant/dynamicMeshDict index d48265ab4091ebac3828bb7bb8c757e557038c1e..a78fc0cf06740140febe0eb527d8e26d947fcf76 100644 --- a/etc/templates/inflowOutflowRotating/constant/dynamicMeshDict +++ b/etc/templates/inflowOutflowRotating/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/constant/rotatingZoneProperties b/etc/templates/inflowOutflowRotating/constant/rotatingZoneProperties index 37fe7049e55352d47642ffa87c5348bf78b91b03..b61487dc37cf1204d84fecdc70109f69d6f44bac 100644 --- a/etc/templates/inflowOutflowRotating/constant/rotatingZoneProperties +++ b/etc/templates/inflowOutflowRotating/constant/rotatingZoneProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/constant/transportProperties b/etc/templates/inflowOutflowRotating/constant/transportProperties index 023ee0408d0e49ed1109d3b67f1a580e91c7f8e8..8e1218024966e4848688c3d459c93992bbf0e05a 100644 --- a/etc/templates/inflowOutflowRotating/constant/transportProperties +++ b/etc/templates/inflowOutflowRotating/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/constant/turbulenceProperties b/etc/templates/inflowOutflowRotating/constant/turbulenceProperties index 8a72f93240738f341ca039b84997e4cef1af9217..221ee04103103e1ff57ba313284af80e6feb30cf 100644 --- a/etc/templates/inflowOutflowRotating/constant/turbulenceProperties +++ b/etc/templates/inflowOutflowRotating/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/system/blockMeshDict b/etc/templates/inflowOutflowRotating/system/blockMeshDict index aeafa6844364f9f0970123e021f51c3242bd4b5e..bbb067b1ac384062acc3bf2a669fe2fcccba66df 100644 --- a/etc/templates/inflowOutflowRotating/system/blockMeshDict +++ b/etc/templates/inflowOutflowRotating/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/system/blockMeshDict-box b/etc/templates/inflowOutflowRotating/system/blockMeshDict-box index b295eb8c9fe29ce2a9b1d468ce4de539ecbaa9e4..ebe2993faa23ee011db65ee85c7141a3d1019d02 100644 --- a/etc/templates/inflowOutflowRotating/system/blockMeshDict-box +++ b/etc/templates/inflowOutflowRotating/system/blockMeshDict-box @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/system/controlDict b/etc/templates/inflowOutflowRotating/system/controlDict index 8b9dc3810beae62ff838d77ef106ab16d7b5d56c..f4e1b95d8517f2a5fea36046fa4604623888dcbc 100644 --- a/etc/templates/inflowOutflowRotating/system/controlDict +++ b/etc/templates/inflowOutflowRotating/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/system/createBafflesDict b/etc/templates/inflowOutflowRotating/system/createBafflesDict index b10db3f3f6ea76a597795bcc6aeecff18b1dc5b9..bd78ef6ed0c05a2f68ed7679986699c24c27f74c 100644 --- a/etc/templates/inflowOutflowRotating/system/createBafflesDict +++ b/etc/templates/inflowOutflowRotating/system/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/system/fvSchemes b/etc/templates/inflowOutflowRotating/system/fvSchemes index f81d5c1a4c76f0f7ca7c99c9fc56ff0ace547438..b59fcc4d93a347531c7ab6c9ece3166f1dc08679 100644 --- a/etc/templates/inflowOutflowRotating/system/fvSchemes +++ b/etc/templates/inflowOutflowRotating/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/system/fvSolution b/etc/templates/inflowOutflowRotating/system/fvSolution index 1e474e3173c814f4b235a9f7347cb0e346075dc4..a9ee56dfc839242d938196c0c0f980fbbc875d33 100644 --- a/etc/templates/inflowOutflowRotating/system/fvSolution +++ b/etc/templates/inflowOutflowRotating/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/system/meshQualityDict b/etc/templates/inflowOutflowRotating/system/meshQualityDict index 0f376ab4b5c06c3132cb92babe7dd5ed28539e1a..fedcb5b906b00a68953190b37a65b34ec3a7f492 100644 --- a/etc/templates/inflowOutflowRotating/system/meshQualityDict +++ b/etc/templates/inflowOutflowRotating/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/system/snappyHexMeshDict b/etc/templates/inflowOutflowRotating/system/snappyHexMeshDict index 1b0a9e0e2485dad745fc61f1119322c296efd995..a2f42b152549336af0d3f973ba1b67c5e7bb5e86 100644 --- a/etc/templates/inflowOutflowRotating/system/snappyHexMeshDict +++ b/etc/templates/inflowOutflowRotating/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/etc/templates/inflowOutflowRotating/system/surfaceFeatureExtractDict b/etc/templates/inflowOutflowRotating/system/surfaceFeatureExtractDict index 60697349a1632701498a3e49698f134a20810b3d..7e20a5e16e6199a790e6ad9464d5f8418bfcaeee 100644 --- a/etc/templates/inflowOutflowRotating/system/surfaceFeatureExtractDict +++ b/etc/templates/inflowOutflowRotating/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/plugins/cfmesh b/plugins/cfmesh index 423540be95918c7f47377f8910347aeadefe2dfc..3ff8555514827646c34cacfe5f0f691e49cdbc96 160000 --- a/plugins/cfmesh +++ b/plugins/cfmesh @@ -1 +1 @@ -Subproject commit 423540be95918c7f47377f8910347aeadefe2dfc +Subproject commit 3ff8555514827646c34cacfe5f0f691e49cdbc96 diff --git a/src/Allwmake b/src/Allwmake index 3d2e2ac2224fc4dfd3afd2546b3c9c905797a801..3700e0b7e0dba045386ffb2f592bbe4b9667dc03 100755 --- a/src/Allwmake +++ b/src/Allwmake @@ -55,6 +55,7 @@ wmake $targetType meshTools wmake $targetType finiteArea wmake $targetType finiteVolume +wmake $targetType fused/finiteVolume wmake $targetType mesh/blockMesh wmake $targetType mesh/extrudeModel # Requires: blockMesh diff --git a/src/OpenFOAM/Make/files b/src/OpenFOAM/Make/files index f8df675d93d013772900428798bb6ff33d568eb8..b19173cddc1f881a3ce7d63b9ba4e533f3c76ec7 100644 --- a/src/OpenFOAM/Make/files +++ b/src/OpenFOAM/Make/files @@ -715,10 +715,15 @@ pointMeshMapper = $(pointMesh)/pointMeshMapper $(pointMeshMapper)/pointMapper.C $(pointMeshMapper)/pointPatchMapper.C +pointMeshTools = $(pointMesh)/pointMeshTools +$(pointMeshTools)/pointMeshTools.C + pointPatches = $(pointMesh)/pointPatches $(pointPatches)/pointPatch/pointPatch.C +$(pointPatches)/pointPatch/pointPatchNew.C $(pointPatches)/facePointPatch/facePointPatch.C $(pointPatches)/facePointPatch/facePointPatchNew.C +$(pointPatches)/meshPointPatch/meshPointPatch.C basicPointPatches = $(pointPatches)/basic $(basicPointPatches)/coupled/coupledPointPatch.C @@ -792,6 +797,7 @@ $(Fields)/fieldTypes.C pointPatchFields = fields/pointPatchFields $(pointPatchFields)/pointPatchField/pointPatchFieldBase.C $(pointPatchFields)/pointPatchField/pointPatchFields.C +$(pointPatchFields)/pointPatchField/pointConstraint/pointConstraint.C basicPointPatchFields = $(pointPatchFields)/basic $(basicPointPatchFields)/calculated/calculatedPointPatchFields.C diff --git a/src/OpenFOAM/algorithms/indexedOctree/indexedOctree.C b/src/OpenFOAM/algorithms/indexedOctree/indexedOctree.C index 56aaaf48385e6bd6827f9f28b7b9a22d9feaa538..10cb418a8a4e5f335ded59399667a6759a7a33ab 100644 --- a/src/OpenFOAM/algorithms/indexedOctree/indexedOctree.C +++ b/src/OpenFOAM/algorithms/indexedOctree/indexedOctree.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2016-2022 OpenCFD Ltd. + Copyright (C) 2016-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -2661,7 +2661,7 @@ Foam::label Foam::indexedOctree<Type>::findInside(const point& sample) const // Need to check for the presence of content, in-case the node is empty if (isContent(contentIndex)) { - labelList indices = contents_[getContent(contentIndex)]; + const labelList& indices = contents_[getContent(contentIndex)]; forAll(indices, elemI) { diff --git a/src/OpenFOAM/db/IOobjects/CompactIOField/CompactIOField.C b/src/OpenFOAM/db/IOobjects/CompactIOField/CompactIOField.C index 8f5a6c2d9789db56a14b93b00d408f4861464f47..c0da5cd9bf9fb7cc68184efdca3f7cfeecadc783 100644 --- a/src/OpenFOAM/db/IOobjects/CompactIOField/CompactIOField.C +++ b/src/OpenFOAM/db/IOobjects/CompactIOField/CompactIOField.C @@ -34,50 +34,38 @@ License template<class T, class BaseType> bool Foam::CompactIOField<T, BaseType>::readIOcontents(bool readOnProc) { - if (readOpt() == IOobject::MUST_READ) + if (isReadRequired() || (isReadOptional() && headerOk())) { - // Reading - } - else if (isReadOptional()) - { - if (!headerOk()) - { - readOnProc = false; - } - } - else - { - return false; - } - + // Do reading + Istream& is = readStream(word::null, readOnProc); - // Do reading - Istream& is = readStream(word::null, readOnProc); - - if (readOnProc) - { - if (headerClassName() == IOField<T>::typeName) + if (readOnProc) { - is >> static_cast<Field<T>&>(*this); - close(); - } - else if (headerClassName() == typeName) - { - is >> *this; - close(); - } - else - { - FatalIOErrorInFunction(is) - << "Unexpected class name " << headerClassName() - << " expected " << typeName - << " or " << IOField<T>::typeName << nl - << " while reading object " << name() - << exit(FatalIOError); + if (headerClassName() == IOField<T>::typeName) + { + is >> static_cast<Field<T>&>(*this); + close(); + } + else if (headerClassName() == typeName) + { + is >> *this; + close(); + } + else + { + FatalIOErrorInFunction(is) + << "Unexpected class name " << headerClassName() + << " expected " << typeName + << " or " << IOField<T>::typeName << nl + << " while reading object " << name() + << exit(FatalIOError); + } } + + return true; } - return true; + return false; } diff --git a/src/OpenFOAM/db/IOobjects/IOField/IOField.C b/src/OpenFOAM/db/IOobjects/IOField/IOField.C index 89b3d2f8488267fcb08da254d7254fc4b4040323..e3588f81f0c8569514863c5a7946b8c49ab6aac2 100644 --- a/src/OpenFOAM/db/IOobjects/IOField/IOField.C +++ b/src/OpenFOAM/db/IOobjects/IOField/IOField.C @@ -33,32 +33,20 @@ License template<class Type> bool Foam::IOField<Type>::readIOcontents(bool readOnProc) { - if (isReadRequired()) + if (isReadRequired() || (isReadOptional() && headerOk())) { - // Reading - } - else if (isReadOptional()) - { - if (!headerOk()) + // Do reading + Istream& is = readStream(typeName, readOnProc); + + if (readOnProc) { - readOnProc = false; + is >> *this; } - } - else - { - return false; + close(); + return true; } - - // Do reading - Istream& is = readStream(typeName, readOnProc); - - if (readOnProc) - { - is >> *this; - } - close(); - return true; + return false; } diff --git a/src/OpenFOAM/db/IOstreams/Pstreams/PstreamBuffers.C b/src/OpenFOAM/db/IOstreams/Pstreams/PstreamBuffers.C index 37459b1abdaa3a3572073cbf87f7e252f4a89f11..391c094beace15fa281aef2584b4234df1a44691 100644 --- a/src/OpenFOAM/db/IOstreams/Pstreams/PstreamBuffers.C +++ b/src/OpenFOAM/db/IOstreams/Pstreams/PstreamBuffers.C @@ -45,6 +45,11 @@ registerOptSwitch Foam::PstreamBuffers::algorithm ); +namespace Foam +{ + defineTypeNameAndDebug(PstreamBuffers, 0); +} + // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // @@ -231,6 +236,12 @@ void Foam::PstreamBuffers::finalExchange labelList& recvSizes ) { + DebugPoutInFunction + << "tag:" << tag_ + << " comm:" << comm_ + << " nProcs:" << nProcs_ + << endl; + initFinalExchange(); if (commsType_ == UPstream::commsTypes::nonBlocking) @@ -303,13 +314,25 @@ Foam::PstreamBuffers::PstreamBuffers sendBuffers_(nProcs_), recvBuffers_(nProcs_), recvPositions_(nProcs_, Zero) -{} +{ + DebugPoutInFunction + << "tag:" << tag_ + << " comm:" << comm_ + << " nProcs:" << nProcs_ + << endl; +} // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // Foam::PstreamBuffers::~PstreamBuffers() { + DebugPoutInFunction + << "tag:" << tag_ + << " comm:" << comm_ + << " nProcs:" << nProcs_ + << endl; + // Check that all data has been consumed. forAll(recvBuffers_, proci) { @@ -321,6 +344,7 @@ Foam::PstreamBuffers::~PstreamBuffers() FatalErrorInFunction << "Message from processor " << proci << " Only consumed " << pos << " of " << len << " bytes" << nl + << " comm " << comm_ << " tag " << tag_ << nl << Foam::abort(FatalError); } } @@ -623,6 +647,12 @@ Foam::PstreamBuffers::peekRecvData(const label proci) const void Foam::PstreamBuffers::finishedSends(const bool wait) { + DebugPoutInFunction + << "tag:" << tag_ + << " comm:" << comm_ + << " nProcs:" << nProcs_ + << endl; + labelList recvSizes; finalExchange(modeOption::DEFAULT, wait, recvSizes); } @@ -630,6 +660,12 @@ void Foam::PstreamBuffers::finishedSends(const bool wait) void Foam::PstreamBuffers::finishedSendsNBX(const bool wait) { + DebugPoutInFunction + << "tag:" << tag_ + << " comm:" << comm_ + << " nProcs:" << nProcs_ + << endl; + labelList recvSizes; finalExchange(modeOption::NBX_PEX, wait, recvSizes); } @@ -641,6 +677,12 @@ void Foam::PstreamBuffers::finishedSends const bool wait ) { + DebugPoutInFunction + << "tag:" << tag_ + << " comm:" << comm_ + << " nProcs:" << nProcs_ + << endl; + // Resize for copying back recvSizes.resize_nocopy(sendBuffers_.size()); diff --git a/src/OpenFOAM/db/IOstreams/Pstreams/PstreamBuffers.H b/src/OpenFOAM/db/IOstreams/Pstreams/PstreamBuffers.H index ed40029c9329aef3002343c72f62477bc3adc218..97cb68fe9acb624bb1d0814520c64f39effc8a03 100644 --- a/src/OpenFOAM/db/IOstreams/Pstreams/PstreamBuffers.H +++ b/src/OpenFOAM/db/IOstreams/Pstreams/PstreamBuffers.H @@ -248,6 +248,10 @@ class PstreamBuffers public: + // Declare name of the class and its debug switch + ClassName("PstreamBuffers"); + + // Static Data //- Preferred exchange algorithm (may change or be removed in future) diff --git a/src/OpenFOAM/db/functionObjects/writeFile/writeFile.C b/src/OpenFOAM/db/functionObjects/writeFile/writeFile.C index 0785b8f9b60e6d157c0540f52e5e72943baad564..5ff3f56a81353a859098b66b9c011379d3c63445 100644 --- a/src/OpenFOAM/db/functionObjects/writeFile/writeFile.C +++ b/src/OpenFOAM/db/functionObjects/writeFile/writeFile.C @@ -98,7 +98,7 @@ Foam::autoPtr<Foam::OFstream> Foam::functionObjects::writeFile::newFile mkDir(outputDir); - osPtr.reset(new OFstream(outputDir/(fName.name() + ".dat"))); + osPtr.reset(new OFstream(outputDir/(fName.name() + ext_))); if (!osPtr->good()) { @@ -137,13 +137,13 @@ Foam::autoPtr<Foam::OFstream> Foam::functionObjects::writeFile::newFileAtTime word fName(name); // Check if file already exists - IFstream is(outputDir/(fName + ".dat")); + IFstream is(outputDir/(fName + ext_)); if (is.good()) { fName = fName + "_" + timeName; } - osPtr.reset(new OFstream(outputDir/(fName + ".dat"))); + osPtr.reset(new OFstream(outputDir/(fName + ext_))); if (!osPtr->good()) { @@ -198,7 +198,8 @@ Foam::functionObjects::writeFile::writeFile(const writeFile& wf) updateHeader_(wf.updateHeader_), writtenHeader_(wf.writtenHeader_), useUserTime_(wf.useUserTime_), - startTime_(wf.startTime_) + startTime_(wf.startTime_), + ext_(wf.ext_) {} @@ -207,7 +208,8 @@ Foam::functionObjects::writeFile::writeFile const objectRegistry& obr, const fileName& prefix, const word& name, - const bool writeToFile + const bool writeToFile, + const string& ext ) : fileObr_(obr), @@ -219,7 +221,8 @@ Foam::functionObjects::writeFile::writeFile updateHeader_(true), writtenHeader_(false), useUserTime_(true), - startTime_(obr.time().startTime().value()) + startTime_(obr.time().startTime().value()), + ext_(ext) {} @@ -229,17 +232,13 @@ Foam::functionObjects::writeFile::writeFile const fileName& prefix, const word& name, const dictionary& dict, - const bool writeToFile + const bool writeToFile, + const string& ext ) : - writeFile(obr, prefix, name, writeToFile) + writeFile(obr, prefix, name, writeToFile, ext) { read(dict); - - if (writeToFile_) - { - filePtr_ = newFileAtStartTime(fileName_); - } } @@ -268,6 +267,13 @@ bool Foam::functionObjects::writeFile::read(const dictionary& dict) } +const Foam::string& Foam::functionObjects::writeFile::setExt(const string& ext) +{ + ext_ = ext; + return ext_; +} + + Foam::OFstream& Foam::functionObjects::writeFile::file() { if (!writeToFile_) @@ -275,10 +281,9 @@ Foam::OFstream& Foam::functionObjects::writeFile::file() return Snull; } - if (!filePtr_) + if (!filePtr_ && writeToFile_) { - FatalErrorInFunction - << "File pointer not allocated\n"; + filePtr_ = newFileAtStartTime(fileName_); } return *filePtr_; diff --git a/src/OpenFOAM/db/functionObjects/writeFile/writeFile.H b/src/OpenFOAM/db/functionObjects/writeFile/writeFile.H index 0fee04364f834dbbdbfb0301231f469a012fe4a4..307ae3f2ea8875a63d430457de61c61a34f79543 100644 --- a/src/OpenFOAM/db/functionObjects/writeFile/writeFile.H +++ b/src/OpenFOAM/db/functionObjects/writeFile/writeFile.H @@ -122,6 +122,9 @@ protected: //- Start time value scalar startTime_; + //- File extension; default = .dat + string ext_; + // Protected Member Functions @@ -208,7 +211,8 @@ public: const objectRegistry& obr, const fileName& prefix, const word& name = "undefined", - const bool writeToFile = true + const bool writeToFile = true, + const string& ext = ".dat" ); //- Construct from objectRegistry, prefix, fileName @@ -219,7 +223,8 @@ public: const fileName& prefix, const word& name, const dictionary& dict, - const bool writeToFile = true + const bool writeToFile = true, + const string& ext = ".dat" ); //- Construct copy @@ -235,6 +240,9 @@ public: //- Read virtual bool read(const dictionary& dict); + //- Set extension + virtual const string& setExt(const string& ext); + //- Return access to the file (if only 1) virtual OFstream& file(); diff --git a/src/OpenFOAM/db/objectRegistry/objectRegistry.C b/src/OpenFOAM/db/objectRegistry/objectRegistry.C index 2264011936b0a80830dbcb437b02178cb7ae79d8..2978baad8552706fe486c6de8673f6d104ddb655 100644 --- a/src/OpenFOAM/db/objectRegistry/objectRegistry.C +++ b/src/OpenFOAM/db/objectRegistry/objectRegistry.C @@ -519,7 +519,7 @@ const Foam::regIOobject* Foam::objectRegistry::cfindIOobject { return iter.val(); } - else if (recursive && this->parentNotTime()) + else if (recursive && !this->isTimeDb()) { return parent_.cfindIOobject(name, recursive); } diff --git a/src/OpenFOAM/db/objectRegistry/objectRegistryTemplates.C b/src/OpenFOAM/db/objectRegistry/objectRegistryTemplates.C index dc58e46a2cc3b39d96dfe3dfe6da26cfec66341d..637460ea5be3a174c6a97f9fc3774c1e14eb2d5d 100644 --- a/src/OpenFOAM/db/objectRegistry/objectRegistryTemplates.C +++ b/src/OpenFOAM/db/objectRegistry/objectRegistryTemplates.C @@ -620,7 +620,7 @@ const Type& Foam::objectRegistry::lookupObject << ", found a " << (*iter)->type() << nl << exit(FatalError); } - else if (recursive && this->parentNotTime()) + else if (recursive && !this->isTimeDb()) { return parent_.lookupObject<Type>(name, recursive); } diff --git a/src/OpenFOAM/fields/pointPatchFields/basic/basicSymmetry/basicSymmetryPointPatchField.H b/src/OpenFOAM/fields/pointPatchFields/basic/basicSymmetry/basicSymmetryPointPatchField.H index d132cc222bd608328fb09ea2811577bb98428d59..2f358e786f43287a1973214fd75f242a12525fc6 100644 --- a/src/OpenFOAM/fields/pointPatchFields/basic/basicSymmetry/basicSymmetryPointPatchField.H +++ b/src/OpenFOAM/fields/pointPatchFields/basic/basicSymmetry/basicSymmetryPointPatchField.H @@ -34,8 +34,8 @@ SourceFiles \*---------------------------------------------------------------------------*/ -#ifndef basicSymmetryPointPatchField_H -#define basicSymmetryPointPatchField_H +#ifndef Foam_basicSymmetryPointPatchField_H +#define Foam_basicSymmetryPointPatchField_H #include "pointPatchField.H" #include "symmetryPointPatch.H" @@ -54,7 +54,6 @@ class basicSymmetryPointPatchField : public pointPatchField<Type> { - public: // Constructors @@ -83,6 +82,12 @@ public: const pointPatchFieldMapper& ); + //- Default copy construct + basicSymmetryPointPatchField + ( + const basicSymmetryPointPatchField<Type>& + ) = default; + //- Construct as copy setting internal field reference basicSymmetryPointPatchField ( diff --git a/src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointConstraint/pointConstraint.C b/src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointConstraint/pointConstraint.C new file mode 100644 index 0000000000000000000000000000000000000000..d1ab3d47ffd7b1f55768ca45a446170fe96180e6 --- /dev/null +++ b/src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointConstraint/pointConstraint.C @@ -0,0 +1,37 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "pointConstraint.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ + const char* const pTraits<pointConstraint>::typeName = "pointConstraint"; +} + +// ************************************************************************* // diff --git a/src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointConstraint/pointConstraint.H b/src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointConstraint/pointConstraint.H index 932e44ed9a9356d692bcc4c3d7ea115d666c210c..d9adbf158213549ea1265357085bfe0c45cab0aa 100644 --- a/src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointConstraint/pointConstraint.H +++ b/src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointConstraint/pointConstraint.H @@ -73,6 +73,9 @@ public: //- Construct from components inline pointConstraint(const Tuple2<label, vector>&); + //- Construct from components + inline pointConstraint(const label count, const vector& n); + //- Construct from Istream inline pointConstraint(Istream&); @@ -97,8 +100,19 @@ public: }; +//! List of pointConstraint +typedef List<pointConstraint> pointConstraintList; + + // * * * * * * * * * * * * * * * * * Traits * * * * * * * * * * * * * * * * // +//- Template specialisation for pTraits\<pointConstraint\> to enable IO +template<> +struct pTraits<pointConstraint> +{ + static const char* const typeName; +}; + //- Contiguous data for pointConstraint template<> struct is_contiguous<pointConstraint> : std::true_type {}; diff --git a/src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointConstraint/pointConstraintI.H b/src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointConstraint/pointConstraintI.H index c6c1b74dfbcd500460168139a3a08066d39cbf70..324165fe333da25c4738d6f8af65477a63c0a259 100644 --- a/src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointConstraint/pointConstraintI.H +++ b/src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointConstraint/pointConstraintI.H @@ -39,6 +39,16 @@ inline Foam::pointConstraint::pointConstraint(const Tuple2<label, vector>& pc) {} +inline Foam::pointConstraint::pointConstraint +( + const label count, + const vector& n +) +: + Tuple2<label, vector>(count, n) +{} + + inline Foam::pointConstraint::pointConstraint(Istream& is) : Tuple2<label, vector>(is) diff --git a/src/OpenFOAM/include/createNamedPointMesh.H b/src/OpenFOAM/include/createNamedPointMesh.H new file mode 100644 index 0000000000000000000000000000000000000000..7c1c4265b7fc200331afe908c073f1a8c9ead467 --- /dev/null +++ b/src/OpenFOAM/include/createNamedPointMesh.H @@ -0,0 +1,10 @@ +Foam::Info + << "Create pointMesh for time = " + << runTime.timeName() << Foam::nl << Foam::endl; + +// Register pointMesh on the database +const Foam::pointMesh& pMesh = pointMesh::New +( + mesh, + Foam::IOobject::READ_IF_PRESENT +); diff --git a/src/OpenFOAM/interpolations/interpolateSplineXY/interpolateSplineXY.C b/src/OpenFOAM/interpolations/interpolateSplineXY/interpolateSplineXY.C index a322ff52affbf96377241d8012dc73f67ddc0f6a..65e9318ab30f99fb7baf62d2061246889540b890 100644 --- a/src/OpenFOAM/interpolations/interpolateSplineXY/interpolateSplineXY.C +++ b/src/OpenFOAM/interpolations/interpolateSplineXY/interpolateSplineXY.C @@ -6,6 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011 OpenFOAM Foundation + Copyright (C) 2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -60,11 +61,11 @@ Type Foam::interpolateSplineXY label n = xOld.size(); // early exit if out of bounds or only one value - if (n == 1 || x < xOld[0]) + if (n == 1 || x <= xOld[0]) { return yOld[0]; } - if (x > xOld[n - 1]) + if (x >= xOld[n - 1]) { return yOld[n - 1]; } diff --git a/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduAddressing.C b/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduAddressing.C index 91180115b7f2c568dc0fb042fbb525349dfce927..81b80f0efb522c831d7070b416b1e094fee38a01 100644 --- a/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduAddressing.C +++ b/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduAddressing.C @@ -169,6 +169,20 @@ void Foam::lduAddressing::calcLosortStart() const } +void Foam::lduAddressing::calcLoCSR() const +{ + if (lowerCSRAddrPtr_) + { + FatalErrorInFunction + << "lowerCSRAddr already calculated" + << abort(FatalError); + } + + lowerCSRAddrPtr_ = std::make_unique<labelList>(lowerAddr().size()); + map(lowerAddr(), *lowerCSRAddrPtr_); +} + + // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // const Foam::labelUList& Foam::lduAddressing::losortAddr() const @@ -204,11 +218,23 @@ const Foam::labelUList& Foam::lduAddressing::losortStartAddr() const } +const Foam::labelUList& Foam::lduAddressing::lowerCSRAddr() const +{ + if (!lowerCSRAddrPtr_) + { + calcLoCSR(); + } + + return *lowerCSRAddrPtr_; +} + + void Foam::lduAddressing::clearOut() { losortPtr_.reset(nullptr); ownerStartPtr_.reset(nullptr); losortStartPtr_.reset(nullptr); + lowerCSRAddrPtr_.reset(nullptr); } diff --git a/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduAddressing.H b/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduAddressing.H index b610a6539d4b8805519015220ea80aa4dc573e4d..3c571088972e597218bdf6b667c3572300edab9d 100644 --- a/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduAddressing.H +++ b/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduAddressing.H @@ -91,6 +91,10 @@ Description list. Thus, for every point the losort start gives the address of the first face to neighbour this point. + Instead of using losort to lookup the face and then using the lowerAddr + to find the neighbour cell one can also directly lookup the neighbour cell + using the lowerCSRAddr (upperAddr is already in CSR order). + SourceFiles lduAddressing.C @@ -131,6 +135,9 @@ class lduAddressing //- Losort start addressing mutable std::unique_ptr<labelList> losortStartPtr_; + //- Lower addressing + mutable std::unique_ptr<labelList> lowerCSRAddrPtr_; + // Private Member Functions @@ -143,6 +150,9 @@ class lduAddressing //- Calculate losort start void calcLosortStart() const; + //- Calculate CSR lower addressing + void calcLoCSR() const; + public: @@ -203,11 +213,22 @@ public: //- Return losort start addressing const labelUList& losortStartAddr() const; + //- Return CSR addressing + const labelUList& lowerCSRAddr() const; + //- Return off-diagonal index given owner and neighbour label label triIndex(const label a, const label b) const; //- Calculate bandwidth and profile of addressing Tuple2<label, scalar> band() const; + + //- Helper to convert lower addressing & data into CSR format + template<class Type> + void map + ( + const UList<Type>& faceVals, + List<Type>& vals + ) const; }; @@ -217,6 +238,12 @@ public: // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +#ifdef NoRepository + #include "lduAddressingTemplates.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + #endif // ************************************************************************* // diff --git a/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduAddressingTemplates.C b/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduAddressingTemplates.C new file mode 100644 index 0000000000000000000000000000000000000000..93cd848534dcb02066eb6de60f6587e046a05185 --- /dev/null +++ b/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduAddressingTemplates.C @@ -0,0 +1,60 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "lduAddressing.H" + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +template<class Type> +void Foam::lduAddressing::map +( + const UList<Type>& faceVals, + List<Type>& vals +) const +{ + const auto& offsets = losortStartAddr(); + const auto& indexToFace = losortAddr(); + + const label n = offsets.size()-1; + + vals.resize_nocopy(faceVals.size()); + + for (label celli = 0; celli < n; celli++) + { + const label start = offsets[celli]; + const label end = offsets[celli+1]; + + for (label i = start; i < end; i++) + { + const label facei = indexToFace[i]; + vals[i] = faceVals[facei]; + } + } +} + + +// ************************************************************************* // diff --git a/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrix.C b/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrix.C index e2767c6b5262da32109a81c1fd087ccee9b71d3e..8862b3a368c24bc2f4f170eb5a715cde7f15631c 100644 --- a/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrix.C +++ b/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrix.C @@ -82,6 +82,13 @@ Foam::lduMatrix::lduMatrix(const lduMatrix& A) { lowerPtr_ = std::make_unique<scalarField>(*(A.lowerPtr_)); } + + if (A.lowerCSRPtr_) + { + lowerCSRPtr_ = std::make_unique<scalarField>(*(A.lowerCSRPtr_)); + } + + // No need to copy work } @@ -90,7 +97,9 @@ Foam::lduMatrix::lduMatrix(lduMatrix&& A) lduMesh_(A.lduMesh_), diagPtr_(std::move(A.diagPtr_)), lowerPtr_(std::move(A.lowerPtr_)), - upperPtr_(std::move(A.upperPtr_)) + upperPtr_(std::move(A.upperPtr_)), + lowerCSRPtr_(std::move(A.lowerCSRPtr_)), + workPtr_(std::move(A.workPtr_)) {} @@ -103,6 +112,8 @@ Foam::lduMatrix::lduMatrix(lduMatrix& A, bool reuse) diagPtr_ = std::move(A.diagPtr_); upperPtr_ = std::move(A.upperPtr_); lowerPtr_ = std::move(A.lowerPtr_); + lowerCSRPtr_ = std::move(A.lowerCSRPtr_); + workPtr_ = std::move(A.workPtr_); } else { @@ -121,6 +132,13 @@ Foam::lduMatrix::lduMatrix(lduMatrix& A, bool reuse) { lowerPtr_ = std::make_unique<scalarField>(*(A.lowerPtr_)); } + + // Note: no real need to keep lowerCSR except we use it (hasLowerCSR()) + // to trigger certain actions + if (A.lowerCSRPtr_) + { + lowerCSRPtr_ = std::make_unique<scalarField>(*(A.lowerCSRPtr_)); + } } } @@ -129,9 +147,9 @@ Foam::lduMatrix::lduMatrix(const lduMesh& mesh, Istream& is) : lduMesh_(mesh) { - bool withLower, withDiag, withUpper; + bool withLower, withDiag, withUpper, withLowerCSR; - is >> withLower >> withDiag >> withUpper; + is >> withLower >> withDiag >> withUpper >> withLowerCSR; if (withLower) { @@ -145,6 +163,20 @@ Foam::lduMatrix::lduMatrix(const lduMesh& mesh, Istream& is) { upperPtr_ = std::make_unique<scalarField>(is); } + if (withLowerCSR) + { + // Check if it has been sent over or we need to construct it. We need + // to set the lowerCSRPtr since it determines behaviour. + if (withLower) + { + // Construct from lower + (void)lowerCSR(); + } + else + { + lowerCSRPtr_ = std::make_unique<scalarField>(is); + } + } } @@ -237,6 +269,9 @@ Foam::scalarField& Foam::lduMatrix::upper() } else { + // no lowerPtr so any lowerCSR was constructed from upper + lowerCSRPtr_.reset(nullptr); + upperPtr_ = std::make_unique<scalarField> ( @@ -260,6 +295,9 @@ Foam::scalarField& Foam::lduMatrix::upper(label nCoeffs) } else { + // no lowerPtr so any lowerCSR was constructed from upper + lowerCSRPtr_.reset(nullptr); + // if (nCoeffs < 0) // { // nCoeffs = lduAddr().lowerAddr().size(); @@ -296,6 +334,8 @@ Foam::scalarField& Foam::lduMatrix::lower() { if (!lowerPtr_) { + lowerCSRPtr_.reset(nullptr); + if (upperPtr_) { lowerPtr_ = std::make_unique<scalarField>(*upperPtr_); @@ -319,6 +359,8 @@ Foam::scalarField& Foam::lduMatrix::lower(label nCoeffs) { if (!lowerPtr_) { + lowerCSRPtr_.reset(nullptr); + if (upperPtr_) { lowerPtr_ = std::make_unique<scalarField>(*upperPtr_); @@ -338,6 +380,86 @@ Foam::scalarField& Foam::lduMatrix::lower(label nCoeffs) } +const Foam::scalarField& Foam::lduMatrix::lowerCSR() const +{ + if (!lowerCSRPtr_) + { + const label nLower = lduAddr().losortAddr().size(); + + lowerCSRPtr_ = std::make_unique<scalarField>(nLower); + + if (lowerPtr_) + { + lduAddr().map(*lowerPtr_, *lowerCSRPtr_); + } + else if (upperPtr_) + { + lduAddr().map(*upperPtr_, *lowerCSRPtr_); + } + else + { + FatalErrorInFunction + << "lowerPtr_ and upperPtr_ unallocated" + << abort(FatalError); + } + } + + return *lowerCSRPtr_; +} + + +Foam::scalarField& Foam::lduMatrix::lowerCSR() +{ + if (!lowerCSRPtr_) + { + const label nLower = lduAddr().losortAddr().size(); + + lowerCSRPtr_ = std::make_unique<scalarField>(nLower); + + if (lowerPtr_) + { + lduAddr().map(*lowerPtr_, *lowerCSRPtr_); + } + else if (upperPtr_) + { + lduAddr().map(*upperPtr_, *lowerCSRPtr_); + } + else + { + FatalErrorInFunction + << "lowerPtr_ and upperPtr_ unallocated" + << abort(FatalError); + } + } + + return *lowerCSRPtr_; +} + + +Foam::solveScalarField& Foam::lduMatrix::work(label size) const +{ + if (!workPtr_ || workPtr_->size() != size) + { + workPtr_ = std::make_unique<solveScalarField>(size, Foam::zero{}); + } + + return *workPtr_; +} + + +const Foam::solveScalarField& Foam::lduMatrix::work() const +{ + if (!workPtr_) + { + FatalErrorInFunction + << "workPtr_ unallocated" + << abort(FatalError); + } + + return *workPtr_; +} + + void Foam::lduMatrix::setResidualField ( const scalarField& residual, @@ -389,7 +511,8 @@ Foam::Ostream& Foam::operator<<(Ostream& os, const lduMatrix& mat) { os << mat.hasLower() << token::SPACE << mat.hasDiag() << token::SPACE - << mat.hasUpper() << token::SPACE; + << mat.hasUpper() << token::SPACE + << mat.hasLowerCSR() << token::SPACE; if (mat.hasLower()) { @@ -406,6 +529,12 @@ Foam::Ostream& Foam::operator<<(Ostream& os, const lduMatrix& mat) os << mat.upper(); } + if (mat.hasLowerCSR() && !mat.hasLower()) + { + // Only send over if can not be reconstructed locally + os << mat.lowerCSR(); + } + os.check(FUNCTION_NAME); return os; @@ -422,7 +551,9 @@ Foam::Ostream& Foam::operator<< os << "Lower:" << Switch::name(mat.hasLower()) << " Diag:" << Switch::name(mat.hasDiag()) - << " Upper:" << Switch::name(mat.hasUpper()) << endl; + << " Upper:" << Switch::name(mat.hasUpper()) + << " lowerCSR:" << Switch::name(mat.hasLowerCSR()) + << endl; if (mat.hasLower()) { diff --git a/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrix.H b/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrix.H index a4dd1b0601732f8457b896258cc32025dcb2e88a..269c7caec67f2fe97824cc4222a29745b86d3762 100644 --- a/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrix.H +++ b/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrix.H @@ -99,6 +99,12 @@ class lduMatrix //- Off-diagonal coefficients (not including interfaces) std::unique_ptr<scalarField> upperPtr_; + //- Off-diagonal coefficients (not including interfaces) in CSR ordering + mutable std::unique_ptr<scalarField> lowerCSRPtr_; + + //- Work space + mutable std::unique_ptr<solveScalarField> workPtr_; + public: @@ -671,6 +677,21 @@ public: scalarField& lower(label nCoeffs); + // CSR + + bool hasLowerCSR() const noexcept { return bool(lowerCSRPtr_); } + + const scalarField& lowerCSR() const; + + scalarField& lowerCSR(); + + //- Work array + const solveScalarField& work() const; + + //- Work array + solveScalarField& work(label size) const; + + // Characteristics //- The matrix type (empty, diagonal, symmetric, ...) @@ -683,19 +704,19 @@ public: //- Matrix has diagonal only bool diagonal() const noexcept { - return (diagPtr_ && !lowerPtr_ && !upperPtr_); + return (diagPtr_ && !lowerPtr_ && !lowerCSRPtr_ && !upperPtr_); } //- Matrix is symmetric bool symmetric() const noexcept { - return (diagPtr_ && !lowerPtr_ && upperPtr_); + return (diagPtr_ && !(lowerPtr_ || lowerCSRPtr_) && upperPtr_); } //- Matrix is asymmetric (ie, full) bool asymmetric() const noexcept { - return (diagPtr_ && lowerPtr_ && upperPtr_); + return (diagPtr_ && (lowerPtr_ || lowerCSRPtr_) && upperPtr_); } diff --git a/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrixATmul.C b/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrixATmul.C index 91f6f450272ca8d4d5f64f71087bbc688e670ed8..8a18bdae6d1924f82a0a4ddb877f950aa17d1970 100644 --- a/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrixATmul.C +++ b/src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrixATmul.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2017-2019 OpenCFD Ltd. + Copyright (C) 2017-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -43,6 +43,8 @@ void Foam::lduMatrix::Amul const direction cmpt ) const { + const auto& addr = lduAddr(); + solveScalar* __restrict__ ApsiPtr = Apsi.begin(); const solveScalarField& psi = tpsi(); @@ -50,8 +52,8 @@ void Foam::lduMatrix::Amul const scalar* const __restrict__ diagPtr = diag().begin(); - const label* const __restrict__ uPtr = lduAddr().upperAddr().begin(); - const label* const __restrict__ lPtr = lduAddr().lowerAddr().begin(); + const label* const __restrict__ uPtr = addr.upperAddr().begin(); + const label* const __restrict__ lPtr = addr.lowerAddr().begin(); const scalar* const __restrict__ upperPtr = upper().begin(); const scalar* const __restrict__ lowerPtr = lower().begin(); @@ -70,18 +72,68 @@ void Foam::lduMatrix::Amul ); const label nCells = diag().size(); - for (label cell=0; cell<nCells; cell++) + + if (hasLowerCSR()) { - ApsiPtr[cell] = diagPtr[cell]*psiPtr[cell]; - } + // Use cell-based looping + if (debug == 2) PoutInFunction<< "cell-based looping" << endl; + const label* const __restrict__ oStartPtr = + addr.ownerStartAddr().begin(); + const label* const __restrict__ loStartPtr = + addr.losortStartAddr().begin(); + const label* const __restrict__ lcsrPtr = + addr.lowerCSRAddr().begin(); - const label nFaces = upper().size(); + // Note: lowerCSR constructed from lower if available, upper otherwise + // so is handling symmetric() + const scalar* const __restrict__ lowercsrPtr = lowerCSR().begin(); - for (label face=0; face<nFaces; face++) + for (label cell=0; cell<nCells; cell++) + { + auto& val = ApsiPtr[cell]; + + val = diagPtr[cell]*psiPtr[cell]; + + // Add lower contributions + { + const label start = loStartPtr[cell]; + const label end = loStartPtr[cell+1]; + + for (label i = start; i < end; i++) + { + const label nbrCell = lcsrPtr[i]; + val += lowercsrPtr[i]*psiPtr[nbrCell]; + } + } + // Add upper contributions + { + const label start = oStartPtr[cell]; + const label end = oStartPtr[cell+1]; + + for (label i = start; i < end; i++) + { + const label nbrCell = uPtr[i]; + val += upperPtr[i]*psiPtr[nbrCell]; + } + } + } + } + else { - ApsiPtr[uPtr[face]] += lowerPtr[face]*psiPtr[lPtr[face]]; - ApsiPtr[lPtr[face]] += upperPtr[face]*psiPtr[uPtr[face]]; + for (label cell=0; cell<nCells; cell++) + { + ApsiPtr[cell] = diagPtr[cell]*psiPtr[cell]; + } + + + const label nFaces = upper().size(); + + for (label face=0; face<nFaces; face++) + { + ApsiPtr[uPtr[face]] += lowerPtr[face]*psiPtr[lPtr[face]]; + ApsiPtr[lPtr[face]] += upperPtr[face]*psiPtr[uPtr[face]]; + } } // Update interface interfaces diff --git a/src/OpenFOAM/matrices/lduMatrix/preconditioners/DILUPreconditioner/DILUPreconditioner.C b/src/OpenFOAM/matrices/lduMatrix/preconditioners/DILUPreconditioner/DILUPreconditioner.C index 11f0da27c36267bc1fd9a4a0a0921412303f6c31..07cb690ce700c7c44d002a074a4f2e367abbf04c 100644 --- a/src/OpenFOAM/matrices/lduMatrix/preconditioners/DILUPreconditioner/DILUPreconditioner.C +++ b/src/OpenFOAM/matrices/lduMatrix/preconditioners/DILUPreconditioner/DILUPreconditioner.C @@ -107,8 +107,6 @@ void Foam::DILUPreconditioner::precondition solver_.matrix().lduAddr().upperAddr().begin(); const label* const __restrict__ lPtr = solver_.matrix().lduAddr().lowerAddr().begin(); - const label* const __restrict__ losortPtr = - solver_.matrix().lduAddr().losortAddr().begin(); const scalar* const __restrict__ upperPtr = solver_.matrix().upper().begin(); @@ -126,9 +124,8 @@ void Foam::DILUPreconditioner::precondition for (label face=0; face<nFaces; face++) { - const label sface = losortPtr[face]; - wAPtr[uPtr[sface]] -= - rDPtr[uPtr[sface]]*lowerPtr[sface]*wAPtr[lPtr[sface]]; + wAPtr[uPtr[face]] -= + rDPtr[uPtr[face]]*lowerPtr[face]*wAPtr[lPtr[face]]; } for (label face=nFacesM1; face>=0; face--) diff --git a/src/OpenFOAM/matrices/lduMatrix/smoothers/GaussSeidel/GaussSeidelSmoother.C b/src/OpenFOAM/matrices/lduMatrix/smoothers/GaussSeidel/GaussSeidelSmoother.C index 5ce88656f386ceb3e2c8f1ce8c7556a6dccfb038..0147d671b15cf5bb76aaf871c8a058cdf000831a 100644 --- a/src/OpenFOAM/matrices/lduMatrix/smoothers/GaussSeidel/GaussSeidelSmoother.C +++ b/src/OpenFOAM/matrices/lduMatrix/smoothers/GaussSeidel/GaussSeidelSmoother.C @@ -83,7 +83,9 @@ void Foam::GaussSeidelSmoother::smooth const label nCells = psi.size(); - solveScalarField bPrime(nCells); + //solveScalarField bPrime(nCells); + solveScalarField& bPrime = matrix_.work(nCells); + solveScalar* __restrict__ bPrimePtr = bPrime.begin(); const scalar* const __restrict__ diagPtr = matrix_.diag().begin(); diff --git a/src/OpenFOAM/matrices/lduMatrix/smoothers/symGaussSeidel/symGaussSeidelSmoother.C b/src/OpenFOAM/matrices/lduMatrix/smoothers/symGaussSeidel/symGaussSeidelSmoother.C index 0082e63569da2336bb04af94379cdba9d87f3601..4c746bf0b79560703012cf9e75ee07c76cece78e 100644 --- a/src/OpenFOAM/matrices/lduMatrix/smoothers/symGaussSeidel/symGaussSeidelSmoother.C +++ b/src/OpenFOAM/matrices/lduMatrix/smoothers/symGaussSeidel/symGaussSeidelSmoother.C @@ -83,7 +83,9 @@ void Foam::symGaussSeidelSmoother::smooth const label nCells = psi.size(); - solveScalarField bPrime(nCells); + //solveScalarField bPrime(nCells); + solveScalarField& bPrime = matrix_.work(nCells); + solveScalar* __restrict__ bPrimePtr = bPrime.begin(); const scalar* const __restrict__ diagPtr = matrix_.diag().begin(); diff --git a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/GAMGAgglomeration/GAMGAgglomeration.C b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/GAMGAgglomeration/GAMGAgglomeration.C index 304e524ecd81a366dea0a5489eec83285c5c6502..46a8b077339e3eaae6ae40806be3d9516422baf2 100644 --- a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/GAMGAgglomeration/GAMGAgglomeration.C +++ b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/GAMGAgglomeration/GAMGAgglomeration.C @@ -247,6 +247,9 @@ Foam::GAMGAgglomeration::GAMGAgglomeration maxLevels_(50), + updateInterval_(controlDict.getOrDefault<label>("updateInterval", 1)), + requireUpdate_(false), + nCellsInCoarsestLevel_ ( controlDict.getOrDefault<label>("nCellsInCoarsestLevel", 10) @@ -313,6 +316,12 @@ const Foam::GAMGAgglomeration& Foam::GAMGAgglomeration::New if (agglomPtr) { + if (agglomPtr->requireUpdate_) + { + mesh.thisDb().checkOut(const_cast<GAMGAgglomeration*>(agglomPtr)); + return GAMGAgglomeration::New(mesh, controlDict); + } + return *agglomPtr; } @@ -369,6 +378,12 @@ const Foam::GAMGAgglomeration& Foam::GAMGAgglomeration::New if (agglomPtr) { + if (agglomPtr->requireUpdate_) + { + mesh.thisDb().checkOut(const_cast<GAMGAgglomeration*>(agglomPtr)); + return GAMGAgglomeration::New(matrix, controlDict); + } + return *agglomPtr; } @@ -421,6 +436,12 @@ const Foam::GAMGAgglomeration& Foam::GAMGAgglomeration::New if (agglomPtr) { + if (agglomPtr->requireUpdate_) + { + mesh.thisDb().checkOut(const_cast<GAMGAgglomeration*>(agglomPtr)); + return GAMGAgglomeration::New(mesh, controlDict); + } + return *agglomPtr; } @@ -476,6 +497,25 @@ Foam::GAMGAgglomeration::~GAMGAgglomeration() // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // +bool Foam::GAMGAgglomeration::requiresUpdate() const +{ + return + (updateInterval_ > 0) + && ((mesh_.thisDb().time().timeIndex() % updateInterval_) == 0); +} + + +bool Foam::GAMGAgglomeration::movePoints() +{ + if (requiresUpdate()) + { + requireUpdate_ = true; + } + // What to return? + return requireUpdate_; +} + + const Foam::lduMesh& Foam::GAMGAgglomeration::meshLevel ( const label i diff --git a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/GAMGAgglomeration/GAMGAgglomeration.H b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/GAMGAgglomeration/GAMGAgglomeration.H index 8fdd75235f38246a03efd45738e0a7723680d8f4..e45d70b5a7dd0b83759c83c647f2e79404edbf19 100644 --- a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/GAMGAgglomeration/GAMGAgglomeration.H +++ b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/GAMGAgglomeration/GAMGAgglomeration.H @@ -30,6 +30,26 @@ Class Description Geometric agglomerated algebraic multigrid agglomeration class. + Example of the specification in fvSolution: + \verbatim + { + solver GAMG; + smoother symGaussSeidel; + + // Whether to cache the agglomeration + cacheAgglomeration yes; + // Optionally update every updateInterval mesh motion. Default is 1. + updateInterval 10; + + // Optionally agglomerate coarsest-level across processors + processorAgglomerator masterCoarsest; + nMasters 2; + + tolerance 1e-2; + relTol 0; + } + \endverbatim + SourceFiles GAMGAgglomeration.C GAMGAgglomerationTemplates.C @@ -65,14 +85,14 @@ class GAMGProcAgglomeration; class GAMGAgglomeration : - public MeshObject<lduMesh, GeometricMeshObject, GAMGAgglomeration> + public MeshObject<lduMesh, MoveableMeshObject, GAMGAgglomeration> { // Private Typedefs typedef MeshObject < lduMesh, - GeometricMeshObject, + MoveableMeshObject, GAMGAgglomeration > MeshObject_type; @@ -84,6 +104,12 @@ protected: //- Max number of levels const label maxLevels_; + //- Update agglomeration every updateInterval_ steps + const label updateInterval_; + + //- Does agglomeration require update + mutable bool requireUpdate_; + //- Number of cells in coarsest level label nCellsInCoarsestLevel_; @@ -161,6 +187,9 @@ protected: // Protected Member Functions + //- Does the agglomeration need to be fully updated? + bool requiresUpdate() const; + //- Assemble coarse mesh addressing void agglomerateLduAddressing(const label fineLevelIndex); @@ -335,6 +364,10 @@ public: // Member Functions + //- Update when the mesh moves + virtual bool movePoints(); + + // Access label size() const diff --git a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/algebraicPairGAMGAgglomeration/algebraicPairGAMGAgglomeration.C b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/algebraicPairGAMGAgglomeration/algebraicPairGAMGAgglomeration.C index 7a38913e939ec0162ec4b83663380f639d844b27..875edf95f4b436313490cfb90a5ec84879f90def 100644 --- a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/algebraicPairGAMGAgglomeration/algebraicPairGAMGAgglomeration.C +++ b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/algebraicPairGAMGAgglomeration/algebraicPairGAMGAgglomeration.C @@ -29,6 +29,8 @@ License #include "algebraicPairGAMGAgglomeration.H" #include "lduMatrix.H" #include "addToRunTimeSelectionTable.H" +//#include "cyclicAMILduInterface.H" +//#include "cyclicACMILduInterface.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // @@ -72,4 +74,208 @@ Foam::algebraicPairGAMGAgglomeration::algebraicPairGAMGAgglomeration } +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +bool Foam::algebraicPairGAMGAgglomeration::movePoints() +{ + const bool ok = pairGAMGAgglomeration::movePoints(); + + if (!requireUpdate_) + { + // TBD. For now commented out since cyclicAMI not known in this library. + +/* + // movePoints lower down did not trigger update. Update in case of + // cyclicAMI since contains addressing across patches and patches + // have moved. + + bool hasCyclicAMI = false; + if (!processorAgglomerate()) + { + const auto& fineInterfaces = interfaceLevel(0); + forAll(fineInterfaces, inti) + { + if (fineInterfaces.set(inti)) + { + const auto& intf = fineInterfaces[inti]; + if + ( + isA<cyclicAMILduInterface>(intf) + || isA<cyclicACMILduInterface>(intf) + ) + { + hasCyclicAMI = true; + + DebugPoutInFunction + << "Detected cyclicA(C)MI at interface " << inti + << ".Redoing patch agglomeration" << endl; + + break; + } + } + } + } + + + if (hasCyclicAMI) + { + // Redo the interface agglomeration + for + ( + label fineLevelIndex = 0; + fineLevelIndex < size(); + fineLevelIndex++ + ) + { + // Near complete copy of boundary handling in + // GAMGAgglomeration::agglomerateLduAddressing + + const auto& fineMesh = meshLevel(fineLevelIndex); + const auto& fineInterfaces = interfaceLevel(fineLevelIndex); + const lduAddressing& fineMeshAddr = fineMesh.lduAddr(); + + // Get restriction map for current level + const labelField& restrictMap = + restrictAddressing(fineLevelIndex); + + const label startOfRequests = UPstream::nRequests(); + forAll(fineInterfaces, inti) + { + if (fineInterfaces.set(inti)) + { + const auto& intf = fineInterfaces[inti]; + + if + ( + isA<cyclicAMILduInterface>(intf) + || isA<cyclicACMILduInterface>(intf) + ) + { + if (fineLevelIndex == 0) + { + intf.initInternalFieldTransfer + ( + Pstream::commsTypes::nonBlocking, + restrictMap, + fineMeshAddr.patchAddr(inti) + ); + } + else + { + intf.initInternalFieldTransfer + ( + Pstream::commsTypes::nonBlocking, + restrictMap + ); + } + } + } + } + + // Wait for comms to finised + UPstream::waitRequests(startOfRequests); + + // New coarse-level interfaces + //lduInterfacePtrsList coarseInterfaces(fineInterfaces.size()); + + forAll(fineInterfaces, inti) + { + if (fineInterfaces.set(inti)) + { + const auto& intf = fineInterfaces[inti]; + + if + ( + isA<cyclicAMILduInterface>(intf) + || isA<cyclicACMILduInterface>(intf) + ) + { + tmp<labelField> restrictMapInternalField; + + // The finest mesh uses patchAddr from the + // original lduAdressing. + // the coarser levels create thei own adressing for + // faceCells + if (fineLevelIndex == 0) + { + restrictMapInternalField = + intf.interfaceInternalField + ( + restrictMap, + fineMeshAddr.patchAddr(inti) + ); + } + else + { + restrictMapInternalField = + intf.interfaceInternalField + ( + restrictMap + ); + } + + tmp<labelField> nbrRestrictMapInternalField = + intf.internalFieldTransfer + ( + Pstream::commsTypes::nonBlocking, + restrictMap + ); + + lduPrimitiveMesh& coarseMesh = + meshLevels_[fineLevelIndex]; + + autoPtr<GAMGInterface> coarseIntf + ( + GAMGInterface::New + ( + inti, + coarseMesh.rawInterfaces(), + intf, + restrictMapInternalField(), + nbrRestrictMapInternalField(), + fineLevelIndex, + fineMesh.comm() + ) + ); + + //coarseInterfaces.set(inti, coarseIntf.ptr()); + coarseMesh.interfaces().set + ( + inti, + coarseIntf.ptr() + ); + coarseMesh.primitiveInterfaces().set + ( + inti, + &coarseMesh.interfaces()[inti] + ); + } + } + } + + //meshLevels_[fineLevelIndex].addInterfaces + //( + // coarseInterfaces, + // lduPrimitiveMesh::nonBlockingSchedule + // < + // processorGAMGInterface + // > + // ( + // coarseInterfaces + // ) + //); + } + } + + if (debug) + { + printLevels(); + } +*/ + } + + return ok; +} + + // ************************************************************************* // diff --git a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/algebraicPairGAMGAgglomeration/algebraicPairGAMGAgglomeration.H b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/algebraicPairGAMGAgglomeration/algebraicPairGAMGAgglomeration.H index 765c34d0454a75ddf85808cbddee56411d332196..ccead6284680d82922bf3b59270cd7764e704050 100644 --- a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/algebraicPairGAMGAgglomeration/algebraicPairGAMGAgglomeration.H +++ b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/algebraicPairGAMGAgglomeration/algebraicPairGAMGAgglomeration.H @@ -67,6 +67,12 @@ public: const lduMatrix& matrix, const dictionary& controlDict ); + + + // Member Functions + + //- Update when the mesh moves + virtual bool movePoints(); }; diff --git a/src/OpenFOAM/meshes/pointMesh/pointBoundaryMesh/pointBoundaryMesh.C b/src/OpenFOAM/meshes/pointMesh/pointBoundaryMesh/pointBoundaryMesh.C index 266583000abf2c357680f7c3805c5bdd6c7b6d4a..127342e8dc6ff6740ab013a5bac2be1dd51688af 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointBoundaryMesh/pointBoundaryMesh.C +++ b/src/OpenFOAM/meshes/pointMesh/pointBoundaryMesh/pointBoundaryMesh.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation - Copyright (C) 2018-2023 OpenCFD Ltd. + Copyright (C) 2018-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -33,9 +33,74 @@ License #include "PstreamBuffers.H" #include "lduSchedule.H" #include "globalMeshData.H" +#include "processorPointPatch.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ + defineTypeNameAndDebug(pointBoundaryMesh, 0); +} // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // +bool Foam::pointBoundaryMesh::hasGroupIDs() const +{ + if (groupIDsPtr_) + { + // Use existing cache + return !groupIDsPtr_->empty(); + } + + const auto& patches = *this; + + for (const auto& p : patches) + { + if (!p.inGroups().empty()) + { + return true; + } + } + + return false; +} + + +void Foam::pointBoundaryMesh::calcGroupIDs() const +{ + if (groupIDsPtr_) + { + return; // Or FatalError + } + + groupIDsPtr_.emplace(16); + auto& groupLookup = *groupIDsPtr_; + + const auto& patches = *this; + + forAll(patches, patchi) + { + for (const word& groupName : patches[patchi].inGroups()) + { + groupLookup(groupName).push_back(patchi); + } + } + + // Remove groups that clash with patch names + forAll(patches, patchi) + { + if (groupLookup.erase(patches[patchi].name())) + { + WarningInFunction + << "Removed group '" << patches[patchi].name() + << "' which clashes with patch " << patchi + << " of the same name." + << endl; + } + } +} + + void Foam::pointBoundaryMesh::addPatches(const polyBoundaryMesh& pbm) { // Set boundary patches @@ -43,7 +108,7 @@ void Foam::pointBoundaryMesh::addPatches(const polyBoundaryMesh& pbm) patches.resize_null(pbm.size()); - forAll(patches, patchi) + forAll(pbm, patchi) { // NB: needs ptr() to get *pointPatch instead of *facePointPatch patches.set(patchi, facePointPatch::New(pbm[patchi], *this).ptr()); @@ -60,21 +125,301 @@ Foam::pointBoundaryMesh::pointBoundaryMesh ) : pointPatchList(), + regIOobject + ( + IOobject + ( + "boundary", + //m.thisDb().time().findInstance(m.meshDir(), "boundary"), + pbm.mesh().facesInstance(), + polyMesh::meshSubDir/pointMesh::meshSubDir, + m.thisDb(), + IOobject::NO_READ, + IOobject::NO_WRITE, + false // Avoid conflict with polyMesh/boundary + ) + ), mesh_(m) { addPatches(pbm); + + if (debug) + { + pointPatchList& Patches = *this; + + Pout<< "pointBoundaryMesh::pointBoundaryMesh" + << "(const pointMesh&, const polyBoundaryMesh&): " + << "constructed pointBoundaryMesh:" << endl; + Pout<< incrIndent; + for (const auto& pp : Patches) + { + Pout<< indent + << "index:" << pp.index() << " patch:" << pp.name() + << " type:" << pp.type() << endl; + } + Pout<< decrIndent; + } +} + + +Foam::pointBoundaryMesh::pointBoundaryMesh +( + const IOobject& io, + const pointMesh& m, + const polyBoundaryMesh& pbm +) +: + pointPatchList(), + regIOobject + ( + IOobject + ( + "boundary", + io.instance(), + polyMesh::meshSubDir/pointMesh::meshSubDir, + m.thisDb(), + io.readOpt(), + io.writeOpt(), + false //io.registerObject() // or always set to false? + ) + ), + mesh_(m) +{ + pointPatchList& Patches = *this; + + if (isReadRequired() || (isReadOptional() && headerOk())) + { + if (readOpt() == IOobject::MUST_READ_IF_MODIFIED) + { + WarningInFunction + << "Specified IOobject::MUST_READ_IF_MODIFIED but class" + << " does not support automatic rereading." + << endl; + } + + if (debug) + { + Pout<< "pointBoundaryMesh::pointBoundaryMesh" + << "(const IOobject&, const pointMesh&," + << " const polyBoundaryMesh&): " + << "Constructing from boundary file " << objectRelPath() + << endl; + } + + // Read pointPatchList + Istream& is = readStream(typeName); + + PtrList<entry> patchEntries(is); + Patches.setSize(patchEntries.size()); + + forAll(Patches, patchi) + { + // Try construct-from-dictionary first + const word& name = patchEntries[patchi].keyword(); + + autoPtr<pointPatch> pPtr + ( + pointPatch::New + ( + name, + patchEntries[patchi].dict(), + patchi, + *this + ) + ); + + if (!pPtr) + { + const label polyPatchi = pbm.findPatchID(name, false); + // Try as facePointPatch from polyPatch + pPtr = facePointPatch::New(pbm[polyPatchi], *this); + pPtr->index() = patchi; + } + + Patches.set(patchi, pPtr); + } + + // Check state of IOstream + is.check + ( + "pointBoundaryMesh::pointBoundaryMesh" + "(const IOobject&, const pointMesh&," + " const polyBoundaryMesh&)" + ); + + close(); + } + else + { + if (debug) + { + Pout<< "pointBoundaryMesh::pointBoundaryMesh" + << "(const IOobject&, const pointMesh&," + << " const polyBoundaryMesh&): " + << "Constructing from polyBoundaryMesh only" + << endl; + } + + addPatches(pbm); + } + + + if (debug) + { + Pout<< "pointBoundaryMesh::pointBoundaryMesh" + << "(const IOobject&, const pointMesh&, const polyBoundaryMesh&): " + << "constructed pointBoundaryMesh:" << endl; + Pout<< incrIndent; + for (const auto& pp : Patches) + { + Pout<< indent + << "index:" << pp.index() << " patch:" << pp.name() + << " type:" << pp.type() << endl; + } + Pout<< decrIndent; + } } // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // +Foam::label Foam::pointBoundaryMesh::nNonProcessor() const +{ + const pointPatchList& patches = *this; + + label count = 0; + + for (const auto& p : patches) + { + if (isA<processorPointPatch>(p)) + { + break; + } + + ++count; + } + + return count; +} + + +Foam::label Foam::pointBoundaryMesh::nProcessorPatches() const +{ + const pointPatchList& patches = *this; + + label count = 0; + + for (const auto& p : patches) + { + if (isA<processorPointPatch>(p)) + { + ++count; + } + } + + return count; +} + + +Foam::wordList Foam::pointBoundaryMesh::names() const +{ + return PtrListOps::get<word>(*this, nameOp<pointPatch>()); +} + + +Foam::wordList Foam::pointBoundaryMesh::types() const +{ + return PtrListOps::get<word>(*this, typeOp<pointPatch>()); +} + + +Foam::wordList Foam::pointBoundaryMesh::physicalTypes() const +{ + return + PtrListOps::get<word> + ( + *this, + [](const pointPatch& p) { return p.physicalType(); } + ); +} + + +const Foam::HashTable<Foam::labelList>& +Foam::pointBoundaryMesh::groupPatchIDs() const +{ + if (!groupIDsPtr_) + { + calcGroupIDs(); + } + + return *groupIDsPtr_; +} + + Foam::labelList Foam::pointBoundaryMesh::indices ( const wordRe& matcher, const bool useGroups ) const { - return mesh().boundaryMesh().indices(matcher, useGroups); + if (matcher.empty()) + { + return labelList(); + } + + // Only check groups if requested and they exist + const bool checkGroups = (useGroups && this->hasGroupIDs()); + + labelHashSet ids(0); + + if (matcher.isPattern()) + { + if (checkGroups) + { + const auto& groupLookup = groupPatchIDs(); + forAllConstIters(groupLookup, iter) + { + if (matcher(iter.key())) + { + // Add patch ids associated with the group + ids.insert(iter.val()); + } + } + } + + if (ids.empty()) + { + return PtrListOps::findMatching(*this, matcher); + } + else + { + ids.insert(PtrListOps::findMatching(*this, matcher)); + } + } + else + { + // Literal string. + // Special version of above for reduced memory footprint. + + const label patchId = PtrListOps::firstMatching(*this, matcher); + + if (patchId >= 0) + { + return labelList(one{}, patchId); + } + else if (checkGroups) + { + const auto iter = groupPatchIDs().cfind(matcher); + + if (iter.good()) + { + // Hash ids associated with the group + ids.insert(iter.val()); + } + } + } + + return ids.sortedToc(); } @@ -84,7 +429,43 @@ Foam::labelList Foam::pointBoundaryMesh::indices const bool useGroups ) const { - return mesh().boundaryMesh().indices(matcher, useGroups); + if (matcher.empty()) + { + return labelList(); + } + else if (matcher.size() == 1) + { + return this->indices(matcher.front(), useGroups); + } + + labelHashSet ids(0); + + // Only check groups if requested and they exist + if (useGroups && this->hasGroupIDs()) + { + ids.reserve(this->size()); + + const auto& groupLookup = groupPatchIDs(); + forAllConstIters(groupLookup, iter) + { + if (matcher(iter.key())) + { + // Add patch ids associated with the group + ids.insert(iter.val()); + } + } + } + + if (ids.empty()) + { + return PtrListOps::findMatching(*this, matcher); + } + else + { + ids.insert(PtrListOps::findMatching(*this, matcher)); + } + + return ids.sortedToc(); } @@ -95,13 +476,91 @@ Foam::labelList Foam::pointBoundaryMesh::indices const bool useGroups ) const { - return mesh().boundaryMesh().indices(select, ignore, useGroups); + //return mesh().boundaryMesh().indices(select, ignore, useGroups); + if (ignore.empty()) + { + return this->indices(select, useGroups); + } + + const wordRes::filter matcher(select, ignore); + + labelHashSet ids(0); + + // Only check groups if requested and they exist + if (useGroups && this->hasGroupIDs()) + { + ids.reserve(this->size()); + + const auto& groupLookup = groupPatchIDs(); + forAllConstIters(groupLookup, iter) + { + if (matcher(iter.key())) + { + // Add patch ids associated with the group + ids.insert(iter.val()); + } + } + } + + if (ids.empty()) + { + return PtrListOps::findMatching(*this, matcher); + } + else + { + ids.insert(PtrListOps::findMatching(*this, matcher)); + } + + return ids.sortedToc(); } -Foam::label Foam::pointBoundaryMesh::findPatchID(const word& patchName) const +Foam::label Foam::pointBoundaryMesh::findPatchID +( + const word& patchName, + bool allowNotFound +) const { - return mesh().boundaryMesh().findPatchID(patchName); + //return mesh().boundaryMesh().findPatchID(patchName); + if (patchName.empty()) + { + return -1; + } + + const label patchId = PtrListOps::firstMatching(*this, patchName); + + if (patchId >= 0) + { + return patchId; + } + + if (!allowNotFound) + { + FatalErrorInFunction + << "Patch '" << patchName << "' not found. " + << "Available patch names"; + + if (polyMesh::defaultRegion != mesh_.name()) + { + FatalError + << " in region '" << mesh_.name() << "'"; + } + + FatalError + << " include: " << names() << endl + << exit(FatalError); + } + + // Patch not found + if (debug) + { + Pout<< "label pointBoundaryMesh::findPatchID(const word&) const" + << " Patch named " << patchName << " not found. " + << "Available patch names: " << names() << endl; + } + + // Not found, return -1 + return -1; } @@ -243,4 +702,80 @@ void Foam::pointBoundaryMesh::updateMesh() } +void Foam::pointBoundaryMesh::reorder +( + const labelUList& oldToNew, + const bool validBoundary +) +{ + // Change order of patches + pointPatchList::reorder(oldToNew); + + // Adapt indices + pointPatchList& patches = *this; + + forAll(patches, patchi) + { + patches[patchi].index() = patchi; + } + + // Clear group-to-patch addressing. Note: could re-calculate + groupIDsPtr_.reset(nullptr); + + if (validBoundary) + { + updateMesh(); + } + + if (debug) + { + pointPatchList& Patches = *this; + + Pout<< "pointBoundaryMesh::reorder" + << "(const labelUList&, const bool): " + << "reordered pointBoundaryMesh:" << endl; + Pout<< incrIndent; + for (const auto& pp : Patches) + { + Pout<< indent + << "index:" << pp.index() << " patch:" << pp.name() + << " type:" << pp.type() << endl; + } + Pout<< decrIndent; + } +} + + +bool Foam::pointBoundaryMesh::writeData(Ostream& os) const +{ + const pointPatchList& patches = *this; + + os << patches.size() << nl << token::BEGIN_LIST << incrIndent << nl; + + forAll(patches, patchi) + { + os << indent << patches[patchi].name() << nl + << indent << token::BEGIN_BLOCK << nl + << incrIndent << patches[patchi] << decrIndent + << indent << token::END_BLOCK << endl; + } + + os << decrIndent << token::END_LIST; + + // Check state of IOstream + os.check("pointBoundaryMesh::writeData(Ostream& os) const"); + + return os.good(); +} + + +//bool Foam::pointBoundaryMesh::writeObject +//( +// IOstreamOption +//) const +//{ +// return regIOobject::writeObject(fmt, ver, IOstream::UNCOMPRESSED); +//} + + // ************************************************************************* // diff --git a/src/OpenFOAM/meshes/pointMesh/pointBoundaryMesh/pointBoundaryMesh.H b/src/OpenFOAM/meshes/pointMesh/pointBoundaryMesh/pointBoundaryMesh.H index 588245038b895debf9b0442310829ec6c6f76b6e..561d75e1725e21f4001f9d5db894ec13b1be8162 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointBoundaryMesh/pointBoundaryMesh.H +++ b/src/OpenFOAM/meshes/pointMesh/pointBoundaryMesh/pointBoundaryMesh.H @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2013 OpenFOAM Foundation - Copyright (C) 2018-2023 OpenCFD Ltd. + Copyright (C) 2018-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -39,6 +39,7 @@ SourceFiles #define Foam_pointBoundaryMesh_H #include "pointPatch.H" +#include "regIOobject.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -56,19 +57,29 @@ class wordRes; class pointBoundaryMesh : - public pointPatchList + public pointPatchList, + public regIOobject { // Private Data //- Reference to mesh const pointMesh& mesh_; + //- Demand-driven: list of patch ids per group + mutable autoPtr<HashTable<labelList>> groupIDsPtr_; + // Private Member Functions //- Calculate geometry for the patches (transformation tensors etc.) void calcGeometry(); + //- Some patches have inGroup entries + bool hasGroupIDs() const; + + //- Calculate group name to patch ids lookup + void calcGroupIDs() const; + //- Assign facePointPatches corresponding to the given polyBoundaryMesh void addPatches(const polyBoundaryMesh& pbm); @@ -85,11 +96,27 @@ public: friend class pointMesh; + //- Runtime type information + TypeName("pointBoundaryMesh"); + + // Constructors //- Construct from polyBoundaryMesh pointBoundaryMesh(const pointMesh&, const polyBoundaryMesh&); + //- Construct from IOobject and polyBoundaryMesh + pointBoundaryMesh + ( + const IOobject& io, + const pointMesh&, + const polyBoundaryMesh& + ); + + + //- Destructor + virtual ~pointBoundaryMesh() = default; + // Member Functions @@ -99,6 +126,21 @@ public: return mesh_; } + //- The number of patches before the first processor patch. + label nNonProcessor() const; + + //- The number of processorPointPatch patches + label nProcessorPatches() const; + + //- Return a list of patch names + wordList names() const; + + //- Return a list of patch types + wordList types() const; + + //- Return a list of physical types + wordList physicalTypes() const; + //- Return (sorted) patch indices for all matches. // A no-op (returns empty list) for an empty matcher labelList indices(const wordRe& matcher, const bool useGroups) const; @@ -121,14 +163,31 @@ public: //- Find patch index given a name // A no-op (returns -1) for an empty patchName - label findPatchID(const word& patchName) const; + label findPatchID + ( + const word& patchName, + const bool allowNotFound = true + ) const; + + //- The patch indices per patch group + const HashTable<labelList>& groupPatchIDs() const; - //- Correct polyBoundaryMesh after moving points + //- Correct pointBoundaryMesh after moving points void movePoints(const pointField&); - //- Correct polyBoundaryMesh after topology update + //- Correct pointBoundaryMesh after topology update void updateMesh(); + //- Reorders patches. Ordering does not have to be done in + // ascending or descending order. Reordering has to be unique. + // (is shuffle) If validBoundary calls updateMesh() + // after reordering to recalculate data (so call needs to be parallel + // sync in that case) + void reorder(const labelUList& oldToNew, const bool validBoundary); + + //- writeData member function required by regIOobject + virtual bool writeData(Ostream&) const; + // Housekeeping diff --git a/src/OpenFOAM/meshes/pointMesh/pointMesh.C b/src/OpenFOAM/meshes/pointMesh/pointMesh.C index 3f36c56332a6f6130742e649b9b97a357f2fcd32..7d5d74ab8ffbe059ec4106a4be182d8a6e6d2f3b 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointMesh.C +++ b/src/OpenFOAM/meshes/pointMesh/pointMesh.C @@ -40,6 +40,8 @@ namespace Foam defineTypeNameAndDebug(pointMesh, 0); } +Foam::word Foam::pointMesh::meshSubDir = "pointMesh"; + // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // @@ -89,8 +91,66 @@ Foam::pointMesh::pointMesh(const polyMesh& pMesh) } +Foam::pointMesh::pointMesh(const polyMesh& pMesh, const IOobject& io) +: + MeshObject<polyMesh, Foam::UpdateableMeshObject, pointMesh>(pMesh), + GeoMesh<polyMesh>(pMesh), + boundary_(io, *this, pMesh.boundaryMesh()) +{ + if (debug) + { + Pout<< "pointMesh::pointMesh(const polyMesh&): " + << "Constructing from IO " << io.objectRelPath() + << endl; + } + + // Calculate the geometry for the patches (transformation tensors etc.) + boundary_.calcGeometry(); +} + + +Foam::pointMesh::pointMesh +( + const polyMesh& pMesh, + const IOobjectOption::readOption rOpt +) +: + pointMesh + ( + pMesh, + IOobject + ( + pMesh.name(), // polyMesh region + pMesh.facesInstance(), // polyMesh topology instance + pMesh.time(), + rOpt, + Foam::IOobject::NO_WRITE + ) + ) +{} + + // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // +void Foam::pointMesh::setInstance +( + const fileName& inst, + const IOobjectOption::writeOption wOpt +) +{ + if (debug) + { + Pout<< "pointMesh::setInstance(): " + << "Setting instance to " << inst << endl; + } + this->writeOpt(wOpt); + this->instance() = inst; + + boundary_.writeOpt(wOpt); + boundary_.instance() = inst; +} + + bool Foam::pointMesh::movePoints() { if (debug) @@ -119,4 +179,19 @@ void Foam::pointMesh::updateMesh(const mapPolyMesh& mpm) } +bool Foam::pointMesh::writeObject +( + IOstreamOption streamOpt, + const bool writeOnProc +) const +{ + if (debug) + { + Pout<< "pointMesh::writeObject(IOstreamOption, const bool): " + << "Writing to " << boundary_.objectRelPath() << endl; + } + return boundary_.writeObject(streamOpt, writeOnProc); +} + + // ************************************************************************* // diff --git a/src/OpenFOAM/meshes/pointMesh/pointMesh.H b/src/OpenFOAM/meshes/pointMesh/pointMesh.H index 58462132078c368185b71681c61b17bd3ce6a2bf..8aaeb4f698c29acc8b6445972402e5e1c527b401 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointMesh.H +++ b/src/OpenFOAM/meshes/pointMesh/pointMesh.H @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2013 OpenFOAM Foundation - Copyright (C) 2021-2023 OpenCFD Ltd. + Copyright (C) 2021-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -96,12 +96,26 @@ public: // Declare name of the class and its debug switch ClassName("pointMesh"); + //- Return the mesh sub-directory name (usually "pointMesh") + static word meshSubDir; + // Constructors //- Construct from polyMesh explicit pointMesh(const polyMesh& pMesh); + //- Construct from polyMesh and IOobject (used when reading boundary) + explicit pointMesh(const polyMesh& pMesh, const IOobject& io); + + //- Construct from polyMesh and readOpt. Takes instance, time etc + //- from polyMesh. Used when reading boundary. + explicit pointMesh + ( + const polyMesh& pMesh, + const IOobjectOption::readOption rOpt + ); + //- Destructor ~pointMesh() = default; @@ -151,6 +165,13 @@ public: return GeoMesh<polyMesh>::mesh_.time(); } + //- Set the instance for mesh files + void setInstance + ( + const fileName& instance, + const IOobjectOption::writeOption wOpt = IOobject::AUTO_WRITE + ); + // Volume Mesh @@ -181,6 +202,16 @@ public: { return &pm == this; } + + + // Write + + //- Write + virtual bool writeObject + ( + IOstreamOption streamOpt, + const bool writeOnProc = true + ) const; }; diff --git a/src/OpenFOAM/meshes/pointMesh/pointMeshTools/pointMeshTools.C b/src/OpenFOAM/meshes/pointMesh/pointMeshTools/pointMeshTools.C new file mode 100644 index 0000000000000000000000000000000000000000..c49189a46e40ddf34e8828db282f2deb472edbf5 --- /dev/null +++ b/src/OpenFOAM/meshes/pointMesh/pointMeshTools/pointMeshTools.C @@ -0,0 +1,542 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "pointMeshTools.H" +#include "syncTools.H" +#include "PatchTools.H" +#include "dummyTransform.H" +#include "unitConversion.H" +//#include "OFstream.H" + +// * * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * // + +void Foam::pointMeshTools::featurePointsEdges +( + const polyMesh& mesh, + + const uindirectPrimitivePatch& allBoundary, + + // Per boundary face to zone + const labelUList& faceToZone, + // Number of zones + const label nZones, + + const scalar edgeFeatureAngle, + //const scalar pointFeatureAngle, //not yet done + + // Feature edge(points) internal to a zone + labelListList& zoneToMeshPoints, + List<pointConstraintList>& zoneToConstraints, + + // Feature edge(points) in between zones + labelList& twoZoneMeshPoints, + pointConstraintList& twoZoneConstraints, + + // Feature points on > 2 zones + labelList& multiZoneMeshPoints, + pointConstraintList& multiZoneConstraints +) +{ + // Analyses edges on mesh faces and splits them up according to topology + // and geometry: + // - edges in between faces on same zone but making a feature angle + // - edges in between faces on two different zones + // - points on faces on > 2 zones + + + const globalMeshData& globalData = mesh.globalData(); + const indirectPrimitivePatch& cpp = globalData.coupledPatch(); + const mapDistribute& map = globalData.globalEdgeSlavesMap(); + const auto& mp = allBoundary.meshPoints(); + + const vector nullVector(vector::uniform(0)); + const auto assignNonNull = [&](vector& x, const vector& y) + { + if (x == nullVector && y != nullVector) + { + x = y; + } + }; + + // Calculate parallel-consistent point normals (as unweighted average + // of faceNormals). Note: only valid on patch points, not on mesh points + // that are coupled to these. + const pointField pointNormals + ( + PatchTools::pointNormals + ( + mesh, + allBoundary + ) + ); + + + // Find correspondence between allBoundary and coupled edges + labelList allEdges; + labelList coupledEdges; + bitSet sameEdgeOrientation; + PatchTools::matchEdges + ( + allBoundary, + cpp, + allEdges, + coupledEdges, + sameEdgeOrientation + ); + + + + // To construct the patches we need to know per edge: + // - patch on either side (if topological feature edge) + // - faceNormal on either side (if feature angle) + // We need to know per point: + // - patches on all connected faces + // - faceNormals on all connected faces? And compare to average? + // or edge normals on all connected edges + + + typedef Tuple2<label, vector> PN; + const PN nullPN(-1, nullVector); + + + + // Point-based analysis + // ~~~~~~~~~~~~~~~~~~~~ + + // Collect per (mesh)point the zones (1, 2 or >2). Note: per mesh to + // make it easier to sync. See edge-based code below where we explicitly + // have to transfer from patch-edge to mesh-point etc. Note sure which one + // fits better.... + // State: + // (-1, -1) : initial state + // (-2, -2) : more than 2 zones + // (>=0, >=0) : zones from connected faces + labelPairList pointToZones(mesh.nPoints(), labelPair(-1, -1)); + { + // Combine zones. + const auto combineZones = [&](labelPair& x, const labelPair& y) + { + if (x == labelPair(-2, -2)) + { + // Already marked as having >2 zones + } + else if (y == labelPair(-2, -2)) + { + x = y; + } + else + { + // Find first free slot + if (x[0] == -1) + { + if (y[0] != -1) + { + x[0] = y[0]; + } + else + { + x[0] = y[1]; + } + } + else if (x[1] == -1) + { + if (y[0] != -1 && y[0] != x[0]) + { + x[1] = y[0]; + } + else if (y[1] != -1 && y[1] != x[1]) + { + x[1] = y[1]; + } + } + else + { + // Both x slots filled. See if y adds a 3rd element + if (y[0] != -1 && y[0] != x[0] && y[0] != x[1]) + { + x = labelPair(-2, -2); + } + else if (y[1] != -1 && y[1] != x[0] && y[1] != x[1]) + { + x = labelPair(-2, -2); + } + } + } + }; + + + forAll(allBoundary, facei) + { + const auto& f = allBoundary[facei]; + const label zonei = faceToZone[facei]; + for (const label pointi : f) + { + auto& pZones = pointToZones[pointi]; + + if (pZones != labelPair(-2, -2) && !pZones.contains(zonei)) + { + if (pZones.first() == -1) + { + pZones.first() = zonei; + } + else if (pZones.second() == -1) + { + pZones.second() = zonei; + } + else + { + // Mark as >2 zones + pZones = labelPair(-2, -2); + } + } + } + } + + syncTools::syncPointList + ( + mesh, + pointToZones, + combineZones, + labelPair(-1, -1), + dummyTransform() + ); + } + + + + + // Edge-based analysis + // ~~~~~~~~~~~~~~~~~~~~ + + // 1. Local analysis + + List<Pair<PN>> allEdgeToFaces + ( + allBoundary.nEdges(), + Pair<PN>(nullPN, nullPN) + ); + { + const auto& edgeFaces = allBoundary.edgeFaces(); + const auto& faceNormals = allBoundary.faceNormals(); + + forAll(edgeFaces, edgei) + { + const auto& eFaces = edgeFaces[edgei]; + const vector& n0 = faceNormals[eFaces[0]]; + const label zone0 = faceToZone[eFaces[0]]; + if (eFaces.size() == 1) + { + allEdgeToFaces[edgei] = Pair<PN>(PN(zone0, n0), nullPN); + } + else + { + const vector& n1 = faceNormals[eFaces[1]]; + const label zone1 = faceToZone[eFaces[1]]; + allEdgeToFaces[edgei] = Pair<PN> + ( + PN(zone0, n0), + PN(zone1, n1) + ); + } + } + } + + + // 2. Sync across coupled patches + + { + // Combine pair of normals + const auto vectorPairMax = [&](Pair<PN>& x, const Pair<PN>& y) + { + if (x[0] == nullPN) + { + if (y[0] != nullPN) + { + x[0] = y[0]; + } + else + { + x[0] = y[1]; + } + } + else if (x[1] == nullPN) + { + if (y[0] != nullPN && y[0] != x[0]) + { + x[1] = y[0]; + } + else + { + x[1] = y[1]; + } + } + }; + + List<Pair<PN>> cppEdgeData + ( + map.constructSize(), + Pair<PN>(nullPN, nullPN) + ); + UIndirectList<Pair<PN>>(cppEdgeData, coupledEdges) = + UIndirectList<Pair<PN>>(allEdgeToFaces, allEdges); + + globalData.syncData + ( + cppEdgeData, + globalData.globalEdgeSlaves(), + globalData.globalEdgeTransformedSlaves(), + map, + globalData.globalTransforms(), + vectorPairMax, + dummyTransform() + ); + + UIndirectList<Pair<PN>>(allEdgeToFaces, allEdges) = + UIndirectList<Pair<PN>>(cppEdgeData, coupledEdges); + } + + + // Now we have all the per-patch edge information + // - do inter-patch edges + // - do feature-angle edges + // Store on mesh points + + const auto assignNonNullPN = [&](PN& x, const PN& y) + { + if (x.second() == nullVector && y.second() != nullVector) + { + x = y; + } + }; + + + const scalar featEdgeCos = Foam::cos(degToRad(edgeFeatureAngle)); + + + //OFstream os("allBoundary.obj"); + //Pout<< "Dumping feature edges to " << os.name() << endl; + //OFstream interOs("interZoneBoundary.obj"); + //Pout<< "Dumping inter-zone edges to " << os.name() << endl; + + // Storing the normal for points that are on inter-patch edges + vectorField patchEdgeNormal(mesh.nPoints(), nullVector); + // Storing the constraint for points that are on patch-internal feat edges + List<PN> featEdgeNormal(mesh.nPoints(), nullPN); + + // Use point-based sync + { + forAll(allEdgeToFaces, edgei) + { + const edge& e = allBoundary.edges()[edgei]; + const label mp0 = mp[e[0]]; + const label mp1 = mp[e[1]]; + + const Pair<PN>& facesInfo = allEdgeToFaces[edgei]; + + if (facesInfo[1] == nullPN) + { + // Real boundary edge. On single patch only so no need + // to put in separate point patch ... (? tbd) + } + else + { + const label zone0 = facesInfo[0].first(); + const label zone1 = facesInfo[1].first(); + + const point& p0 = allBoundary.points()[mp0]; + const point& p1 = allBoundary.points()[mp1]; + vector eVec(p1-p0); + eVec.normalise(); + + if (zone0 != zone1) + { + // Inter-patch. TBD: check for feature angle as well? + + //patchEdgeNormal[mp0] = pointNormals[e[0]]; + //patchEdgeNormal[mp1] = pointNormals[e[1]]; + + patchEdgeNormal[mp0] = eVec; + patchEdgeNormal[mp1] = eVec; + } + else + { + // Same patch - check for feature angle + + const vector& n0 = facesInfo[0].second(); + const vector& n1 = facesInfo[1].second(); + + if ((n0 & n1) < featEdgeCos) + { + //Pout<< "** feature edge:" << edgei + // << " points:" << allBoundary.points()[mp0] + // << allBoundary.points()[mp1] + // << nl + // << " faceNormal0:" << n0 + // << " faceNormal1:" << n1 << nl + // << " zone0:" << zone0 + // << " zone1:" << zone1 << nl + // << " pointNormals0:" << pointNormals[e[0]] + // << " pointNormals1:" << pointNormals[e[1]] + // << nl + // << endl; + + if (patchEdgeNormal[mp0] == nullVector) + { + //featEdgeNormal[mp0] = PN + //( + // zone0, // zone + // pointNormals[e[0]] + //); + featEdgeNormal[mp0].first() = zone0; + // Assign edge direction. TBD: average & parallel + featEdgeNormal[mp0].second() = eVec; + } + if (patchEdgeNormal[mp1] == nullVector) + { + //featEdgeNormal[mp1] = PN + //( + // zone1, // zone + // pointNormals[e[1]] + //); + featEdgeNormal[mp1].first() = zone1; + // Assign edge direction. TBD: average & parallel + featEdgeNormal[mp1].second() = eVec; + } + } + } + } + } + + syncTools::syncPointList + ( + mesh, + patchEdgeNormal, + assignNonNull, + nullVector + ); + syncTools::syncPointList + ( + mesh, + featEdgeNormal, + assignNonNullPN, + nullPN, + dummyTransform() + ); + } + + // Make sure that inter-patch points are not also in feature-edge + // points. Note: not absolutely necessary since all inter-patch points + // will also be in the 'normal' facePointPatches. + + DynamicList<label> dynMultiZoneMeshPoints(allBoundary.nPoints()); + DynamicList<pointConstraint> dynMultiZoneConstraints(allBoundary.nPoints()); + forAll(pointToZones, pointi) + { + if (pointToZones[pointi] == labelPair(-2, -2)) + { + dynMultiZoneMeshPoints.append(pointi); + // Note: pointConstraint just a slip constraint for now + dynMultiZoneConstraints.append + ( + pointConstraint + ( + 3, // feature point + Zero //meshPointNormals[pointi] + ) + ); + // Unmark as feature angle point + patchEdgeNormal[pointi] = nullVector; + featEdgeNormal[pointi] = nullPN; + } + } + multiZoneMeshPoints = std::move(dynMultiZoneMeshPoints); + multiZoneConstraints = std::move(dynMultiZoneConstraints); + + + DynamicList<label> dynTwoZoneMeshPoints(allBoundary.nPoints()); + DynamicList<pointConstraint> dynTwoZoneConstraints(allBoundary.nPoints()); + forAll(patchEdgeNormal, pointi) + { + if (patchEdgeNormal[pointi] != nullVector) + { + dynTwoZoneMeshPoints.append(pointi); + // Note: pointConstraint just a slip constraint for now + dynTwoZoneConstraints.append + ( + pointConstraint + ( + 2, // feature edge + patchEdgeNormal[pointi] + ) + ); + + // Unmark as feature angle point + featEdgeNormal[pointi] = nullPN; + } + } + twoZoneMeshPoints = std::move(dynTwoZoneMeshPoints); + twoZoneConstraints = std::move(dynTwoZoneConstraints); + + + // Sort featEdgeNormal according to zone + zoneToMeshPoints.resize_nocopy(nZones); + zoneToConstraints.resize_nocopy(nZones); + { + labelList sizes(nZones, 0); + forAll(featEdgeNormal, pointi) + { + const auto& pInfo = featEdgeNormal[pointi]; + if (pInfo != nullPN) + { + const label zonei = pInfo.first(); + sizes[zonei]++; + } + } + forAll(zoneToMeshPoints, zonei) + { + zoneToMeshPoints[zonei].setSize(sizes[zonei]); + zoneToConstraints[zonei].setSize(sizes[zonei]); + } + sizes = 0; + forAll(featEdgeNormal, pointi) + { + const auto& pInfo = featEdgeNormal[pointi]; + if (pInfo != nullPN) + { + const label zonei = pInfo.first(); + const label index = sizes[zonei]++; + + zoneToMeshPoints[zonei][index] = pointi; + zoneToConstraints[zonei][index] = + pointConstraint(2, pInfo.second()); // constrained to slide + } + } + } +} + + +// ************************************************************************* // diff --git a/src/OpenFOAM/meshes/pointMesh/pointMeshTools/pointMeshTools.H b/src/OpenFOAM/meshes/pointMesh/pointMeshTools/pointMeshTools.H new file mode 100644 index 0000000000000000000000000000000000000000..cb5d87dc8a551588333eff49120c8084f08c1345 --- /dev/null +++ b/src/OpenFOAM/meshes/pointMesh/pointMeshTools/pointMeshTools.H @@ -0,0 +1,95 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::polyMeshTools + +Description + Collection of static functions operating on pointMesh. + +SourceFiles + pointMeshTools.C + +\*---------------------------------------------------------------------------*/ + +#ifndef Foam_pointMeshTools_H +#define Foam_pointMeshTools_H + +#include "pointMesh.H" +#include "pointConstraint.H" +#include "uindirectPrimitivePatch.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class pointMeshTools Declaration +\*---------------------------------------------------------------------------*/ + +class pointMeshTools +{ +public: + + //- Analyse patch for feature edges, feature points. Handles points + //- not being on a face of patch but coupled to it. + static void featurePointsEdges + ( + const polyMesh& mesh, + + const uindirectPrimitivePatch& boundary, + // Per boundary face to zone + const labelUList& faceToZone, + // Number of zones + const label nZones, + + const scalar edgeFeatureAngle, + //const scalar pointFeatureAngle, //not yet done + + // Feature edge(points) internal to a zone + labelListList& zoneToMeshPoints, + List<pointConstraintList>& zoneToConstraints, + + // Feature edge(points) in between zones + labelList& twoZoneMeshPoints, + pointConstraintList& twoZoneConstraints, + + // Feature points on > 2 zones + labelList& multiZoneMeshPoints, + pointConstraintList& multiZoneConstraints + ); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/basic/generic/genericPointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/basic/generic/genericPointPatch.H index fe01c486bde117149f8a8b2027a437075c2dea5f..1ff942519f780afc3efd2094df683e57182a8364 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/basic/generic/genericPointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/basic/generic/genericPointPatch.H @@ -72,6 +72,39 @@ public: : facePointPatch(patch, bm) {} + + //- Construct given the original patch and a map + genericPointPatch + ( + const genericPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) + : + facePointPatch(patch, bm, index, mapAddressing, reversePointMap) + {} + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<genericPointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } }; diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.C b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.C index ccccd2eb51e23c8ac2b161c0977aa0e9a557d269..479c7233c7fca3f7c9b9455af4ef4dd51fd81bf1 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.C +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.C @@ -91,6 +91,20 @@ Foam::cyclicPointPatch::cyclicPointPatch {} +Foam::cyclicPointPatch::cyclicPointPatch +( + const cyclicPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap +) +: + coupledFacePointPatch(patch, bm, index, mapAddressing, reversePointMap), + cyclicPolyPatch_(refCast<const cyclicPolyPatch>(patch.patch())) +{} + + // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // Foam::cyclicPointPatch::~cyclicPointPatch() diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.H index 493c0dc9d5f2b596c9688e5d6846e05a3f05e1b0..e40fd90e64b9922798cce6c67cc765859ce5ec11 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.H @@ -105,6 +105,36 @@ public: const pointBoundaryMesh& bm ); + //- Construct given the original patch and a map + cyclicPointPatch + ( + const cyclicPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ); + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<cyclicPointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } + //- Destructor virtual ~cyclicPointPatch(); diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclicSlip/cyclicSlipPointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclicSlip/cyclicSlipPointPatch.H index 7b8d8ec754d5244d764f6c80e91e86d9af136360..d9f6be76df81ee51b026ad9bd55cde4009f11146 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclicSlip/cyclicSlipPointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclicSlip/cyclicSlipPointPatch.H @@ -73,6 +73,39 @@ public: cyclicPointPatch(patch, bm) {} + //- Construct given the original patch and a map + cyclicSlipPointPatch + ( + const cyclicSlipPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) + : + cyclicPointPatch(patch, bm, index, mapAddressing, reversePointMap) + {} + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<cyclicSlipPointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } + //- Destructor virtual ~cyclicSlipPointPatch() = default; diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/empty/emptyPointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/empty/emptyPointPatch.H index 629cb53f9ac22b3c620b96c30feea11750526d92..6e4a41fe5d1e41d7fa96fdd3f172aeb9eff8f636 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/empty/emptyPointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/empty/emptyPointPatch.H @@ -72,6 +72,39 @@ public: facePointPatch(patch, bm) {} + //- Construct given the original patch and a map + emptyPointPatch + ( + const emptyPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) + : + facePointPatch(patch, bm, index, mapAddressing, reversePointMap) + {} + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<emptyPointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } + // Member Functions diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicPointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicPointPatch.H index 215d66170b539a755e3e84fbbd5907f97b53b235..8721152ad715a943cb3f0d3218a2380b378e27ad 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicPointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicPointPatch.H @@ -73,6 +73,40 @@ public: cyclicPointPatch(patch, bm) {} + //- Construct given the original patch and a map + nonuniformTransformCyclicPointPatch + ( + const nonuniformTransformCyclicPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) + : + cyclicPointPatch(patch, bm, index, mapAddressing, reversePointMap) + {} + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>:: + NewFrom<nonuniformTransformCyclicPointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } + // Destructor diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.C b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.C index 2190e44f8407add2d9ab9402699a0b421308c183..b81fab03d566f3b6119def2d7a1fe087e7963d17 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.C +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.C @@ -117,4 +117,20 @@ Foam::processorPointPatch::processorPointPatch {} +Foam::processorPointPatch::processorPointPatch +( + const processorPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap +) +: + coupledFacePointPatch(patch, bm, index, mapAddressing, reversePointMap), + procPolyPatch_(refCast<const processorPolyPatch>(patch.patch())) +{ + //? map reverseMeshPoints_ or leave demand-driven +} + + // ************************************************************************* // diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.H index df6a488b417bd9645b22800978697affab758cbc..2c59c5c9f357112ae07c81f909a183edcfeb2506 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.H @@ -111,6 +111,36 @@ public: const pointBoundaryMesh& bm ); + //- Construct given the original patch and a map + processorPointPatch + ( + const processorPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ); + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<processorPointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } + //- Destructor virtual ~processorPointPatch() = default; diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processorCyclic/processorCyclicPointPatch.C b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processorCyclic/processorCyclicPointPatch.C index c195173f03926c5450aeef9e2873a5dd60f74226..0b933a27575c47bb3e585361d4b0c17b99bffe33 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processorCyclic/processorCyclicPointPatch.C +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processorCyclic/processorCyclicPointPatch.C @@ -59,6 +59,20 @@ processorCyclicPointPatch::processorCyclicPointPatch {} +Foam::processorCyclicPointPatch::processorCyclicPointPatch +( + const processorCyclicPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap +) +: + processorPointPatch(patch, bm, index, mapAddressing, reversePointMap), + procCycPolyPatch_(refCast<const processorCyclicPolyPatch>(patch.patch())) +{} + + // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // processorCyclicPointPatch::~processorCyclicPointPatch() diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processorCyclic/processorCyclicPointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processorCyclic/processorCyclicPointPatch.H index c24d0324544db53466717ce7562b909d6b5d49bf..1132df269ef4f6c02b401a749486181ada3f97d5 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processorCyclic/processorCyclicPointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processorCyclic/processorCyclicPointPatch.H @@ -89,6 +89,36 @@ public: const pointBoundaryMesh& bm ); + //- Construct given the original patch and a map + processorCyclicPointPatch + ( + const processorCyclicPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ); + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<processorCyclicPointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } + //- Destructor virtual ~processorCyclicPointPatch(); diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetry/symmetryPointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetry/symmetryPointPatch.H index d1dccb9125e6b8364d1e0d25e4e2f373e17fc956..6061b2aa8265c598b0b6d4b22f17e49288109642 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetry/symmetryPointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetry/symmetryPointPatch.H @@ -75,6 +75,38 @@ public: facePointPatch(patch, bm) {} + //- Construct given the original patch and a map + symmetryPointPatch + ( + const symmetryPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ): + facePointPatch(patch, bm, index, mapAddressing, reversePointMap) + {} + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<symmetryPointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } + // Member Functions diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetryPlane/symmetryPlanePointPatch.C b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetryPlane/symmetryPlanePointPatch.C index 57e66e7cc467fb3fae03d7eb2278c1b11efef341..52bfbfe9f010aeff616e339789e7d4b197f9fb34 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetryPlane/symmetryPlanePointPatch.C +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetryPlane/symmetryPlanePointPatch.C @@ -58,6 +58,23 @@ Foam::symmetryPlanePointPatch::symmetryPlanePointPatch {} +Foam::symmetryPlanePointPatch::symmetryPlanePointPatch +( + const symmetryPlanePointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap +) +: + facePointPatch(patch, bm, index, mapAddressing, reversePointMap), + symmetryPlanePolyPatch_ + ( + refCast<const symmetryPlanePolyPatch>(patch.patch()) + ) +{} + + // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::symmetryPlanePointPatch::applyConstraint diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetryPlane/symmetryPlanePointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetryPlane/symmetryPlanePointPatch.H index cbca7e1f3c86f2ed92bac7587e98b5ab55f34063..869a8725709bf5d9761e859063bf63ed873c75ba 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetryPlane/symmetryPlanePointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetryPlane/symmetryPlanePointPatch.H @@ -74,6 +74,36 @@ public: const pointBoundaryMesh& bm ); + //- Construct given the original patch and a map + symmetryPlanePointPatch + ( + const symmetryPlanePointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ); + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<symmetryPlanePointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } + // Member Functions diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/wedge/wedgePointPatch.C b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/wedge/wedgePointPatch.C index 13989369045ffb8034e3f5f2c6c74800a9ab2921..84b1181045b43884361a44faa5853fdf7b2f1bf6 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/wedge/wedgePointPatch.C +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/wedge/wedgePointPatch.C @@ -58,6 +58,20 @@ Foam::wedgePointPatch::wedgePointPatch {} +Foam::wedgePointPatch::wedgePointPatch +( + const wedgePointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap +) +: + facePointPatch(patch, bm, index, mapAddressing, reversePointMap), + wedgePolyPatch_(refCast<const wedgePolyPatch>(patch.patch())) +{} + + // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::wedgePointPatch::applyConstraint diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/wedge/wedgePointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/wedge/wedgePointPatch.H index e0100939cd68d5db63019cc5845c8ae0c0253e8e..a21513d04f8d23b1d294ae8153c2d9d8be9c5874 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/wedge/wedgePointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/wedge/wedgePointPatch.H @@ -74,6 +74,36 @@ public: const pointBoundaryMesh& bm ); + //- Construct given the original patch and a map + wedgePointPatch + ( + const wedgePointPatch& pp, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ); + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<wedgePointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } + // Member Functions diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/coupled/coupledFacePointPatch.C b/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/coupled/coupledFacePointPatch.C index 40ab33cdd97714dfa3fc48b28da589a2918f9a6e..0dcb653a0523663cd7f7d61a5971f79cf4d0ca67 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/coupled/coupledFacePointPatch.C +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/coupled/coupledFacePointPatch.C @@ -50,4 +50,19 @@ Foam::coupledFacePointPatch::coupledFacePointPatch {} +Foam::coupledFacePointPatch::coupledFacePointPatch +( + const coupledFacePointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap +) +: + facePointPatch(patch, bm, index, mapAddressing, reversePointMap), + coupledPointPatch(bm), + coupledPolyPatch_(refCast<const coupledPolyPatch>(patch.patch())) +{} + + // ************************************************************************* // diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/coupled/coupledFacePointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/coupled/coupledFacePointPatch.H index e3701771b458f868aaf1f2507bd04057b4205ea1..34724847dd21927a9d9dfd4b4f21913a3b77eeb8 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/coupled/coupledFacePointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/coupled/coupledFacePointPatch.H @@ -91,6 +91,16 @@ public: const pointBoundaryMesh& bm ); + //- Construct given the original patch and a map + coupledFacePointPatch + ( + const coupledFacePointPatch& pp, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ); + //- Destructor virtual ~coupledFacePointPatch() = default; diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/wall/wallPointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/wall/wallPointPatch.H index a69065029fa195e4f1ebb7110cdc3545f62ed68a..bc7b4c0fd0145ee97e8bf472d0fad3d6771af00a 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/wall/wallPointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/derived/wall/wallPointPatch.H @@ -71,6 +71,39 @@ public: : facePointPatch(patch, bm) {} + + //- Construct given the original patch and a map + wallPointPatch + ( + const wallPointPatch& patch, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) + : + facePointPatch(patch, bm, index, mapAddressing, reversePointMap) + {} + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<wallPointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } }; diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/facePointPatch/facePointPatch.C b/src/OpenFOAM/meshes/pointMesh/pointPatches/facePointPatch/facePointPatch.C index 1025a998fc9f1c1a190201313c728fde364f9191..594061a96f86db8e35047afbb09e93920837fa85 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/facePointPatch/facePointPatch.C +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/facePointPatch/facePointPatch.C @@ -84,9 +84,30 @@ Foam::facePointPatch::facePointPatch const pointBoundaryMesh& bm ) : - pointPatch(bm), + pointPatch(p.name(), p.index(), bm, p.physicalType(), p.inGroups()), polyPatch_(p) {} +Foam::facePointPatch::facePointPatch +( + const facePointPatch& pp, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap +) +: + pointPatch + ( + pp.name(), + index, + bm, + pp.physicalType(), + pp.inGroups() + ), + polyPatch_(pp.patch()) +{} + + // ************************************************************************* // diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/facePointPatch/facePointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/facePointPatch/facePointPatch.H index efb6c4789956a1af827230db19a9487f4351a1f7..a988d533116e8c38d9ac482fd613296240ed810c 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/facePointPatch/facePointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/facePointPatch/facePointPatch.H @@ -128,6 +128,36 @@ public: const pointBoundaryMesh& pm ); + //- Construct given the original patch and a map + facePointPatch + ( + const facePointPatch& pp, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ); + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<facePointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } + // Selectors diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/meshPointPatch/meshPointPatch.C b/src/OpenFOAM/meshes/pointMesh/pointPatches/meshPointPatch/meshPointPatch.C new file mode 100644 index 0000000000000000000000000000000000000000..2e9c845c75cd2eacec46fd6aa351bed7b4938b4f --- /dev/null +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/meshPointPatch/meshPointPatch.C @@ -0,0 +1,235 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2016 OpenFOAM Foundation + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "meshPointPatch.H" +#include "addToRunTimeSelectionTable.H" +#include "pointMesh.H" +#include "pointConstraint.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +defineTypeNameAndDebug(meshPointPatch, 0); + +//- Needs run-time selection table on pointPatch, not facePointPatch +addToRunTimeSelectionTable +( + pointPatch, + meshPointPatch, + dictionary +); + +static List<pointConstraint> makeConstraints(const vectorField& normals) +{ + List<pointConstraint> cs(normals.size()); + + forAll(cs, i) + { + cs[i].applyConstraint(normals[i]); + } + return cs; +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::meshPointPatch::meshPointPatch +( + const word& name, + const labelUList& meshPoints, + const List<pointConstraint>& constraints, + const label index, + const pointBoundaryMesh& bm, + const word& patchType +) +: + pointPatch(name, index, bm, word::null, wordList()), + meshPoints_(meshPoints), + constraints_(constraints) +{ + if (meshPoints_.size() != constraints_.size()) + { + FatalErrorInFunction << "patch " << name + << " size of meshPoints " << meshPoints_.size() + << " differs from size of constraints " << constraints_.size() + << exit(FatalError); + } +} + + +Foam::meshPointPatch::meshPointPatch +( + const word& name, + const labelUList& meshPoints, + const vectorField& pointNormals, + const label index, + const pointBoundaryMesh& bm, + const word& patchType +) +: + pointPatch(name, index, bm, word::null, wordList()), + meshPoints_(meshPoints), + constraints_(makeConstraints(pointNormals)) +{ + if (meshPoints_.size() != pointNormals.size()) + { + FatalErrorInFunction << "patch " << name + << " size of meshPoints " << meshPoints_.size() + << " differs from size of pointNormals " << pointNormals.size() + << exit(FatalError); + } +} + + +Foam::meshPointPatch::meshPointPatch +( + const word& name, + const dictionary& dict, + const label index, + const pointBoundaryMesh& bm, + const word& patchType +) +: + pointPatch(name, dict, index, bm), + meshPoints_(dict.get<labelList>("meshPoints")), + constraints_(dict.get<List<pointConstraint>>("constraints")) +{} + + +Foam::meshPointPatch::meshPointPatch +( + const meshPointPatch& pp, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap +) +: + meshPointPatch + ( + pp.name(), + labelList(reversePointMap, labelList(pp.meshPoints(), mapAddressing)), + List<pointConstraint>(pp.constraints(), mapAddressing), + index, + bm, + pp.type() + ) +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +void Foam::meshPointPatch::movePoints(PstreamBuffers&, const pointField& p) +{ + localPointsPtr_.reset(nullptr); + + // Recalculate the point normals? Something like + //if (owner()) + //{ + // const SubList<face> subFaces + // ( + // mesh.faces(), + // mesh.nBoundaryFaces(), + // mesh.nInternalFaces() + // ); + // const primitivePatch pp(subFaces, mesh.points()); + // + // + // for (const label pointi : meshPoints()) + // { + // const auto fnd(pp.meshPointMap().find(pointi)); + // if (fnd) + // { + // const label patchPointi = fnd(); + // // Determine point patch equiv + // + // const auto& point + // + // + +} + + +void Foam::meshPointPatch::updateMesh(PstreamBuffers&) +{ + localPointsPtr_.reset(nullptr); + pointNormalsPtr_.reset(nullptr); + // Do what to constraints_? Don't know what the new mesh points are +} + + +const Foam::pointField& Foam::meshPointPatch::localPoints() const +{ + if (!localPointsPtr_) + { + localPointsPtr_.reset + ( + new pointField + ( + boundaryMesh().mesh().mesh().points(), + meshPoints() + ) + ); + } + return localPointsPtr_(); +} + + +const Foam::vectorField& Foam::meshPointPatch::pointNormals() const +{ + if (!pointNormalsPtr_) + { + pointNormalsPtr_.reset(new vectorField(size())); + vectorField& pointNormals = pointNormalsPtr_(); + forAll(constraints_, i) + { + pointNormals[i] = constraints_[i].second(); + } + } + return pointNormalsPtr_(); +} + + +void Foam::meshPointPatch::write(Ostream& os) const +{ + pointPatch::write(os); + meshPoints().writeEntry("meshPoints", os); + constraints().writeEntry("constraints", os); +} + + +// ************************************************************************* // diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/meshPointPatch/meshPointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/meshPointPatch/meshPointPatch.H new file mode 100644 index 0000000000000000000000000000000000000000..54853d74386ac03f0c404ac8122d87f33c4a404d --- /dev/null +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/meshPointPatch/meshPointPatch.H @@ -0,0 +1,213 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2016 OpenFOAM Foundation + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::meshPointPatch + +Description + pointPatch with explicitly provided points instead of using the points + of a polyPatch. + + Note: does not constrain displacement - is not a constraint patch. + +SourceFiles + meshPointPatch.C + +\*---------------------------------------------------------------------------*/ + +#ifndef meshPointPatch_H +#define meshPointPatch_H + +#include "pointPatch.H" +#include "polyPatch.H" +#include "autoPtr.H" +#include "patchIdentifier.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class meshPointPatch Declaration +\*---------------------------------------------------------------------------*/ + +class meshPointPatch +: + public pointPatch +{ +private: + + // Private Member Functions + + //- No copy construct + meshPointPatch(const meshPointPatch&) = delete; + + //- No copy assignment + void operator=(const meshPointPatch&) = delete; + + +protected: + + // Protected Member Data + + //- Explicit mesh points + const labelList meshPoints_; + + const List<pointConstraint> constraints_; + + //- Demand-driven local points + mutable autoPtr<pointField> localPointsPtr_; + + //- Demand-driven local normals (assumes constructed with pointNormals + // or normal-only-constraint) + mutable autoPtr<pointField> pointNormalsPtr_; + + + // Protected Member Functions + + //- Correct patches after moving points + virtual void movePoints(PstreamBuffers&, const pointField&); + + //- Update of the patch topology + virtual void updateMesh(PstreamBuffers&); + + +public: + + //- Runtime type information + TypeName("meshPoint"); + + + // Constructors + + //- Construct from components + meshPointPatch + ( + const word& name, + const labelUList& meshPoints, + const List<pointConstraint>& constraints, + const label index, + const pointBoundaryMesh& bm, + const word& patchType + ); + + //- Construct from single-constraint (i.e. slip, provided normals) + meshPointPatch + ( + const word& name, + const labelUList& meshPoints, + const vectorField& pointNormals, + const label index, + const pointBoundaryMesh& bm, + const word& patchType + ); + + //- Construct from dictionary + meshPointPatch + ( + const word& name, + const dictionary& dict, + const label index, + const pointBoundaryMesh& bm, + const word& patchType + ); + + //- Construct given the original patch and a map + meshPointPatch + ( + const meshPointPatch& pp, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ); + + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const + { + return autoPtr<pointPatch>::NewFrom<meshPointPatch> + ( + *this, + bm, + index, + mapAddressing, + reversePointMap + ); + } + + + //- Destructor + virtual ~meshPointPatch() = default; + + + // Member Functions + + //- Return size + virtual label size() const + { + return meshPoints().size(); + } + + //- Return mesh points + virtual const labelList& meshPoints() const + { + return meshPoints_; + } + + //- Return constraints + virtual const List<pointConstraint>& constraints() const + { + return constraints_; + } + + //- Return pointField of points in patch + virtual const pointField& localPoints() const; + + //- Return point unit normals. Assumes single constraint + virtual const vectorField& pointNormals() const; + + //- Write the pointPatch data as a dictionary + virtual void write(Ostream&) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/pointPatch/pointPatch.C b/src/OpenFOAM/meshes/pointMesh/pointPatches/pointPatch/pointPatch.C index 39bc76279354e5754132d3baace7e19f6d87899a..9e462b02ffb2d7ecf785b81957a2a952b498a391 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/pointPatch/pointPatch.C +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/pointPatch/pointPatch.C @@ -6,6 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2012 OpenFOAM Foundation + Copyright (C) 2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -31,7 +32,33 @@ License namespace Foam { -defineTypeNameAndDebug(pointPatch, 0); + defineTypeNameAndDebug(pointPatch, 0); + +// int pointPatch::disallowGenericPointPatch +// ( +// debug::debugSwitch("disallowGenericPointPatch", 0) +// ); + + defineRunTimeSelectionTable(pointPatch, dictionary); +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +void Foam::pointPatch::write(Ostream& os) const +{ + os.writeKeyword("type") << type() << token::END_STATEMENT << nl; + patchIdentifier::write(os); +} + + +// * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * // + +Foam::Ostream& Foam::operator<<(Ostream& os, const pointPatch& p) +{ + p.write(os); + os.check("Ostream& operator<<(Ostream& os, const pointPatch& p"); + return os; } diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/pointPatch/pointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/pointPatch/pointPatch.H index 22b6e1943836eec073d64710ea03231bcee92a78..6af214b3192ee84b4e2d4bfccb03a461641f79c4 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/pointPatch/pointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/pointPatch/pointPatch.H @@ -38,6 +38,7 @@ SourceFiles #ifndef Foam_pointPatch_H #define Foam_pointPatch_H +#include "patchIdentifier.H" #include "labelList.H" #include "vectorField.H" #include "pointField.H" @@ -54,6 +55,8 @@ class pointConstraint; class pointPatch; class PstreamBuffers; +Ostream& operator<<(Ostream&, const pointPatch&); + //- Store lists of pointPatch as a PtrList typedef PtrList<pointPatch> pointPatchList; @@ -62,6 +65,8 @@ typedef PtrList<pointPatch> pointPatchList; \*---------------------------------------------------------------------------*/ class pointPatch +: + public patchIdentifier { // Private Data @@ -114,14 +119,90 @@ public: TypeName("basePatch"); + // Declare run-time constructor selection tables + + declareRunTimeSelectionTable + ( + autoPtr, + pointPatch, + dictionary, + ( + const word& name, + const dictionary& dict, + const label index, + const pointBoundaryMesh& bm, + const word& patchType + ), + (name, dict, index, bm, patchType) + ); + + // Constructor - //- Construct from boundary mesh - explicit pointPatch(const pointBoundaryMesh& bm) + //- Construct from components + explicit pointPatch + ( + const word& name, + const label index, + const pointBoundaryMesh& bm, + const word& physicalType, + const wordList& inGroups + ) + : + patchIdentifier(name, index, physicalType, inGroups), + boundaryMesh_(bm) + {} + + //- Construct from dictionary + explicit pointPatch + ( + const word& name, + const dictionary& dict, + const label index, + const pointBoundaryMesh& bm + ) + : + patchIdentifier(name, dict, index), + boundaryMesh_(bm) + {} + + //- Construct given the original patch and a map + explicit pointPatch + ( + const pointPatch& pp, + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) : + patchIdentifier(pp.name(), index, pp.physicalType(), pp.inGroups()), boundaryMesh_(bm) {} + //- Construct and return a subset clone, + //- resetting the point list and boundary mesh + virtual autoPtr<pointPatch> clone + ( + const pointBoundaryMesh& bm, + const label index, + const labelUList& mapAddressing, + const labelUList& reversePointMap + ) const = 0; + + + // Selectors + + //- Return a pointer to a new patch created on freestore. Returns + //- null if not found + static autoPtr<pointPatch> New + ( + const word& name, + const dictionary& dict, + const label index, + const pointBoundaryMesh& + ); + //- Destructor virtual ~pointPatch() = default; @@ -129,15 +210,9 @@ public: // Member Functions - //- Return name - virtual const word& name() const = 0; - //- Return size virtual label size() const = 0; - //- Return the index of this patch in the pointBoundaryMesh - virtual label index() const = 0; - //- Return boundaryMesh reference const pointBoundaryMesh& boundaryMesh() const { @@ -172,6 +247,14 @@ public: pointConstraint& ) const {} + + //- Write the pointPatch data as a dictionary + virtual void write(Ostream&) const; + + + // Ostream Operator + + friend Ostream& operator<<(Ostream&, const pointPatch&); }; diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/pointPatch/pointPatchNew.C b/src/OpenFOAM/meshes/pointMesh/pointPatches/pointPatch/pointPatchNew.C new file mode 100644 index 0000000000000000000000000000000000000000..ce57b873a01618de10b75cdaecb96a7b420cac6e --- /dev/null +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/pointPatch/pointPatchNew.C @@ -0,0 +1,56 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 2016 OpenFOAM Foundation + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "pointPatch.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +Foam::autoPtr<Foam::pointPatch> Foam::pointPatch::New +( + const word& name, + const dictionary& dict, + const label index, + const pointBoundaryMesh& bm +) +{ + // Similar to polyPatchNew but no support for generic since we want it + // to fall through to the construct-from-polyPatch + DebugInFunction << "Constructing pointPatch" << endl; + + const word patchType(dict.lookup("type")); + //dict.readIfPresent("geometricType", patchType); + + auto* ctorPtr = dictionaryConstructorTable(patchType); + + if (!ctorPtr) + { + return nullptr; + } + + return autoPtr<pointPatch>(ctorPtr(name, dict, index, bm, patchType)); +} + + +// ************************************************************************* // diff --git a/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshData.C b/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshData.C index c46241ecebaf2cf703b33d711f962f3dda13b375..55ac9b98fc440df45d1fbc6259adb5ef7bee8499 100644 --- a/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshData.C +++ b/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshData.C @@ -88,6 +88,9 @@ void Foam::globalMeshData::initProcAddr() if (UPstream::parRun()) { + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + PstreamBuffers pBufs(mesh_.comm()); // Send indices of my processor patches to my neighbours @@ -120,6 +123,9 @@ void Foam::globalMeshData::initProcAddr() fromNeighbour >> processorPatchNeighbours_[patchi]; } + + // Reset tag + UPstream::msgType(oldTag); } } @@ -137,6 +143,9 @@ void Foam::globalMeshData::calcSharedPoints() const << "Shared point addressing already done" << abort(FatalError); } + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + // Calculate all shared points (exclude points that are only // on two coupled patches). This does all the hard work. const globalPoints parallelPoints(mesh_, false, true); @@ -229,6 +238,9 @@ void Foam::globalMeshData::calcSharedPoints() const } } + // Reset tag + UPstream::msgType(oldTag); + if (debug) { Pout<< "globalMeshData : nGlobalPoints_:" << nGlobalPoints_ << nl @@ -356,6 +368,9 @@ void Foam::globalMeshData::calcSharedEdges() const EdgeMap<label> globalShared(2*nGlobalPoints()); + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + if (UPstream::master()) { label sharedEdgeI = 0; @@ -466,6 +481,9 @@ void Foam::globalMeshData::calcSharedEdges() const new labelList(std::move(dynSharedEdgeAddr)) ); + // Reset tag + UPstream::msgType(oldTag); + if (debug) { Pout<< "globalMeshData : nGlobalEdges_:" << nGlobalEdges_ << nl @@ -486,6 +504,9 @@ void Foam::globalMeshData::calcGlobalPointSlaves() const << endl; } + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + // Calculate connected points for master points. globalPoints globalData(mesh_, coupledPatch(), true, true); @@ -511,6 +532,9 @@ void Foam::globalMeshData::calcGlobalPointSlaves() const std::move(globalData.map()) ) ); + + // Reset tag + UPstream::msgType(oldTag); } @@ -522,10 +546,14 @@ void Foam::globalMeshData::calcPointConnectivity const globalIndexAndTransform& transforms = globalTransforms(); const labelListList& slaves = globalPointSlaves(); const labelListList& transformedSlaves = globalPointTransformedSlaves(); + const auto& slavesMap = globalPointSlavesMap(); + + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); // Create field with my local data - labelPairList myData(globalPointSlavesMap().constructSize()); + labelPairList myData(slavesMap.constructSize()); forAll(slaves, pointi) { myData[pointi] = transforms.encode @@ -536,11 +564,11 @@ void Foam::globalMeshData::calcPointConnectivity ); } // Send to master - globalPointSlavesMap().distribute(myData); + slavesMap.distribute(myData, true, UPstream::msgType()); // String of connected points with their transform - allPointConnectivity.setSize(globalPointSlavesMap().constructSize()); + allPointConnectivity.setSize(slavesMap.constructSize()); allPointConnectivity = labelPairList(0); // Pass1: do the master points since these also update local slaves @@ -569,7 +597,7 @@ void Foam::globalMeshData::calcPointConnectivity forAll(pTransformSlaves, i) { // Get transform from index - label transformI = globalPointSlavesMap().whichTransform + label transformI = slavesMap.whichTransform ( pTransformSlaves[i] ); @@ -610,11 +638,16 @@ void Foam::globalMeshData::calcPointConnectivity } - globalPointSlavesMap().reverseDistribute + slavesMap.reverseDistribute ( slaves.size(), - allPointConnectivity + allPointConnectivity, + true, + UPstream::msgType() ); + + // Reset tag + UPstream::msgType(oldTag); } @@ -655,8 +688,25 @@ void Foam::globalMeshData::calcGlobalPointEdges } // Pull slave data to master. Dummy transform. - globalPointSlavesMap().distribute(globalPointEdges); - globalPointSlavesMap().distribute(globalPointPoints); + + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + + globalPointSlavesMap().distribute + ( + globalPointEdges, + true, + UPstream::msgType() + ); + // Make sure second send uses 'far' away tags in case of NBX deciding on + // multi-pass spraying of messages with consecutive tags + globalPointSlavesMap().distribute + ( + globalPointPoints, + true, + UPstream::msgType()+23456 // Unique, far enough away tag + ); + // Add all pointEdges forAll(slaves, pointi) { @@ -764,14 +814,21 @@ void Foam::globalMeshData::calcGlobalPointEdges globalPointSlavesMap().reverseDistribute ( slaves.size(), - globalPointEdges + globalPointEdges, + true, + UPstream::msgType() ); // Push back globalPointSlavesMap().reverseDistribute ( slaves.size(), - globalPointPoints + globalPointPoints, + true, + UPstream::msgType()+65432 // Unique, far enough away tag ); + + // Reset tag + UPstream::msgType(oldTag); } @@ -852,6 +909,8 @@ void Foam::globalMeshData::calcGlobalEdgeSlaves() const // need to make sure that all points know about connectivity and // the transformations. + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); // 1. collect point connectivity - basically recreating globalPoints output. // All points will now have a string of coupled points. The transforms are @@ -1037,10 +1096,13 @@ void Foam::globalMeshData::calcGlobalEdgeSlaves() const transformedEdges, globalEdgeTransformedSlavesPtr_(), - compactMap + compactMap, + UPstream::msgType() ) ); + // Reset tag + UPstream::msgType(oldTag); if (debug) { @@ -1061,6 +1123,9 @@ void Foam::globalMeshData::calcGlobalEdgeOrientation() const << " calculating edge orientation w.r.t. master edge." << endl; } + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + const globalIndex& globalPoints = globalPointNumbering(); // 1. Determine master point @@ -1172,6 +1237,9 @@ void Foam::globalMeshData::calcGlobalEdgeOrientation() const } } + // Reset tag + UPstream::msgType(oldTag); + if (debug) { Pout<< "globalMeshData::calcGlobalEdgeOrientation() :" @@ -1262,6 +1330,9 @@ void Foam::globalMeshData::calcGlobalPointBoundaryFaces() const const label myProci = UPstream::myProcNo(); + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + // Construct local point to (uncoupled)boundaryfaces. labelListList pointBoundaryFaces; calcPointBoundaryFaces(pointBoundaryFaces); @@ -1429,6 +1500,9 @@ void Foam::globalMeshData::calcGlobalPointBoundaryFaces() const globalPointBoundaryFaces.setSize(coupledPatch().nPoints()); globalPointTransformedBoundaryFacesPtr_().setSize(coupledPatch().nPoints()); + // Reset tag + UPstream::msgType(oldTag); + if (debug) { Pout<< "globalMeshData::calcGlobalPointBoundaryFaces() :" @@ -1498,6 +1572,10 @@ void Foam::globalMeshData::calcGlobalPointBoundaryCells() const // Convert point-cells to global (boundary)cell numbers // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + globalBoundaryCellNumberingPtr_.reset ( new globalIndex(boundaryCells.size()) @@ -1654,6 +1732,9 @@ void Foam::globalMeshData::calcGlobalPointBoundaryCells() const globalPointBoundaryCells.setSize(coupledPatch().nPoints()); globalPointTransformedBoundaryCellsPtr_().setSize(coupledPatch().nPoints()); + // Reset tag + UPstream::msgType(oldTag); + if (debug) { Pout<< "globalMeshData::calcGlobalPointBoundaryCells() :" @@ -1676,6 +1757,9 @@ void Foam::globalMeshData::calcGlobalCoPointSlaves() const << " slave point addressing." << endl; } + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + // Calculate connected points for master points. globalPoints globalData(mesh_, coupledPatch(), true, false); @@ -1694,6 +1778,8 @@ void Foam::globalMeshData::calcGlobalCoPointSlaves() const ) ); + UPstream::msgType(oldTag); + if (debug) { Pout<< "globalMeshData::calcGlobalCoPointSlaves() :" @@ -1850,6 +1936,9 @@ Foam::pointField Foam::globalMeshData::sharedPoints() const // Get all processors to send their shared points to master. // (not very efficient) + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + pointField sharedPoints(nGlobalPoints()); const labelList& pointAddr = sharedPointAddr(); const labelList& pointLabels = sharedPointLabels(); @@ -1901,6 +1990,8 @@ Foam::pointField Foam::globalMeshData::sharedPoints() const // Broadcast: sharedPoints to all Pstream::broadcast(sharedPoints); // == worldComm + // Reset tag + UPstream::msgType(oldTag); return sharedPoints; } @@ -1908,6 +1999,9 @@ Foam::pointField Foam::globalMeshData::sharedPoints() const Foam::pointField Foam::globalMeshData::geometricSharedPoints() const { + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + // Get coords of my shared points pointField sharedPoints(mesh_.points(), sharedPointLabels()); @@ -1926,6 +2020,9 @@ Foam::pointField Foam::globalMeshData::geometricSharedPoints() const pointMap ); + // Reset tag + UPstream::msgType(oldTag); + return sharedPoints; } @@ -2091,10 +2188,16 @@ const Foam::globalIndex& Foam::globalMeshData::globalPointNumbering() const { if (!globalPointNumberingPtr_) { + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + globalPointNumberingPtr_.reset ( new globalIndex(coupledPatch().nPoints()) ); + + // Reset tag + UPstream::msgType(oldTag); } return *globalPointNumberingPtr_; } @@ -2105,7 +2208,13 @@ Foam::globalMeshData::globalTransforms() const { if (!globalTransformsPtr_) { + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + globalTransformsPtr_.reset(new globalIndexAndTransform(mesh_)); + + // Reset tag + UPstream::msgType(oldTag); } return *globalTransformsPtr_; } @@ -2146,10 +2255,16 @@ const Foam::globalIndex& Foam::globalMeshData::globalEdgeNumbering() const { if (!globalEdgeNumberingPtr_) { + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + globalEdgeNumberingPtr_.reset ( new globalIndex(coupledPatch().nEdges()) ); + + // Reset tag + UPstream::msgType(oldTag); } return *globalEdgeNumberingPtr_; } @@ -2326,6 +2441,8 @@ Foam::autoPtr<Foam::globalIndex> Foam::globalMeshData::mergePoints const labelListList& pointSlaves = globalCoPointSlaves(); const mapDistribute& pointSlavesMap = globalCoPointSlavesMap(); + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); // Points are either // - master with slaves @@ -2444,6 +2561,9 @@ Foam::autoPtr<Foam::globalIndex> Foam::globalMeshData::mergePoints } } + // Restore tag + UPstream::msgType(oldTag); + return globalPointsPtr; } @@ -2471,6 +2591,9 @@ Foam::autoPtr<Foam::globalIndex> Foam::globalMeshData::mergePoints // patch point via coupled patches). + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + // Determine mapping: // - from patch point to coupled point (or -1) // - from coupled point to global patch point @@ -2659,6 +2782,9 @@ Foam::autoPtr<Foam::globalIndex> Foam::globalMeshData::mergePoints } } + // Restore tag + UPstream::msgType(oldTag); + return globalPointsPtr; } diff --git a/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshDataTemplates.C b/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshDataTemplates.C index fff043fdb0ba90142724838fdfabaa85531c79ea..2e6fc1460a39f1d4490b075a6acd44f59299b78f 100644 --- a/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshDataTemplates.C +++ b/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshDataTemplates.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2015 OpenFOAM Foundation - Copyright (C) 2018-2019 OpenCFD Ltd. + Copyright (C) 2018-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -44,6 +44,9 @@ void Foam::globalMeshData::syncData const TransformOp& top ) { + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + // Pull slave data onto master slavesMap.distribute(transforms, elems, top); @@ -94,6 +97,9 @@ void Foam::globalMeshData::syncData elems, top ); + + // Reset tag + UPstream::msgType(oldTag); } @@ -107,6 +113,9 @@ void Foam::globalMeshData::syncData const CombineOp& cop ) { + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + // Pull slave data onto master slavesMap.distribute(elems); @@ -151,6 +160,9 @@ void Foam::globalMeshData::syncData // Push slave-slot data back to slaves slavesMap.reverseDistribute(elems.size(), elems); + + // Reset tag + UPstream::msgType(oldTag); } diff --git a/src/OpenFOAM/meshes/polyMesh/polyBoundaryMesh/polyBoundaryMesh.C b/src/OpenFOAM/meshes/polyMesh/polyBoundaryMesh/polyBoundaryMesh.C index 5d096e36f6ad1e91c02e9dfc89630fe083472829..c3e9cd5d6a0c956346be431c386d89f184a2d649 100644 --- a/src/OpenFOAM/meshes/polyMesh/polyBoundaryMesh/polyBoundaryMesh.C +++ b/src/OpenFOAM/meshes/polyMesh/polyBoundaryMesh/polyBoundaryMesh.C @@ -300,6 +300,9 @@ void Foam::polyBoundaryMesh::clearAddressing() void Foam::polyBoundaryMesh::calcGeometry() { + // Make sure messages don't interact by having unique tag + const int oldTag = UPstream::incrMsgType(); + PstreamBuffers pBufs(Pstream::defaultCommsType); if @@ -341,6 +344,9 @@ void Foam::polyBoundaryMesh::calcGeometry() } } } + + // Reset tag + UPstream::msgType(oldTag); } @@ -978,14 +984,22 @@ Foam::polyBoundaryMesh::whichPatchFace(const label meshFacei) const } - // Patches are ordered, use binary search - // Find out which patch index and local patch face the specified - // mesh face belongs to by comparing label with patch start labels. + const polyPatchList& patches = *this; + // Do we have cached patch info? + if (patchIDPtr_) + { + const label patchi = + this->patchID()[meshFacei - mesh().nInternalFaces()]; - // TBD: use patchIDPtr_ if it exists? + // (patch, local face index) + return labelPair(patchi, meshFacei - patches[patchi].start()); + } - const polyPatchList& patches = *this; + + // Patches are ordered, use binary search + // Find out which patch index and local patch face the specified + // mesh face belongs to by comparing label with patch start labels. const label patchi = findLower @@ -1404,6 +1418,9 @@ void Foam::polyBoundaryMesh::reorder patches[patchi].index() = patchi; } + // Clear group-to-patch addressing. Note: could re-calculate + groupIDsPtr_.reset(nullptr); + if (validBoundary) { updateMesh(); diff --git a/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/symmetryPlane/symmetryPlanePolyPatch.C b/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/symmetryPlane/symmetryPlanePolyPatch.C index b71af44be2f36941f2bd0782699728c53cac8624..eda279c964807930fb2ffd58ac73d769a7e220f4 100644 --- a/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/symmetryPlane/symmetryPlanePolyPatch.C +++ b/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/symmetryPlane/symmetryPlanePolyPatch.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2013-2015 OpenFOAM Foundation - Copyright (C) 2022 OpenCFD Ltd. + Copyright (C) 2022,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -49,8 +49,12 @@ void Foam::symmetryPlanePolyPatch::calcGeometry(PstreamBuffers&) { if (returnReduceOr(size())) { - const vectorField& nf = faceNormals(); - n_ = gAverage(nf); + // Instead of using the average unit-normal use an area weighted + // average instead. This avoids problem when adding zero-sized + // faces since these have a calculated area vector of (0 0 0) + const auto& areas = faceAreas(); + + n_ = gSum(areas).normalise(ROOTVSMALL); if (debug) { @@ -60,22 +64,30 @@ void Foam::symmetryPlanePolyPatch::calcGeometry(PstreamBuffers&) // Check the symmetry plane is planar - forAll(nf, facei) + forAll(areas, facei) { - if (magSqr(n_ - nf[facei]) > SMALL) + const scalar a = mag(areas[facei]); + + // Calculate only if non-zero area + if (a > ROOTVSMALL) { - FatalErrorInFunction - << "Symmetry plane '" << name() << "' is not planar." - << endl - << "At local face at " - << primitivePatch::faceCentres()[facei] - << " the normal " << nf[facei] - << " differs from the average normal " << n_ - << " by " << magSqr(n_ - nf[facei]) << endl - << "Either split the patch into planar parts" - << " or use the " << symmetryPolyPatch::typeName - << " patch type" - << exit(FatalError); + const vector nf(areas[facei]/a); + + if (magSqr(n_ - nf) > SMALL) + { + FatalErrorInFunction + << "Symmetry plane '" << name() + << "' is not planar." << endl + << "At local face at " + << primitivePatch::faceCentres()[facei] + << " the normal " << nf + << " differs from the average normal " << n_ + << " by " << magSqr(n_ - nf) << endl + << "Either split the patch into planar parts" + << " or use the " << symmetryPolyPatch::typeName + << " patch type" + << exit(FatalError); + } } } } diff --git a/src/OpenFOAM/meshes/polyMesh/syncTools/syncToolsTemplates.C b/src/OpenFOAM/meshes/polyMesh/syncTools/syncToolsTemplates.C index b23781865970512b0ebd79cc97a82e1996eb6fd1..b08250eade3687b31913ab9f7923ace8e67d5254 100644 --- a/src/OpenFOAM/meshes/polyMesh/syncTools/syncToolsTemplates.C +++ b/src/OpenFOAM/meshes/polyMesh/syncTools/syncToolsTemplates.C @@ -92,6 +92,9 @@ void Foam::syncTools::syncPointMap { const polyBoundaryMesh& patches = mesh.boundaryMesh(); + // Make sure we use unique message tag + const int oldTag = UPstream::incrMsgType(); + // Synchronize multiple shared points. const globalMeshData& pd = mesh.globalData(); @@ -369,6 +372,9 @@ void Foam::syncTools::syncPointMap } } } + + // Reset tag + UPstream::msgType(oldTag); } @@ -387,6 +393,8 @@ void Foam::syncTools::syncEdgeMap // Do synchronisation without constructing globalEdge addressing // (since this constructs mesh edge addressing) + // Make sure we use unique message tag + const int oldTag = UPstream::incrMsgType(); // Swap proc patch info // ~~~~~~~~~~~~~~~~~~~~ @@ -734,6 +742,9 @@ void Foam::syncTools::syncEdgeMap ); } } + + // Reset tag + UPstream::msgType(oldTag); } @@ -1037,6 +1048,9 @@ void Foam::syncTools::syncBoundaryFaceList const polyBoundaryMesh& patches = mesh.boundaryMesh(); + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + if (parRun && UPstream::parRun()) { // Avoid mesh.globalData() - possible race condition @@ -1252,6 +1266,9 @@ void Foam::syncTools::syncBoundaryFaceList } } } + + // Reset tag + UPstream::msgType(oldTag); } @@ -1283,6 +1300,9 @@ void Foam::syncTools::syncFaceList const polyBoundaryMesh& patches = mesh.boundaryMesh(); + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + if (parRun && UPstream::parRun()) { const label startRequest = UPstream::nRequests(); @@ -1403,6 +1423,9 @@ void Foam::syncTools::syncFaceList } } } + + // Reset tag + UPstream::msgType(oldTag); } diff --git a/src/OpenFOAM/primitives/ranges/labelRange/labelRange.H b/src/OpenFOAM/primitives/ranges/labelRange/labelRange.H index a35cc70c6892097cff01aef2c7f834fe8363b233..6ce0da9e5f0c699a7a536b069796e188c727a4d1 100644 --- a/src/OpenFOAM/primitives/ranges/labelRange/labelRange.H +++ b/src/OpenFOAM/primitives/ranges/labelRange/labelRange.H @@ -131,7 +131,7 @@ public: inline void reset ( const label beg, - const label end, + const label len, const bool adjustStart ) noexcept; diff --git a/src/TurbulenceModels/turbulenceModels/DES/SpalartAllmarasDDES/SpalartAllmarasDDES.C b/src/TurbulenceModels/turbulenceModels/DES/SpalartAllmarasDDES/SpalartAllmarasDDES.C index e30caec019b6dd774e151efe4ed98d95292d720a..fd5470aead433094aa1d97fad485863912f558f6 100644 --- a/src/TurbulenceModels/turbulenceModels/DES/SpalartAllmarasDDES/SpalartAllmarasDDES.C +++ b/src/TurbulenceModels/turbulenceModels/DES/SpalartAllmarasDDES/SpalartAllmarasDDES.C @@ -36,6 +36,19 @@ namespace Foam namespace LESModels { +template<class BasicTurbulenceModel> +const Foam::Enum +< + typename Foam::LESModels:: + SpalartAllmarasDDES<BasicTurbulenceModel>::shieldingMode +> +Foam::LESModels::SpalartAllmarasDDES<BasicTurbulenceModel>::shieldingModeNames +({ + { shieldingMode::standard, "standard" }, + { shieldingMode::ZDES2020, "ZDES2020" }, +}); + + // * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * // template<class BasicTurbulenceModel> @@ -44,9 +57,61 @@ tmp<volScalarField> SpalartAllmarasDDES<BasicTurbulenceModel>::fd const volScalarField& magGradU ) const { - return - 1 - - tanh(pow(this->Cd1_*this->r(this->nuEff(), magGradU, this->y_), Cd2_)); + const volScalarField r(this->r(this->nuEff(), magGradU, this->y_)); + + tmp<volScalarField> tfd = 1 - tanh(pow(Cd1_*r, Cd2_)); + + switch (shielding_) + { + case shieldingMode::standard: + { + return tfd; + } + case shieldingMode::ZDES2020: + { + auto maxEps = [](const volScalarField& fld, const scalar eps){ + return max(fld, dimensionedScalar(fld.dimensions(), eps)); + }; + + volScalarField& fdStd = tfd.ref(); + const auto& nuTilda = this->nuTilda_; + const volVectorField& n = wallDist::New(this->mesh_).n(); + + const volScalarField GnuTilda + ( + Cd3_*maxEps(fvc::grad(nuTilda) & n, Zero) + / (maxEps(magGradU, SMALL)*this->kappa_*this->y_) + ); + + volScalarField fdGnuTilda(1 - tanh(pow(Cd1_*GnuTilda, Cd2_))); + const volScalarField GOmega + ( + - (fvc::grad(mag(fvc::curl(this->U_))) & n) + * sqrt(nuTilda/maxEps(pow3(magGradU), SMALL)) + ); + const volScalarField alpha((7.0/6.0*Cd4_ - GOmega)/(Cd4_/6.0)); + const volScalarField fRGOmega + ( + pos(Cd4_ - GOmega) + + 1.0 + /(1 + exp(min(-6*alpha/max(1 - sqr(alpha), SMALL), scalar(50)))) + *pos(4*Cd4_/3.0 - GOmega)*pos(GOmega - Cd4_) + ); + + // Use more conservative fP2-function in case switch is true; + // otherwise use simplified formulation + if (usefP2_) + { + fdGnuTilda *= + (1.0 - tanh(pow(Cd1_*betaZDES_*r, Cd2_))) + / maxEps(fdStd, SMALL); + } + + fdStd *= 1 - (1 - fdGnuTilda)*fRGOmega; + } + } + + return tfd; } @@ -138,7 +203,15 @@ SpalartAllmarasDDES<BasicTurbulenceModel>::SpalartAllmarasDDES propertiesName, type ), - + shielding_ + ( + shieldingModeNames.getOrDefault + ( + "shielding", + this->coeffDict_, + shieldingMode::standard + ) + ), Cd1_ ( this->useSigma_ @@ -163,11 +236,80 @@ SpalartAllmarasDDES<BasicTurbulenceModel>::SpalartAllmarasDDES this->coeffDict_, 3 ) + ), + Cd3_ + ( + dimensioned<scalar>::getOrAddToDict + ( + "Cd3", + this->coeffDict_, + 25 + ) + ), + Cd4_ + ( + dimensioned<scalar>::getOrAddToDict + ( + "Cd4", + this->coeffDict_, + 0.03 + ) + ), + betaZDES_ + ( + dimensioned<scalar>::getOrAddToDict + ( + "betaZDES", + this->coeffDict_, + 2.5 + ) + ), + usefP2_ + ( + Switch::getOrAddToDict + ( + "usefP2", + this->coeffDict_, + false + ) ) { if (type == typeName) { this->printCoeffs(type); + + switch (shielding_) + { + case shieldingMode::standard: + { + Info<< "shielding function: standard DDES " + << "(Spalart et al., 2006)" + << nl; + break; + } + case shieldingMode::ZDES2020: + { + Info<< "shielding function: ZDES mode 2 (Deck & Renard, 2020)" + << nl; + break; + } + default: + { + FatalErrorInFunction + << "Unrecognised 'shielding' option: " + << shieldingModeNames[shielding_] + << exit(FatalError); + } + } + + if (usefP2_) + { + Info<< "fP2 term: active" << nl; + } + else + { + Info<< "fP2 term: inactive" << nl; + } } } @@ -179,8 +321,19 @@ bool SpalartAllmarasDDES<BasicTurbulenceModel>::read() { if (SpalartAllmarasDES<BasicTurbulenceModel>::read()) { + shieldingModeNames.readIfPresent + ( + "shielding", + this->coeffDict(), + shielding_ + ); + Cd1_.readIfPresent(this->coeffDict()); Cd2_.readIfPresent(this->coeffDict()); + Cd3_.readIfPresent(this->coeffDict()); + Cd4_.readIfPresent(this->coeffDict()); + betaZDES_.readIfPresent(this->coeffDict()); + usefP2_.readIfPresent("usefP2", this->coeffDict()); return true; } diff --git a/src/TurbulenceModels/turbulenceModels/DES/SpalartAllmarasDDES/SpalartAllmarasDDES.H b/src/TurbulenceModels/turbulenceModels/DES/SpalartAllmarasDDES/SpalartAllmarasDDES.H index eaed52f2ff53ed039b72b896665618cbf492f484..fda73c0f1aafcec964623992c5aba3e2c591d2df 100644 --- a/src/TurbulenceModels/turbulenceModels/DES/SpalartAllmarasDDES/SpalartAllmarasDDES.H +++ b/src/TurbulenceModels/turbulenceModels/DES/SpalartAllmarasDDES/SpalartAllmarasDDES.H @@ -6,8 +6,8 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2022 Upstream CFD GmbH - Copyright (C) 2019-2022 OpenCFD Ltd. + Copyright (C) 2022, 2024 Upstream CFD GmbH + Copyright (C) 2019-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -45,6 +45,15 @@ Description DOI:10.1007/s00162-006-0015-0 \endverbatim + Reference for enhanced shielding function formulation: + \verbatim + Deck, S., Renard, N. (2020). + Towards an enhanced protection of attached boundary layers in hybrid + RANS/LES methods. + Journal of Computational Physics, 400, 108970. + DOI:10.1016/j.jcp.2019.108970 + \endverbatim + SourceFiles SpalartAllmarasDDES.C @@ -54,6 +63,7 @@ SourceFiles #define Foam_SpalartAllmarasDDES_H #include "SpalartAllmarasBase.H" +#include "Enum.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -71,6 +81,23 @@ class SpalartAllmarasDDES : public SpalartAllmarasDES<BasicTurbulenceModel> { +public: + + // Public enumerations + + //- Shielding modes + enum class shieldingMode + { + standard, + ZDES2020 + }; + + //- Shielding mode names + static const Enum<shieldingMode> shieldingModeNames; + + +private: + // Private Member Functions //- Return the shielding function @@ -87,10 +114,17 @@ protected: // Protected Data + //- Shielding mode + shieldingMode shielding_; + // Model coefficients dimensionedScalar Cd1_; dimensionedScalar Cd2_; + dimensionedScalar Cd3_; + dimensionedScalar Cd4_; + dimensionedScalar betaZDES_; + Switch usefP2_; // Protected Member Functions diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.C b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.C index 379b1098676aa1ed6db5daa4dfdd96d8feb55acd..8c78d5961409857674d2276f84b2f1cf5ab14c90 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.C +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2019 OpenFOAM Foundation - Copyright (C) 2017-2023 OpenCFD Ltd. + Copyright (C) 2017-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -218,7 +218,7 @@ void Foam::epsilonWallFunctionFvPatchScalarField::calculate { return ( - cornerWeights[facei]*2.0*k[faceCells[facei]]*nuw[facei] + 2.0*k[faceCells[facei]]*nuw[facei] / sqr(y[facei]) ); }; @@ -228,7 +228,7 @@ void Foam::epsilonWallFunctionFvPatchScalarField::calculate { return ( - cornerWeights[facei]*Cmu75*pow(k[faceCells[facei]], 1.5) + Cmu75*pow(k[faceCells[facei]], 1.5) / (kappa*y[facei]) ); }; @@ -241,11 +241,15 @@ void Foam::epsilonWallFunctionFvPatchScalarField::calculate { if (lowReCorrection_ && yPlus(facei) < yPlusLam) { - epsilon0[faceCells[facei]] += epsilonVis(facei); + epsilon0[faceCells[facei]] += + cornerWeights[facei] + * epsilonVis(facei); } else { - epsilon0[faceCells[facei]] += epsilonLog(facei); + epsilon0[faceCells[facei]] += + cornerWeights[facei] + * epsilonLog(facei); } } break; @@ -257,7 +261,8 @@ void Foam::epsilonWallFunctionFvPatchScalarField::calculate { // (ME:Eqs. 15-16) epsilon0[faceCells[facei]] += - pow + cornerWeights[facei] + * pow ( pow(epsilonVis(facei), n_) + pow(epsilonLog(facei), n_), scalar(1)/n_ @@ -272,7 +277,8 @@ void Foam::epsilonWallFunctionFvPatchScalarField::calculate { // (PH:Eq. 27) epsilon0[faceCells[facei]] += - max(epsilonVis(facei), epsilonLog(facei)); + cornerWeights[facei] + * max(epsilonVis(facei), epsilonLog(facei)); } break; } @@ -288,10 +294,11 @@ void Foam::epsilonWallFunctionFvPatchScalarField::calculate const scalar invGamma = scalar(1)/(Gamma + ROOTVSMALL); epsilon0[faceCells[facei]] += - ( - epsilonVis(facei)*exp(-Gamma) - + epsilonLog(facei)*exp(-invGamma) - ); + cornerWeights[facei] + * ( + epsilonVis(facei)*exp(-Gamma) + + epsilonLog(facei)*exp(-invGamma) + ); } break; } @@ -312,7 +319,9 @@ void Foam::epsilonWallFunctionFvPatchScalarField::calculate ); const scalar phiTanh = tanh(pow4(0.1*yPlus(facei))); - epsilon0[faceCells[facei]] += phiTanh*b1 + (1 - phiTanh)*b2; + epsilon0[faceCells[facei]] += + cornerWeights[facei] + * (phiTanh*b1 + (1 - phiTanh)*b2); } break; } diff --git a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C index f7769ebc20e90bb6a939b3e07145a8235c80c55a..2a1770659a06bd94a8c80f4654b4d208541f35e1 100644 --- a/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C +++ b/src/TurbulenceModels/turbulenceModels/derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016, 2019 OpenFOAM Foundation - Copyright (C) 2017-2023 OpenCFD Ltd. + Copyright (C) 2017-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -219,7 +219,7 @@ void Foam::omegaWallFunctionFvPatchScalarField::calculate { return ( - cornerWeights[facei]*6.0*nuw[facei]/(beta1_*sqr(y[facei])) + 6.0*nuw[facei]/(beta1_*sqr(y[facei])) ); }; @@ -228,7 +228,7 @@ void Foam::omegaWallFunctionFvPatchScalarField::calculate { return ( - cornerWeights[facei]*sqrt(k[faceCells[facei]]) + sqrt(k[faceCells[facei]]) / (Cmu25*kappa*y[facei]) ); }; @@ -241,11 +241,15 @@ void Foam::omegaWallFunctionFvPatchScalarField::calculate { if (yPlus(facei) > yPlusLam) { - omega0[faceCells[facei]] += omegaLog(facei); + omega0[faceCells[facei]] += + cornerWeights[facei] + * omegaLog(facei); } else { - omega0[faceCells[facei]] += omegaVis(facei); + omega0[faceCells[facei]] += + cornerWeights[facei] + * omegaVis(facei); } } break; @@ -256,7 +260,8 @@ void Foam::omegaWallFunctionFvPatchScalarField::calculate forAll(faceCells, facei) { omega0[faceCells[facei]] += - pow + cornerWeights[facei] + * pow ( pow(omegaVis(facei), n_) + pow(omegaLog(facei), n_), scalar(1)/n_ @@ -271,7 +276,8 @@ void Foam::omegaWallFunctionFvPatchScalarField::calculate { // (PH:Eq. 27) omega0[faceCells[facei]] += - max(omegaVis(facei), omegaLog(facei)); + cornerWeights[facei] + * max(omegaVis(facei), omegaLog(facei)); } break; } @@ -286,10 +292,11 @@ void Foam::omegaWallFunctionFvPatchScalarField::calculate const scalar invGamma = scalar(1)/(Gamma + ROOTVSMALL); omega0[faceCells[facei]] += - ( - omegaVis(facei)*exp(-Gamma) - + omegaLog(facei)*exp(-invGamma) - ); + cornerWeights[facei] + * ( + omegaVis(facei)*exp(-Gamma) + + omegaLog(facei)*exp(-invGamma) + ); } break; } @@ -310,7 +317,9 @@ void Foam::omegaWallFunctionFvPatchScalarField::calculate ); const scalar phiTanh = tanh(pow4(0.1*yPlus(facei))); - omega0[faceCells[facei]] += phiTanh*b1 + (1 - phiTanh)*b2; + omega0[faceCells[facei]] += + cornerWeights[facei] + *(phiTanh*b1 + (1 - phiTanh)*b2); } break; } diff --git a/src/conversion/ccm/remapping b/src/conversion/ccm/remapping index 32caa078c072176478e1c40bedae8297c8bc4314..6153bfb37e0290569c9c8765d5ad4935f476bb38 100644 --- a/src/conversion/ccm/remapping +++ b/src/conversion/ccm/remapping @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/src/conversion/common/tables/remappingDict b/src/conversion/common/tables/remappingDict index a7b162cb3c72ae8b32641f159de6cb35bc426c58..9901b470bc118e8507c839788afdd8c6daa806ad 100644 --- a/src/conversion/common/tables/remappingDict +++ b/src/conversion/common/tables/remappingDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/src/dynamicFvMesh/dynamicMotionSolverFvMeshAMI/dynamicMotionSolverFvMeshAMI.C b/src/dynamicFvMesh/dynamicMotionSolverFvMeshAMI/dynamicMotionSolverFvMeshAMI.C index bb94134e1fd6536c6966f5d2d4ee70f0afca6a9a..bbad4c5bd30063b656faea7fae9db6a63293e029 100644 --- a/src/dynamicFvMesh/dynamicMotionSolverFvMeshAMI/dynamicMotionSolverFvMeshAMI.C +++ b/src/dynamicFvMesh/dynamicMotionSolverFvMeshAMI/dynamicMotionSolverFvMeshAMI.C @@ -31,6 +31,7 @@ License #include "volFields.H" #include "surfaceFields.H" #include "cyclicAMIPolyPatch.H" +#include "cyclicACMIPolyPatch.H" #include "polyTopoChange.H" #include "MeshObject.H" #include "lduMesh.H" @@ -83,6 +84,35 @@ bool Foam::dynamicMotionSolverFvMeshAMI::init(const bool doInit) } motionPtr_ = motionSolver::New(*this); + + // allow restarts during initialization to match patch field values if + // required + const auto& pbm = boundaryMesh(); + bool changeRequired = false; + for (label patchi = 0; patchi < pbm.nNonProcessor(); ++patchi) + { + const auto* cycAmiPtr = isA<cyclicAMIPolyPatch>(pbm[patchi]); + + if (cycAmiPtr) + { + changeRequired = cycAmiPtr->createAMIFaces() || changeRequired; + } + else + { + const auto* cycAcmiPtr = isA<cyclicACMIPolyPatch>(pbm[patchi]); + if (cycAcmiPtr) + { + changeRequired = + cycAcmiPtr->cyclicAMIPolyPatch::createAMIFaces() + || changeRequired; + } + } + } + if (returnReduceOr(changeRequired)) + { + update(); + } + return true; } diff --git a/src/dynamicFvMesh/dynamicRefineBalancedFvMesh/dynamicMeshDict b/src/dynamicFvMesh/dynamicRefineBalancedFvMesh/dynamicMeshDict deleted file mode 100644 index b21b392bd70df2f60130091d830b08470972671f..0000000000000000000000000000000000000000 --- a/src/dynamicFvMesh/dynamicRefineBalancedFvMesh/dynamicMeshDict +++ /dev/null @@ -1,125 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | -| \\ / A nd | Website: www.openfoam.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class dictionary; - location "constant"; - object dynamicMeshDict; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dynamicFvMesh dynamicRefineBalancedFvMesh; - -refinementControls -{ - enableRefinementControl true; - - fields // must be scalarFields - ( - //alpha (min max refineLevel) - alpha (0.01 0.99 2) // refine cells where alpha in [0.01:0.99] with maximal 2 refinement layers - ); - - interface // must be a scalarField (only one dictionary!) - ( - alpha // refine interface (found based on snGrad of alpha > 0.1) - { - innerRefLayers 2; // describes how many cell layers inside phase alpha are to be refined - outerRefLayers 5; // describes how many cell layers outside phase alpha are to be refined - - // optional settings: - maxRefineLevel 4; // max refinement layers; Default: maxRefinement from dynamicRefineFvMeshCoeffs is used - // to get slower than 2:1 refinement; add #nAddLayers between each refinement level at the interface - nAddLayers 1; //Default: 0 - } - ); - - gradients // must be scalars - ( - // arguments as in 'fields' - // min/max values are based on mag(fvc::grad(volScalarField)) * cellVolume - T (0.01 10 1) - ); - - curls // must be vectors - ( - // arguments as in 'fields' - // min/max values are based on mag(fvc::curl(volVectorField)) - U (0.5 1 2) - ); - - regions - ( - boxToCell - { - minLevel 1; - - box (-1 0.001 0.002)(1 0.005 0.003); - } - - ); -} - -dynamicRefineFvMeshCoeffs -{ - // Extra entries for balancing - enableBalancing true; - allowableImbalance 0.15; - - // How often to refine - refineInterval 10; - - // Field to be refinement on (set it to 'internalRefinementField' to use the - // refinementControls dictionary entries above) - field internalRefinementField; - - // Refine field inbetween lower..upper - lowerRefineLevel 0.5; // do not change - upperRefineLevel 3.5; // maxRefinement+0.5 - - // If value < unrefineLevel unrefine - unrefineLevel -0.5; // do not change - - // Have slower than 2:1 refinement - nBufferLayers 4; - - // Refine cells only up to maxRefinement levels - maxRefinement 3; - - // Stop refinement if maxCells reached - maxCells 200000; - - // Flux field and corresponding velocity field. Fluxes on changed - // faces get recalculated by interpolating the velocity. Use 'none' - // on surfaceScalarFields that do not need to be reinterpolated. - correctFluxes - ( - (phi Urel) - (phiAbs U) - (phiAbs_0 U_0) - (nHatf none) - (rho*phi none) - (ghf none) - ); - - // List of non-flux surface<Type>Fields to be mapped - // only for new internal faces (AMR refine) - mapSurfaceFields - ( - Uf - Uf_0 - ); - - // Write the refinement level as a volScalarField - dumpLevel true; -} - - -// ************************************************************************* // diff --git a/src/dynamicFvMesh/dynamicRefineFvMesh/dynamicMeshDict b/src/dynamicFvMesh/dynamicRefineFvMesh/dynamicMeshDict index e37a6e509bcf9cc7cf917771ef98a863f84ac8ac..b546968b61a6f3586b62c34162c68c9f605ae73a 100644 --- a/src/dynamicFvMesh/dynamicRefineFvMesh/dynamicMeshDict +++ b/src/dynamicFvMesh/dynamicRefineFvMesh/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/src/dynamicMesh/Make/files b/src/dynamicMesh/Make/files index 4f5379232b79b394000d0ea90544989d017da3f6..54b5f28d80b3dc9ee8583b690c0351fce9265d0c 100644 --- a/src/dynamicMesh/Make/files +++ b/src/dynamicMesh/Make/files @@ -101,6 +101,7 @@ motionSolvers/displacement/displacement/displacementMotionSolver.C motionSolvers/displacement/interpolation/displacementInterpolationMotionSolver.C motionSolvers/displacement/layeredSolver/displacementLayeredMotionMotionSolver.C motionSolvers/displacement/layeredSolver/pointEdgeStructuredWalk.C +motionSolvers/displacement/multiDisplacement/multiDisplacementMotionSolver.C motionSolvers/componentDisplacement/componentDisplacementMotionSolver.C motionSolvers/velocity/velocityMotionSolver.C motionSolvers/velocity/velocityDisplacement/velocityDisplacementMotionSolver.C @@ -111,6 +112,23 @@ motionSolvers/displacement/codedPoints0/codedPoints0MotionSolver.C motionSolvers/displacement/solidBody/pointPatchFields/derived/solidBodyMotionDisplacement/solidBodyMotionDisplacementPointPatchVectorField.C +pointSmoothing = motionSolvers/displacement/pointSmoothing +$(pointSmoothing)/displacementPointSmoothingMotionSolver.C +/* +$(pointSmoothing)/displacementPointSmoothingMotionSolver2.C +$(pointSmoothing)/displacementPointSmoothingMotionSolver3.C +*/ +$(pointSmoothing)/hexMeshSmootherMotionSolver.C +$(pointSmoothing)/displacementSmartPointSmoothingMotionSolver.C + +pointSmoothers = $(pointSmoothing)/pointSmoothers +$(pointSmoothers)/pointSmoother/pointSmoother.C +$(pointSmoothers)/equipotentialPointSmoother/equipotentialPointSmoother.C +$(pointSmoothers)/geometricElementTransformPointSmoother/geometricElementTransformPointSmoother.C +$(pointSmoothers)/geometricElementTransformPointSmoother/cellPointConnectivity/cellPointConnectivity.C +$(pointSmoothers)/laplacianPointSmoother/laplacianPointSmoother.C +$(pointSmoothers)/laplacianPointSmoother/laplacianConstraintPointSmoother.C + createShellMesh/createShellMesh.C extrudePatchMesh/extrudePatchMesh.C diff --git a/src/dynamicMesh/extrudePatchMesh/extrudePatchMesh.C b/src/dynamicMesh/extrudePatchMesh/extrudePatchMesh.C index 1e8a59d802a7f416c95be43575b075756cf5c93b..daf3f9ada8f0048e7716b4f0ab89a7b71cb4cff8 100644 --- a/src/dynamicMesh/extrudePatchMesh/extrudePatchMesh.C +++ b/src/dynamicMesh/extrudePatchMesh/extrudePatchMesh.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2020-2023 OpenCFD Ltd. + Copyright (C) 2020-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -33,6 +33,7 @@ License #include "wallPolyPatch.H" #include "emptyPolyPatch.H" #include "wedgePolyPatch.H" +#include "unitConversion.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // @@ -77,7 +78,7 @@ Foam::extrudePatchMesh::extrudePatchMesh const fvPatch& p, const dictionary& dict, const word& regionName, - polyPatchList& regionPatches + const polyPatchList& regionPatches ) : extrudePatchMesh(regionName, mesh, p, dict) @@ -152,11 +153,17 @@ Foam::extrudePatchMesh::extrudePatchMesh } -void Foam::extrudePatchMesh::extrudeMesh(polyPatchList& regionPatches) +void Foam::extrudePatchMesh::extrudeMesh(const polyPatchList& regionPatches) { if (this->boundaryMesh().empty()) { const bool columnCells = dict_.get<bool>("columnCells"); + scalar featAngleCos = -GREAT; + scalar featAngle = -1; + if (dict_.readIfPresent("featureAngle", featAngle)) + { + featAngleCos = Foam::cos(degToRad(featAngle)); + } bitSet nonManifoldEdge(extrudedPatch_.nEdges()); for (label edgeI = 0; edgeI < extrudedPatch_.nInternalEdges(); edgeI++) @@ -165,11 +172,24 @@ void Foam::extrudePatchMesh::extrudeMesh(polyPatchList& regionPatches) { nonManifoldEdge.set(edgeI); } - else if (extrudedPatch_.edgeFaces()[edgeI].size() > 2) + else { - // TBD: issue #2780 : non-manifold edges get seen as internal - // This bit of code can be removed once #2780 is solved. - nonManifoldEdge.set(edgeI); + const auto& fcs = extrudedPatch_.edgeFaces()[edgeI]; + if (fcs.size() > 2) + { + // TBD: issue #2780 : non-manifold edges get seen as + // internal. + // This bit of code can be removed once #2780 is solved. + nonManifoldEdge.set(edgeI); + } + else if (fcs.size() == 2 && featAngleCos >= -1) + { + const auto& n = extrudedPatch_.faceNormals(); + if ((n[fcs[0]] & n[fcs[1]]) < featAngleCos) + { + nonManifoldEdge.set(edgeI); + } + } } } @@ -272,7 +292,17 @@ void Foam::extrudePatchMesh::extrudeMesh(polyPatchList& regionPatches) ); this->clearOut(); this->removeFvBoundary(); - this->addFvPatches(regionPatches, true); + // Make sure the patches index the new mesh + polyPatchList newRegionPatches(regionPatches.size()); + forAll(regionPatches, patchi) + { + newRegionPatches.set + ( + patchi, + regionPatches[patchi].clone(this->boundaryMesh()) + ); + } + this->addFvPatches(newRegionPatches, true); // At this point we have a valid mesh with 3 patches and zero cells. diff --git a/src/dynamicMesh/extrudePatchMesh/extrudePatchMesh.H b/src/dynamicMesh/extrudePatchMesh/extrudePatchMesh.H index 5e9130095f8c9d540be7290259382a1b45112bc0..0062add89a8b8ddf7796e8db50c2199d8ebd25c4 100644 --- a/src/dynamicMesh/extrudePatchMesh/extrudePatchMesh.H +++ b/src/dynamicMesh/extrudePatchMesh/extrudePatchMesh.H @@ -44,6 +44,9 @@ Description expansionRatio 1; columnCells true; + // Optional feature angle to avoid extruding feature-angles + featureAngle 45; + // Patch information bottomCoeffs { @@ -114,7 +117,7 @@ class extrudePatchMesh // Private Member Functions //- Extrude mesh using polyPatches - void extrudeMesh(polyPatchList& regionPatches); + void extrudeMesh(const polyPatchList& regionPatches); //- Construct from mesh, patch and dictionary without patches. // Only used internally @@ -151,7 +154,7 @@ public: const fvPatch& p, const dictionary& dict, const word& regionName, - polyPatchList& regionPatches + const polyPatchList& regionPatches ); //- Construct from mesh, patch, dictionary and new mesh diff --git a/src/dynamicMesh/motionSolvers/displacement/displacement/displacementMotionSolver.C b/src/dynamicMesh/motionSolvers/displacement/displacement/displacementMotionSolver.C index 00fa9ae49daee2e2d9cd94da2bd7f94f8591ddec..9f8c33aa55eadf29904355995ecc18a53ea889c5 100644 --- a/src/dynamicMesh/motionSolvers/displacement/displacement/displacementMotionSolver.C +++ b/src/dynamicMesh/motionSolvers/displacement/displacement/displacementMotionSolver.C @@ -57,7 +57,7 @@ Foam::displacementMotionSolver::displacementMotionSolver IOobject::MUST_READ, IOobject::AUTO_WRITE ), - pointMesh::New(mesh) + pointMesh::New(mesh, Foam::IOobject::READ_IF_PRESENT) ) {} diff --git a/src/dynamicMesh/motionSolvers/displacement/multiDisplacement/multiDisplacementMotionSolver.C b/src/dynamicMesh/motionSolvers/displacement/multiDisplacement/multiDisplacementMotionSolver.C new file mode 100644 index 0000000000000000000000000000000000000000..cca0664ac9bd0e4733bcfc053c3bbe1b709b7651 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/multiDisplacement/multiDisplacementMotionSolver.C @@ -0,0 +1,271 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*----------------------------------------------------------------------------*/ + +#include "multiDisplacementMotionSolver.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ + defineTypeNameAndDebug(multiDisplacementMotionSolver, 0); + + addToRunTimeSelectionTable + ( + motionSolver, + multiDisplacementMotionSolver, + dictionary + ); + + addToRunTimeSelectionTable + ( + displacementMotionSolver, + multiDisplacementMotionSolver, + displacement + ); +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::multiDisplacementMotionSolver::multiDisplacementMotionSolver +( + const polyMesh& mesh, + const IOdictionary& dict +) +: + displacementMotionSolver(mesh, dict, typeName), + curPoints_(mesh.points()) +{ + // Make pointDisplacement is not registered since all lower levels + // have a pointDisplacement as well. + pointDisplacement().checkOut(); + + label i = 0; + + const dictionary& solverDict = dict.subDict("solvers"); + + motionSolvers_.setSize(solverDict.size()); + + for (const entry& dEntry : solverDict) + { + if (dEntry.isDict()) + { + IOobject io(dict); + io.readOpt(IOobject::NO_READ); + io.writeOpt(IOobject::AUTO_WRITE); + io.rename(dEntry.dict().dictName()); + + IOdictionary IOsolverDict + ( + io, + dEntry.dict() + ); + + auto* msPtr = motionSolver::New(mesh, IOsolverDict).ptr(); + + motionSolvers_.set + ( + i, + dynamic_cast<displacementMotionSolver*>(msPtr) + ); + + // Avoid conflicts with multiple registrations + motionSolvers_[i].pointDisplacement().checkOut(); + + i++; + } + } + motionSolvers_.setSize(i); + + if (i == 0) + { + FatalErrorInFunction << "No displacementMotionSolvers in dictionary " + << dict << exit(FatalError); + } + + // Re-register so only our 'pointDisplacement' is on the database. + pointDisplacement().checkIn(); +} + + +Foam::multiDisplacementMotionSolver:: +multiDisplacementMotionSolver +( + const polyMesh& mesh, + const IOdictionary& dict, + const pointVectorField& pointDisplacement, + const pointIOField& points0 +) +: + displacementMotionSolver(mesh, dict, pointDisplacement, points0, typeName), + curPoints_(mesh.points()) +{ + // Make pointDisplacement is not registered since all lower levels + // have a pointDisplacement as well. + this->pointDisplacement().checkOut(); + + label i = 0; + + const dictionary& solverDict = dict.subDict("solvers"); + + motionSolvers_.setSize(solverDict.size()); + + for (const entry& dEntry : solverDict) + { + if (dEntry.isDict()) + { + IOobject io(dict); + io.readOpt(IOobject::NO_READ); + io.writeOpt(IOobject::AUTO_WRITE); + io.rename(dEntry.dict().dictName()); + + IOdictionary IOsolverDict + ( + io, + dEntry.dict() + ); + + auto msPtr = displacementMotionSolver::New + ( + dEntry.keyword(), + mesh, + IOsolverDict, + pointDisplacement, + points0 + ); + + // Avoid conflicts with multiple registrations + msPtr->pointDisplacement().checkOut(); + + motionSolvers_.set(i++, msPtr); + } + } + motionSolvers_.setSize(i); + + if (i == 0) + { + FatalErrorInFunction << "No displacementMotionSolvers in dictionary " + << dict << exit(FatalError); + } + + // Re-register so only our 'pointDisplacement' is on the database. + this->pointDisplacement().checkIn(); +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +Foam::tmp<Foam::pointField> +Foam::multiDisplacementMotionSolver::curPoints() const +{ + return curPoints_; +} + + +void Foam::multiDisplacementMotionSolver::solve() +{ + if (!motionSolvers_.size()) + { + return; + } + + // Bit tricky: + // - make sure only one copy of pointDisplacement is registered. This is + // for if cellDisplacement tries to look up the pointDisplacement it + // looks up its version. Or maybe we always should use our own version + // only? + // - copy the last set of calculated points into our copy (curPoints_) + // - move the mesh to update the faceCentres, cellCentres etc. This assumes + // that we can call movePoints() multiple times inside a time step. + // (note that this is supported in pimpleFoam with the + // moveMeshOuterCorrectors option) + + pointDisplacement().checkOut(); + + // Doing first motion solver + motionSolvers_[0].pointDisplacement().checkIn(); + // Take over my bc values + motionSolvers_[0].pointDisplacement() == pointDisplacement(); + + motionSolvers_[0].solve(); + motionSolvers_[0].pointDisplacement().checkOut(); + + // Update my values + curPoints_ = motionSolvers_[0].curPoints(); + pointDisplacement() == motionSolvers_[0].pointDisplacement(); + + for (label i = 1; i < motionSolvers_.size(); i++) + { + // Doing other motion solvers using new locations/face/cellCentres etc. + const_cast<polyMesh&>(mesh()).movePoints(curPoints_); + motionSolvers_[i].pointDisplacement().checkIn(); + + // Take over my bc values + motionSolvers_[i].pointDisplacement() == pointDisplacement(); + + motionSolvers_[i].solve(); + motionSolvers_[i].pointDisplacement().checkOut(); + + // Update my values + curPoints_ = motionSolvers_[i].curPoints(); + pointDisplacement() == motionSolvers_[i].pointDisplacement(); + } + + pointDisplacement().checkIn(); + + // Push my pointDisplacement onto all motionSolvers + for (auto& ms : motionSolvers_) + { + ms.pointDisplacement() == pointDisplacement(); + } +} + + +void Foam::multiDisplacementMotionSolver::movePoints +( + const pointField& newPoints +) +{ + curPoints_ = newPoints; + for (auto& ms : motionSolvers_) + { + ms.movePoints(newPoints); + } +} + + +void Foam::multiDisplacementMotionSolver::updateMesh(const mapPolyMesh& mpm) +{ + for (auto& ms : motionSolvers_) + { + ms.updateMesh(mpm); + } +} + + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/multiDisplacement/multiDisplacementMotionSolver.H b/src/dynamicMesh/motionSolvers/displacement/multiDisplacement/multiDisplacementMotionSolver.H new file mode 100644 index 0000000000000000000000000000000000000000..291ab6265fb186b8b245b1a528b8007fd2440ae1 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/multiDisplacement/multiDisplacementMotionSolver.H @@ -0,0 +1,170 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::multiDisplacementMotionSolver + +Group + grpMeshMotionSolvers + +Description + Mesh motion solver for a polyMesh. Applies multiple (displacement) motion + solvers in order. + + Not very efficient : all displacementMotionSolvers store a copy + of the initial points (points0) and the displacement (pointDisplacement + or also cellDisplacement). + Used to combine large-scale, implicit displacement smoothing (e.g. + displacementLaplacian) with point smoothing. + +Usage + Example of the dynamicMeshDict specification: + \verbatim + motionSolver multiDisplacement; + solvers + { + // Solve finite volume laplacian to efficiently smooth displacement + // (not point locations) + displacementLaplacian + { + motionSolver displacementLaplacian; + diffusivity uniform; + } + + // Apply few iterations of smoothing of point locations + displacementPointSmoothing + { + motionSolver displacementPointSmoothing; + pointSmoother laplacian; + nPointSmootherIter 10; + } + } + \endverbatim + +Note + When using displacementLaplacian: the default behaviour for the + cellDisplacement is to apply fixed value boundary conditions (by averaging + point values) only to those pointDisplacement boundary conditions that + are fixed value. Quite a few point boundary conditions (e.g. surfaceSlip, + edgeSlip) are not so require an explicitly provided cellDisplacement + field with 'cellMotion' boundary conditions for those patches. + +SourceFiles + isplacementMultiMotionSolver.C +\*----------------------------------------------------------------------------*/ + +#ifndef Foam_multiDisplacementMotionSolver_H +#define Foam_multiDisplacementMotionSolver_H + +#include "displacementMotionSolver.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class multiDisplacementMotionSolver Declaration +\*---------------------------------------------------------------------------*/ + +class multiDisplacementMotionSolver +: + public displacementMotionSolver +{ + // Private data + + //- Current points + pointField curPoints_; + + //- List of motion solvers + PtrList<displacementMotionSolver> motionSolvers_; + + + // Private Member Functions + + //- No copy construct + multiDisplacementMotionSolver + ( + const multiDisplacementMotionSolver& + ) = delete; + + //- No copy assignment + void operator=(const multiDisplacementMotionSolver&) = delete; + + +public: + + //- Runtime type information + TypeName("multiDisplacement"); + + + // Constructors + + //- Construct from polyMesh and IOdictionary + multiDisplacementMotionSolver + ( + const polyMesh&, + const IOdictionary& + ); + + //- Construct from components + multiDisplacementMotionSolver + ( + const polyMesh& mesh, + const IOdictionary& dict, + const pointVectorField& pointDisplacement, + const pointIOField& points0 + ); + + + //- Destructor + ~multiDisplacementMotionSolver() = default; + + + // Member Functions + + //- Provide current points for motion + virtual tmp<pointField> curPoints() const; + + //- Solve for motion + virtual void solve(); + + //- Update local data for geometry changes + virtual void movePoints(const pointField&); + + //- Update local data for topology changes + virtual void updateMesh(const mapPolyMesh&); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementPointSmoothingMotionSolver.C b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementPointSmoothingMotionSolver.C new file mode 100644 index 0000000000000000000000000000000000000000..abb52d5cfa401c0a287cf4be75372a093ce73553 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementPointSmoothingMotionSolver.C @@ -0,0 +1,434 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "displacementPointSmoothingMotionSolver.H" +#include "addToRunTimeSelectionTable.H" +#include "syncTools.H" +#include "pointConstraints.H" +#include "motionSmootherAlgo.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ + defineTypeNameAndDebug(displacementPointSmoothingMotionSolver, 0); + + addToRunTimeSelectionTable + ( + motionSolver, + displacementPointSmoothingMotionSolver, + dictionary + ); + + addToRunTimeSelectionTable + ( + displacementMotionSolver, + displacementPointSmoothingMotionSolver, + displacement + ); +} + + +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // + +void Foam::displacementPointSmoothingMotionSolver::markAffectedFaces +( + const labelHashSet& changedFaces, + labelHashSet& affectedFaces +) +{ + PackedBoolList affectedPoints(mesh().nPoints(), false); + + forAllConstIter(labelHashSet, changedFaces, iter) + { + const label faceI(iter.key()); + + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + affectedPoints[pointI] = true; + } + } + + syncTools::syncPointList + ( + mesh(), + affectedPoints, + orEqOp<unsigned int>(), + 0U + ); + + forAll(affectedPoints, pointI) + { + if (affectedPoints[pointI]) + { + const labelList& pCells(mesh().pointCells()[pointI]); + + forAll(pCells, pointCellI) + { + const label cellI(pCells[pointCellI]); + + const labelList& cFaces(mesh().cells()[cellI]); + + affectedFaces.insert(cFaces); + } + } + } +} + + +bool Foam::displacementPointSmoothingMotionSolver::relax() +{ + if + ( + (relaxationFactors_.size() == 0) + || (relaxationFactors_.size() == 1 && relaxationFactors_[0] == 1.0) + ) + { + relaxedPoints_ = points0() + pointDisplacement().internalField(); + return true; + } + + + const pointField oldRelaxedPoints(relaxedPoints_); + + labelHashSet affectedFaces(facesToMove_); + + // Create a list of relaxation levels + // -1 indicates a point which is not to be moved + // 0 is the starting value for a moving point + labelList relaxationLevel(mesh().nPoints(), -1); + forAllConstIter(labelHashSet, affectedFaces, iter) + { + const label faceI(iter.key()); + + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + relaxationLevel[pointI] = 0; + } + } + + syncTools::syncPointList + ( + mesh(), + relaxationLevel, + maxEqOp<label>(), + label(-1) + ); + + // Loop whilst relaxation levels are being incremented + bool complete(false); + while (!complete) + { + //scalar nAffectedFaces(affectedFaces.size()); + //reduce(nAffectedFaces, sumOp<scalar>()); + //Info << " Moving " << nAffectedFaces << " faces" << endl; + + // Move the points + forAll(relaxationLevel, pointI) + { + if (relaxationLevel[pointI] >= 0) + { + const scalar x + ( + relaxationFactors_[relaxationLevel[pointI]] + ); + + relaxedPoints_[pointI] = + (1 - x)*oldRelaxedPoints[pointI] + + x*(points0()[pointI] + pointDisplacement()[pointI]); + } + } + + // Get a list of changed faces + labelHashSet markedFaces; + markAffectedFaces(affectedFaces, markedFaces); + labelList markedFacesList(markedFaces.toc()); + + // Update the geometry + meshGeometry_.correct(relaxedPoints_, markedFacesList); + + // Check the modified face quality + markedFaces.clear(); + motionSmootherAlgo::checkMesh + ( + false, + meshQualityDict_, + meshGeometry_, + relaxedPoints_, + markedFacesList, + markedFaces + ); + + // Mark the affected faces + affectedFaces.clear(); + markAffectedFaces(markedFaces, affectedFaces); + + // Increase relaxation and check convergence + PackedBoolList pointsToRelax(mesh().nPoints(), false); + complete = true; + forAllConstIter(labelHashSet, affectedFaces, iter) + { + const label faceI(iter.key()); + + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + pointsToRelax[pointI] = true; + } + } + + forAll(pointsToRelax, pointI) + { + if + ( + pointsToRelax[pointI] + && (relaxationLevel[pointI] < relaxationFactors_.size() - 1) + ) + { + ++ relaxationLevel[pointI]; + + complete = false; + } + } + + // Synchronise relaxation levels + syncTools::syncPointList + ( + mesh(), + relaxationLevel, + maxEqOp<label>(), + label(0) + ); + + // Synchronise completion + reduce(complete, andOp<bool>()); + } + + // Check for convergence + bool converged(true); + forAll(mesh().faces(), faceI) + { + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + if (relaxationLevel[pointI] > 0) + { + facesToMove_.insert(faceI); + + converged = false; + + break; + } + } + } + + // Syncronise convergence + reduce(converged, andOp<bool>()); + + //if (converged) + //{ + // Info<< "... Converged" << endl << endl; + //} + //else + //{ + // Info<< "... Not converged" << endl << endl; + //} + + return converged; +} + + +void Foam::displacementPointSmoothingMotionSolver::setFacesToMove +( + const dictionary& dict +) +{ + if (dict.getOrDefault<bool>("moveInternalFaces", true)) + { + facesToMove_.resize(2*mesh().nFaces()); + forAll(mesh().faces(), faceI) + { + facesToMove_.insert(faceI); + } + } + else + { + facesToMove_.resize(2*(mesh().nBoundaryFaces())); + for + ( + label faceI = mesh().nInternalFaces(); + faceI < mesh().nFaces(); + ++ faceI + ) + { + facesToMove_.insert(faceI); + } + } +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::displacementPointSmoothingMotionSolver:: +displacementPointSmoothingMotionSolver +( + const polyMesh& mesh, + const IOdictionary& dict +) +: + displacementMotionSolver(mesh, dict, typeName), + meshGeometry_(mesh), + pointSmoother_(pointSmoother::New(mesh, coeffDict())), + nPointSmootherIter_ + ( + readLabel(coeffDict().lookup("nPointSmootherIter")) + ), + relaxedPoints_(mesh.points()) +{ + if (coeffDict().readIfPresent("relaxationFactors", relaxationFactors_)) + { + meshQualityDict_ = coeffDict().subDict("meshQuality"); + } + setFacesToMove(coeffDict()); +} + + +Foam::displacementPointSmoothingMotionSolver:: +displacementPointSmoothingMotionSolver +( + const polyMesh& mesh, + const IOdictionary& dict, + const pointVectorField& pointDisplacement, + const pointIOField& points0 +) +: + displacementMotionSolver(mesh, dict, pointDisplacement, points0, typeName), + meshGeometry_(mesh), + pointSmoother_ + ( + pointSmoother::New + ( + mesh, + coeffDict() + ) + ), + nPointSmootherIter_ + ( + readLabel(coeffDict().lookup("nPointSmootherIter")) + ), + relaxedPoints_(mesh.points()) +{ + if (coeffDict().readIfPresent("relaxationFactors", relaxationFactors_)) + { + meshQualityDict_ = coeffDict().subDict("meshQuality"); + } + setFacesToMove(coeffDict()); +} + + +// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // + +Foam::tmp<Foam::pointField> +Foam::displacementPointSmoothingMotionSolver::curPoints() const +{ + //Note: twoDCorrect already done by ::solve + + return relaxedPoints_; +} + + +void Foam::displacementPointSmoothingMotionSolver::solve() +{ + //Pout<< "time:" << mesh().time().timeName() + // << " mesh faceCentres:" << gAverage(mesh().faceCentres()) + // << " mesh cellCentres:" << gAverage(mesh().cellCentres()) + // << endl; + + movePoints(curPoints()); + + // Update values on pointDisplacement + pointDisplacement().boundaryFieldRef().updateCoeffs(); + + // Extend: face-to-point-to-cell-to-faces + labelHashSet affectedFaces; + markAffectedFaces(facesToMove_, affectedFaces); + + for(label i = 0; i < nPointSmootherIter_; i ++) + { + meshGeometry_.correct + ( + points0() + pointDisplacement().internalField(), + affectedFaces.toc() + ); + //Pout<< "iter:" << i + // << " faceCentres:" << gAverage(meshGeometry_.faceCentres()) + // << " cellCentres:" << gAverage(meshGeometry_.cellCentres()) + // << endl; + + pointSmoother_->update + ( + affectedFaces.toc(), + points0(), + points0() + pointDisplacement().internalField(), + meshGeometry_, + pointDisplacement() + ); + } + + relax(); + + twoDCorrectPoints(relaxedPoints_); + + // Update pointDisplacement for actual relaxedPoints. Keep fixed-value + // bcs. + pointDisplacement().primitiveFieldRef() = relaxedPoints_-points0(); + + // Adhere to multi-point constraints + const pointConstraints& pcs = + pointConstraints::New(pointDisplacement().mesh()); + pcs.constrainDisplacement(pointDisplacement(), false); + + // Update relaxedPoints to take constraints into account + relaxedPoints_ = points0() + pointDisplacement().internalField(); +} + + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementPointSmoothingMotionSolver.H b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementPointSmoothingMotionSolver.H new file mode 100644 index 0000000000000000000000000000000000000000..8dd60c5528f3f8ce198be8c97b6d5996ffd81efa --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementPointSmoothingMotionSolver.H @@ -0,0 +1,149 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::displacementPointSmoothingMotionSolver + +Description + Quality-based under-relaxation for run-time selectable point smoothing. + +SourceFiles + displacementPointSmoothingMotionSolver.C + +\*---------------------------------------------------------------------------*/ + +#ifndef displacementPointSmoothingMotionSolver_H +#define displacementPointSmoothingMotionSolver_H + +#include "displacementMotionSolver.H" +#include "pointSmoother.H" +#include "polyMeshGeometry.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class displacementPointSmoothingMotionSolver Declaration +\*---------------------------------------------------------------------------*/ + +class displacementPointSmoothingMotionSolver +: + public displacementMotionSolver +{ +protected: + + // Protected Data + + //- Part-updatable mesh geometry + polyMeshGeometry meshGeometry_; + + //- Point smoothing method + autoPtr<pointSmoother> pointSmoother_; + + //- Number of point smoother iterations per timestep + const label nPointSmootherIter_; + + + // Mesh quality based relaxation of smoothed position + + //- Relaxation factors to use in each iteration + scalarList relaxationFactors_; + + //- Relaxed point field + pointField relaxedPoints_; + + //- Set of the faces which are to be moved + labelHashSet facesToMove_; + + //- Mesh quality dictionary + dictionary meshQualityDict_; + + + // Private Member Functions + + //- Mark affected faces + void markAffectedFaces + ( + const labelHashSet& changedFaces, + labelHashSet& affectedFaces + ); + + //- Relax the points + bool relax(); + + //- Set all the faces to be moved + void virtual setFacesToMove(const dictionary&); + + +public: + + //- Runtime type information + TypeName("displacementPointSmoothing"); + + + // Constructors + + //- Construct from a polyMesh and an IOdictionary + displacementPointSmoothingMotionSolver + ( + const polyMesh&, + const IOdictionary& + ); + + //- Construct from components + displacementPointSmoothingMotionSolver + ( + const polyMesh& mesh, + const IOdictionary& dict, + const pointVectorField& pointDisplacement, + const pointIOField& points0 + ); + + + //- Destructor + virtual ~displacementPointSmoothingMotionSolver() = default; + + + // Member Functions + + //- Return point location obtained from the current motion field + virtual tmp<pointField> curPoints() const; + + //- Solve for motion + virtual void solve(); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementSmartPointSmoothingMotionSolver.C b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementSmartPointSmoothingMotionSolver.C new file mode 100644 index 0000000000000000000000000000000000000000..88aa458a69f27ef4e005e7ea2a94177ee7542f8e --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementSmartPointSmoothingMotionSolver.C @@ -0,0 +1,746 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "displacementSmartPointSmoothingMotionSolver.H" +#include "addToRunTimeSelectionTable.H" +#include "syncTools.H" +#include "pointConstraints.H" +#include "motionSmootherAlgo.H" + +//#include "fvMesh.H" +//#include "fvGeometryScheme.H" +#include "OBJstream.H" +#include "emptyPointPatchFields.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ + defineTypeNameAndDebug(displacementSmartPointSmoothingMotionSolver, 0); + + addToRunTimeSelectionTable + ( + motionSolver, + displacementSmartPointSmoothingMotionSolver, + dictionary + ); + + addToRunTimeSelectionTable + ( + displacementMotionSolver, + displacementSmartPointSmoothingMotionSolver, + displacement + ); +} + + +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // + +void Foam::displacementSmartPointSmoothingMotionSolver::markAffectedFaces +( + const labelHashSet& changedFaces, + labelHashSet& affectedFaces +) +{ + PackedBoolList affectedPoints(mesh().nPoints(), false); + + forAllConstIter(labelHashSet, changedFaces, iter) + { + const label faceI(iter.key()); + + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + affectedPoints[pointI] = true; + } + } + + syncTools::syncPointList + ( + mesh(), + affectedPoints, + orEqOp<unsigned int>(), + 0U + ); + + forAll(affectedPoints, pointI) + { + if (affectedPoints[pointI]) + { + const labelList& pCells(mesh().pointCells()[pointI]); + + forAll(pCells, pointCellI) + { + const label cellI(pCells[pointCellI]); + + const labelList& cFaces(mesh().cells()[cellI]); + + affectedFaces.insert(cFaces); + } + } + } +} + + +bool Foam::displacementSmartPointSmoothingMotionSolver::relax() +{ + if + ( + (relaxationFactors_.size() == 0) + || (relaxationFactors_.size() == 1 && relaxationFactors_[0] == 1.0) + ) + { + relaxedPoints_ = points0() + pointDisplacement().internalField(); + return true; + } + + + const pointField oldRelaxedPoints(relaxedPoints_); + + labelHashSet affectedFaces(facesToMove_); + + // Create a list of relaxation levels + // -1 indicates a point which is not to be moved + // 0 is the starting value for a moving point + labelList relaxationLevel(mesh().nPoints(), -1); + forAllConstIter(labelHashSet, affectedFaces, iter) + { + const label faceI(iter.key()); + + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + relaxationLevel[pointI] = 0; + } + } + + syncTools::syncPointList + ( + mesh(), + relaxationLevel, + maxEqOp<label>(), + label(-1) + ); + + // Loop whilst relaxation levels are being incremented + bool complete(false); + while (!complete) + { + //scalar nAffectedFaces(affectedFaces.size()); + //reduce(nAffectedFaces, sumOp<scalar>()); + //Info << " Moving " << nAffectedFaces << " faces" << endl; + + // Move the points + forAll(relaxationLevel, pointI) + { + if (relaxationLevel[pointI] >= 0) + { + const scalar x + ( + relaxationFactors_[relaxationLevel[pointI]] + ); + + relaxedPoints_[pointI] = + (1 - x)*oldRelaxedPoints[pointI] + + x*(points0()[pointI] + pointDisplacement()[pointI]); + } + } + + // Get a list of changed faces + labelHashSet markedFaces; + markAffectedFaces(affectedFaces, markedFaces); + labelList markedFacesList(markedFaces.toc()); + + // Update the geometry + meshGeometry_.correct(relaxedPoints_, markedFacesList); + + // Check the modified face quality + if (false) + { + // Use snappyHexMesh compatible checks + markedFaces.clear(); + motionSmootherAlgo::checkMesh + ( + false, + meshQualityDict_, + meshGeometry_, + relaxedPoints_, + markedFacesList, + markedFaces + ); + + // Mark the affected faces + affectedFaces.clear(); + markAffectedFaces(markedFaces, affectedFaces); + } + else + { + // Use pointSmoother specific + tmp<scalarField> tfaceQ + ( + pointUntangler_->faceQuality + ( + relaxedPoints_, + meshGeometry_.faceCentres(), + meshGeometry_.faceAreas(), + meshGeometry_.cellCentres(), + meshGeometry_.cellVolumes() + ) + ); + + if (debug) + { + MinMax<scalar> range(gMinMax(tfaceQ())); + Pout<< " min:" << range.min() << nl + << " max:" << range.max() << endl; + } + + labelList order; + Foam::sortedOrder(tfaceQ(), order); + + label nUntangle = 0; + forAll(order, i) + { + if (tfaceQ()[order[i]] > untangleQ_) + { + nUntangle = i; + break; + } + } + + affectedFaces = labelList(SubList<label>(order, nUntangle)); + } + + // Increase relaxation and check convergence + PackedBoolList pointsToRelax(mesh().nPoints(), false); + complete = true; + forAllConstIter(labelHashSet, affectedFaces, iter) + { + const label faceI(iter.key()); + + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + pointsToRelax[pointI] = true; + } + } + + forAll(pointsToRelax, pointI) + { + if + ( + pointsToRelax[pointI] + && (relaxationLevel[pointI] < relaxationFactors_.size() - 1) + ) + { + ++ relaxationLevel[pointI]; + + complete = false; + } + } + + // Synchronise relaxation levels + syncTools::syncPointList + ( + mesh(), + relaxationLevel, + maxEqOp<label>(), + label(0) + ); + + // Synchronise completion + reduce(complete, andOp<bool>()); + } + + // Check for convergence + bool converged(true); + forAll(mesh().faces(), faceI) + { + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + if (relaxationLevel[pointI] > 0) + { + facesToMove_.insert(faceI); + + converged = false; + + break; + } + } + } + + // Syncronise convergence + reduce(converged, andOp<bool>()); + + //if (converged) + //{ + // Info<< "... Converged" << endl << endl; + //} + //else + //{ + // Info<< "... Not converged" << endl << endl; + //} + + return converged; +} + + +void Foam::displacementSmartPointSmoothingMotionSolver::setFacesToMove +( + const dictionary& dict +) +{ + if (dict.getOrDefault<bool>("moveInternalFaces", true)) + { + facesToMove_.resize(2*mesh().nFaces()); + forAll(mesh().faces(), faceI) + { + facesToMove_.insert(faceI); + } + } + else + { + facesToMove_.resize(2*(mesh().nBoundaryFaces())); + for + ( + label faceI = mesh().nInternalFaces(); + faceI < mesh().nFaces(); + ++ faceI + ) + { + facesToMove_.insert(faceI); + } + } +} + + +void Foam::displacementSmartPointSmoothingMotionSolver::emptyCorrectPoints +( + pointVectorField& pointDisplacement +) +{ + // Assume empty point patches are already in correct location + // so knock out any off-plane displacement. + auto& fld = pointDisplacement.primitiveFieldRef(); + for (const auto& ppf : pointDisplacement.boundaryField()) + { + if (isA<emptyPointPatchVectorField>(ppf)) + { + const auto& mp = ppf.patch().meshPoints(); + forAll(mp, i) + { + pointConstraint pc; + ppf.patch().applyConstraint(i, pc); + fld[mp[i]] = pc.constrainDisplacement(fld[mp[i]]); + } + } + } + + pointField wantedPoints(points0() + fld); + twoDCorrectPoints(wantedPoints); + fld = wantedPoints-points0(); +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::displacementSmartPointSmoothingMotionSolver:: +displacementSmartPointSmoothingMotionSolver +( + const polyMesh& mesh, + const IOdictionary& dict +) +: + displacementMotionSolver(mesh, dict, typeName), + meshGeometry_(mesh), + pointUntangler_ + ( + pointSmoother::New + ( + coeffDict().get<word>("untangler"), + mesh, + coeffDict() + ) + ), + untangleQ_(coeffDict().get<scalar>("untangleQ")), + minQ_(coeffDict().get<scalar>("minQ")), + pointSmoother_(pointSmoother::New(mesh, coeffDict())), + nPointSmootherIter_ + ( + readLabel(coeffDict().lookup("nPointSmootherIter")) + ), + relaxedPoints_(mesh.points()) +{ + if (coeffDict().readIfPresent("relaxationFactors", relaxationFactors_)) + { + meshQualityDict_ = coeffDict().subDict("meshQuality"); + } + setFacesToMove(coeffDict()); +} + + +Foam::displacementSmartPointSmoothingMotionSolver:: +displacementSmartPointSmoothingMotionSolver +( + const polyMesh& mesh, + const IOdictionary& dict, + const pointVectorField& pointDisplacement, + const pointIOField& points0 +) +: + displacementMotionSolver(mesh, dict, pointDisplacement, points0, typeName), + meshGeometry_(mesh), + pointUntangler_ + ( + pointSmoother::New + ( + coeffDict().get<word>("untangler"), + mesh, + coeffDict() + ) + ), + untangleQ_(coeffDict().get<scalar>("untangleQ")), + minQ_(coeffDict().get<scalar>("minQ")), + pointSmoother_ + ( + pointSmoother::New + ( + mesh, + coeffDict() + ) + ), + nPointSmootherIter_ + ( + readLabel(coeffDict().lookup("nPointSmootherIter")) + ), + relaxedPoints_(mesh.points()) +{ + if (coeffDict().readIfPresent("relaxationFactors", relaxationFactors_)) + { + meshQualityDict_ = coeffDict().subDict("meshQuality"); + } + setFacesToMove(coeffDict()); +} + + +// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // + +Foam::tmp<Foam::pointField> +Foam::displacementSmartPointSmoothingMotionSolver::curPoints() const +{ + //Note: twoDCorrect already done by ::solve + + return relaxedPoints_; +} + + +void Foam::displacementSmartPointSmoothingMotionSolver::solve() +{ + movePoints(curPoints()); + + // Update values on pointDisplacement. Note: should also evaluate? Since + // e.g. cellMotionBC uses pointDisplacement value. + pointDisplacement().boundaryFieldRef().updateCoeffs(); + + + fileName debugDir; + if (debug & 2) + { + debugDir = mesh().time().timePath(); + mkDir(debugDir); + OBJstream os(debugDir/"bc.obj"); + + const pointField wantedPoints + ( + points0() + + pointDisplacement().internalField() + ); + const auto& pbm = pointDisplacement().mesh().boundary(); + for (const auto& ppp : pbm) + { + if (!isA<emptyPointPatch>(ppp)) + { + const auto& mp = ppp.meshPoints(); + for (const label pointi : mp) + { + os.write + ( + linePointRef + ( + points0()[pointi], + wantedPoints[pointi] + ) + ); + } + } + } + Pout<< "Written " << os.nVertices() << " initial displacements to " + << os.name() << endl; + } + + + // Extend: face-to-point-to-cell-to-faces + labelHashSet affectedFaces; + markAffectedFaces(facesToMove_, affectedFaces); + + + for(label i = 0; i < nPointSmootherIter_; i ++) + { + const pointField wantedPoints + ( + points0() + + pointDisplacement().internalField() + ); + + meshGeometry_.correct + ( + wantedPoints, + affectedFaces.toc() + ); + + //{ + // // Debugging: check meshGeometry consistent with fvGeometryScheme + // const auto& geom = + // reinterpret_cast<const fvMesh&>(mesh()).geometry(); + // pointField faceCentres(mesh().nFaces()); + // vectorField faceAreas(mesh().nFaces()); + // pointField cellCentres(mesh().nCells()); + // scalarField cellVolumes(mesh().nCells()); + // geom.updateGeom + // ( + // wantedPoints, + // mesh().points(), // old points + // faceCentres, + // faceAreas, + // cellCentres, + // cellVolumes + // ); + // forAll(faceCentres, facei) + // { + // const point& meshFc = mesh().faceCentres()[facei]; + // const point& meshGeomFc = meshGeometry_.faceCentres()[facei]; + // const point& updatedFc = faceCentres[facei]; + // + // if (updatedFc != meshGeomFc) + // { + // const face& f = mesh().faces()[facei]; + // + // Pout<< "At face:" << facei << nl + // << " old :" << meshFc << nl + // << " new :" << updatedFc << nl + // << " polyMeshGeom:" << meshGeomFc << nl + // << " oldPoints :" + // << UIndirectList<point>(mesh().points(), f) << nl + // << " wantedPoints:" + // << UIndirectList<point>(wantedPoints, f) << nl + // << endl; + // } + // } + //} + + // Get measure of face quality + tmp<scalarField> tfaceQ + ( + pointUntangler_->faceQuality + ( + wantedPoints, + meshGeometry_.faceCentres(), + meshGeometry_.faceAreas(), + meshGeometry_.cellCentres(), + meshGeometry_.cellVolumes() + ) + ); + + + if (debug) + { + MinMax<scalar> range(gMinMax(tfaceQ())); + Pout<< " min:" << range.min() << nl + << " max:" << range.max() << endl; + } + + labelList order; + Foam::sortedOrder(tfaceQ(), order); + + label nUntangle = 0; + forAll(order, i) + { + if (tfaceQ()[order[i]] > untangleQ_) + { + nUntangle = i; + break; + } + } + label nLow = 0; + forAll(order, i) + { + if (tfaceQ()[order[i]] > minQ_) + { + nLow = i; + break; + } + } + + + if (debug) + { + Pout<< " nUntangle:" << returnReduce(nUntangle, sumOp<label>()) + << nl + << " nLow :" << returnReduce(nLow, sumOp<label>()) + << nl; + } + + + if (returnReduce(nUntangle, sumOp<label>())) + { + // Start untangling + labelList lowQFaces(SubList<label>(order, nUntangle)); + //{ + // // Grow set (non parallel) + // bitSet isMarkedFace(mesh().nFaces()); + // for (const label facei : lowQFaces) + // { + // for (const label pointi : mesh().faces()[facei]) + // { + // isMarkedFace.set(mesh().pointFaces()[pointi]); + // } + // } + // lowQFaces = isMarkedFace.sortedToc(); + //} + + //Pout<< " untangling " + // << returnReduce(lowQFaces.size(), sumOp<label>()) + // << " faces" << endl; + pointUntangler_->update + ( + lowQFaces, + points0(), + wantedPoints, + meshGeometry_, + pointDisplacement() + //false // ! do NOT apply bcs, constraints + ); + + // Keep points on empty patches. Note: since pointConstraints + // does not implement constraints on emptyPointPatches and + // emptyPointPatchField does not either. + emptyCorrectPoints(pointDisplacement()); + + if (debug & 2) + { + OBJstream os(debugDir/"untangle_" + Foam::name(i) + ".obj"); + + const pointField wantedPoints + ( + points0() + + pointDisplacement().internalField() + ); + forAll(wantedPoints, pointi) + { + os.write + ( + linePointRef + ( + points0()[pointi], + wantedPoints[pointi] + ) + ); + } + Pout<< "Written " << os.nVertices() << " wanted untangle to " + << os.name() << endl; + } + } + else if (returnReduce(nLow, sumOp<label>())) + { + labelList lowQFaces(SubList<label>(order, nLow)); + //{ + // // Grow set (non parallel) + // bitSet isMarkedFace(mesh().nFaces()); + // for (const label facei : lowQFaces) + // { + // for (const label pointi : mesh().faces()[facei]) + // { + // isMarkedFace.set(mesh().pointFaces()[pointi]); + // } + // } + // lowQFaces = isMarkedFace.sortedToc(); + //} + + //Pout<< " smoothing " + // << returnReduce(lowQFaces.size(), sumOp<label>()) + // << " faces" << endl; + + pointSmoother_->update + ( + lowQFaces, + points0(), + wantedPoints, + meshGeometry_, + pointDisplacement() + ); + // Keep points on empty patches + emptyCorrectPoints(pointDisplacement()); + } + else + { + //Pout<< "** converged" << endl; + break; + } + } + + + relax(); + //relaxedPoints_ = points0() + pointDisplacement().internalField(); + + twoDCorrectPoints(relaxedPoints_); + + // Update pointDisplacement for actual relaxedPoints. Keep fixed-value + // bcs. + pointDisplacement().primitiveFieldRef() = relaxedPoints_-points0(); + + // Adhere to multi-point constraints. Does correctBoundaryConditions + + // multi-patch issues. + const pointConstraints& pcs = + pointConstraints::New(pointDisplacement().mesh()); + pcs.constrainDisplacement(pointDisplacement(), false); +} + + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementSmartPointSmoothingMotionSolver.H b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementSmartPointSmoothingMotionSolver.H new file mode 100644 index 0000000000000000000000000000000000000000..c0e3fd68d8653c8ee07cca4809b6df73a1eee948 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/displacementSmartPointSmoothingMotionSolver.H @@ -0,0 +1,193 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::displacementSmartPointSmoothingMotionSolver + +Description + Quality-based under-relaxation for run-time selectable point smoothing. WIP. + +Usage + \table + Property | Description | Required | Default value + untangler | pointSmoother for untangling | yes | + untangleQ | quality below which untangling is applied | yes | + + pointSmoother | pointSmoother in 'normal' mode | yes + minQ | quality below which pointSmoother is applied | yes + nPointSmootherIter | max number of iterations + \endtable + + Example of the motion solver specification in dynamicMeshDict: + \verbatim + motionSolver displacementSmartPointSmoothing; + displacementSmartPointSmoothingCoeffs + { + //- Overall max number of smoothing iterations + nPointSmootherIter 10; + + //- If any faces have quality below untangleQ apply untangler + untangleQ 0.001; + untangler laplacian; + + //- If any faces have quality below minQ apply 'normal' smoother + minQ 0.9; + pointSmoother geometricElementTransform; + transformationParameter 0.667; + } + \endverbatim + +SourceFiles + displacementSmartPointSmoothingMotionSolver.C + +\*---------------------------------------------------------------------------*/ + +#ifndef displacementSmartPointSmoothingMotionSolver_H +#define displacementSmartPointSmoothingMotionSolver_H + +#include "displacementMotionSolver.H" +#include "pointSmoother.H" +#include "polyMeshGeometry.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class displacementSmartPointSmoothingMotionSolver Declaration +\*---------------------------------------------------------------------------*/ + +class displacementSmartPointSmoothingMotionSolver +: + public displacementMotionSolver +{ +protected: + + // Protected Data + + //- Part-updatable mesh geometry + polyMeshGeometry meshGeometry_; + + //- Point untangler method + autoPtr<pointSmoother> pointUntangler_; + + //- Minimum allowed quality + const scalar untangleQ_; + + //- Minimum allowed quality + const scalar minQ_; + + //- Point smoothing method + autoPtr<pointSmoother> pointSmoother_; + + //- Number of point smoother iterations per timestep + const label nPointSmootherIter_; + + + // Mesh quality based relaxation of smoothed position + + //- Relaxation factors to use in each iteration + scalarList relaxationFactors_; + + //- Relaxed point field + pointField relaxedPoints_; + + //- Set of the faces which are to be moved + labelHashSet facesToMove_; + + //- Mesh quality dictionary + dictionary meshQualityDict_; + + + // Private Member Functions + + //- Mark affected faces + void markAffectedFaces + ( + const labelHashSet& changedFaces, + labelHashSet& affectedFaces + ); + + //- Relax the points + bool relax(); + + //- Set all the faces to be moved + void virtual setFacesToMove(const dictionary&); + + //- Handle 2D & empty bcs. Assume in both cases the starting mesh + // - has all edges aligned with 3rd dimension + // - is on planes of the empty patches + void emptyCorrectPoints(pointVectorField& pointDisplacement); + + +public: + + //- Runtime type information + TypeName("displacementSmartPointSmoothing"); + + + // Constructors + + //- Construct from a polyMesh and an IOdictionary + displacementSmartPointSmoothingMotionSolver + ( + const polyMesh&, + const IOdictionary& + ); + + //- Construct from components + displacementSmartPointSmoothingMotionSolver + ( + const polyMesh& mesh, + const IOdictionary& dict, + const pointVectorField& pointDisplacement, + const pointIOField& points0 + ); + + + //- Destructor + virtual ~displacementSmartPointSmoothingMotionSolver() = default; + + + // Member Functions + + //- Return point location obtained from the current motion field + virtual tmp<pointField> curPoints() const; + + //- Solve for motion + virtual void solve(); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/hexMeshSmootherMotionSolver.C b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/hexMeshSmootherMotionSolver.C new file mode 100644 index 0000000000000000000000000000000000000000..8d053b2ad7d797f61493f9076516fc881db03475 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/hexMeshSmootherMotionSolver.C @@ -0,0 +1,1291 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2021,2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "hexMeshSmootherMotionSolver.H" +#include "addToRunTimeSelectionTable.H" +#include "syncTools.H" +#include "pointConstraints.H" +#include "unitConversion.H" +#include "OBJstream.H" +#include "PatchTools.H" +//#include "geometricElementTransformPointSmoother.H" +#include "pointList.H" +#include "vectorList.H" +#include "meshPointPatch.H" +#include "pointSmoother.H" +#include "fvMesh.H" +#include "fvGeometryScheme.H" +#include "emptyPointPatchFields.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ + defineTypeNameAndDebug(hexMeshSmootherMotionSolver, 0); + + addToRunTimeSelectionTable + ( + motionSolver, + hexMeshSmootherMotionSolver, + dictionary + ); + + addToRunTimeSelectionTable + ( + displacementMotionSolver, + hexMeshSmootherMotionSolver, + displacement + ); +} + + +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // + +Foam::labelList Foam::hexMeshSmootherMotionSolver::nonConstraintPatches +( + const polyMesh& mesh +) +{ + // Get list of all non-constraint patches. These are the ones where + // laplacian smoothing is applied. + + const auto& pbm = mesh.boundaryMesh(); + + DynamicList<label> patchIDs(pbm.size()); + for (const auto& pp : pbm) + { + if (!polyPatch::constraintType(pp.type())) + { + patchIDs.append(pp.index()); + } + } + return patchIDs; +} + + +Foam::autoPtr<Foam::indirectPrimitivePatch> +Foam::hexMeshSmootherMotionSolver::makePatch +( + const polyMesh& mesh, + const labelList& patchIDs, + const labelList& zoneIDs, + const pointField& points0 +) +{ + // Mark all faces + bitSet isPatchFace(mesh.nFaces()); + + // Mark all boundary faces (or just patchIDs?) + for (const label patchi : patchIDs) + { + const polyPatch& pp = mesh.boundaryMesh()[patchi]; + isPatchFace.set(pp.range()); + } + + const auto& fzs = mesh.faceZones(); + for (const label zonei : zoneIDs) + { + isPatchFace.set(fzs[zonei]); + } + + syncTools::syncFaceList(mesh, isPatchFace, orEqOp<unsigned int>()); + + const labelList patchFaces(isPatchFace.sortedToc()); + + return autoPtr<indirectPrimitivePatch>::New + ( + IndirectList<face>(mesh.faces(), patchFaces), + points0 + ); +} + + +void Foam::hexMeshSmootherMotionSolver::checkMesh +( + const pointField& currentPoints, + const vectorField& fCtrs, + const vectorField& fAreas, + const vectorField& cellCtrs, + const scalarField& cellVols, + labelHashSet& markedFaces, + bitSet& markedPoints +) const +{ + // Replacement for motionSmootherAlgo::checkMesh. Adds to markedFaces + // any faces that are insufficient quality + + + markedFaces.clear(); + markedPoints = false; + + + /* + + tmp<scalarField> tminCellQ + ( + pointSmoothers::geometricElementTransformPointSmoother::cellQuality + ( + mesh(), + currentPoints + ) + ); + const scalarField& minCellQ = tminCellQ(); + + markedPoints.setSize(mesh().nPoints()); + + labelHashSet set; + DynamicList<label> storage; + + for (label facei = 0; facei < mesh().nFaces(); facei++) + { + const label own = mesh().faceOwner()[facei]; + if (minCellQ[own] < VSMALL) + { + markedFaces.insert(facei); + markedPoints.set(mesh().cellPoints(own, set, storage)); + } + else if + ( + mesh().isInternalFace(facei) + && minCellQ[mesh().faceNeighbour()[facei]] < VSMALL + ) + { + markedFaces.insert(facei); + markedPoints.set + ( + mesh().cellPoints(mesh().faceNeighbour()[facei], set, storage) + ); + } + } + */ + + // Get measure of face quality + tmp<scalarField> tfaceQ + ( + pointSmoother_->faceQuality + ( + currentPoints, + fCtrs, + fAreas, + cellCtrs, + cellVols + ) + ); + const auto& faceQ = tfaceQ(); + + markedPoints.setSize(mesh().nPoints()); + forAll(faceQ, facei) + { + if (faceQ[facei] < VSMALL) + { + markedFaces.insert(facei); + markedPoints.set(mesh().faces()[facei]); + } + } + + + syncTools::syncPointList + ( + mesh(), + markedPoints, + orEqOp<unsigned int>(), + 0U + ); + + // Par sync. TBD. + { + bitSet isMarkedFace(mesh().nFaces()); + isMarkedFace.set(markedFaces.toc()); + syncTools::syncFaceList + ( + mesh(), + isMarkedFace, + orEqOp<unsigned int>() + ); + markedFaces.insert(isMarkedFace.toc()); + } +} + + +//void Foam::hexMeshSmootherMotionSolver::constrainDisplacement +//( +// pointField& points +//) const +//{ +// // Make sure the points obey the boundary conditions +// // on pointDisplacement +// +// // Update pointDisplacement for suppled points +// pointDisplacement_.primitiveFieldRef() = points-points0(); +// const pointConstraints& pcs = +// pointConstraints::New(pointDisplacement_.mesh()); +// pcs.constrainDisplacement(pointDisplacement_, false); +//// pointDisplacement_.correctBoundaryConditions(); +// points = points0()+pointDisplacement(); +//} + + +bool Foam::hexMeshSmootherMotionSolver::relax +( + const scalarList& relaxationFactors, + const bitSet& pointsToRelax, + const pointField& initialPoints, + const pointField& wantedPoints, + pointField& relaxedPoints, + labelList& relaxationLevel +) const +{ + // Find relaxation level that makes mesh quality acceptable. Gets given + // initial set of mesh points + + relaxedPoints = wantedPoints; + + { + vectorField fCtrs(mesh().nFaces()); + vectorField fAreas(mesh().nFaces()); + vectorField cellCtrs(mesh().nCells()); + scalarField cellVols(mesh().nCells()); + + // Calculate mesh quantities with new locations + const auto& geom = + reinterpret_cast<const fvMesh&>(mesh()).geometry(); + geom.updateGeom + ( + relaxedPoints, + mesh().points(), // old points (for avoiding recalculation) + fCtrs, + fAreas, + cellCtrs, + cellVols + ); + + // Check the modified face quality. Marks faces with insufficient + // quality. + labelHashSet markedFaces; + bitSet markedPoints; + checkMesh + ( + relaxedPoints, + fCtrs, + fAreas, + cellCtrs, + cellVols, + markedFaces, + markedPoints + ); + if (debug) + { + Pout<< "** hexMeshSmootherMotionSolver::relax : errorfaces:" + << markedFaces.size() + << " errorpoints:" << markedPoints.count() << endl; + } + } + + + // Create a list of relaxation levels + // -1 indicates a point which is not to be moved + // 0 is the starting value for a moving point + relaxationLevel.setSize(mesh().nPoints()); + relaxationLevel = -1; + for (const label pointi : pointsToRelax) + { + relaxationLevel[pointi] = 0; + } + + syncTools::syncPointList + ( + mesh(), + relaxationLevel, + maxEqOp<label>(), + label(-1) + ); + + vectorField fCtrs(mesh().nFaces()); + vectorField fAreas(mesh().nFaces()); + vectorField cellCtrs(mesh().nCells()); + scalarField cellVols(mesh().nCells()); + + // Loop whilst relaxation levels are being incremented + bool complete(false); + while (!complete) + { + //Info<< " Moving " + // << countZeroOrPos(relaxationFactors.size(), relaxationLevel) + // << " points" << endl; + + // Calculate current points (relaxationLevel >= 0) + forAll(relaxationLevel, pointi) + { + if (relaxationLevel[pointi] >= 0) + { + const scalar x + ( + relaxationFactors[relaxationLevel[pointi]] + ); + + relaxedPoints[pointi] = + (1 - x)*initialPoints[pointi] + + x*wantedPoints[pointi]; + } + } + + // Make sure the relaxed points still obey the boundary conditions + // on pointDisplacement. Note: could do this afterwards but better + // as soon as possible so we pick it up in the checkMesh + //constrainDisplacement(relaxedPoints); + + + // Calculate mesh quantities with new locations + const auto& geom = + reinterpret_cast<const fvMesh&>(mesh()).geometry(); + geom.updateGeom + ( + relaxedPoints, + mesh().points(), // old points + fCtrs, + fAreas, + cellCtrs, + cellVols + ); + + // Check the modified face quality. Marks faces with insufficient + // quality. + labelHashSet markedFaces; + bitSet markedPoints; + checkMesh + ( + relaxedPoints, + fCtrs, + fAreas, + cellCtrs, + cellVols, + markedFaces, + markedPoints + ); + //Pout<< " checkMesh : errorfaces:" << markedFaces.size() + // << " errorpoints:" << markedPoints.count() << endl; + + complete = true; + for (const label pointi : markedPoints) + { + if (relaxationLevel[pointi] < relaxationFactors.size() - 1) + { + ++relaxationLevel[pointi]; + complete = false; + } + } + + //Info<< " After adjustment:" + // << countZeroOrPos(relaxationFactors.size(), relaxationLevel) + // << " points relaxed" << endl; + + + // Synchronise convergence + reduce(complete, andOp<bool>()); + + // Synchronise relaxation levels + syncTools::syncPointList + ( + mesh(), + relaxationLevel, + maxEqOp<label>(), + label(0) + ); + } + + // Check for convergence + const label count(countPos(relaxationLevel)); + const bool converged(count == 0); + + //if (converged) + //{ + // Info<< "... Converged" << endl << endl; + //} + //else + //{ + // Info<< "... Not converged" << endl << endl; + //} + + return converged; +} +Foam::label Foam::hexMeshSmootherMotionSolver::countPos +( + const labelList& elems +) const +{ + label n = 0; + for (const label elem : elems) + { + if (elem > 0) + { + n++; + } + } + return returnReduce(n, sumOp<label>()); +} + + +Foam::labelList Foam::hexMeshSmootherMotionSolver::countZeroOrPos +( + const label size, + const labelList& elems +) const +{ + labelList n(size, 0); + for (const label elem : elems) + { + if (elem >= 0) + { + n[elem]++; + } + } + Pstream::listCombineGather(n, plusEqOp<label>()); + Pstream::broadcast(n); + return n; +} + + +void Foam::hexMeshSmootherMotionSolver::select +( + const labelUList& lst, + const label val, + bitSet& isVal +) const +{ + isVal.set(lst.size()); + isVal = false; + forAll(lst, i) + { + isVal[i] = (lst[i] == val); + } +} + + +void Foam::hexMeshSmootherMotionSolver::laplaceSmooth +( + const label type, + const pointField& initialPoints, + pointField& newPoints +) const +{ + if (initialPoints.size() != mesh().nPoints()) + { + FatalErrorInFunction << "mesh().nPoints:" << mesh().nPoints() + << " initial:" << initialPoints.size() << exit(FatalError); + } + + newPoints.setSize(initialPoints.size()); + newPoints = Zero; + labelList n(initialPoints.size(), 0); + + DynamicList<label> storage; + forAll(pointTypes_, pointi) + { + if (pointTypes_[pointi] == INTERIOR) + { + const labelList& pPoints = mesh().pointPoints(pointi, storage); + for (const label otherPointi : pPoints) + { + if (isMasterPoint_[otherPointi]) + { + newPoints[pointi] += initialPoints[otherPointi]; + n[pointi]++; + } + } + //Pout<< "Moving internal point " << initialPoints[pointi] + // << " to average " << newPoints[pointi]/n[pointi] + // << " of " << n[pointi] << " points" << endl; + } + } + + // Combine + syncTools::syncPointList + ( + mesh(), + n, + plusEqOp<label>(), + label(0) + ); + syncTools::syncPointList + ( + mesh(), + newPoints, + plusEqOp<vector>(), + vector::zero + ); + forAll(newPoints, pointi) + { + if (n[pointi] == 0) + { + // This can happen if not interior point + newPoints[pointi] = initialPoints[pointi]; + //Pout<< "Not Moving boundary point " << newPoints[pointi] << endl; + } + else + { + newPoints[pointi] /= n[pointi]; + //Pout<< "Moving internal point " << initialPoints[pointi] + // << " to " << newPoints[pointi] << endl; + } + } +} +void Foam::hexMeshSmootherMotionSolver::featLaplaceSmooth +( + const indirectPrimitivePatch& pp, + const pointField& initialPoints, + pointField& newPoints +) const +{ + if (initialPoints.size() != pp.nPoints()) + { + FatalErrorInFunction << "pp.nPoints:" << pp.nPoints() + << " initial:" << initialPoints.size() << exit(FatalError); + } + + newPoints.setSize(pp.nPoints()); + newPoints = Zero; + labelList n(pp.nPoints(), 0); + + const edgeList& edges = pp.edges(); + const labelListList& pointEdges = pp.pointEdges(); + const labelList& meshPoints = pp.meshPoints(); + + forAll(pointEdges, pointi) + { + const label myConstraint = pointTypes_[meshPoints[pointi]]; + if (myConstraint != INTERIOR) // pp points should never be interior + { + const labelList& pEdges = pointEdges[pointi]; + //Pout<< "For boundary point:" << initialPoints[pointi] + // << endl; + + for (const label edgei : pEdges) + { + const label otherPointi = edges[edgei].otherVertex(pointi); + const label otherMeshPointi = meshPoints[otherPointi]; + const label otherConstraint = pointTypes_[otherMeshPointi]; + + if + ( + (otherConstraint != INTERIOR) // Should not happen + && (myConstraint <= otherConstraint) + && isMasterPoint_[otherMeshPointi] + ) + { + //Pout<< " summing boundary point:" + // << initialPoints[otherPointi] << endl; + + newPoints[pointi] += initialPoints[otherPointi]; + n[pointi]++; + } + } + } + } + + // Combine + syncTools::syncPointList + ( + mesh(), + meshPoints, + n, + plusEqOp<label>(), + label(0) + ); + syncTools::syncPointList + ( + mesh(), + meshPoints, + newPoints, + plusEqOp<vector>(), + vector::zero + ); + + forAll(newPoints, pointi) + { + if (n[pointi] == 0) + { + // This can happen if surface point surrounded by feature points + // only. + newPoints[pointi] = initialPoints[pointi]; + //Pout<< "Not Moving boundary point " << newPoints[pointi] << endl; + } + else + { + newPoints[pointi] /= n[pointi]; + //Pout<< "Moving surface point " << initialPoints[pointi] + // << " to average " << newPoints[pointi] + // << " of " << n[pointi] << " points" << endl; + } + } +} +void Foam::hexMeshSmootherMotionSolver::snapBoundaryPoints +( + const scalar scale, + const pointField& initialPoints, + pointField& newPoints +) const +{ + if (initialPoints.size() != pointDisplacement_.mesh().size()) + { + FatalErrorInFunction + << "mesh.nPoints():" << pointDisplacement_.mesh().size() + << " initial:" << initialPoints.size() << exit(FatalError); + } + const indirectPrimitivePatch& bnd0 = bnd0Ptr_(); + const labelList& mp = bnd0.meshPoints(); + + // Save old point location + const vectorField bndPoints(initialPoints, mp); + + // Update pointDisplacement_ to be consistent with mesh points being set to + // initialPoints. This makes sure that the snapping is done using the + // initialPoints as starting point + pointDisplacement_.primitiveFieldRef() = initialPoints-points0(); + // 'snap' using boundary conditions + pointDisplacement_.correctBoundaryConditions(); + + // Calculate new position + newPoints = points0() + pointDisplacement().internalField(); + + if (scale < 1.0) + { + // Underrelax + vectorField d(newPoints, mp); + d -= bndPoints; + d *= scale; + d += bndPoints; + UIndirectList<point>(newPoints, mp) = d; + } +} + +//void Foam::hexMeshSmootherMotionSolver::writeOBJ +//( +// const fileName& name, +// const pointField& p0, +// const pointField& p1 +//) const +//{ +// OBJstream os(mesh().time().path()/name); +// forAll(p0, pointi) +// { +// os.write(linePointRef(p0[pointi], p1[pointi])); +// } +// Pout<< "Dumped to " << os.name() << endl; +//} +//void Foam::hexMeshSmootherMotionSolver::writeOBJ +//( +// const fileName& name, +// const UIndirectList<face>& pp, +// const pointField& points +//) const +//{ +// const faceList fcs(pp); +// +// OBJstream os(mesh().time().path()/name); +// os.write(fcs, points, false); +// Pout<< "Dumped faces to " << os.name() << endl; +//} + + +void Foam::hexMeshSmootherMotionSolver::emptyCorrectPoints +( + pointVectorField& pointDisplacement +) const +{ + // Assume empty point patches are already in correct location + // so knock out any off-plane displacement. + auto& fld = pointDisplacement.primitiveFieldRef(); + for (const auto& ppf : pointDisplacement.boundaryField()) + { + if (isA<emptyPointPatchVectorField>(ppf)) + { + const auto& mp = ppf.patch().meshPoints(); + forAll(mp, i) + { + pointConstraint pc; + ppf.patch().applyConstraint(i, pc); + fld[mp[i]] = pc.constrainDisplacement(fld[mp[i]]); + } + } + } + + pointField wantedPoints(points0() + fld); + twoDCorrectPoints(wantedPoints); + fld = wantedPoints-points0(); +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::hexMeshSmootherMotionSolver:: +hexMeshSmootherMotionSolver +( + const polyMesh& mesh, + const IOdictionary& dict +) +: + displacementMotionSolver(mesh, dict, typeName), + pointSmoother_(pointSmoother::New(mesh, coeffDict())), + nPointSmootherIter_ + ( + readLabel(coeffDict().lookup("nPointSmootherIter")) + ), + relaxationFactors_(coeffDict().lookup("relaxationFactors")), + relaxationLevel_(mesh.nPoints(), 0), + relaxedPoints_(mesh.points()), + //surfacesDict_(coeffDict().subDict("geometry")), + //featureAngle_(coeffDict().get<scalar>("featureAngle")), + //snapPatches_ + //( + // mesh.boundaryMesh().patchSet + // ( + // coeffDict().get<wordRes>("patches") + // ).sortedToc() + //), + //snapZones_ + //( + // mesh.faceZones().indices + // ( + // coeffDict().get<wordRes>("faceZones") + // ) + //), + snapScale_(Function1<scalar>::New("snapScale", coeffDict())), + isMasterPoint_(syncTools::getMasterPoints(mesh)), + // Create big primitivePatch for all outside and any features on it + //bnd0Ptr_(makePatch(mesh, snapPatches_, snapZones_, points0())) + bnd0Ptr_ + ( + makePatch + ( + mesh, + nonConstraintPatches(mesh), + labelList::null(), + points0() + ) + ) +{ +// findSurfaces(); +// +// // Do multi-patch constraints +// // ~~~~~~~~~~~~~~~~~~~~~~~~~~ +// +// const scalar featureEdgeCos(Foam::cos(featureAngle_)); +// const scalar featurePointCos(featureEdgeCos); +// +// const indirectPrimitivePatch& bnd0 = bnd0Ptr_(); +// +// calcConstraints +// ( +// featureEdgeCos, +// featurePointCos, +// bnd0, +// bnd0EdgeConstraints_, +// bnd0PointConstraints_ +// ); + + const pointMesh& pMesh = pointMesh::New(mesh, IOobject::READ_IF_PRESENT); + + pointTypes_.setSize(pMesh.size()); + pointTypes_ = INTERIOR; + + for (const auto& pp : pMesh.boundary()) + { + if (!isA<meshPointPatch>(pp)) + { + const auto& mp = pp.meshPoints(); + UIndirectList<label>(pointTypes_, mp) = pointType::SURFACE; + } + } + + // Override with any explicit constraint boundaries + for (const auto& pp : pMesh.boundary()) + { + const auto* meshPointPtr = isA<meshPointPatch>(pp); + if (meshPointPtr) + { + const auto& constraints = meshPointPtr->constraints(); + const auto& mp = meshPointPtr->meshPoints(); + + forAll(mp, i) + { + pointTypes_[mp[i]] = pointType(constraints[i].first()); + } + } + } + + // Make sure coupled points agree. Max constraint wins. + syncTools::syncPointList + ( + mesh, + pointTypes_, + maxEqOp<label>(), + label(0) + ); + + bitSet isVal; + select(pointTypes_, POINT, isVal); + const label nFeatPoint = returnReduce(isVal.count(), sumOp<label>()); + select(pointTypes_, EDGE, isVal); + const label nFeatEdge = returnReduce(isVal.count(), sumOp<label>()); + select(pointTypes_, SURFACE, isVal); + const label nSurface = returnReduce(isVal.count(), sumOp<label>()); + select(pointTypes_, INTERIOR, isVal); + const label nInternal = returnReduce(isVal.count(), sumOp<label>()); + Info<< "Attraction:" << nl + << " feature point:" << nFeatPoint << nl + << " feature edge :" << nFeatEdge << nl + << " surface :" << nSurface << nl + << " none :" << nInternal + << endl; +} + + +Foam::hexMeshSmootherMotionSolver:: +hexMeshSmootherMotionSolver +( + const polyMesh& mesh, + const IOdictionary& dict, + const pointVectorField& pointDisplacement, + const pointIOField& points0 +) +: + displacementMotionSolver(mesh, dict, pointDisplacement, points0, typeName), + pointSmoother_(pointSmoother::New(mesh, coeffDict())), + //pointSmoother_ + //( + // pointSmoother::New + // ( + // coeffDict(), + // displacementMotionSolver::pointDisplacement() + // ) + //), + nPointSmootherIter_ + ( + readLabel(coeffDict().lookup("nPointSmootherIter")) + ), + relaxationFactors_(coeffDict().lookup("relaxationFactors")), + relaxationLevel_(mesh.nPoints(), 0), + relaxedPoints_(mesh.points()), + //surfacesDict_(coeffDict().subDict("geometry")), + //featureAngle_(coeffDict().get<scalar>("featureAngle")), + //snapPatches_ + //( + // mesh.boundaryMesh().patchSet + // ( + // coeffDict().get<wordReList>("patches") + // ).sortedToc() + //), + //snapZones_ + //( + // mesh.faceZones().indices + // ( + // coeffDict().get<wordRes>("faceZones") + // ) + //), + snapScale_(Function1<scalar>::New("snapScale", coeffDict())), + isMasterPoint_(syncTools::getMasterPoints(mesh)), + // Create big primitivePatch for all outside and any features on it + //bnd0Ptr_(makePatch(mesh, snapPatches_, snapZones_, points0)) + bnd0Ptr_ + ( + makePatch + ( + mesh, + nonConstraintPatches(mesh), + labelList::null(), + points0 + ) + ) +{ +// findSurfaces(); +// +// const scalar featureEdgeCos(Foam::cos(featureAngle_)); +// const scalar featurePointCos(featureEdgeCos); +// +// const indirectPrimitivePatch& bnd0 = bnd0Ptr_(); +// +// calcConstraints +// ( +// featureEdgeCos, +// featurePointCos, +// bnd0, +// bnd0EdgeConstraints_, +// bnd0PointConstraints_ +// ); + + const pointMesh& pMesh = pointMesh::New(mesh, IOobject::READ_IF_PRESENT); + + pointTypes_.setSize(mesh.nPoints()); + pointTypes_ = INTERIOR; + + for (const auto& pp : pMesh.boundary()) + { + if (!isA<meshPointPatch>(pp) && !pp.coupled()) + { + const auto& mp = pp.meshPoints(); + UIndirectList<label>(pointTypes_, mp) = pointType::SURFACE; + } + } + + // Override with any explicit constraint boundaries + for (const auto& pp : pMesh.boundary()) + { + const auto* meshPointPtr = isA<meshPointPatch>(pp); + if (meshPointPtr) + { + const auto& constraints = meshPointPtr->constraints(); + const auto& mp = meshPointPtr->meshPoints(); + + forAll(mp, i) + { + pointTypes_[mp[i]] = pointType(constraints[i].first()); + } + } + } + + // Make sure coupled points agree. Max constraint wins. + syncTools::syncPointList + ( + mesh, + pointTypes_, + maxEqOp<label>(), + label(0) + ); + + bitSet isVal; + select(pointTypes_, POINT, isVal); + const label nFeatPoint = returnReduce(isVal.count(), sumOp<label>()); + select(pointTypes_, EDGE, isVal); + const label nFeatEdge = returnReduce(isVal.count(), sumOp<label>()); + select(pointTypes_, SURFACE, isVal); + const label nSurface = returnReduce(isVal.count(), sumOp<label>()); + select(pointTypes_, INTERIOR, isVal); + const label nInternal = returnReduce(isVal.count(), sumOp<label>()); + Info<< "Attraction:" << nl + << " feature point:" << nFeatPoint << nl + << " feature edge :" << nFeatEdge << nl + << " surface :" << nSurface << nl + << " none :" << nInternal + << endl; +} + + +// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // + +Foam::hexMeshSmootherMotionSolver:: +~hexMeshSmootherMotionSolver() +{} + + +// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // + +Foam::tmp<Foam::pointField> +Foam::hexMeshSmootherMotionSolver::curPoints() const +{ + //Note: twoDCorrect already done by ::solve + return relaxedPoints_; +} + + +void Foam::hexMeshSmootherMotionSolver::solve() +{ + // Update any internal storage for current state + movePoints(mesh().points()); + + // No updating of bc since we don't want to do snapping yet - is done + // later on + //pointDisplacement().boundaryFieldRef().updateCoeffs(); + + const indirectPrimitivePatch& bnd0 = bnd0Ptr_(); + const labelList& mp = bnd0.meshPoints(); + + // Points on boundary + bitSet isBndPoint(mesh().nPoints(), false); + isBndPoint.set(mp); + + // Points not on boundary + bitSet isInternalPoint; + select(pointTypes_, INTERIOR, isInternalPoint); + + + const pointField& initialPoints = mesh().points(); + + // Wanted locations - starts off from current mesh points. Note : could + // use relaxedPoints_ but this should be equal to current mesh points unless + // we have multiple motion solvers ... + pointField movedPoints(initialPoints); + + + // -1 indicates a point which is not to be moved + // 0 is the starting value for a moving point + const label nRelaxed = countPos(relaxationLevel_); + //Pout<< "Starting relaxed:" << nRelaxed << endl; + + if (nRelaxed > 0) + { + // MeshSmoother::snapSmoothing() + // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // - set initialPoint from relaxedPoint + // - smooth internal points + // - and relax point motion (= adapt relaxationLevel_) + // - snap boundary points + // - and relax point motion (= adapt relaxationLevel_) + // - mark all points that are not snapped (i.e. snapped but relaxed) + // - smooth all boundary points (using features) + // - and relax point motion (= adapt relaxationLevel_) + + // Laplace smoothing of interior (=unconstrained) points + laplaceSmooth(INTERIOR, initialPoints, movedPoints); + + // Apply constraints + //constrainDisplacement(movedPoints); + + // Determine relaxation level to move points + relax + ( + relaxationFactors_, + isInternalPoint, + initialPoints, // starting location + movedPoints, // wanted location + relaxedPoints_, // inbetween location without errors + relaxationLevel_ + ); + //Pout<< "After laplaceSmooth:" + // << countZeroOrPos(relaxationFactors_.size(), relaxationLevel_) + // << endl; + //writeOBJ + //( + // "laplaceSmooth_relax_" + mesh().time().timeName() + ".obj", + // bnd0, + // relaxedPoints_ + //); + + + // Snap boundary points + const scalar scale = snapScale_->value(mesh().time().timeIndex()); + if (scale > 0) + { + // snap to surface (=apply boundary conditions) + snapBoundaryPoints(scale, initialPoints, movedPoints); + + // Apply constraints + //constrainDisplacement(movedPoints); + + relax + ( + relaxationFactors_, + isBndPoint, + initialPoints, + movedPoints, + relaxedPoints_, + relaxationLevel_ + ); + //Pout<< "After snapping:" + // << countZeroOrPos(relaxationFactors_.size(), relaxationLevel_) + // << endl; + //writeOBJ("snap_relax.obj", initialPoints, relaxedPoints_); + + // Now relaxedPoints_ with relaxationLevel_ 0 are perfectly snapped + // (only applicable for bnd0 points) + } + + // Laplace smoothing of (now snapped&relaxed) boundary points. Use + // average of surrounding boundary points of same type only + pointField bndMovedPoints; + featLaplaceSmooth + ( + bnd0, + pointField(relaxedPoints_, mp), + bndMovedPoints + ); + UIndirectList<point>(movedPoints, mp) = bndMovedPoints; + + // Apply constraints + //constrainDisplacement(movedPoints); + //writeOBJ("featLaplaceSmooth.obj", initialPoints, movedPoints); + + relax + ( + relaxationFactors_, + isBndPoint, + initialPoints, + movedPoints, + relaxedPoints_, + relaxationLevel_ + ); + } + else + { + // MeshSmoother::GETMeSmoothing() + // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // - set initialPoint from relaxedPoint + // - smooth all boundary points (using features) + // - and relax point motion (= adapt relaxationLevel_) + // - snap boundary points + // - and relax point motion (= adapt relaxationLevel_) + // - do all points GETMe + // - and relax point motion (= adapt relaxationLevel_) + + + // Laplace smoothing of boundary points. Use average of + // surrounding boundary points of same type only. TBD: make consistent + // wrt coupled points not on boundary patch. + pointField bndMovedPoints; + featLaplaceSmooth + ( + bnd0, + pointField(relaxedPoints_, mp), + bndMovedPoints + ); + UIndirectList<point>(movedPoints, mp) = bndMovedPoints; + //writeOBJ + //( + // "featLaplaceSmooth_unconstrain_" + // + mesh().time().timeName() + // + ".obj", + // pointField(initialPoints, mp), + // bndMovedPoints + //); + + // Apply constraints + //constrainDisplacement(movedPoints); + + relax + ( + relaxationFactors_, + isBndPoint, + initialPoints, + movedPoints, + relaxedPoints_, + relaxationLevel_ + ); + //writeOBJ + //( + // "featLaplaceSmooth_relax" + // + mesh().time().timeName() + // + ".obj", + // initialPoints, + // relaxedPoints_ + //); + + // Snap boundary points + const scalar scale = snapScale_->value(mesh().time().timeIndex()); + if (scale > 0) + { + // snap to surface (=apply boundary conditions) + snapBoundaryPoints(scale, relaxedPoints_, movedPoints); + + // Apply constraints + //constrainDisplacement(movedPoints); + //writeOBJ("snap.obj", initialPoints, movedPoints); + + relax + ( + relaxationFactors_, + isBndPoint, + initialPoints, + movedPoints, + relaxedPoints_, + relaxationLevel_ + ); + //writeOBJ("snap_relax.obj", initialPoints, relaxedPoints_); + } + + vectorField fCtrs(mesh().nFaces()); + vectorField fAreas(mesh().nFaces()); + vectorField cellCtrs(mesh().nCells()); + scalarField cellVols(mesh().nCells()); + + movedPoints = relaxedPoints_; + + for(label i = 0; i < nPointSmootherIter_; i ++) + { + // Starting from current points do smoothing + // Calculate mesh quantities with new locations + + const auto& geom = + reinterpret_cast<const fvMesh&>(mesh()).geometry(); + geom.updateGeom + ( + movedPoints, + mesh().points(), // old points + fCtrs, + fAreas, + cellCtrs, + cellVols + ); + + //- Smooth point positions (returned as pointDisplacement w.r.t. + // points0) + pointSmoother_->update + ( + identity(mesh().nFaces()), + points0(), + movedPoints, + fCtrs, + fAreas, + cellCtrs, + cellVols, + pointDisplacement_ + ); + // Keep points on empty patches + emptyCorrectPoints(pointDisplacement()); + + // Update moving points + movedPoints = points0() + pointDisplacement().internalField(); + + //// snap to surface (=apply boundary conditions) + //snapBoundaryPoints(scale, movedPoints, movedPoints); + } + + // snap to surface (=apply boundary conditions) + //snapBoundaryPoints(scale, movedPoints, movedPoints); + + //writeOBJ + //( + // "GETMeSmoothing_snapped_" + // + mesh().time().timeName() + // + ".obj", + // pointField(initialPoints, mp), + // pointField(movedPoints, mp) + //); + + relax + ( + relaxationFactors_, + bitSet(mesh().nPoints(), true), + initialPoints, + movedPoints, + relaxedPoints_, + relaxationLevel_ + ); + //writeOBJ("GETMeSmoothing_relax.obj", initialPoints, relaxedPoints_); + } +} + + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/hexMeshSmootherMotionSolver.H b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/hexMeshSmootherMotionSolver.H new file mode 100644 index 0000000000000000000000000000000000000000..a71b739fa1886692b9b23bd2944ea99634873520 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/hexMeshSmootherMotionSolver.H @@ -0,0 +1,258 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2021 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::hexMeshSmootherMotionSolver + +Description + Implementation of hexMeshSmoother (part of extBlockMesh). WIP. + + See https://github.com/Etudes-NG/extBlockMesh + extBlockMesh Copyright (C) 2014 Etudes-NG + + Quality-based under-relaxation of point smoothing. + +Usage + Example of the motion solver specification in dynamicMeshDict: + \verbatim + motionSolver hexMeshSmoother; + hexMeshSmootherCoeffs + { + //- Number of smoothing iterations + nPointSmootherIter 10; + + //- Smoother to apply + pointSmoother geometricElementTransform; + + //- Any smoother-specific settings + transformationParameter 0.667; + + //- Underrelax boundary condition + snapScale table ((0 0.1) (10 1.0)); + } + +SourceFiles + hexMeshSmootherMotionSolver.C + +\*---------------------------------------------------------------------------*/ + +#ifndef hexMeshSmootherMotionSolver_H +#define hexMeshSmootherMotionSolver_H + +#include "displacementMotionSolver.H" +#include "Function1.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +//class searchableSurfaces; +class pointSmoother; + +/*---------------------------------------------------------------------------*\ + Class hexMeshSmootherMotionSolver Declaration +\*---------------------------------------------------------------------------*/ + +class hexMeshSmootherMotionSolver +: + public displacementMotionSolver +{ +public: + + // Public Data + + //- Enumeration defining the type of attraction + enum pointType + { + INTERIOR = 0, + SURFACE = 1, + EDGE = 2, + POINT = 3 + }; + + +protected: + + // Protected Data + + //- Point smoothing method + autoPtr<pointSmoother> pointSmoother_; + + //- Number of point smoother iterations per timestep + const label nPointSmootherIter_; + + + // Mesh quality based relaxation of smoothed position + + //- Relaxation factors to use in each iteration + const scalarList relaxationFactors_; + + //- Per mesh point (including internal) what type + labelList pointTypes_; + + //- Per mesh point the last used relaxation factor + labelList relaxationLevel_; + + //- Relaxed point field + pointField relaxedPoints_; + + + ////- Patches that are to be snapped + //const labelList snapPatches_; + // + ////- FaceZones that are to be snapped + //const labelList snapZones_; + + //- Scaling for snapping + const autoPtr<Function1<scalar>> snapScale_; + + //- Cached per-point coupled status. For guaranteeing contributions + // of coupled points only done once + const bitSet isMasterPoint_; + + //- Create big primitivePatch for all outside and any features on it + const autoPtr<indirectPrimitivePatch> bnd0Ptr_; + + + // Private Member Functions + + //- Collect all non-constraint (i.e. no processor, cyclic, empty etc) + //- patches + static labelList nonConstraintPatches(const polyMesh& mesh); + + //- Create single patch of all supplied faces + static autoPtr<indirectPrimitivePatch> makePatch + ( + const polyMesh& mesh, + const labelList& patchIDs, + const labelList& zoneIDs, + const pointField& points0 + ); + + //- Check with current points + void checkMesh + ( + const pointField& currentPoints, + const vectorField& fCtrs, + const vectorField& fAreas, + const vectorField& cellCtrs, + const scalarField& cellVols, + labelHashSet& markedFaces, + bitSet& markedPoints + ) const; + + //- Apply current constraints (from pointDisplacement) to supplied + // locations + void constrainDisplacement(pointField& points) const; + + //- Relax the points (supplied in pointDisplacement) + bool relax + ( + const scalarList& relaxationFactors, + const bitSet& pointsToRelax, + const pointField& initialPoints, + const pointField& wantedPoints, + pointField& relaxedPoints, + labelList& relaxationLevel + ) const; + label countPos(const labelList& elems) const; + labelList countZeroOrPos(const label size, const labelList& lst) const; + + //- Helper: set in bitSet all elements with a certain value + void select(const labelUList&, const label val, bitSet& isVal) const; + + void laplaceSmooth + ( + const label type, + const pointField& initialPoints, + pointField& newPoints + ) const; + void featLaplaceSmooth + ( + const indirectPrimitivePatch& pp, + const pointField& initialPoints, + pointField& newPoints + ) const; + // Snap points using boundary evaluation ... + void snapBoundaryPoints + ( + const scalar scale, + const pointField& initialPoints, + pointField& newPoints + ) const; + + //- Keep points on empty patches + void emptyCorrectPoints(pointVectorField& pointDisplacement) const; + + +public: + + //- Runtime type information + TypeName("hexMeshSmoother"); + + + // Constructors + + //- Construct from a polyMesh and an IOdictionary + hexMeshSmootherMotionSolver + ( + const polyMesh&, + const IOdictionary& + ); + + //- Construct from components + hexMeshSmootherMotionSolver + ( + const polyMesh& mesh, + const IOdictionary& dict, + const pointVectorField& pointDisplacement, + const pointIOField& points0 + ); + + + //- Destructor + virtual ~hexMeshSmootherMotionSolver(); + + + // Member Functions + + //- Return point location obtained from the current motion field + virtual tmp<pointField> curPoints() const; + + //- Solve for motion + virtual void solve(); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/equipotentialPointSmoother/equipotentialPointSmoother.C b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/equipotentialPointSmoother/equipotentialPointSmoother.C new file mode 100644 index 0000000000000000000000000000000000000000..6eac2e9765af5ee66a6d9c680e803a8c73b477c4 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/equipotentialPointSmoother/equipotentialPointSmoother.C @@ -0,0 +1,148 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. +\*---------------------------------------------------------------------------*/ + +#include "equipotentialPointSmoother.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace pointSmoothers +{ + defineTypeNameAndDebug(equipotentialPointSmoother, 0); + addToRunTimeSelectionTable + ( + pointSmoother, + equipotentialPointSmoother, + dictionary + ); +} +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::pointSmoothers::equipotentialPointSmoother::equipotentialPointSmoother +( + const polyMesh& mesh, + const dictionary& dict +) +: + pointSmoother(mesh, dict) +{} + + +// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // + +void Foam::pointSmoothers::equipotentialPointSmoother::calculate +( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes, + vectorField& pointDisplacement +) const +{ + // Number of points used in each average + scalarField weights(mesh().nPoints(), 0); + + // Reset the displacements which are about to be calculated + reset(facesToMove, weights, pointDisplacement); + + // Sum the non-internal face displacements + forAll(facesToMove, faceToMoveI) + { + const label faceI(facesToMove[faceToMoveI]); + + if (!isInternalOrProcessorFace(faceI)) + { + const face& fPoints(mesh().faces()[faceI]); + + const scalar area(mag(mesh().faceAreas()[faceI])); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + pointDisplacement[pointI] += + area + *( + faceCentres[faceI] + - oldPoints[pointI] + ); + + weights[pointI] += area; + } + } + } + + // Sum the internal face displacements + forAll(facesToMove, faceToMoveI) + { + const label faceI(facesToMove[faceToMoveI]); + + if (isInternalOrProcessorFace(faceI)) + { + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + if (weights[pointI] < SMALL) + { + const labelList& pCells(mesh().pointCells()[pointI]); + + forAll(pCells, pCellI) + { + const label cellI(pCells[pCellI]); + + const scalar volume(mesh().cellVolumes()[cellI]); + + pointDisplacement[pointI] += + volume + *( + cellCentres[cellI] + - oldPoints[pointI] + ); + + weights[pointI] += volume; + } + } + } + } + } + + // Average + average(facesToMove, weights, pointDisplacement); +} + + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/equipotentialPointSmoother/equipotentialPointSmoother.H b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/equipotentialPointSmoother/equipotentialPointSmoother.H new file mode 100644 index 0000000000000000000000000000000000000000..2ec69312f49e67068f800507c322b47158ec2635 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/equipotentialPointSmoother/equipotentialPointSmoother.H @@ -0,0 +1,105 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::equipotentialPointSmoother + +Description + Equipotential point smoothing. Points are moved towards the centroid of the + surrounding cell volumes. This method tends to equilise cell volumes, and + can generate distorted cells around refinement patterns. + +SourceFiles + equipotentialPointSmoother.C + +\*---------------------------------------------------------------------------*/ + +#ifndef equipotentialPointSmoother_H +#define equipotentialPointSmoother_H + +#include "pointSmoother.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ +namespace pointSmoothers +{ + +/*---------------------------------------------------------------------------*\ + Class equipotentialPointSmoother Declaration +\*---------------------------------------------------------------------------*/ + +class equipotentialPointSmoother +: + public pointSmoother +{ +public: + + //- Runtime type information + TypeName("equipotential"); + + + // Constructors + + //- Construct from a dictionary and a polyMesh + equipotentialPointSmoother + ( + const polyMesh& mesh, + const dictionary& dict + ); + + + //- Destructor + virtual ~equipotentialPointSmoother() = default; + + + // Member Functions + + //- Calculate the point displacements + virtual void calculate + ( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes, + vectorField& pointDisplacement + ) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace pointSmoothers +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/cellPointConnectivity/cellPointConnectivity.C b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/cellPointConnectivity/cellPointConnectivity.C new file mode 100644 index 0000000000000000000000000000000000000000..558f1a5286ad09d4c430494ac6c889b699cfa16d --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/cellPointConnectivity/cellPointConnectivity.C @@ -0,0 +1,292 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "cellPointConnectivity.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ + defineTypeNameAndDebug(cellPointConnectivity, 0); +} + + +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // + +void Foam::cellPointConnectivity::generateCellPointConnectivity(label cellI) +{ + const cell& cFaceLabels(mesh_.cells()[cellI]); + const labelList cPointLabels(cFaceLabels.labels(mesh_.faces())); + const edgeList cEdges(cFaceLabels.edges(mesh_.faces())); + + // Generate a sorted list of points and corresponding point indices + labelPairList pointLabelPointIndices(cPointLabels.size()); + forAll(cPointLabels, pointI) + { + pointLabelPointIndices[pointI] = + labelPair(cPointLabels[pointI], pointI); + } + sort(pointLabelPointIndices); + + // Generate a sorted list of edge labels and corresponding edge indices + // Negative values indicate an edge which runs in an opposite direction to + // the face node listing + labelListList edgeLabelsEdgeIndices + ( + 2*cEdges.size(), + labelList(3, label(-1)) + ); + forAll(cEdges, cEdgeI) + { + edgeLabelsEdgeIndices[2*cEdgeI][0] = cEdges[cEdgeI][0]; + edgeLabelsEdgeIndices[2*cEdgeI][1] = cEdges[cEdgeI][1]; + edgeLabelsEdgeIndices[2*cEdgeI][2] = cEdgeI; + + edgeLabelsEdgeIndices[2*cEdgeI+1][0] = cEdges[cEdgeI][1]; + edgeLabelsEdgeIndices[2*cEdgeI+1][1] = cEdges[cEdgeI][0]; + edgeLabelsEdgeIndices[2*cEdgeI+1][2] = - cEdgeI - 1; + } + sort(edgeLabelsEdgeIndices); + + // Generate a sorted list of edge labels and correspoinding face indices + labelListList edgeLabelsFaceIndices; + forAll(cFaceLabels, cFaceI) + { + const face& cFace(mesh_.faces()[cFaceLabels[cFaceI]]); + + const bool owner(mesh_.faceOwner()[cFaceLabels[cFaceI]] == cellI); + + const label cFaceNEdges(cFace.size()); + forAll(cFace, cFaceEdgeI) + { + edgeLabelsFaceIndices.append(labelList(3, label(-1))); + edgeLabelsFaceIndices.last()[0] = + cFace[(cFaceEdgeI + owner) % cFaceNEdges]; + edgeLabelsFaceIndices.last()[1] = + cFace[(cFaceEdgeI + !owner) % cFaceNEdges]; + edgeLabelsFaceIndices.last()[2] = cFaceI; + } + } + sort(edgeLabelsFaceIndices); + + // Assemble lists of edge-face and cell-face connectivities + // Negative values indicate an edge which runs in an opposite direction to + // the face node listing + labelListList edgeFaceIndices(cEdges.size()); + labelListList faceEdgeIndices(cFaceLabels.size()); + forAll(edgeLabelsFaceIndices, I) + { + const label edgeLabelsEdgeIndex(edgeLabelsEdgeIndices[I][2]); + const label absCellEdgeEdgeIndex + ( + edgeLabelsEdgeIndex >= 0 + ? edgeLabelsEdgeIndex + : - edgeLabelsEdgeIndex - 1 + ); + const label absCellEdgeFaceIndex(edgeLabelsFaceIndices[I][2]); + const label edgeLabelsFaceIndex + ( + edgeLabelsEdgeIndex >= 0 + ? absCellEdgeFaceIndex + : - absCellEdgeFaceIndex - 1 + ); + + edgeFaceIndices[absCellEdgeEdgeIndex].append(edgeLabelsFaceIndex); + faceEdgeIndices[absCellEdgeFaceIndex].append(edgeLabelsEdgeIndex); + } + + // Generate a list of point labels and face index pairs + labelListList pointLabelEdgeIndexFaceIndexPairs; + forAll(cEdges, edgeI) + { + const labelPair pointIndices(cEdges[edgeI]); + + const labelPair faceIndices + ( + edgeFaceIndices[edgeI][0], + edgeFaceIndices[edgeI][1] + ); + const labelPair absFaceIndices + ( + faceIndices[0] >= 0 ? faceIndices[0] : - faceIndices[0] - 1, + faceIndices[1] >= 0 ? faceIndices[1] : - faceIndices[1] - 1 + ); + + const bool order(faceIndices[0] > faceIndices[1]); + + pointLabelEdgeIndexFaceIndexPairs.append(labelList(4, label(-1))); + pointLabelEdgeIndexFaceIndexPairs.last()[0] = pointIndices[0]; + pointLabelEdgeIndexFaceIndexPairs.last()[1] = edgeI; + pointLabelEdgeIndexFaceIndexPairs.last()[2] = absFaceIndices[order]; + pointLabelEdgeIndexFaceIndexPairs.last()[3] = absFaceIndices[!order]; + + pointLabelEdgeIndexFaceIndexPairs.append(labelList(4, label(-1))); + pointLabelEdgeIndexFaceIndexPairs.last()[0] = pointIndices[1]; + pointLabelEdgeIndexFaceIndexPairs.last()[1] = edgeI; + pointLabelEdgeIndexFaceIndexPairs.last()[2] = absFaceIndices[!order]; + pointLabelEdgeIndexFaceIndexPairs.last()[3] = absFaceIndices[order]; + } + sort(pointLabelEdgeIndexFaceIndexPairs); + + // Assemble a list of point face pairs from the sorted lists + labelListList pointEdgeIndices(cPointLabels.size()); + List<List<Pair<label> > > pointFaceIndexPairs(cPointLabels.size()); + { + label I(0); + label pointLabelOld(pointLabelEdgeIndexFaceIndexPairs[0][0]); + forAll + ( + pointLabelEdgeIndexFaceIndexPairs, + pointLabelEdgeIndexFaceIndexPairI + ) + { + const labelList& pointLabelEdgeIndexFaceIndexPair + ( + pointLabelEdgeIndexFaceIndexPairs + [ + pointLabelEdgeIndexFaceIndexPairI + ] + ); + + if (pointLabelOld != pointLabelEdgeIndexFaceIndexPair[0]) + { + I ++; + pointLabelOld = pointLabelEdgeIndexFaceIndexPair[0]; + } + + const label pointI(pointLabelPointIndices[I][1]); + + pointEdgeIndices[pointI].append + ( + pointLabelEdgeIndexFaceIndexPair[1] + ); + + pointFaceIndexPairs[pointI].append + ( + labelPair + ( + pointLabelEdgeIndexFaceIndexPair[2], + pointLabelEdgeIndexFaceIndexPair[3] + ) + ); + } + } + + // Order the point face pairs and assemble a list of point face indices + labelListList pointFaceIndices(cPointLabels.size()); + forAll(pointFaceIndexPairs, pointI) + { + labelPairList& faceIndexPairs(pointFaceIndexPairs[pointI]); + + pointFaceIndices[pointI].append(faceIndexPairs[0][0]); + + for (label pairI = 1; pairI < faceIndexPairs.size(); pairI ++) + { + for (label pairJ = pairI; pairJ < faceIndexPairs.size(); ++ pairJ) + { + if (faceIndexPairs[pairI-1][1] == faceIndexPairs[pairJ][0]) + { + Swap + ( + pointEdgeIndices[pointI][pairI], + pointEdgeIndices[pointI][pairJ] + ); + + Swap + ( + faceIndexPairs[pairI], + faceIndexPairs[pairJ] + ); + + break; + } + } + pointFaceIndices[pointI].append(faceIndexPairs[pairI][0]); + } + } + + // convert to global indices + forAll(cPointLabels, pointI) + { + labelList& edgeIndices(pointEdgeIndices[pointI]); + labelList& faceIndices(pointFaceIndices[pointI]); + + const label nPointFaces(faceIndices.size()); + + cellPointPoints_[cellI][pointI].resize(nPointFaces); + + forAll(edgeIndices, edgeI) + { + cellPointPoints_[cellI][pointI][edgeI] = + cEdges[edgeIndices[edgeI]] + [ + cEdges[edgeIndices[edgeI]][0] == cPointLabels[pointI] + ]; + } + + cellPointFaces_[cellI][pointI].resize(nPointFaces); + + forAll(faceIndices, faceI) + { + cellPointFaces_[cellI][pointI][faceI] = + cFaceLabels + [ + faceIndices[faceI] + ]; + } + } +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::cellPointConnectivity::cellPointConnectivity(const polyMesh& mesh) +: + MoveableMeshObject<polyMesh>(typeName, mesh), + mesh_(mesh), + cellPointPoints_(mesh.nCells()), + cellPointFaces_(mesh.nCells()) +{ + forAll(mesh.cells(), cellI) + { + const label nPoints(mesh.cellPoints()[cellI].size()); + + cellPointPoints_[cellI].resize(nPoints); + cellPointFaces_[cellI].resize(nPoints); + + generateCellPointConnectivity(cellI); + } +} + + +// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // + +Foam::cellPointConnectivity::~cellPointConnectivity() +{} + + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/cellPointConnectivity/cellPointConnectivity.H b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/cellPointConnectivity/cellPointConnectivity.H new file mode 100644 index 0000000000000000000000000000000000000000..1c850a0e9c113591fe63358160894216478636ec --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/cellPointConnectivity/cellPointConnectivity.H @@ -0,0 +1,139 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::cellPointConnectivity + +Description + This class provides ordered connectivity for each point of each cell. Lists + are available of the points and faces surrounding each point of a cell. The + lists are ordered so that the connected points describe a polygonal cone. + For a convex cell, any three sequantial cone edges form a positive basis. + +SourceFiles + cellPointConnectivity.C + +\*---------------------------------------------------------------------------*/ + +#ifndef cellPointConnectivity_H +#define cellPointConnectivity_H + +#include "polyMesh.H" +#include "MeshObject.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class cellPointConnectivity Declaration +\*---------------------------------------------------------------------------*/ + +class cellPointConnectivity +: + public MoveableMeshObject<polyMesh> +{ + // Private data + + //- Reference to the polyMesh + const polyMesh& mesh_; + + //- Lists of point-point connections + labelListListList cellPointPoints_; + + //- Lists of point-face connections + labelListListList cellPointFaces_; + + + // Private Member Functions + + //- Disallow default bitwise copy construct + cellPointConnectivity(const cellPointConnectivity&); + + //- Disallow default bitwise assignment + void operator=(const cellPointConnectivity&); + + //- Generate the connectivity + void generateCellPointConnectivity(label cellI); + + +public: + + // Run-time type information + TypeName("cellPointConnectivity"); + + + // Constructors + + //- Construct an IOobject and a polymesh + cellPointConnectivity(const polyMesh&); + + + //- Destructor + ~cellPointConnectivity(); + + + // Member Functions + + // Access + + //- Access the point-point connections + const labelListListList& cellPointPoints() const + { + return cellPointPoints_; + } + + //- Access the point-face connections + const labelListListList& cellPointFaces() const + { + return cellPointFaces_; + } + + // Edit + + //- No action required on move points + virtual bool movePoints() + { + return true; + } + + //- Dummy write for regIOobject + virtual bool writeData(Ostream&) const + { + return true; + } +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/geometricElementTransformPointSmoother.C b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/geometricElementTransformPointSmoother.C new file mode 100644 index 0000000000000000000000000000000000000000..42ee536d7ac1c9ed8e1502065ff2e012062c081d --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/geometricElementTransformPointSmoother.C @@ -0,0 +1,479 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "geometricElementTransformPointSmoother.H" +#include "cellPointConnectivity.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace pointSmoothers +{ + defineTypeNameAndDebug(geometricElementTransformPointSmoother, 0); + addToRunTimeSelectionTable + ( + pointSmoother, + geometricElementTransformPointSmoother, + dictionary + ); +} +} + + +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // + +Foam::scalar +Foam::pointSmoothers::geometricElementTransformPointSmoother::cellQuality +( + const polyMesh& mesh, + const pointField& currentPoints, + const cellPointConnectivity& connectivity, + const label celli +) +{ + const cell& cFaces = mesh.cells()[celli]; + const labelList cPoints(cFaces.labels(mesh.faces())); + + // Calculate a transformed point for each cell point + + scalar cellQ = 0.0; + label nTets = 0; + + forAll(cPoints, cPointi) + { + const label pointi(cPoints[cPointi]); + const point& pt = currentPoints[pointi]; + const labelList& pPoints + ( + connectivity.cellPointPoints()[celli][cPointi] + ); + if (pPoints.size() != 3) + { + WarningInFunction<< "Cell:" << celli + << " point:" << pointi + << " connected points:" << pPoints << endl; + } + else + { + const Tensor<scalar> mA + ( + currentPoints[pPoints[0]] - pt, + currentPoints[pPoints[1]] - pt, + currentPoints[pPoints[2]] - pt + ); + const scalar sigma(det(mA)); + + if (sigma < ROOTVSMALL) + { + return 0; + } + + // 3 * pow(sigma, 2.0/3.0)/magSqr(mA) + const scalar tetQ = + scalar(3) * Foam::cbrt(Foam::sqr(sigma)) / magSqr(mA); + cellQ += tetQ; + nTets++; + } + } + + return cellQ/nTets; +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::pointSmoothers::geometricElementTransformPointSmoother:: +geometricElementTransformPointSmoother +( + const polyMesh& mesh, + const dictionary& dict +) +: + pointSmoother(mesh, dict), + transformationParameter_ + ( + readScalar(dict.lookup("transformationParameter")) + ) +{} + + +// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // + +void Foam::pointSmoothers::geometricElementTransformPointSmoother::calculate +( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes, + vectorField& pointDisplacement +) const +{ + // Lookup or generate the cell-point connectivity/ + const cellPointConnectivity& connectivity = + MeshObject<polyMesh, MoveableMeshObject, cellPointConnectivity>::New + ( + mesh() + ); + + // Number of points used in each average + labelField counts(mesh().nPoints(), -1); + + // Reset the displacements which are about to be calculated + reset(facesToMove, counts, pointDisplacement); + + // Identify the cells which are to be moved + labelHashSet cellsToMove(facesToMove.size()*2/3); + forAll(facesToMove, faceToMoveI) + { + const label faceI(facesToMove[faceToMoveI]); + + cellsToMove.insert(mesh().faceOwner()[faceI]); + + if (mesh().isInternalFace(faceI)) + { + cellsToMove.insert(mesh().faceNeighbour()[faceI]); + } + } + + // Transformed point field + pointField transformedPoints(currentPoints); + + // Calculate the internal transformations + forAllConstIter(labelHashSet, cellsToMove, iter) + { + const label cellI(iter.key()); + + const cell& cFaces + ( + mesh().cells()[cellI] + ); + const labelList cPoints + ( + cFaces.labels(mesh().faces()) + ); + const edgeList cEdges + ( + cFaces.edges(mesh().faces()) + ); + + // Calculate a transformed point for each cell point + forAll(cPoints, cPointI) + { + const label pointI(cPoints[cPointI]); + + if (counts[pointI] == -1) continue; + + const labelList& pPoints + ( + connectivity.cellPointPoints()[cellI][cPointI] + ); + const labelList& pFaces + ( + connectivity.cellPointFaces()[cellI][cPointI] + ); + const label nPPoints(pPoints.size()); + + // Initial guess of the dual face centre + vector dualAverage(vector::zero); + forAll(pPoints, pPointI) + { + dualAverage += + currentPoints[pPoints[pPointI]] + + faceCentres[pFaces[pPointI]]; + } + dualAverage /= 2*nPPoints; + + // Calculate the dual face centre and normal + vector dualNormal(vector::zero); + forAll(pPoints, pPointI) + { + const label nextPPointI((pPointI + 1) % nPPoints); + + point edgeCentre + ( + 0.5 + *( + currentPoints[pPoints[pPointI]] + + currentPoints[pointI] + ) + ); + point nextFaceCentre + ( + faceCentres[pFaces[nextPPointI]] + ); + point nextEdgeCentre + ( + 0.5 + *( + currentPoints[pPoints[nextPPointI]] + + currentPoints[pointI] + ) + ); + + dualNormal += + (nextFaceCentre - edgeCentre) + ^(edgeCentre - dualAverage); + dualNormal += + (nextEdgeCentre - nextFaceCentre) + ^(nextFaceCentre - dualAverage); + } + vector dualNormalHat(dualNormal/max(mag(dualNormal), ROOTVSMALL)); + + scalar sumA(0); + vector sumAc(vector::zero); + forAll(pPoints, pPointI) + { + const label nextPPointI((pPointI + 1) % nPPoints); + + point edgeCentre + ( + 0.5 + *( + currentPoints[pPoints[pPointI]] + + currentPoints[pointI] + ) + ); + point nextFaceCentre + ( + faceCentres[pFaces[nextPPointI]] + ); + point nextEdgeCentre + ( + 0.5 + *( + currentPoints[pPoints[nextPPointI]] + + currentPoints[pointI] + ) + ); + + vector c1 = edgeCentre + nextFaceCentre + dualAverage; + vector c2 = nextFaceCentre + nextEdgeCentre + dualAverage; + + vector n1 = + (nextFaceCentre - edgeCentre) + ^(edgeCentre - dualAverage); + vector n2 = + (nextEdgeCentre - nextFaceCentre) + ^(nextFaceCentre - dualAverage); + + scalar a1 = n1 & dualNormalHat; + scalar a2 = n2 & dualNormalHat; + + sumA += a1 + a2; + sumAc += a1*c1 + a2*c2; + } + + const vector dualCentre(sumAc/max(sumA, ROOTVSMALL)/3); + + // Calculate the transformed point + transformedPoints[pointI] = + dualCentre + + transformationParameter_ + *dualNormal/sqrt(max(mag(dualNormal), ROOTVSMALL)); + } + + // Length scale + scalar lengthScale(0), transformedLengthScale(0); + forAll(cEdges, cEdgeI) + { + lengthScale += + cEdges[cEdgeI].mag(currentPoints); + transformedLengthScale += + cEdges[cEdgeI].mag(transformedPoints); + } + lengthScale /= cEdges.size(); + transformedLengthScale /= cEdges.size(); + + const scalar lengthScaleRatio = + ( + (transformedLengthScale > SMALL) + ? lengthScale/transformedLengthScale + : scalar(0) + ); + + // Add the displacement to the average + forAll(cPoints, cPointI) + { + const label pointI(cPoints[cPointI]); + + if (counts[pointI] == -1) continue; + + const vector newPoint + ( + cellCentres[cellI] + + lengthScaleRatio + *( + transformedPoints[pointI] + - cellCentres[cellI] + ) + ); + + ++ counts[pointI]; + + pointDisplacement[pointI] += newPoint - oldPoints[pointI]; + } + } + + // Reset all the boundary faces + reset(facesToMove, counts, pointDisplacement, false); + + // Calculate the boundary transformations + forAll(facesToMove, faceToMoveI) + { + const label faceI(facesToMove[faceToMoveI]); + + if (!isInternalOrProcessorFace(faceI)) + { + const labelList& fPoints(mesh().faces()[faceI]); + + // Face normal + vector faceNormalHat(faceAreas[faceI]); + faceNormalHat /= max(SMALL, mag(faceNormalHat)); + + // Calculate a transformed point for each face point + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + const label fPointIPrev + ( + (fPointI - 1 + fPoints.size()) % fPoints.size() + ); + const label fPointINext + ( + (fPointI + 1) % fPoints.size() + ); + + const vector dualCentre + ( + currentPoints[pointI]/2 + + ( + currentPoints[fPoints[fPointINext]] + + currentPoints[fPoints[fPointIPrev]] + )/4 + ); + const vector dualNormal + ( + ( + currentPoints[fPoints[fPointINext]] + - currentPoints[fPoints[fPointIPrev]] + )/2 + ^faceNormalHat + ); + + transformedPoints[pointI] = + dualCentre + + transformationParameter_ + *dualNormal/sqrt(max(mag(dualNormal), ROOTVSMALL)); + } + + // Length scale + scalar lengthScale(0), transformedLengthScale(0); + forAll(fPoints, fPointI) + { + const label fPointINext((fPointI + 1)%fPoints.size()); + + const label pointI(fPoints[fPointI]); + const label pointINext(fPoints[fPointINext]); + + lengthScale += mag + ( + currentPoints[pointINext] - currentPoints[pointI] + ); + transformedLengthScale += mag + ( + transformedPoints[pointINext] - transformedPoints[pointI] + ); + } + lengthScale /= fPoints.size(); + transformedLengthScale /= fPoints.size(); + + const scalar lengthScaleRatio + ( + (transformedLengthScale > SMALL) + ? lengthScale/transformedLengthScale + : scalar(0) + ); + + // Add the displacement to the average + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + const vector newPoint + ( + faceCentres[faceI] + + lengthScaleRatio + *( + transformedPoints[pointI] + - faceCentres[faceI] + ) + ); + + ++ counts[pointI]; + + pointDisplacement[pointI] += newPoint - oldPoints[pointI]; + } + } + } + + // Average + average(facesToMove, counts, pointDisplacement); +} + + +Foam::tmp<Foam::scalarField> +Foam::pointSmoothers::geometricElementTransformPointSmoother::cellQuality +( + const polyMesh& mesh, + const pointField& currentPoints +) +{ + const cellPointConnectivity& connectivity = + MeshObject<polyMesh, MoveableMeshObject, cellPointConnectivity>::New + ( + mesh + ); + + tmp<scalarField> tfld(tmp<scalarField>::New(mesh.nCells())); + scalarField& fld = tfld.ref(); + + forAll(fld, celli) + { + fld[celli] = cellQuality(mesh, currentPoints, connectivity, celli); + } + + return tfld; +} + + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/geometricElementTransformPointSmoother.H b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/geometricElementTransformPointSmoother.H new file mode 100644 index 0000000000000000000000000000000000000000..53b5332382fead717ebda5f1d6ffdfe66bf93ded --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/geometricElementTransformPointSmoother/geometricElementTransformPointSmoother.H @@ -0,0 +1,149 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::pointSmoothers::geometricElementTransformPointSmoother + +Description + Geometric Element Transformation Method (GETMe) point smoother. Points are + moved in a direction normal to the face of the dual element. This tends to + orthogonalise elements. This method can "push" as well as "pull". + + The original references for this method only formulate it for a limited + variety of specific polyhedra. This version is written for arbitrary + polyhedra, and most closely follows the following reference: + + \verbatim + "Fast smoothing of mixed volume meshes based on the effective geometric + element transformation method" + Dimitris Vartziotis, Joachim Wipper, + Comput. Methods Appl. Mech. Engrg. 201-204 (2012) 65-81 + \endverbatim + + This implementation does not include the various specific measures employed + in the referred article to improve the quality of types of irregular + polyhedra. It also does not use the same quality criteria as these are only + suitable for cell vertices with exactly three connecting edges. + +SourceFiles + geometricElementTransformPointSmoother.C + +\*---------------------------------------------------------------------------*/ + +#ifndef geometricElementTransformPointSmoother_H +#define geometricElementTransformPointSmoother_H + +#include "pointSmoother.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +class cellPointConnectivity; + +namespace pointSmoothers +{ + +/*---------------------------------------------------------------------------*\ + Class geometricElementTransformPointSmoother Declaration +\*---------------------------------------------------------------------------*/ + +class geometricElementTransformPointSmoother +: + public pointSmoother +{ +private: + + // Private Data + + //- Transformation parameter + const scalar transformationParameter_; + + + // Private Member Functions + + static scalar cellQuality + ( + const polyMesh& mesh, + const pointField& currentPoints, + const cellPointConnectivity& connectivity, + const label celli + ); + + +public: + + //- Runtime type information + TypeName("geometricElementTransform"); + + + // Constructors + + //- Construct from a dictionary and a mesh + geometricElementTransformPointSmoother + ( + const polyMesh& mesh, + const dictionary& dict + ); + + + //- Destructor + virtual ~geometricElementTransformPointSmoother() = default; + + + // Member Functions + + //- Calculate the point displacements + virtual void calculate + ( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes, + vectorField& pointDisplacement + ) const; + + static tmp<scalarField> cellQuality + ( + const polyMesh& mesh, + const pointField& currentPoints + ); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace pointSmoothers +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianConstraintPointSmoother.C b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianConstraintPointSmoother.C new file mode 100644 index 0000000000000000000000000000000000000000..126f3dc969daca867a8fc808edbb6c5bd7118956 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianConstraintPointSmoother.C @@ -0,0 +1,164 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "laplacianConstraintPointSmoother.H" +#include "addToRunTimeSelectionTable.H" +#include "meshPointPatch.H" +#include "processorPointPatch.H" +#include "pointConstraint.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace pointSmoothers +{ + defineTypeNameAndDebug(laplacianConstraintPointSmoother, 0); + addToRunTimeSelectionTable + ( + pointSmoother, + laplacianConstraintPointSmoother, + dictionary + ); +} +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::pointSmoothers::laplacianConstraintPointSmoother:: +laplacianConstraintPointSmoother +( + const polyMesh& mesh, + const dictionary& dict +) +: + pointSmoother(mesh, dict) +{} + + +// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // + +void Foam::pointSmoothers::laplacianConstraintPointSmoother::calculate +( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes, + vectorField& pointDisplacement +) const +{ + // Get pointMesh so we can get at the constraints + const auto& pMesh = pointMesh::New(mesh()); + + // Number of points used in each average + labelField counts(mesh().nPoints(), 0); + + // Reset the displacements which are about to be calculated + reset(facesToMove, counts, pointDisplacement); + + // Get affected points + const bitSet isMovingPoint(pointsToMove(facesToMove, true)); + + + // Set constraints: + // - internal points : 0 + // - normal boundary points : 1 + // - meshPointPatch : 1 (surface) + // 2 (feat-edge) + // 3 (feat-point) + labelList nConstraints(mesh().nPoints(), Zero); + + for (const auto& pp : pMesh.boundary()) + { + const auto& mp = pp.meshPoints(); + const auto* mppPtr = isA<meshPointPatch>(pp); + if (mppPtr) + { + const auto& pc = mppPtr->constraints(); + forAll(mp, i) + { + nConstraints[mp[i]] = pc[i].first(); + } + } + else //if (!isA<processorPointPatch>(pp)) // what about cyclic? AMI? + { + forAll(mp, i) + { + // Indirectly detect any constraint + pointConstraint pc; + pp.applyConstraint(i, pc); + nConstraints[mp[i]] = pc.first(); + } + } + } + + + // Average from equally constrained points + + const auto& edges = mesh().edges(); + const auto& pointEdges = mesh().pointEdges(); + forAll(pointEdges, pointi) + { + if (isMovingPoint[pointi]) + { + const auto& pEdges = pointEdges[pointi]; + for (const label edgei : pEdges) + { + const label otherPointi = edges[edgei].otherVertex(pointi); + if (nConstraints[otherPointi] >= nConstraints[pointi]) + { + pointDisplacement[pointi] += + currentPoints[otherPointi] + - oldPoints[pointi]; + + ++ counts[pointi]; + } + } + } + } + + // Average + average(facesToMove, counts, pointDisplacement); + + + // Make sure to set any unconnected points (or boundary feature points) + // since otherwise they never see the effect of the boundary conditions + forAll(counts, pointi) + { + if (isMovingPoint[pointi] && !counts[pointi]) + { + pointDisplacement[pointi] = currentPoints[pointi]-oldPoints[pointi]; + } + } +} + + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianConstraintPointSmoother.H b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianConstraintPointSmoother.H new file mode 100644 index 0000000000000000000000000000000000000000..ebe348e33cd99cb26b643795ff3e4af9d420d86e --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianConstraintPointSmoother.H @@ -0,0 +1,105 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::laplacianConstraintPointSmoother + +Description + Laplacian point smoothing. Points are moved towards the average of the + surrounding points. In case of constraints (boundary points) only + use average of equal or higher constrained points. + +SourceFiles + laplacianConstraintPointSmoother.C + +\*---------------------------------------------------------------------------*/ + +#ifndef laplacianConstraintPointSmoother_H +#define laplacianConstraintPointSmoother_H + +#include "pointSmoother.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ +namespace pointSmoothers +{ + +/*---------------------------------------------------------------------------*\ + Class laplacianConstraintPointSmoother Declaration +\*---------------------------------------------------------------------------*/ + +class laplacianConstraintPointSmoother +: + public pointSmoother +{ +public: + + //- Runtime type information + TypeName("laplacianConstraint"); + + + // Constructors + + //- Construct from a dictionary and a polyMesh + laplacianConstraintPointSmoother + ( + const polyMesh& mesh, + const dictionary& dict + ); + + + //- Destructor + virtual ~laplacianConstraintPointSmoother() = default; + + + // Member Functions + + //- Calculate the point displacement + virtual void calculate + ( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes, + vectorField& pointDisplacement + ) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace pointSmoothers +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianPointSmoother.C b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianPointSmoother.C new file mode 100644 index 0000000000000000000000000000000000000000..c07cc84eda23fc3204ec7037e217bdc97481e11a --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianPointSmoother.C @@ -0,0 +1,139 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "laplacianPointSmoother.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace pointSmoothers +{ + defineTypeNameAndDebug(laplacianPointSmoother, 0); + addToRunTimeSelectionTable + ( + pointSmoother, + laplacianPointSmoother, + dictionary + ); +} +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::pointSmoothers::laplacianPointSmoother::laplacianPointSmoother +( + const polyMesh& mesh, + const dictionary& dict +) +: + pointSmoother(mesh, dict) +{} + + +// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // + +void Foam::pointSmoothers::laplacianPointSmoother::calculate +( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes, + vectorField& pointDisplacement +) const +{ + // Number of points used in each average + labelField counts(mesh().nPoints(), 0); + + // Reset the displacements which are about to be calculated + reset(facesToMove, counts, pointDisplacement); + + // Sum the non-internal face displacements + forAll(facesToMove, faceToMoveI) + { + const label faceI(facesToMove[faceToMoveI]); + + if (!isInternalOrProcessorFace(faceI)) + { + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + pointDisplacement[pointI] += + faceCentres[faceI] + - oldPoints[pointI]; + + ++ counts[pointI]; + } + } + } + + // Sum the internal face displacements + forAll(facesToMove, faceToMoveI) + { + const label faceI(facesToMove[faceToMoveI]); + + if (isInternalOrProcessorFace(faceI)) + { + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + if (counts[pointI] == 0) + { + const labelList& pCells(mesh().pointCells()[pointI]); + + forAll(pCells, pCellI) + { + const label cellI(pCells[pCellI]); + + pointDisplacement[pointI] += + cellCentres[cellI] + - oldPoints[pointI]; + + ++ counts[pointI]; + } + } + } + } + } + + // Average + average(facesToMove, counts, pointDisplacement); +} + + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianPointSmoother.H b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianPointSmoother.H new file mode 100644 index 0000000000000000000000000000000000000000..500e6aa71a59e278a0843ded97b99666865ef676 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/laplacianPointSmoother/laplacianPointSmoother.H @@ -0,0 +1,105 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::laplacianPointSmoother + +Description + Laplacian point smoothing (or rather Lloyds). Points are moved towards + the average of the surrounding cell centres (or average of boundary + face centres for points on boundary) + +SourceFiles + laplacianPointSmoother.C + +\*---------------------------------------------------------------------------*/ + +#ifndef laplacianPointSmoother_H +#define laplacianPointSmoother_H + +#include "pointSmoother.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ +namespace pointSmoothers +{ + +/*---------------------------------------------------------------------------*\ + Class laplacianPointSmoother Declaration +\*---------------------------------------------------------------------------*/ + +class laplacianPointSmoother +: + public pointSmoother +{ +public: + + //- Runtime type information + TypeName("laplacian"); + + + // Constructors + + //- Construct from a dictionary and a polyMesh + laplacianPointSmoother + ( + const polyMesh& mesh, + const dictionary& dict + ); + + + //- Destructor + virtual ~laplacianPointSmoother() = default; + + + // Member Functions + + //- Calculate the point displacement + virtual void calculate + ( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes, + vectorField& pointDisplacement + ) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace pointSmoothers +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/pointSmoother/pointSmoother.C b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/pointSmoother/pointSmoother.C new file mode 100644 index 0000000000000000000000000000000000000000..ed6eee487e00def8364f191a36d557fb444e1c1a --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/pointSmoother/pointSmoother.C @@ -0,0 +1,300 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "pointSmoother.H" +#include "pointConstraints.H" +#include "polyMeshTools.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ + defineTypeNameAndDebug(pointSmoother, 0); + defineRunTimeSelectionTable(pointSmoother, dictionary); +} + + +// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * // + +bool Foam::pointSmoother::isInternalOrProcessorFace(const label faceI) const +{ + if (mesh().isInternalFace(faceI)) + { + return true; + } + + if + ( + processorPatchIDs_ + [ + mesh().boundaryMesh().patchID() + [ + faceI - mesh().nInternalFaces() + ] + ] + ) + { + return true; + } + + return false; +} + + +Foam::autoPtr<Foam::PackedBoolList> Foam::pointSmoother::pointsToMove +( + const labelList& facesToMove, + const bool moveInternalFaces +) const +{ + autoPtr<PackedBoolList> markerPtr + ( + new PackedBoolList(mesh().nPoints(), false) + ); + + PackedBoolList& marker(markerPtr()); + + forAll(facesToMove, faceToMoveI) + { + const label faceI(facesToMove[faceToMoveI]); + + if (moveInternalFaces || !isInternalOrProcessorFace(faceI)) + { + const face& fPoints(mesh().faces()[faceI]); + + forAll(fPoints, fPointI) + { + const label pointI(fPoints[fPointI]); + + marker[pointI] = true; + } + } + } + + syncTools::syncPointList + ( + mesh(), + marker, + orEqOp<unsigned int>(), + 0U + ); + + return markerPtr; +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::pointSmoother::pointSmoother +( + const polyMesh& mesh, + const dictionary& dict +) +: + mesh_(mesh) +{ + for (const auto& pp : mesh.boundaryMesh()) + { + if (isA<processorPolyPatch>(pp)) + { + processorPatchIDs_.insert(pp.index()); + } + } +} + + +// * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * // + +Foam::autoPtr<Foam::pointSmoother> +Foam::pointSmoother::New +( + const word& pointSmootherType, + const polyMesh& mesh, + const dictionary& dict +) +{ + Info<< "Selecting pointSmoother type " << pointSmootherType << endl; + + auto cstrIter = dictionaryConstructorTablePtr_->find(pointSmootherType); + + if (cstrIter == dictionaryConstructorTablePtr_->end()) + { + FatalErrorIn("pointSmoother::New") + << "Unknown " << typeName << " type " + << pointSmootherType << endl << endl + << "Valid " << typeName << " types are : " << endl + << dictionaryConstructorTablePtr_->sortedToc() + << exit(FatalError); + } + + return cstrIter()(mesh, dict); +} + + +Foam::autoPtr<Foam::pointSmoother> +Foam::pointSmoother::New +( + const polyMesh& mesh, + const dictionary& dict +) +{ + word pointSmootherType(dict.lookup(typeName)); + + return New(pointSmootherType, mesh, dict); +} + + +// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // + +Foam::pointSmoother::~pointSmoother() +{} + + +// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // + +void Foam::pointSmoother::update +( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes, + pointVectorField& pointDisplacement, + const bool correctBCs +) const +{ + // Apply point smoothing (without boundary conditions!) + calculate + ( + facesToMove, + oldPoints, + currentPoints, + faceCentres, + faceAreas, + cellCentres, + cellVolumes, + pointDisplacement.ref() + ); + + // Note: do not want to apply boundary conditions whilst smoothing so + // disable for now + //// Take over boundary values + //for (auto& ppf : pointDisplacement.boundaryFieldRef()) + //{ + // ppf.operator==(ppf.patchInternalField()); + //} + + if (correctBCs) + { + // Apply (multi-)patch constraints + pointConstraints::New + ( + pointDisplacement().mesh() + ).constrainDisplacement(pointDisplacement); + } +} + + +Foam::tmp<Foam::scalarField> Foam::pointSmoother::faceQuality +( + const pointField& points, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes +) const +{ + // See e.g. + // - src/functionObjects/field/stabilityBlendingFactor/ + // stabilityBlendingFactor.H + // - maybe add function to motionSmootherCheck to return value instead + // of yes/no for invalid? + // - for now just look at non-ortho + + tmp<scalarField> tortho + ( + polyMeshTools::faceOrthogonality + ( + mesh(), + faceAreas, + cellCentres + ) + ); + + //return max(tortho, scalar(0.0)); + return tortho; +} + + +Foam::tmp<Foam::scalarField> Foam::pointSmoother::cellQuality +( + const pointField& points, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes +) const +{ + // Get face-based non-ortho + tmp<scalarField> tfaceOrtho + ( + faceQuality + ( + points, + faceCentres, + faceAreas, + cellCentres, + cellVolumes + ) + ); + const auto& faceOrtho = tfaceOrtho(); + + // Min over cells + tmp<scalarField> tortho(new scalarField(mesh().nCells(), GREAT)); + auto& ortho = tortho.ref(); + + const auto& own = mesh().faceOwner(); + const auto& nei = mesh().faceNeighbour(); + + forAll(own, facei) + { + auto& o = ortho[own[facei]]; + o = min(o, faceOrtho[facei]); + } + for (label facei = 0; facei < mesh().nInternalFaces(); facei++) + { + auto& o = ortho[nei[facei]]; + o = min(o, faceOrtho[facei]); + } + + return tortho; +} + + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/pointSmoother/pointSmoother.H b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/pointSmoother/pointSmoother.H new file mode 100644 index 0000000000000000000000000000000000000000..4b4b356060391cb71e9c4e668cb2047288f538f7 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/pointSmoother/pointSmoother.H @@ -0,0 +1,279 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::pointSmoother + +Description + Abstract base class for point smoothing methods. Handles parallel + communication via reset and average functions. + +SourceFiles + pointSmoother.C + pointSmootherTemplates.C + +\*---------------------------------------------------------------------------*/ + +#ifndef pointSmoother_H +#define pointSmoother_H + +#include "polyMeshGeometry.H" +#include "runTimeSelectionTables.H" +#include "PackedBoolList.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class pointSmoother Declaration +\*---------------------------------------------------------------------------*/ + +class pointSmoother +{ +private: + + // Private data + + //- Reference to the polyMesh + const polyMesh& mesh_; + + //- Set of the processor patch indices + labelHashSet processorPatchIDs_; + + + // Private Member Functions + + //- Disallow default bitwise copy construct + pointSmoother(const pointSmoother&); + + //- Disallow default bitwise assignment + void operator=(const pointSmoother&); + + +protected: + + // Protected Member Functions + + //- Test if the given face is internal or on a processor boundary + bool isInternalOrProcessorFace(const label faceI) const; + + //- Get a boolean list of the points to be moved + autoPtr<PackedBoolList> pointsToMove + ( + const labelList& facesToMove, + const bool moveInternalFaces + ) const; + + //- Reset the relevant weights and displacements to zero + template <class weightType> + void reset + ( + const labelList& facesToMove, + Field<weightType>& weights, + vectorField& pointDisplacement, + const bool resetInternalFaces = true + ) const; + + //- Average the displacements using the weights provided + template <class weightType> + void average + ( + const labelList& facesToMove, + Field<weightType>& weights, + vectorField& pointDisplacement + ) const; + + +public: + + //- Runtime type information + TypeName("pointSmoother"); + + + // Declare run-time constructor selection table + declareRunTimeSelectionTable + ( + autoPtr, + pointSmoother, + dictionary, + (const polyMesh& mesh, const dictionary& dict), + (mesh, dict) + ); + + + // Constructors + + //- Construct from a dictionary and a point displacement field + pointSmoother(const polyMesh& mesh, const dictionary&); + + + // Selector + + //- Construct given type + static autoPtr<pointSmoother> New + ( + const word& pointSmootherType, + const polyMesh& mesh, + const dictionary& dict + ); + + //- Construct with type looked up from dictionary + static autoPtr<pointSmoother> New + ( + const polyMesh& mesh, + const dictionary& dict + ); + + + //- Destructor + virtual ~pointSmoother(); + + + // Member Functions + + // Access the mesh + const polyMesh& mesh() const + { + return mesh_; + } + + //- Update the point displacements and apply constraints + void update + ( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes, + pointVectorField& pointDisplacement, + const bool correctBCs = true + ) const; + + //- Update the point displacements and apply constraints + void update + ( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const polyMeshGeometry& meshGeometry, + pointVectorField& pointDisplacement, + const bool correctBCs = true + ) const + { + update + ( + facesToMove, + oldPoints, + currentPoints, + meshGeometry.faceCentres(), + meshGeometry.faceAreas(), + meshGeometry.cellCentres(), + meshGeometry.cellVolumes(), + pointDisplacement, + correctBCs + ); + } + + //- Calculate the point displacement + virtual void calculate + ( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes, + vectorField& pointDisplacement + ) const = 0; + + //- Update the point displacements + virtual void calculate + ( + const labelList& facesToMove, + const pointField& oldPoints, + const pointField& currentPoints, + const polyMeshGeometry& meshGeometry, + vectorField& pointDisplacement + ) const + { + calculate + ( + facesToMove, + oldPoints, + currentPoints, + meshGeometry.faceCentres(), + meshGeometry.faceAreas(), + meshGeometry.cellCentres(), + meshGeometry.cellVolumes(), + pointDisplacement + ); + } + + //- Check element quality: 1 = best, 0 = invalid. (also negative?) + //- Topology from mesh, point locations supplied. + //- Move to motionSolver level? + virtual tmp<scalarField> faceQuality + ( + const pointField& points, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes + ) const; + + //- Check element quality: 1 = best, 0 = invalid. + //- Topology from mesh, point locations supplied. + //- Move to motionSolver level? + virtual tmp<scalarField> cellQuality + ( + const pointField& points, + const pointField& faceCentres, + const vectorField& faceAreas, + const pointField& cellCentres, + const scalarField& cellVolumes + ) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository + #include "pointSmootherTemplates.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/pointSmoother/pointSmootherTemplates.C b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/pointSmoother/pointSmootherTemplates.C new file mode 100644 index 0000000000000000000000000000000000000000..1e74e6943ef1be9d27ddf34942ff0b2d998f1da0 --- /dev/null +++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/pointSmoothers/pointSmoother/pointSmootherTemplates.C @@ -0,0 +1,105 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "pointSmoother.H" +#include "syncTools.H" + +// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // + +template <class weightType> +void Foam::pointSmoother::reset +( + const labelList& facesToMove, + Field<weightType>& weights, + vectorField& pointDisplacement, + const bool resetInternalFaces +) const +{ + autoPtr<PackedBoolList> resetPointsPtr + ( + pointsToMove(facesToMove, resetInternalFaces) + ); + + const PackedBoolList& resetPoints(resetPointsPtr); + + forAll(resetPoints, pointI) + { + if (resetPoints[pointI]) + { + weights[pointI] = pTraits<weightType>::zero; + pointDisplacement[pointI] = vector::zero; + } + } +} + + +template <class weightType> +void Foam::pointSmoother::average +( + const labelList& facesToMove, + Field<weightType>& weights, + vectorField& pointDisplacement +) const +{ + syncTools::syncPointList + ( + mesh(), + weights, + plusEqOp<weightType>(), + pTraits<weightType>::zero + ); + + syncTools::syncPointList + ( + mesh(), + pointDisplacement, + plusEqOp<vector>(), + vector::zero + ); + + autoPtr<PackedBoolList> averagePointsPtr + ( + pointsToMove(facesToMove, true) + ); + + const PackedBoolList& averagePoints(averagePointsPtr); + + forAll(averagePoints, pointI) + { + if + ( + averagePoints[pointI] + && weights[pointI] != pTraits<weightType>::zero + ) + { + pointDisplacement[pointI] /= weights[pointI]; + } + } +} + + +// ************************************************************************* // diff --git a/src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.C b/src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.C index c369d7246ebb6e674018d8d98ed7134bd171211b..848e854ad14821b6cc23430d912507b42102699c 100644 --- a/src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.C +++ b/src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2015-2022 OpenCFD Ltd. + Copyright (C) 2015-2022,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -46,8 +46,8 @@ namespace Foam { defineTypeNameAndDebug(addPatchCellLayer, 0); - // Reduction class to get minimum value over face. - class minEqOpFace + // Reduction class to get maximum value over coupled face. + class combineEqOpFace { public: @@ -57,10 +57,18 @@ namespace Foam { if (y.size()) { + if (x.size() != y.size()) + { + FatalErrorInFunction + << "face x:" << flatOutput(x) + << " face y:" << flatOutput(y) + << exit(FatalError); + } + label j = 0; forAll(x, i) { - x[i] = min(x[i], y[j]); + x[i] = max(x[i], y[j]); j = y.rcIndex(j); } @@ -78,7 +86,6 @@ namespace Foam } } }; - } @@ -464,6 +471,7 @@ void Foam::addPatchCellLayer::setFaceProps { patchi = mesh.boundaryMesh().whichPatch(facei); zonei = mesh.faceZones().whichZone(facei); + zoneFlip = false; if (zonei != -1) { label index = mesh.faceZones()[zonei].whichFace(facei); @@ -548,61 +556,61 @@ void Foam::addPatchCellLayer::setFaceProps } -void Foam::addPatchCellLayer::findZoneFace -( - const bool useInternalFaces, - const bool useBoundaryFaces, - - const polyMesh& mesh, - const indirectPrimitivePatch& pp, - const label ppEdgeI, - const labelUIndList& excludeFaces, - const labelList& meshFaces, - - label& inflateFaceI, - label& patchI, - label& zoneI, - bool& zoneFlip -) -{ - inflateFaceI = -1; - patchI = -1; - zoneI = -1; - zoneFlip = false; - - forAll(meshFaces, k) - { - label faceI = meshFaces[k]; - - if - ( - !excludeFaces.found(faceI) - && ( - (mesh.isInternalFace(faceI) && useInternalFaces) - || (!mesh.isInternalFace(faceI) && useBoundaryFaces) - ) - ) - { - setFaceProps - ( - mesh, - pp, - ppEdgeI, - faceI, - - patchI, - zoneI, - zoneFlip, - inflateFaceI - ); - - if (zoneI != -1 || patchI != -1) - { - break; - } - } - } -} +//void Foam::addPatchCellLayer::findZoneFace +//( +// const bool useInternalFaces, +// const bool useBoundaryFaces, +// +// const polyMesh& mesh, +// const indirectPrimitivePatch& pp, +// const label ppEdgeI, +// const labelUIndList& excludeFaces, +// const labelList& meshFaces, +// +// label& inflateFaceI, +// label& patchI, +// label& zoneI, +// bool& zoneFlip +//) +//{ +// inflateFaceI = -1; +// patchI = -1; +// zoneI = -1; +// zoneFlip = false; +// +// forAll(meshFaces, k) +// { +// label faceI = meshFaces[k]; +// +// if +// ( +// !excludeFaces.found(faceI) +// && ( +// (mesh.isInternalFace(faceI) && useInternalFaces) +// || (!mesh.isInternalFace(faceI) && useBoundaryFaces) +// ) +// ) +// { +// setFaceProps +// ( +// mesh, +// pp, +// ppEdgeI, +// faceI, +// +// patchI, +// zoneI, +// zoneFlip, +// inflateFaceI +// ); +// +// if (zoneI != -1 || patchI != -1) +// { +// break; +// } +// } +// } +//} // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // @@ -611,11 +619,13 @@ void Foam::addPatchCellLayer::findZoneFace Foam::addPatchCellLayer::addPatchCellLayer ( const polyMesh& mesh, - const bool addToMesh + const bool addToMesh, + const bool extrude ) : mesh_(mesh), addToMesh_(addToMesh), + extrude_(extrude), addedPoints_(0), layerFaces_(0) {} @@ -642,7 +652,7 @@ Foam::labelListList Foam::addPatchCellLayer::addedCells for (label i = 0; i < faceLabels.size()-1; i++) { - added[i] = mesh.faceNeighbour()[faceLabels[i]]; + added[i] = mesh.faceOwner()[faceLabels[i+1]]; } } } @@ -660,9 +670,11 @@ Foam::labelListList Foam::addPatchCellLayer::globalEdgeFaces ( const polyMesh& mesh, const globalIndex& globalFaces, - const indirectPrimitivePatch& pp + const indirectPrimitivePatch& pp, + const bitSet& ppFlip ) { + // Precalculate mesh edges for pp.edges. const labelList meshEdges(pp.meshEdges(mesh.edges(), mesh.pointEdges())); @@ -672,21 +684,32 @@ Foam::labelListList Foam::addPatchCellLayer::globalEdgeFaces const labelListList& edgeFaces = pp.edgeFaces(); + DynamicList<label> faceIDs; + forAll(edgeFaces, edgeI) { - label meshEdgeI = meshEdges[edgeI]; - - const labelList& eFaces = edgeFaces[edgeI]; - // Store face and processor as unique tag. - labelList& globalEFaces = globalEdgeFaces[meshEdgeI]; - globalEFaces.setSize(eFaces.size()); - forAll(eFaces, i) + faceIDs.clear(); + for (const label patchFacei : edgeFaces[edgeI]) { - globalEFaces[i] = globalFaces.toGlobal(pp.addressing()[eFaces[i]]); + const label facei = pp.addressing()[patchFacei]; + + // Ignore if ppFlip is on the other side of the (coupled) boundary + if + ( + ppFlip.empty() + || !ppFlip[patchFacei] + || mesh.isInternalFace(facei) + ) + { + faceIDs.append(globalFaces.toGlobal(facei)); + } } + + globalEdgeFaces[meshEdges[edgeI]] = std::move(faceIDs); } + // Synchronise across coupled edges. syncTools::syncEdgeList ( @@ -701,6 +724,17 @@ Foam::labelListList Foam::addPatchCellLayer::globalEdgeFaces } +Foam::labelListList Foam::addPatchCellLayer::globalEdgeFaces +( + const polyMesh& mesh, + const globalIndex& globalFaces, + const indirectPrimitivePatch& pp +) +{ + return globalEdgeFaces(mesh, globalFaces, pp, bitSet::null()); +} + + void Foam::addPatchCellLayer::markPatchEdges ( const polyMesh& mesh, @@ -799,6 +833,11 @@ void Foam::addPatchCellLayer::globalEdgeInfo } + bitSet isPpFace(mesh.nFaces()); + isPpFace.set(pp.addressing()); + // Note: no need to sync isPpFace since does not include processor patches + + const faceZoneMesh& fzs = mesh.faceZones(); // Extract zone info into mesh face indexing for ease of addressing @@ -839,6 +878,11 @@ void Foam::addPatchCellLayer::globalEdgeInfo for (const label facei : isInternalOrCoupled) { + if (isPpFace[facei]) + { + continue; + } + const face& f = mesh.faces()[facei]; label prevPointi = f.last(); @@ -891,9 +935,6 @@ void Foam::addPatchCellLayer::globalEdgeInfo const polyBoundaryMesh& patches = mesh.boundaryMesh(); - bitSet isPpFace(mesh.nFaces()); - isPpFace.set(pp.addressing()); - // Note: no need to sync ppFace since does not include processor patches for (const polyPatch& pp : patches) { @@ -1128,6 +1169,8 @@ void Foam::addPatchCellLayer::calcExtrudeInfo edgePatchID.setSize(pp.nEdges()); edgePatchID = -1; nPatches = patches.size(); + nbrProcToPatch.clear(); + patchToNbrProc.clear(); edgeZoneID.setSize(pp.nEdges()); edgeZoneID = -1; edgeFlip.setSize(pp.nEdges()); @@ -1487,7 +1530,7 @@ void Foam::addPatchCellLayer::setRefinement << abort(FatalError); } } - else + else if (debug) { // Maybe check for adding to neighbour of boundary faces? How about // coupled faces where the faceZone flipMap is negated @@ -1605,13 +1648,7 @@ void Foam::addPatchCellLayer::setRefinement // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ bitSet isBlockedFace(mesh_.nFaces()); - forAll(nFaceLayers, patchFacei) - { - if (nFaceLayers[patchFacei] > 0) - { - isBlockedFace.set(pp.addressing()[patchFacei]); - } - } + isBlockedFace.set(pp.addressing()); // Some storage for edge-face-addressing. DynamicList<label> ef; @@ -1839,191 +1876,50 @@ void Foam::addPatchCellLayer::setRefinement // Also mark any affected cells. We could transport the duplicated point // itself but since it is a processor-local index only we only transport // a boolean. - - // Per face, per index in face either labelMax or a valid index. Note: + // Per face, per index in face either -1 or a valid index. Note: // most faces are not affected in which case the face will be zero size - // and only have a nullptr and a size. + // and only have a nullptr and a size. Note: we do not actually use the + // value of the index - it might be a remote patch point so not make any + // sense. All we want to know is whether it is -1 or not. faceList baseFaces(mesh_.nFaces()); - bitSet isAffectedCell(mesh_.nCells()); { - const faceList& localFaces = pp.localFaces(); - forAll(localFaces, patchFacei) + bitSet isDupPatchPoint(pp.nPoints()); + forAll(nPointLayers, patchPointi) { - const face& f = localFaces[patchFacei]; - forAll(f, fp) + if (nPointLayers[patchPointi] > 0) { - const label patchPointi = f[fp]; - if (nPointLayers[patchPointi] > 0) - { - const label meshFacei = pp.addressing()[patchFacei]; - face& baseF = baseFaces[meshFacei]; - // Initialise to labelMax if not yet sized - baseF.setSize(f.size(), labelMax); - baseF[fp] = pp.meshPoints()[patchPointi]; - - if (ppFlip[patchFacei]) - { - // Neighbour stays. Affected points on the owner side. - const label celli = mesh_.faceOwner()[meshFacei]; - isAffectedCell.set(celli); - } - else if (mesh_.isInternalFace(meshFacei)) - { - // Owner unaffected. Unaffected points on neighbour side - const label celli = mesh_.faceNeighbour()[meshFacei]; - isAffectedCell.set(celli); - } - } + isDupPatchPoint.set(patchPointi); } } - } - - // Transport affected side across faces. Could do across edges: say we have - // a loose cell edge-(but not face-)connected to face-to-be-extruded do - // we want it to move with the extrusion or stay connected to the original? - // For now just keep it connected to the original. - { - // Work space - Map<label> minPointValue; - faceList oldBoundaryFaces(mesh_.nBoundaryFaces()); - - while (true) + // Knock out point if not all local faces using it are extruded + // Guess not needed since done outside of routine already. + forAll(nFaceLayers, patchFacei) { - bitSet newIsAffectedCell(mesh_.nCells()); - - label nChanged = 0; - for (const label celli : isAffectedCell) + if (nFaceLayers[patchFacei] == 0) { - const cell& cFaces = mesh_.cells()[celli]; - - // 1. Determine marked base points. Inside a single cell all - // faces use the same 'instance' of a point. - minPointValue.clear(); - for (const label facei : cFaces) - { - const face& baseF = baseFaces[facei]; - const face& f = mesh_.faces()[facei]; - - if (baseF.size()) - { - forAll(f, fp) - { - if (baseF[fp] != labelMax) - { - // Could check here for inconsistent patchPoint - // e.g. cell using both sides of a - // face-to-be-extruded. Is not possible! - minPointValue.insert(f[fp], baseF[fp]); - } - } - } - } - - //Pout<< "For cell:" << celli - // << " at:" << mesh_.cellCentres()[celli] - // << " have minPointValue:" << minPointValue - // << endl; - - // 2. Transport marked points on all cell points - for (const label facei : cFaces) + const face& f = pp.localFaces()[patchFacei]; + for (const label patchPointi : f) { - const face& f = mesh_.faces()[facei]; - face& baseF = baseFaces[facei]; - - const label oldNChanged = nChanged; - forAll(f, fp) - { - const auto fnd = minPointValue.find(f[fp]); - if (fnd.good()) - { - baseF.setSize(f.size(), labelMax); - if (baseF[fp] == labelMax) - { - baseF[fp] = fnd(); - nChanged++; - - //Pout<< "For cell:" << celli - // << " at:" << mesh_.cellCentres()[celli] - // << " on face:" << facei - // << " points:" - // << UIndirectList<point>(mesh_.points(), f) - // << " now have baseFace:" << baseF - // << endl; - } - } - } - - if (!isBlockedFace(facei) && nChanged > oldNChanged) + if (isDupPatchPoint[patchPointi]) { - // Mark neighbouring cells - const label own = mesh_.faceOwner()[facei]; - if (!isAffectedCell[own]) - { - newIsAffectedCell.set(own); - } - if (mesh_.isInternalFace(facei)) - { - const label nei = mesh_.faceNeighbour()[facei]; - if (!isAffectedCell[nei]) - { - newIsAffectedCell.set(nei); - } - } + isDupPatchPoint.unset(patchPointi); } } } + } - if (debug) - { - Pout<< "isAffectedCell:" << isAffectedCell.count() << endl; - Pout<< "newIsAffectedCell:" << newIsAffectedCell.count() - << endl; - Pout<< "nChanged:" << nChanged << endl; - } - - if (!returnReduceOr(nChanged)) - { - break; - } - - - // Transport minimum across coupled faces - // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - SubList<face> l - ( - baseFaces, - mesh_.nBoundaryFaces(), - mesh_.nInternalFaces() - ); - oldBoundaryFaces = l; - syncTools::syncBoundaryFaceList - ( - mesh_, - l, - minEqOpFace(), - Foam::dummyTransform() // dummy transformation - ); - - forAll(l, bFacei) - { - // Note: avoid special handling of comparing zero-sized faces - // (see face::operator==). Review. - const labelUList& baseVts = l[bFacei]; - const labelUList& oldVts = oldBoundaryFaces[bFacei]; - if (baseVts != oldVts) - { - const label facei = mesh_.nInternalFaces()+bFacei; - const label own = mesh_.faceOwner()[facei]; - if (!isAffectedCell[own]) - { - newIsAffectedCell.set(own); - } - } - } + findDuplicatedPoints + ( + mesh_, + pp, + ppFlip, // optional orientation on top of pp + isBlockedFace, // any mesh faces not to be traversed. + // Usually pp.addressing() + isDupPatchPoint, + extrude_, - isAffectedCell = newIsAffectedCell; - } + baseFaces + ); } @@ -2120,13 +2016,13 @@ void Foam::addPatchCellLayer::setRefinement } else if (!ppFlip[patchFacei]) { - // Normal: extrude from owner face + // Normal: extrude from owner side extrudeCelli = mesh_.faceOwner()[meshFacei]; extrudeZonei = mesh_.cellZones().whichZone(extrudeCelli); } else if (mesh_.isInternalFace(meshFacei)) { - // Extrude from neighbour face (if internal). Might be + // Extrude from neighbour side (if internal). Might be // that it is a coupled face and the other side is // extruded extrudeCelli = mesh_.faceNeighbour()[meshFacei]; @@ -2164,8 +2060,9 @@ void Foam::addPatchCellLayer::setRefinement - // Create faces on top of the original patch faces. - // These faces are created from original patch faces outwards so in order + // Create faces from the original patch faces. + // These faces are created from original patch faces outwards (or inwards) + // so in order // of increasing cell number. So orientation should be same as original // patch face for them to have owner<neighbour. @@ -2214,74 +2111,97 @@ void Foam::addPatchCellLayer::setRefinement // << endl; // Get new neighbour - label own = addedCells[patchFacei][i]; - label nei; - label patchi; - label zoneI = -1; - bool flip = false; + label own; + label nei = -1; + label patchi = -1; + label zonei = -1; + bool zoneFlip = false; bool fluxFlip = false; if (i == addedCells[patchFacei].size()-1) { - // Top layer so is either patch face or connects to - // the other cell - patchi = patchID[patchFacei]; - if (patchi == -1) - { - // Internal face - nei = - ( - !ppFlip[patchFacei] - ? mesh_.faceNeighbour()[meshFacei] - : mesh_.faceOwner()[meshFacei] - ); + // Last layer so + // - extrude : original patch or other cell + // - intrude : original cell - if (ppFlip[patchFacei]) + if (extrude_) + { + patchi = patchID[patchFacei]; + zonei = mesh_.faceZones().whichZone(meshFacei); + if (zonei != -1) { - newFace = newFace.reverseFace(); + const faceZone& fz = mesh_.faceZones()[zonei]; + zoneFlip = fz.flipMap()[fz.whichFace(meshFacei)]; + } + if (patchi == -1) + { + // Internal face between added cell and original + // neighbour / owner + own = + ( + !ppFlip[patchFacei] + ? mesh_.faceNeighbour()[meshFacei] + : mesh_.faceOwner()[meshFacei] + ); + nei = addedCells[patchFacei][i]; + if (!ppFlip[patchFacei]) + { + newFace = newFace.reverseFace(); + if (zonei != -1) + { + zoneFlip = !zoneFlip; + } + fluxFlip = true; + } + } + else + { + // Boundary face + own = addedCells[patchFacei][i]; } - //Pout<< "** adding top (internal) face:" - // << " at:" << mesh_.faceCentres()[meshFacei] - // << " own:" << own << " nei:" << nei - // << " patchi:" << patchi - // << " newFace:" << newFace - // << endl; } else { - nei = -1; - } - zoneI = mesh_.faceZones().whichZone(meshFacei); - if (zoneI != -1) - { - const faceZone& fz = mesh_.faceZones()[zoneI]; - flip = fz.flipMap()[fz.whichFace(meshFacei)]; + // Intrude : face connects to original cell + //if (patchID[patchFacei] == -1) + { + // Internal face between added cell and original + // owner / neighbour. TBD: what if ppFlip set on + // boundary face (so with no neighbour) + own = + ( + !ppFlip[patchFacei] + ? mesh_.faceOwner()[meshFacei] + : mesh_.faceNeighbour()[meshFacei] + ); + nei = addedCells[patchFacei][i]; + if (ppFlip[patchFacei]) + { + // Since neighbour now owns the face flip it + newFace = newFace.reverseFace(); + if (zonei != -1) + { + zoneFlip = !zoneFlip; + } + fluxFlip = true; + } + } } } else { // Internal face between layer i and i+1 + own = addedCells[patchFacei][i]; nei = addedCells[patchFacei][i+1]; - patchi = -1; - } - if (nei != -1 && nei < own) - { - // Wrongly oriented internal face - newFace = newFace.reverseFace(); - std::swap(own, nei); - flip = !flip; - fluxFlip = true; - - //Pout<< "Flipped newFace:" - // << newFace.unitNormal(meshMod.points()) - // << " own:" << own - // << " nei:" << nei - // << endl; + if (ppFlip[patchFacei]) + { + // Since neighbour now owns the face flip it + newFace = newFace.reverseFace(); + fluxFlip = true; + } } - - layerFaces_[patchFacei][i+1] = meshMod.setAction ( polyAddFace @@ -2294,8 +2214,8 @@ void Foam::addPatchCellLayer::setRefinement (addToMesh_ ? meshFacei : -1), // master face fluxFlip, // flux flip patchi, // patch for face - zoneI, // zone for face - flip // face zone flip + zonei, // zone for face + zoneFlip // face zone flip ) ); @@ -2307,13 +2227,14 @@ void Foam::addPatchCellLayer::setRefinement // << " n:" << newFace.unitNormal(meshMod.points()) // << " own:" << own << " nei:" << nei // << " patchi:" << patchi + // << " zonei:" << zonei // << endl; } } } // - // Modify owner faces to have addedCells as neighbour + // Modify original face to have addedCells as neighbour // if (addToMesh_) @@ -2322,41 +2243,110 @@ void Foam::addPatchCellLayer::setRefinement { if (addedCells[patchFacei].size()) { - label meshFacei = pp.addressing()[patchFacei]; + const label meshFacei = pp.addressing()[patchFacei]; layerFaces_[patchFacei][0] = meshFacei; const face& f = pp[patchFacei]; - const label own = - ( - !ppFlip[patchFacei] - ? mesh_.faceOwner()[meshFacei] - : mesh_.faceNeighbour()[meshFacei] - ); - const label nei = addedCells[patchFacei][0]; + if (extrude_) + { + const label own = + ( + !ppFlip[patchFacei] + ? mesh_.faceOwner()[meshFacei] + : mesh_.faceNeighbour()[meshFacei] + ); + const label nei = addedCells[patchFacei][0]; - meshMod.setAction - ( - polyModifyFace + meshMod.setAction ( - (ppFlip[patchFacei] ? f.reverseFace() : f),// verts - meshFacei, // label of face - own, // owner - nei, // neighbour - ppFlip[patchFacei], // face flip - -1, // patch for face - true, //false, // remove from zone - -1, //zoneI, // zone for face - false // face flip in zone - ) - ); + polyModifyFace + ( + (ppFlip[patchFacei] ? f.reverseFace() : f),// verts + meshFacei, // label of face + own, // owner + nei, // neighbour + ppFlip[patchFacei], // face flip + -1, // patch for face + true, //false, // remove from zone + -1, //zoneI, // zone for face + false // face flip in zone + ) + ); + } + else + { + label patchi; + label zonei; + bool zoneOrient; + setFaceProps + ( + mesh_, + meshFacei, - //Pout<< "Modified bottom face " << meshFacei - // << " at:" << mesh_.faceCentres()[meshFacei] - // << " new own:" << own << " new nei:" << nei - // << " verts:" << meshMod.faces()[meshFacei] - // << " n:" - // << meshMod.faces()[meshFacei].unitNormal(meshMod.points()) + patchi, + zonei, + zoneOrient + ); + + label own; + label nei = -1; + bool flip = false; + if (!ppFlip[patchFacei]) + { + if (patchi == -1) + { + own = mesh_.faceNeighbour()[meshFacei]; + nei = addedCells[patchFacei].first(); + flip = true; + } + else + { + own = addedCells[patchFacei].first(); + } + } + else + { + if (patchi == -1) + { + own = mesh_.faceOwner()[meshFacei]; + nei = addedCells[patchFacei].first(); + } + else + { + own = addedCells[patchFacei].first(); + } + } + + if (zonei != -1 && flip) + { + zoneOrient = !zoneOrient; + } + + meshMod.setAction + ( + polyModifyFace + ( + (flip ? f.reverseFace() : f), // verts + meshFacei, // label of face + own, // owner + nei, // neighbour + flip, // face flip + patchi, // patch for face + false, // remove from zone + zonei, // zone for face + zoneOrient // face flip in zone + ) + ); + } + + //Pout<< "Modified original face " << meshFacei + // << " at:" << mesh_.faceCentres()[meshFacei] + // << " new own:" << meshMod.faceOwner()[meshFacei] + // << " new nei:" << meshMod.faceNeighbour()[meshFacei] + // << " verts:" << meshMod.faces()[meshFacei] + // << " n:" + // << meshMod.faces()[meshFacei].unitNormal(meshMod.points()) // << endl; } } @@ -2472,9 +2462,10 @@ void Foam::addPatchCellLayer::setRefinement // between the same two faces and extrude string into a single face. forAll(pp, patchFacei) { + // Get edges of face in vertex order const labelList& fEdges = faceEdges[patchFacei]; - forAll(fEdges, fp) + forAll(fEdges, i) { // Get string of edges that needs to be extruded as a single face. // Returned as indices in fEdges. @@ -2533,16 +2524,16 @@ void Foam::addPatchCellLayer::setRefinement // because we loop in incrementing order as well we will // always have nbrFacei > patchFacei. - label startEdgei = fEdges[startFp]; + const label startEdgei = fEdges[startFp]; - label meshEdgei = meshEdges[startEdgei]; + const label meshEdgei = meshEdges[startEdgei]; - label numEdgeSideFaces = edgeLayers[startEdgei]; + const label numEdgeSideFaces = edgeLayers[startEdgei]; for (label i = 0; i < numEdgeSideFaces; i++) { - label vEnd = stringedVerts.last(); - label vStart = stringedVerts[0]; + const label vEnd = stringedVerts.last(); + const label vStart = stringedVerts[0]; // calculate number of points making up a face label newFp = 2*stringedVerts.size(); @@ -2573,7 +2564,7 @@ void Foam::addPatchCellLayer::setRefinement { forAll(stringedVerts, stringedI) { - label v = stringedVerts[stringedI]; + const label v = stringedVerts[stringedI]; addVertex ( ( @@ -2590,10 +2581,10 @@ void Foam::addPatchCellLayer::setRefinement { forAll(stringedVerts, stringedI) { - label v = stringedVerts[stringedI]; + const label v = stringedVerts[stringedI]; if (addedPoints_[v].size()) { - label offset = + const label offset = addedPoints_[v].size() - numEdgeSideFaces; addVertex ( @@ -2623,7 +2614,7 @@ void Foam::addPatchCellLayer::setRefinement { if (i == 0 && addedPoints_[vEnd].size()) { - label offset = + const label offset = addedPoints_[vEnd].size() - numEdgeSideFaces; for (label ioff = 0; ioff < offset; ioff++) { @@ -2639,10 +2630,10 @@ void Foam::addPatchCellLayer::setRefinement forAllReverse(stringedVerts, stringedI) { - label v = stringedVerts[stringedI]; + const label v = stringedVerts[stringedI]; if (addedPoints_[v].size()) { - label offset = + const label offset = addedPoints_[v].size() - numEdgeSideFaces; addVertex ( @@ -2672,7 +2663,7 @@ void Foam::addPatchCellLayer::setRefinement { if (i == 0 && addedPoints_[vStart].size()) { - label offset = + const label offset = addedPoints_[vStart].size() - numEdgeSideFaces; for (label ioff = offset-1; ioff >= 0; ioff--) { @@ -2695,7 +2686,7 @@ void Foam::addPatchCellLayer::setRefinement // Walked edges as if owner face was extruded. Reverse // for neighbour face extrusion. - if (ppFlip[patchFacei]) + if (extrude_ == ppFlip[patchFacei]) { newFace = newFace.reverseFace(); } @@ -2797,7 +2788,11 @@ void Foam::addPatchCellLayer::setRefinement { face newFace; - forAll(baseFaces, facei) + // For intrusion correction later on: store displacement of modified + // points so they can be adapted on connected faces. + pointField displacement(mesh_.nPoints(), Zero); + + forAll(mesh_.faces(), facei) { const face& f = mesh_.faces()[facei]; const face& baseF = baseFaces[facei]; @@ -2813,20 +2808,25 @@ void Foam::addPatchCellLayer::setRefinement forAll(f, fp) { const label meshPointi = f[fp]; - if (baseF[fp] != labelMax) + if (baseF[fp] != -1) { - // Duplicated point - const label patchPointi = pp.meshPointMap()[meshPointi]; - const label addedPointi = addedPoints_[patchPointi].last(); - - //Pout<< " For point:" << meshPointi - // << " at:" << mesh_.points()[meshPointi] - // << " at:" << pp.localPoints()[patchPointi] - // << " using addedpoint:" << addedPointi - // << " at:" << meshMod.points()[addedPointi] - // << endl; + // Duplicated point. Might not be present on processor? + //const label patchPointi = pp.meshPointMap()[meshPointi]; + const auto pointFnd = pp.meshPointMap().find(meshPointi); + if (pointFnd) + { + const label patchPointi = pointFnd(); + const label addedPointi = + addedPoints_[patchPointi].last(); + + // Adapt vertices of face + newFace[fp] = addedPointi; - newFace[fp] = addedPointi; + // Store displacement for syncing later on + displacement[meshPointi] = + meshMod.points()[addedPointi] + -mesh_.points()[meshPointi]; + } } } @@ -2879,8 +2879,318 @@ void Foam::addPatchCellLayer::setRefinement zoneFlip // face flip in zone ); } + + + //Pout<< "Adapted point on existing face:" << facei + // << " at:" << mesh_.faceCentres()[facei] + // << " zone:" << zoneID << nl + // << " old:" << f + // << " n:" << newFace.unitNormal(meshMod.points()) + // << " coords:" << UIndirectList<point>(mesh_.points(), f) + // << nl + // << " new:" << newFace + // << " n:" << newFace.unitNormal(meshMod.points()) + // << " coords:" + // << UIndirectList<point>(meshMod.points(), newFace) + // << endl; + } + + if (!extrude_) + { + // Bit tricky: + // - if intruding we're modifying the vertices on existing + // coupled faces (in extrude mode we're adding additional points/ + // faces where we're already doing the right thing) + // - if the other side face is itself not on an extrudePatch + // it will not be adapted so you'll get a coupled point mismatch + // - so send over the new point position (or use some map on + // coupled faces to describe which vertex on the face is changed?) + // - and adapt any point that was marked but not an extrusion point + // - to test: take 2x2 blockMesh and remove one of the cells. Put + // all 3 cells on different processors. Now one of the processors + // will be coupled to extrude/intruded points but itself have + // no patch. + + syncTools::syncPointList + ( + mesh_, + displacement, + maxMagSqrEqOp<vector>(), + vector::zero + ); + + forAll(baseFaces, facei) + { + const face& f = mesh_.faces()[facei]; + const face& baseF = baseFaces[facei]; + + if (isBlockedFace(facei) || baseF.empty()) + { + // Either part of patch or no duplicated points on face + continue; + } + + // Start off from original face + forAll(f, fp) + { + if (baseF[fp] != -1) + { + // Duplicated point. Might not be present on processor? + const label meshPointi = f[fp]; + + if + ( + !pp.meshPointMap().found(meshPointi) + && displacement[meshPointi] != vector::zero + ) + { + const point newPt + ( + mesh_.points()[meshPointi] + + displacement[meshPointi] + ); + meshMod.modifyPoint + ( + meshPointi, + newPt, + mesh_.pointZones().whichZone(meshPointi), + true + ); + + // Unmark as being done + displacement[meshPointi] = Zero; + } + } + } + } } } + + + + //if (debug & 4) + //{ + // Pout<< "Checking whole mesh" << endl; + // pointField fCtrs; + // vectorField fAreas; + // const UList<face>& faces = meshMod.faces(); + // const pointField p(meshMod.points()); + // primitiveMeshTools::makeFaceCentresAndAreas + // ( + // faces, + // p, + // fCtrs, + // fAreas + // ); + // + // const label nCells = max(meshMod.faceOwner())+1; + // + // pointField cellCtrs; + // scalarField cellVols; + // { + // // See primitiveMeshTools::makeCellCentresAndVols + // // Clear the fields for accumulation + // cellCtrs.setSize(nCells, Zero); + // cellVols.setSize(nCells, Zero); + // + // const labelList& own = meshMod.faceOwner(); + // const labelList& nei = meshMod.faceNeighbour(); + // + // Field<solveVector> cEst(nCells, Zero); + // labelField nCellFaces(nCells, Zero); + // + // forAll(own, facei) + // { + // cEst[own[facei]] += solveVector(fCtrs[facei]); + // ++nCellFaces[own[facei]]; + // } + // + // forAll(nei, facei) + // { + // if (nei[facei] == -1) + // { + // continue; + // } + // cEst[nei[facei]] += solveVector(fCtrs[facei]); + // ++nCellFaces[nei[facei]]; + // } + // + // forAll(cEst, celli) + // { + // cEst[celli] /= nCellFaces[celli]; + // } + // + // forAll(own, facei) + // { + // const solveVector fc(fCtrs[facei]); + // const solveVector fA(fAreas[facei]); + // + // // Calculate 3*face-pyramid volume + // solveScalar pyr3Vol = fA & (fc - cEst[own[facei]]); + // + // // Calculate face-pyramid centre + // solveVector pc = (3.0/4.0)*fc + (1.0/4.0)*cEst[own[facei]]; + // + // // Accumulate volume-weighted face-pyramid centre + // cellCtrs[own[facei]] += pyr3Vol*pc; + // + // // Accumulate face-pyramid volume + // cellVols[own[facei]] += pyr3Vol; + // } + // + // forAll(nei, facei) + // { + // if (nei[facei] == -1) + // { + // continue; + // } + // + // const solveVector fc(fCtrs[facei]); + // const solveVector fA(fAreas[facei]); + // + // // Calculate 3*face-pyramid volume + // solveScalar pyr3Vol = fA & (cEst[nei[facei]] - fc); + // + // // Calculate face-pyramid centre + // solveVector pc = (3.0/4.0)*fc + (1.0/4.0)*cEst[nei[facei]]; + // + // // Accumulate volume-weighted face-pyramid centre + // cellCtrs[nei[facei]] += pyr3Vol*pc; + // + // // Accumulate face-pyramid volume + // cellVols[nei[facei]] += pyr3Vol; + // } + // + // forAll(cellCtrs, celli) + // { + // if (mag(cellVols[celli]) > VSMALL) + // { + // cellCtrs[celli] /= cellVols[celli]; + // } + // else + // { + // cellCtrs[celli] = cEst[celli]; + // } + // } + // cellVols *= (1.0/3.0); + // } + // cellList cells(nCells); + // { + // const labelList& own = meshMod.faceOwner(); + // const labelList& nei = meshMod.faceNeighbour(); + // + // labelList nFaces(nCells, 0); + // forAll(own, facei) + // { + // nFaces[own[facei]]++; + // } + // forAll(nei, facei) + // { + // if (nei[facei] == -1) + // { + // continue; + // } + // nFaces[nei[facei]]++; + // } + // + // forAll(cells, celli) + // { + // cells[celli].resize_nocopy(nFaces[celli]); + // nFaces[celli] = 0; + // } + // + // forAll(own, facei) + // { + // const label celli = own[facei]; + // cells[celli][nFaces[celli]++] = facei; + // } + // forAll(nei, facei) + // { + // if (nei[facei] == -1) + // { + // continue; + // } + // const label celli = nei[facei]; + // cells[celli][nFaces[celli]++] = facei; + // } + // } + // + // + // scalarField openness; + // { + // const labelList& own = meshMod.faceOwner(); + // const labelList& nei = meshMod.faceNeighbour(); + // + // // Loop through cell faces and sum up the face area vectors for + // // each cell. This should be zero in all vector components + // + // vectorField sumClosed(nCells, Zero); + // vectorField sumMagClosed(nCells, Zero); + // + // forAll(own, facei) + // { + // // Add to owner + // sumClosed[own[facei]] += fAreas[facei]; + // sumMagClosed[own[facei]] += cmptMag(fAreas[facei]); + // } + // + // forAll(nei, facei) + // { + // // Subtract from neighbour + // if (nei[facei] == -1) + // { + // continue; + // } + // + // sumClosed[nei[facei]] -= fAreas[facei]; + // sumMagClosed[nei[facei]] += cmptMag(fAreas[facei]); + // } + // + // + // // Check the sums + // openness.setSize(nCells); + // + // forAll(sumClosed, celli) + // { + // scalar maxOpenness = 0; + // + // for (direction cmpt=0; cmpt<vector::nComponents; cmpt++) + // { + // maxOpenness = max + // ( + // maxOpenness, + // mag(sumClosed[celli][cmpt]) + // /(sumMagClosed[celli][cmpt] + ROOTVSMALL) + // ); + // } + // openness[celli] = maxOpenness; + // + // if (openness[celli] > 1e-9) + // { + // Pout<< "cell:" << celli + // << " at:" << cellCtrs[celli] + // << " openness:" << openness[celli] + // << endl; + // OBJstream os + // ( + // mesh_.time().timePath() + // /"cell_" + Foam::name(celli) + ".obj" + // ); + // faceList cellFaces + // ( + // UIndirectList<face> + // ( + // meshMod.faces(), + // cells[celli] + // ) + // ); + // os.write(cellFaces, mesh_.points(), false); + // Pout<< "Written " << os.nVertices() << " to " + // << os.name() << endl; + // } + // } + // } + //} } @@ -2947,4 +3257,261 @@ void Foam::addPatchCellLayer::updateMesh } +void Foam::addPatchCellLayer::findDuplicatedPoints +( + const polyMesh& mesh, + const indirectPrimitivePatch& pp, + const bitSet& ppFlip, // optional orientation on top of pp + const bitSet& isBlockedFace, // any mesh faces not to be traversed. + // Usually pp.addressing() + const bitSet& isDupPatchPoint, + const bool extrude, + faceList& isDupMeshPoint // per face, per index either -1 + // or some index (value not relevant) +) +{ + if (isBlockedFace.size() != mesh.nFaces()) + { + FatalErrorInFunction << "Incorrect size" << exit(FatalError); + } + if (ppFlip.size() != pp.size() || isDupPatchPoint.size() != pp.nPoints()) + { + FatalErrorInFunction << "Incorrect patch sizes" + << exit(FatalError); + } + + const auto& owner = mesh.faceOwner(); + const auto& neighbour = mesh.faceNeighbour(); + + + // Store per face whether it uses the duplicated point or the original one + // Also mark any affected cells. We could transport the duplicated point + // itself but since it is a processor-local index only we only transport + // a boolean. + + // Per face, per index in face either -1 or a valid index. Note: + // most faces are not affected in which case the face will be zero size + // and only have a nullptr and a size. + isDupMeshPoint.resize_nocopy(mesh.nFaces()); + isDupMeshPoint = face(); + bitSet isAffectedCell(mesh.nCells()); + { + const faceList& localFaces = pp.localFaces(); + forAll(localFaces, patchFacei) + { + const face& f = localFaces[patchFacei]; + forAll(f, fp) + { + const label patchPointi = f[fp]; + if (isDupPatchPoint[patchPointi]) + { + const label meshFacei = pp.addressing()[patchFacei]; + face& baseF = isDupMeshPoint[meshFacei]; + // Initialise to -1 if not yet sized + baseF.setSize(f.size(), -1); + baseF[fp] = pp.meshPoints()[patchPointi]; + + if (extrude == ppFlip[patchFacei]) + { + // either: + // - extrude out of neighbour so new points connect + // to owner + // - or intrude into owner + isAffectedCell.set(owner[meshFacei]); + } + else if (mesh.isInternalFace(meshFacei)) + { + // Owner unaffected. Affected points on neighbour side + isAffectedCell.set(neighbour[meshFacei]); + } + } + } + } + } + + + // Transport affected side across faces. Could do across edges: say we have + // a loose cell edge-(but not face-)connected to face-to-be-extruded do + // we want it to move with the extrusion or stay connected to the original? + // For now just keep it connected to the original. + { + // Work space + Map<label> minPointValue; + + while (true) + { + bitSet newIsAffectedCell(mesh.nCells()); + + label nChanged = 0; + for (const label celli : isAffectedCell) + { + const cell& cFaces = mesh.cells()[celli]; + + // 1. Determine marked base points. Inside a single cell all + // faces (e.g. 3 for hex) use the same 'instance' of a point. + minPointValue.clear(); + for (const label facei : cFaces) + { + const face& baseF = isDupMeshPoint[facei]; + const face& f = mesh.faces()[facei]; + + forAll(baseF, fp) + { + if (baseF[fp] != -1) + { + // Could check here for inconsistent patchPoint + // e.g. cell using both sides of a + // face-to-be-extruded. + + const auto mpm = pp.meshPointMap().find(f[fp]); + if (mpm && !isDupPatchPoint[mpm()]) + { + // Local copy of point is explicitly not + // marked for extrusion so ignore. This + // occasionally happens with point-connected + // faces where one face (& point) does + // extrude but the other face does not + // since pointing in the other direction. + // Should ideally be covered by checking + // across edges, not across points. + } + else + { + minPointValue.insert(f[fp], baseF[fp]); + } + } + } + } + + + // 2. Transport marked points on all cell points + for (const label facei : cFaces) + { + const face& f = mesh.faces()[facei]; + face& baseF = isDupMeshPoint[facei]; + + const label oldNChanged = nChanged; + forAll(f, fp) + { + const auto fnd = minPointValue.find(f[fp]); + if (fnd.good()) + { + const auto mpm = pp.meshPointMap().find(f[fp]); + if (mpm && !isDupPatchPoint[mpm()]) + { + // See above + continue; + } + + baseF.setSize(f.size(), -1); + if (baseF[fp] == -1) + { + baseF[fp] = fnd(); + nChanged++; + } + } + } + + if (!isBlockedFace(facei) && nChanged > oldNChanged) + { + // Mark neighbouring cells. Note that we do NOT check + // for whether cell is already in isAffectedCell but + // always add it. This is because different information + // can come in from the neighbour in different + // iterations. + newIsAffectedCell.set(owner[facei]); + if (mesh.isInternalFace(facei)) + { + newIsAffectedCell.set(neighbour[facei]); + } + } + } + } + + + if (debug) + { + Pout<< "isAffectedCell:" << isAffectedCell.count() << endl; + Pout<< "newIsAffectedCell:" << newIsAffectedCell.count() + << endl; + Pout<< "nChanged:" << nChanged << endl; + } + + + if (!returnReduceOr(nChanged)) + { + break; + } + + + // Transport minimum across coupled faces + // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Faces can be either + // - null + // - face with some -1 or >= 0 + // - blocked face (isBlockedFace, should be synced already) + faceList l(mesh.nBoundaryFaces()); + forAll(l, bFacei) + { + const label facei = mesh.nInternalFaces()+bFacei; + + if (isBlockedFace(facei)) + { + // Make sure nothing is transferred. Since isBlockedFace is + // synced both sides should have null + if (l[bFacei].size()) + { + l[bFacei].clear(); + } + } + else + { + l[bFacei] = isDupMeshPoint[facei]; + } + } + + + syncTools::syncBoundaryFaceList + ( + mesh, + l, + combineEqOpFace(), // transport vertex >= 0 + Foam::dummyTransform() // dummy transformation + ); + + // Copy back + forAll(l, bFacei) + { + const label facei = mesh.nInternalFaces()+bFacei; + + if (!isBlockedFace(facei)) + { + // 1. Check if anything changed. Update isAffectedCell. + // Note: avoid special handling of comparing zero-sized + // faces (see face::operator==). Review. + const labelUList& newVts = l[bFacei]; + const labelUList& oldVts = isDupMeshPoint[facei]; + + if (newVts != oldVts) + { + const label own = owner[facei]; + if (!isAffectedCell[own]) + { + newIsAffectedCell.set(own); + } + } + + + // 2. Update isDupMeshPoint + isDupMeshPoint[facei] = l[bFacei]; + } + } + + + isAffectedCell = newIsAffectedCell; + } + } +} + + // ************************************************************************* // diff --git a/src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.H b/src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.H index fe59a8f6080b4e613f750a0b203e090a98ced277..35b330e1458c3a82847b30629cd41ae8a1f9f521 100644 --- a/src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.H +++ b/src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.H @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2015 OpenFOAM Foundation - Copyright (C) 2020 OpenCFD Ltd. + Copyright (C) 2020,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -28,8 +28,8 @@ Class Foam::addPatchCellLayer Description - Adds layers of cells to outside of polyPatch. Can optionally create - stand-alone extruded mesh (addToMesh=false). + Adds layers of cells to outside (or inside) of polyMesh. Can optionally + create stand-alone extruded mesh (addToMesh=false). Call setRefinement with offset vector for every patch point and number of layers per patch face and number of layers per patch point. @@ -51,24 +51,47 @@ Description \verbatim Was: - a b <- patch of boundary face - +------+------+ - | | | <- original cells - +------+------+ - - Becomes: - - a b <- patch of boundary face - +------+------+ - + +------+ - +------+------+ - +------+------+ - | | | <- original cells - +------+------+ + a b <- patch of boundary face + +------+------+ + | | | <- original cells + +------+------+ + + Extrusion: + + + added added + face cell + ---- ---- + a b <- patch of boundary face + +------+------+ 3 + | | | 2 + + +------+ 2 + | | | 1 + +------+------+ 1 + | | | 0 + +------+------+ 0 <- original boundary faces + | | | <- original cells + +------+------+ + + + + Intrusion: + + face cell + ---- ---- + a b <- patch of boundary face + +------+------+ 0 + | | | 0 + +------+------+ 1 + | | | 1 + + +------+ 2 + | | | 2 + +------+------+ 3 + | | | <- original cells + +------+------+ \endverbatim - - added faces get same patchID as face they are extruded from - 'side' faces (i.e. on the edge of pp) get the patchID/zoneID of the other patch/zone they are connected to (hopefully only 1) @@ -78,10 +101,15 @@ Description \verbatim a b b <- patch of boundary face +------+------+------+ + | | | | | | | | <- cells + | | | | +------+------+------+ + (shown for extrusion mode only): + + ^ ^ <- wanted extrusion vector (none at far right) a | b | b <- patch of boundary face +------+------+------+ @@ -123,7 +151,7 @@ class primitiveMesh; class globalIndex; /*---------------------------------------------------------------------------*\ - Class addPatchCellLayer Declaration + Class addPatchCellLayer Declaration \*---------------------------------------------------------------------------*/ class addPatchCellLayer @@ -136,15 +164,23 @@ class addPatchCellLayer //- Add layers to existing mesh or create new mesh const bool addToMesh_; + //- Add layers to outside of mesh or to inside + const bool extrude_; + + //- For all patchpoints: list of added points (size 0 or nLayers) // First point in list is one nearest to original point in patch, - // last one is the new point on the surface. + // last one is + // - extrude : the new point on the surface + // - intrude : the point connecting to the original cell. labelListList addedPoints_; //- For all patchfaces: list of layer faces. // - empty if no face extruded - // - first face is original boundary face - // - last one is new boundary face. + // - first element is original patch face + // - last element is + // - extrude : the new boundary face + // - intrude : the new internal face to the original cell. labelListList layerFaces_; @@ -226,25 +262,6 @@ class addPatchCellLayer label& inflateFaceI ); - //- Find internal or boundary face to get extrude properties - // from. zoneFlip consistent with ppEdge ordering - static void findZoneFace - ( - const bool useInternalFaces, - const bool useBoundaryFaces, - - const polyMesh& mesh, - const indirectPrimitivePatch& pp, - const label ppEdgeI, - const labelUIndList& excludeFaces, - const labelList& meshFaces, - - label& inflateFaceI, - label& patchI, - label& zoneI, - bool& zoneFlip - ); - //- Mark internal and boundary edges of patch. In mesh edges //- since processor might not have pp but does have edge. static void markPatchEdges @@ -294,7 +311,12 @@ public: // Constructors //- Construct from mesh. - explicit addPatchCellLayer(const polyMesh&, const bool addToMesh=true); + explicit addPatchCellLayer + ( + const polyMesh&, + const bool addToMesh=true, + const bool extrude=true + ); // Member Functions @@ -314,8 +336,13 @@ public: } //- Helper: get added cells per patch face. - // addedCells[patchFace] is list of cells added. Last element is - // the top cells (i.e. the boundary cell) + // addedCells[patchFace] is list of cells added. + // extrude : + // first element : next to original cell + // last element : is the top cell (i.e. the boundary cell) + // intrude : + // first element : top cell + // last element : next to original cell static labelListList addedCells ( const polyMesh&, @@ -328,6 +355,18 @@ public: // Edit + //- Per patch edge the pp faces (in global indices) using it. + // Uses ListOps::uniqueEqOp to remove duplicates. On coupled + // faces only selects the one with the correct orientation/flip + // (assumes the orientation is opposite on a coupled face pair) + static labelListList globalEdgeFaces + ( + const polyMesh&, + const globalIndex& globalFaces, + const indirectPrimitivePatch& pp, + const bitSet& orientation + ); + //- Per patch edge the pp faces (in global indices) using it. // Uses ListOps::uniqueEqOp to remove duplicates. static labelListList globalEdgeFaces @@ -454,6 +493,28 @@ public: const labelList& faceMap, // new to old patch faces const labelList& pointMap // new to old patch points ); + + + + //- Helper: given patch and points on patch that are extruded + // (to slave side or master side) find the affected + // points. Calculates by walking across faces which vertices on + // which face are affected. isDupMeshPoint: + // -1 : unaffected + // >=0 : should use local duplicate of point + // (though it does not tell us whether it should use + // slave side or master side) + static void findDuplicatedPoints + ( + const polyMesh& mesh, + const indirectPrimitivePatch& pp, + const bitSet& ppFlip, // optional orientation on top of pp + const bitSet& isBlockedFace,// any mesh faces not to be + // traversed.Usually pp.addressing() + const bitSet& isDupPatchPoint, + const bool extrude, // which side to extrude + faceList& isDupMeshPoint + ); }; diff --git a/src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8/hexRef8.C b/src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8/hexRef8.C index cd1b62ad59f2d01ab1dddd7f079f9dc9ab6e7949..73501db8cf9852d788b938841e9606ffc8214fdb 100644 --- a/src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8/hexRef8.C +++ b/src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8/hexRef8.C @@ -2443,26 +2443,45 @@ Foam::labelList Foam::hexRef8::consistentSlowRefinement // Seed all boundary faces with owner value. This is to make sure that // they are visited (probably only important for coupled faces since // these need to be visited from both sides) + List<refinementData> nbrCellInfo; + syncTools::swapBoundaryCellList(mesh_, allCellInfo, nbrCellInfo); + for (label facei = mesh_.nInternalFaces(); facei < mesh_.nFaces(); facei++) { // Check if face already handled in loop above if (!allFaceInfo[facei].valid(dummyTrackData)) { - label own = faceOwner[facei]; + const label own = faceOwner[facei]; + const auto& nbrInfo = nbrCellInfo[facei-mesh_.nInternalFaces()]; - // Seed face with transported data from owner. - refinementData faceData; - faceData.updateFace - ( - mesh_, - facei, - own, - allCellInfo[own], - FaceCellWave<refinementData, int>::propagationTol(), - dummyTrackData - ); - seedFaces.append(facei); - seedFacesInfo.append(faceData); + if (allCellInfo[own].count() > nbrInfo.count()) + { + allFaceInfo[facei].updateFace + ( + mesh_, + facei, + own, + allCellInfo[own], + FaceCellWave<refinementData, int>::propagationTol(), + dummyTrackData + ); + seedFaces.append(facei); + seedFacesInfo.append(allFaceInfo[facei]); + } + else if (allCellInfo[own].count() < nbrInfo.count()) + { + allFaceInfo[facei].updateFace + ( + mesh_, + facei, + -1, // Lucky! neighbCelli not used! + nbrInfo, + FaceCellWave<refinementData, int>::propagationTol(), + dummyTrackData + ); + seedFaces.append(facei); + seedFacesInfo.append(allFaceInfo[facei]); + } } } diff --git a/src/dynamicMesh/polyTopoChange/polyTopoChange/refinementData.C b/src/dynamicMesh/polyTopoChange/polyTopoChange/refinementData.C index bd323619f0e63d8ae8adb2a7a4d842ebd6f6a5fe..46dd9a86ebcae38b45f2195b5fc5fe7bbe4aab6b 100644 --- a/src/dynamicMesh/polyTopoChange/polyTopoChange/refinementData.C +++ b/src/dynamicMesh/polyTopoChange/polyTopoChange/refinementData.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011 OpenFOAM Foundation - Copyright (C) 2019-2022 OpenCFD Ltd. + Copyright (C) 2019-2022,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -28,6 +28,13 @@ License #include "refinementData.H" +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +Foam::refinementData Foam::transform(const tensor&, const refinementData val) +{ + return val; +} + // * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * // Foam::Ostream& Foam::operator<< diff --git a/src/dynamicMesh/polyTopoChange/polyTopoChange/refinementData.H b/src/dynamicMesh/polyTopoChange/polyTopoChange/refinementData.H index 1c72c872e4eb62267600351010abaa72d0004d51..7ee11722de7bbc3c304fc9173d03372c157c6191 100644 --- a/src/dynamicMesh/polyTopoChange/polyTopoChange/refinementData.H +++ b/src/dynamicMesh/polyTopoChange/polyTopoChange/refinementData.H @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2019-2020 OpenCFD Ltd. + Copyright (C) 2019-2020,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -216,6 +216,9 @@ public: // * * * * * * * * * * * * * * * * * Traits * * * * * * * * * * * * * * * * // +//- No-op rotational transform for base types +refinementData transform(const tensor&, const refinementData val); + //- Contiguous data for refinementData template<> struct is_contiguous<refinementData> : std::true_type {}; diff --git a/src/finiteArea/faMesh/faPatches/basic/coupled/coupledFaPatch.H b/src/finiteArea/faMesh/faPatches/basic/coupled/coupledFaPatch.H index a4bdba28e5e27253b5417f0b8b7f53de2f60ec2d..d7e0dc74ceb8d52673f3a55f8106a7eb175181b0 100644 --- a/src/finiteArea/faMesh/faPatches/basic/coupled/coupledFaPatch.H +++ b/src/finiteArea/faMesh/faPatches/basic/coupled/coupledFaPatch.H @@ -79,9 +79,15 @@ protected: //- Make patch weighting factors virtual void makeWeights(scalarField&) const = 0; + //- Make patch geodesic distance between P and N + virtual void makeLPN(scalarField&) const = 0; + //- Make patch face - neighbour cell distances virtual void makeDeltaCoeffs(scalarField&) const = 0; + //- Make non-orthogonality correction vectors + virtual void makeCorrectionVectors(vectorField&) const = 0; + //- Calculate the uniform transformation tensors void calcTransformTensors ( diff --git a/src/finiteArea/faMesh/faPatches/constraint/cyclic/cyclicFaPatch.C b/src/finiteArea/faMesh/faPatches/constraint/cyclic/cyclicFaPatch.C index 5d0ffcb436fe3931b4b9406c2f6c9eca5d3aa56b..426cc281583f67b08d410502e401382eceeb3e9b 100644 --- a/src/finiteArea/faMesh/faPatches/constraint/cyclic/cyclicFaPatch.C +++ b/src/finiteArea/faMesh/faPatches/constraint/cyclic/cyclicFaPatch.C @@ -218,6 +218,13 @@ void Foam::cyclicFaPatch::makeWeights(scalarField& w) const } +void Foam::cyclicFaPatch::makeLPN(scalarField& lPN) const +{ + makeDeltaCoeffs(lPN); + lPN = scalar(1)/lPN; +} + + void Foam::cyclicFaPatch::makeDeltaCoeffs(scalarField& dc) const { const scalarField deltas(edgeNormals() & coupledFaPatch::delta()); diff --git a/src/finiteArea/faMesh/faPatches/constraint/cyclic/cyclicFaPatch.H b/src/finiteArea/faMesh/faPatches/constraint/cyclic/cyclicFaPatch.H index 9e4059fdff423da2eaa7cc2685d6755653006cde..e9c559353ae06eb43d6de745d125e3ecbefec807 100644 --- a/src/finiteArea/faMesh/faPatches/constraint/cyclic/cyclicFaPatch.H +++ b/src/finiteArea/faMesh/faPatches/constraint/cyclic/cyclicFaPatch.H @@ -78,9 +78,15 @@ protected: //- Make patch weighting factors void makeWeights(scalarField&) const; + //- Make patch geodesic distance between P and N + void makeLPN(scalarField&) const; + //- Make patch face - neighbour cell distances void makeDeltaCoeffs(scalarField&) const; + //- Make non-orthogonality correction vectors + void makeCorrectionVectors(vectorField& cv) const { cv = Zero; } + public: diff --git a/src/finiteArea/faMesh/faPatches/constraint/processor/processorFaPatch.C b/src/finiteArea/faMesh/faPatches/constraint/processor/processorFaPatch.C index c60a08a0ba62a8f41d448e5badbf6e170a90161a..d38a88c165edb5a2281a9f27a4bc00e431c5688b 100644 --- a/src/finiteArea/faMesh/faPatches/constraint/processor/processorFaPatch.C +++ b/src/finiteArea/faMesh/faPatches/constraint/processor/processorFaPatch.C @@ -398,18 +398,21 @@ void Foam::processorFaPatch::makeWeights(scalarField& w) const { if (Pstream::parRun()) { - // The face normals point in the opposite direction on the other side - scalarField neighbEdgeCentresCn + const vectorField& skew = skewCorrectionVectors(); + const scalarField& PN = lPN(); + + const scalarField lEN ( - neighbEdgeNormals() - & (neighbEdgeCentres() - neighbEdgeFaceCentres()) + mag(neighbEdgeFaceCentres() - edgeCentres() + skew) ); - w = neighbEdgeCentresCn/ - ( - (edgeNormals() & coupledFaPatch::delta()) - + neighbEdgeCentresCn + VSMALL - ); + forAll(w, i) + { + if (mag(PN[i]) > SMALL) + { + w[i] = lEN[i]/PN[i]; + } + } } else { @@ -418,12 +421,61 @@ void Foam::processorFaPatch::makeWeights(scalarField& w) const } +void Foam::processorFaPatch::makeLPN(scalarField& lPN) const +{ + const vectorField& skew = skewCorrectionVectors(); + + if (Pstream::parRun()) + { + lPN = + mag(edgeCentres() - skew - edgeFaceCentres()) // lPE + + mag(neighbEdgeFaceCentres() - edgeCentres() + skew); // lEN + + for (scalar& lpn: lPN) + { + if (mag(lpn) < SMALL) + { + lpn = SMALL; + } + } + } + else + { + lPN = + mag(edgeCentres() - skew - edgeFaceCentres()) // lPE + + mag(edgeFaceCentres() - edgeCentres() + skew); // lEN + } +} + + void Foam::processorFaPatch::makeDeltaCoeffs(scalarField& dc) const { if (Pstream::parRun()) { - dc = (1.0 - weights()) - /((edgeNormals() & coupledFaPatch::delta()) + VSMALL); + const edgeList& edges = boundaryMesh().mesh().edges(); + const pointField& points = boundaryMesh().mesh().points(); + const vectorField& lengths = edgeLengths(); + const scalarField& PN = lPN(); + + tmp<vectorField> tdelta = processorFaPatch::delta(); + vectorField& unitDelta = tdelta.ref(); + + forAll(dc, i) + { + vector edgeNormal = + normalised(lengths[i] ^ edges[i + start()].vec(points)); + + unitDelta[i].removeCollinear(edgeNormal); + unitDelta[i].normalise(); + + edgeNormal = normalised(lengths[i]); + + const scalar alpha = PN[i]*(edgeNormal & unitDelta[i]); + if (mag(alpha) > SMALL) + { + dc[i] = scalar(1)/max(alpha, 0.05*PN[i]); + } + } } else { @@ -433,6 +485,44 @@ void Foam::processorFaPatch::makeDeltaCoeffs(scalarField& dc) const } +void Foam::processorFaPatch::makeCorrectionVectors(vectorField& cv) const +{ + if (Pstream::parRun()) + { + const edgeList& edges = boundaryMesh().mesh().edges(); + const pointField& points = boundaryMesh().mesh().points(); + const vectorField& lengths = edgeLengths(); + + tmp<vectorField> tdelta = processorFaPatch::delta(); + vectorField& unitDelta = tdelta.ref(); + + forAll(cv, i) + { + vector edgeNormal = + normalised(lengths[i] ^ edges[i + start()].vec(points)); + + unitDelta[i].removeCollinear(edgeNormal); + unitDelta.normalise(); + + edgeNormal = normalised(lengths[i]); + + const scalar alpha = unitDelta[i] & edgeNormal; + scalar dc = SMALL; + if (mag(alpha) > SMALL) + { + dc = scalar(1)/alpha; + } + + cv[i] = edgeNormal - dc*unitDelta[i]; + } + } + else + { + cv = Zero; + } +} + + Foam::tmp<Foam::vectorField> Foam::processorFaPatch::delta() const { if (Pstream::parRun()) diff --git a/src/finiteArea/faMesh/faPatches/constraint/processor/processorFaPatch.H b/src/finiteArea/faMesh/faPatches/constraint/processor/processorFaPatch.H index 6bcf0b05f9c24e0d2efc953e6c94d2c9b5e6dd7c..7eeb4eb3aa8cd9c2300584cf3ae0ba7d44f39cbd 100644 --- a/src/finiteArea/faMesh/faPatches/constraint/processor/processorFaPatch.H +++ b/src/finiteArea/faMesh/faPatches/constraint/processor/processorFaPatch.H @@ -105,9 +105,15 @@ protected: //- Make patch weighting factors void makeWeights(scalarField&) const; + //- Make patch geodesic distance between P and N + void makeLPN(scalarField&) const; + //- Make patch face - neighbour cell distances void makeDeltaCoeffs(scalarField&) const; + //- Make non-orthogonality correction vectors + void makeCorrectionVectors(vectorField&) const; + //- Find non-globa patch points void makeNonGlobalPatchPoints() const; diff --git a/src/finiteArea/faMesh/faPatches/faPatch/faPatch.C b/src/finiteArea/faMesh/faPatches/faPatch/faPatch.C index 735b9b2224ba3ad7bb9ed176939857ab71803488..9b103bd8728c07b56cfcb58d6a4f6db29da44738 100644 --- a/src/finiteArea/faMesh/faPatches/faPatch/faPatch.C +++ b/src/finiteArea/faMesh/faPatches/faPatch/faPatch.C @@ -500,12 +500,30 @@ Foam::tmp<Foam::vectorField> Foam::faPatch::delta() const } +void Foam::faPatch::makeLPN(scalarField& lPN) const +{ + lPN = (edgeNormals() & delta()); +} + + +const Foam::scalarField& Foam::faPatch::lPN() const +{ + return boundaryMesh().mesh().lPN().boundaryField()[index()]; +} + + void Foam::faPatch::makeDeltaCoeffs(scalarField& dc) const { dc = scalar(1)/(edgeNormals() & delta()); } +const Foam::scalarField& Foam::faPatch::deltaCoeffs() const +{ + return boundaryMesh().mesh().deltaCoeffs().boundaryField()[index()]; +} + + void Foam::faPatch::makeCorrectionVectors(vectorField& k) const { const vectorField unitDelta(delta()/mag(delta())); @@ -514,9 +532,10 @@ void Foam::faPatch::makeCorrectionVectors(vectorField& k) const } -const Foam::scalarField& Foam::faPatch::deltaCoeffs() const +const Foam::vectorField& Foam::faPatch::skewCorrectionVectors() const { - return boundaryMesh().mesh().deltaCoeffs().boundaryField()[index()]; + return + boundaryMesh().mesh().skewCorrectionVectors().boundaryField()[index()]; } diff --git a/src/finiteArea/faMesh/faPatches/faPatch/faPatch.H b/src/finiteArea/faMesh/faPatches/faPatch/faPatch.H index 448b82d1e0a1057a8108c8e19da612553a61aa1e..6bb87df10f1aa728d102834c86975d934fd33bd1 100644 --- a/src/finiteArea/faMesh/faPatches/faPatch/faPatch.H +++ b/src/finiteArea/faMesh/faPatches/faPatch/faPatch.H @@ -413,14 +413,24 @@ public: //- Return patch weighting factors const scalarField& weights() const; + //- Make patch geodesic distance between P and N + virtual void makeLPN(scalarField&) const; + + //- Return patch geodesic distance between P and N + const scalarField& lPN() const; + //- Make patch edge - neighbour face distances virtual void makeDeltaCoeffs(scalarField&) const; - void makeCorrectionVectors(vectorField&) const; - //- Return patch edge - neighbour face distances const scalarField& deltaCoeffs() const; + //- Make non-orthogonality correction vectors + virtual void makeCorrectionVectors(vectorField&) const; + + //- Return patch skew-correction vectors + const vectorField& skewCorrectionVectors() const; + // Topological changes diff --git a/src/finiteArea/fields/faPatchFields/basic/basicSymmetry/basicSymmetryFaPatchField.C b/src/finiteArea/fields/faPatchFields/basic/basicSymmetry/basicSymmetryFaPatchField.C index d828c81eb828a281b40c628d416f86c501049caa..63bab592068d3e1a0dc3e9112aac810ab6b7215d 100644 --- a/src/finiteArea/fields/faPatchFields/basic/basicSymmetry/basicSymmetryFaPatchField.C +++ b/src/finiteArea/fields/faPatchFields/basic/basicSymmetry/basicSymmetryFaPatchField.C @@ -68,16 +68,6 @@ Foam::basicSymmetryFaPatchField<Type>::basicSymmetryFaPatchField } -template<class Type> -Foam::basicSymmetryFaPatchField<Type>::basicSymmetryFaPatchField -( - const basicSymmetryFaPatchField<Type>& ptf -) -: - transformFaPatchField<Type>(ptf) -{} - - template<class Type> Foam::basicSymmetryFaPatchField<Type>::basicSymmetryFaPatchField ( diff --git a/src/finiteArea/fields/faPatchFields/basic/basicSymmetry/basicSymmetryFaPatchField.H b/src/finiteArea/fields/faPatchFields/basic/basicSymmetry/basicSymmetryFaPatchField.H index 8ff67f1b0c7c24287d46338c5b2db8e83011bb70..83f3c0ad896bfbd17d8f79cb9c1ff577f7560464 100644 --- a/src/finiteArea/fields/faPatchFields/basic/basicSymmetry/basicSymmetryFaPatchField.H +++ b/src/finiteArea/fields/faPatchFields/basic/basicSymmetry/basicSymmetryFaPatchField.H @@ -38,8 +38,8 @@ SourceFiles \*---------------------------------------------------------------------------*/ -#ifndef basicSymmetryFaPatchField_H -#define basicSymmetryFaPatchField_H +#ifndef Foam_basicSymmetryFaPatchField_H +#define Foam_basicSymmetryFaPatchField_H #include "transformFaPatchField.H" #include "symmetryFaPatch.H" @@ -58,7 +58,6 @@ class basicSymmetryFaPatchField : public transformFaPatchField<Type> { - public: // Constructors @@ -89,11 +88,11 @@ public: const faPatchFieldMapper& ); - //- Construct as copy + //- Default copy construct basicSymmetryFaPatchField ( const basicSymmetryFaPatchField<Type>& - ); + ) = default; //- Construct as copy setting internal field reference basicSymmetryFaPatchField diff --git a/src/finiteArea/interpolation/edgeInterpolation/edgeInterpolation.C b/src/finiteArea/interpolation/edgeInterpolation/edgeInterpolation.C index 5da45321ce37f7a182ec8c9334cdb16b2d9560ae..625a8a147111e06eb7b027a7767c44e974ec234b 100644 --- a/src/finiteArea/interpolation/edgeInterpolation/edgeInterpolation.C +++ b/src/finiteArea/interpolation/edgeInterpolation/edgeInterpolation.C @@ -98,9 +98,17 @@ const Foam::edgeVectorField& Foam::edgeInterpolation::correctionVectors() const { if (orthogonal()) { - FatalErrorInFunction - << "cannot return correctionVectors; mesh is orthogonal" - << abort(FatalError); + return tmp<edgeVectorField>::New + ( + IOobject + ( + "correctionVectors", + mesh().pointsInstance(), + mesh().thisDb() + ), + mesh(), + dimensionedVector(dimless, Zero) + ); } return (*correctionVectorsPtr_); @@ -123,9 +131,17 @@ Foam::edgeInterpolation::skewCorrectionVectors() const { if (!skew()) { - FatalErrorInFunction - << "cannot return skewCorrectionVectors; mesh is now skewed" - << abort(FatalError); + return tmp<edgeVectorField>::New + ( + IOobject + ( + "skewCorrectionVectors", + mesh().pointsInstance(), + mesh().thisDb() + ), + mesh(), + dimensionedVector(dimless, Zero) + ); } return (*skewCorrectionVectorsPtr_); @@ -233,12 +249,10 @@ void Foam::edgeInterpolation::makeLPN() const forAll(lPN.boundaryField(), patchI) { - mesh().boundary()[patchI].makeDeltaCoeffs + mesh().boundary()[patchI].makeLPN ( lPN.boundaryFieldRef()[patchI] ); - - lPN.boundaryFieldRef()[patchI] = 1.0/lPN.boundaryField()[patchI]; } @@ -305,6 +319,7 @@ void Foam::edgeInterpolation::makeWeights() const // weight = (0,1] const scalar lPN = lPE + lEN; + if (mag(lPN) > SMALL) { weightingFactorsIn[edgeI] = lEN/lPN; @@ -498,31 +513,6 @@ void Foam::edgeInterpolation::makeCorrectionVectors() const mesh().boundary()[patchI].makeCorrectionVectors(CorrVecsbf[patchI]); } - scalar NonOrthogCoeff = 0.0; - - if (owner.size() > 0) - { - scalarField sinAlpha(deltaCoeffs*mag(CorrVecs.internalField())); - sinAlpha.clamp_range(-1, 1); - - NonOrthogCoeff = max(Foam::asin(sinAlpha)*180.0/M_PI); - } - - reduce(NonOrthogCoeff, maxOp<scalar>()); - - DebugInFunction - << "non-orthogonality coefficient = " << NonOrthogCoeff << " deg." - << endl; - - if (NonOrthogCoeff < 0.1) - { - orthogonal_ = true; - correctionVectorsPtr_.reset(nullptr); - } - else - { - orthogonal_ = false; - } DebugInFunction << "Finished constructing non-orthogonal correction vectors" diff --git a/src/finiteVolume/Make/files b/src/finiteVolume/Make/files index 36b69f77f089d7a0955c1a142007e6008eed04fa..b0cb2bc25b20e82d180823eb595a38040ea785b0 100644 --- a/src/finiteVolume/Make/files +++ b/src/finiteVolume/Make/files @@ -363,6 +363,7 @@ $(schemes)/localBlended/localBlended.C $(schemes)/limiterBlended/limiterBlended.C $(schemes)/CoBlended/CoBlended.C $(schemes)/cellCoBlended/cellCoBlended.C +$(schemes)/zoneBlended/zoneBlended.C $(schemes)/localMax/localMax.C $(schemes)/localMin/localMin.C diff --git a/src/finiteVolume/cfdTools/general/solutionControl/loopControl/fvSolution b/src/finiteVolume/cfdTools/general/solutionControl/loopControl/fvSolution index fb7bffffe36560c8133f1ca9db7469592fedbb7e..d3e66ca44671794b6350c0178b4f300978972b05 100644 --- a/src/finiteVolume/cfdTools/general/solutionControl/loopControl/fvSolution +++ b/src/finiteVolume/cfdTools/general/solutionControl/loopControl/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.C index 34b93a99f431b7d8b8237ec0d6dd686f0654a7a6..5d45a94aeae7faa7e80d2e9b25888899ccbab48c 100644 --- a/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.C @@ -28,7 +28,6 @@ License #include "basicSymmetryFvPatchField.H" #include "symmTransformField.H" - // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template<class Type> @@ -69,16 +68,6 @@ Foam::basicSymmetryFvPatchField<Type>::basicSymmetryFvPatchField } -template<class Type> -Foam::basicSymmetryFvPatchField<Type>::basicSymmetryFvPatchField -( - const basicSymmetryFvPatchField<Type>& ptf -) -: - transformFvPatchField<Type>(ptf) -{} - - template<class Type> Foam::basicSymmetryFvPatchField<Type>::basicSymmetryFvPatchField ( diff --git a/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.H index 30d2268cfd0bb167bc0b02ebdb0de172fd7b34ec..3135c1662cd9c6afbb79c790039453e8ae0582c5 100644 --- a/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.H @@ -38,8 +38,8 @@ SourceFiles \*---------------------------------------------------------------------------*/ -#ifndef basicSymmetryFvPatchField_H -#define basicSymmetryFvPatchField_H +#ifndef Foam_basicSymmetryFvPatchField_H +#define Foam_basicSymmetryFvPatchField_H #include "transformFvPatchField.H" #include "symmetryFvPatch.H" @@ -88,11 +88,11 @@ public: const fvPatchFieldMapper& ); - //- Construct as copy + //- Default copy construct basicSymmetryFvPatchField ( const basicSymmetryFvPatchField<Type>& - ); + ) = default; //- Construct as copy setting internal field reference basicSymmetryFvPatchField diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.C index a95239a9b67b050106f5793fa130d15cfdbca65c..0a5da32f09f5f52cd4406233c0a3f750e0406572 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.C @@ -611,6 +611,8 @@ void Foam::cyclicACMIFvPatchField<Type>::initInterfaceMatrixUpdate scalarRecvBufs_ ); } + + this->updatedMatrix(false); } @@ -679,6 +681,8 @@ void Foam::cyclicACMIFvPatchField<Type>::updateInterfaceMatrix } this->addToInternalField(result, !add, faceCells, coeffs, pnf); + + this->updatedMatrix(true); } @@ -735,6 +739,8 @@ void Foam::cyclicACMIFvPatchField<Type>::initInterfaceMatrixUpdate recvBufs_ ); } + + this->updatedMatrix(false); } @@ -792,6 +798,8 @@ void Foam::cyclicACMIFvPatchField<Type>::updateInterfaceMatrix } this->addToInternalField(result, !add, faceCells, coeffs, pnf); + + this->updatedMatrix(true); } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C index 8a8ad6e3cd8db421a1b78750a49fc7502ce9b39d..4e2acbd0233487948855764de8920fbac7fa7c17 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C @@ -616,6 +616,8 @@ void Foam::cyclicAMIFvPatchField<Type>::initInterfaceMatrixUpdate scalarRecvBufs_ ); } + + this->updatedMatrix(false); } @@ -693,6 +695,8 @@ void Foam::cyclicAMIFvPatchField<Type>::updateInterfaceMatrix // Multiply the field by coefficients and add into the result this->addToInternalField(result, !add, faceCells, coeffs, pnf); + + this->updatedMatrix(true); } @@ -751,6 +755,8 @@ void Foam::cyclicAMIFvPatchField<Type>::initInterfaceMatrixUpdate recvBufs_ ); } + + this->updatedMatrix(false); } @@ -827,6 +833,8 @@ void Foam::cyclicAMIFvPatchField<Type>::updateInterfaceMatrix // Multiply the field by coefficients and add into the result this->addToInternalField(result, !add, faceCells, coeffs, pnf); + + this->updatedMatrix(true); } diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.C index 107fcf30a5c1c0da2bf9c34b0a8d35ac9e01c687..9ce82de75203774db7dbae7bd59c4d8a3a278916 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2015 OpenFOAM Foundation - Copyright (C) 2017-2021 OpenCFD Ltd. + Copyright (C) 2017-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -28,6 +28,19 @@ License #include "fanFvPatchField.H" +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +template<class Type> +const Foam::Enum<typename Foam::fanFvPatchField<Type>::operatingMode> +Foam::fanFvPatchField<Type>::operatingModeNames_ +({ + { operatingMode::VELOCITY, "velocity" }, + { operatingMode::UNIFORM_VELOCITY, "uniformVelocity" }, + { operatingMode::VOL_FLOW_RATE, "volumeFlowRate" }, + { operatingMode::NON_DIMENSIONAL, "nonDimensional" }, +}); + + // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // template<class Type> @@ -50,10 +63,9 @@ Foam::fanFvPatchField<Type>::fanFvPatchField ) : uniformJumpFvPatchField<Type>(p, iF), + operatingMode_(operatingMode::VELOCITY), phiName_("phi"), rhoName_("rho"), - uniformJump_(false), - nonDimensional_(false), rpm_(nullptr), dm_(nullptr) {} @@ -68,15 +80,36 @@ Foam::fanFvPatchField<Type>::fanFvPatchField ) : uniformJumpFvPatchField<Type>(p, iF, dict, false), // needValue = false + operatingMode_ + ( + operatingModeNames_.getOrDefault("mode", dict, operatingMode::VELOCITY) + ), phiName_(dict.getOrDefault<word>("phi", "phi")), rhoName_(dict.getOrDefault<word>("rho", "rho")), - uniformJump_(dict.getOrDefault("uniformJump", false)), - nonDimensional_(dict.getOrDefault("nonDimensional", false)), rpm_(nullptr), dm_(nullptr) { + // Backwards compatibility + if (operatingMode_ == operatingMode::VELOCITY) + { + bool nonDimCompat = dict.getOrDefault("nonDimensional", false); + if (nonDimCompat) + { + // Warn? + operatingMode_ = operatingMode::NON_DIMENSIONAL; + } + + bool uniformCompat = dict.getOrDefault("uniformJump", false); + if (uniformCompat) + { + // Warn? + operatingMode_ = operatingMode::UNIFORM_VELOCITY; + } + } + + // Note that we've not read jumpTable_ etc - if (nonDimensional_) + if (operatingMode_ == operatingMode::NON_DIMENSIONAL) { rpm_.reset(Function1<scalar>::New("rpm", dict, &this->db())); dm_.reset(Function1<scalar>::New("dm", dict, &this->db())); @@ -104,10 +137,9 @@ Foam::fanFvPatchField<Type>::fanFvPatchField ) : uniformJumpFvPatchField<Type>(rhs, p, iF, mapper), + operatingMode_(rhs.operatingMode_), phiName_(rhs.phiName_), rhoName_(rhs.rhoName_), - uniformJump_(rhs.uniformJump_), - nonDimensional_(rhs.nonDimensional_), rpm_(rhs.rpm_.clone()), dm_(rhs.dm_.clone()) {} @@ -120,10 +152,9 @@ Foam::fanFvPatchField<Type>::fanFvPatchField ) : uniformJumpFvPatchField<Type>(rhs), + operatingMode_(rhs.operatingMode_), phiName_(rhs.phiName_), rhoName_(rhs.rhoName_), - uniformJump_(rhs.uniformJump_), - nonDimensional_(rhs.nonDimensional_), rpm_(rhs.rpm_.clone()), dm_(rhs.dm_.clone()) {} @@ -137,10 +168,9 @@ Foam::fanFvPatchField<Type>::fanFvPatchField ) : uniformJumpFvPatchField<Type>(rhs, iF), + operatingMode_(rhs.operatingMode_), phiName_(rhs.phiName_), rhoName_(rhs.rhoName_), - uniformJump_(rhs.uniformJump_), - nonDimensional_(rhs.nonDimensional_), rpm_(rhs.rpm_.clone()), dm_(rhs.dm_.clone()) {} @@ -170,14 +200,10 @@ void Foam::fanFvPatchField<Type>::write(Ostream& os) const os.writeEntryIfDifferent<word>("phi", "phi", phiName_); os.writeEntryIfDifferent<word>("rho", "rho", rhoName_); - if (uniformJump_) - { - os.writeEntry("uniformJump", "true"); - } + os.writeEntry("mode", operatingModeNames_[operatingMode_]); - if (nonDimensional_) + if (operatingMode_ == operatingMode::NON_DIMENSIONAL) { - os.writeEntry("nonDimensional", "true"); rpm_->writeData(os); dm_->writeData(os); } diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H index 4a0fb21631e316e001b403ea4de5063aa394c20a..fb37abc4af5f2fe05c15fb118275921d31cf4485 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2017-2019 OpenCFD Ltd. + Copyright (C) 2017-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -37,14 +37,21 @@ Description The jump is specified as a \c Function1 type, to enable the use of, e.g. constant, polynomial, table values. - The switch nonDimensional can be used for a non-dimensional table, - in combination with uniformJump = true. + The basis of the table is specified according to the \c mode: + + - velocity: deltap = F(velocity per face) \[DEFAULT\] + - uniformVelocity: deltap = F(patch area-averaged velocity) + - volumeFlowRate: deltap = F(patch volume flow rate) + - nonDimensional: non-dim deltap = F(non-dim volume flow rate) + + Non-dimensional operation: + As inputs it needs the fan RPM (rpm) and the mean diameter (dm). The non-dimensional U for the table is calculated as follows: \verbatim - phi = 120*Un/(PI^3*dm*rpm) + phi = 120*Un/(PI^3*dm^3*rpm) where: dm is the mean diameter. rpm is the RPM of the fan. @@ -64,11 +71,10 @@ Usage \table Property | Description | Required | Default patchType | underlying patch type should be \c cyclic | yes | + mode | jump table operating mode (see above) | no | velocity jumpTable | jump data, e.g. \c csvFile | yes | phi | flux field name | no | phi rho | density field name | no | rho - uniformJump | apply uniform pressure based on avg velocity | no | false - nonDimensional | use non-dimensional table | no | false rpm | fan rpm (non-dimensional table) | no | dm | mean diameter (non-dimensional table) | no | \endtable @@ -80,6 +86,7 @@ Usage type fan; patchType cyclic; jumpTable csvFile; + mode velocity; jumpTableCoeffs { @@ -107,15 +114,15 @@ SourceFiles fanFvPatchField.C fanFvPatchFields.H fanFvPatchFields.C - fanFvPatchFieldsFwd.H \*---------------------------------------------------------------------------*/ -#ifndef fanFvPatchField_H -#define fanFvPatchField_H +#ifndef foam_fanFvPatchField_H +#define foam_fanFvPatchField_H #include "uniformJumpFvPatchField.H" #include "Function1.H" +#include "Enum.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -131,20 +138,36 @@ class fanFvPatchField : public uniformJumpFvPatchField<Type> { +public: + + // Public Data Types + + //- Enumeration defining the operating modes + enum class operatingMode + { + VELOCITY, //!< velocity-based lookup + UNIFORM_VELOCITY, //!< uniform velocity-based lookup + VOL_FLOW_RATE, //!< volume-flow-rate-based lookup + NON_DIMENSIONAL //!< non-dimensional-based lookup + }; + + //- Names for the operating modes + static const Enum<operatingMode> operatingModeNames_; + + +private: + // Private Data + //- Operating mode + operatingMode operatingMode_; + //- Name of the flux transporting the field word phiName_; //- Name of the density field for normalising the mass flux if necessary word rhoName_; - //- Apply uniform pressure drop - bool uniformJump_; - - //- Use non-dimensional curve - bool nonDimensional_; - //- Fan rpm (for non-dimensional curve) autoPtr<Function1<scalar>> rpm_; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C index e3e0b3a4817afb46047d0015b7fc6b075c5773be..2bb5c4b2ba6a98f55d6313503040d489b621e8b1 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation - Copyright (C) 2017-2021 OpenCFD Ltd. + Copyright (C) 2017-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -44,69 +44,120 @@ namespace Foam template<> void Foam::fanFvPatchField<Foam::scalar>::calcFanJump() { - if (this->cyclicPatch().owner()) + if (!this->cyclicPatch().owner()) { - const auto& phip = - patch().lookupPatchField<surfaceScalarField>(phiName_); + return; + } + + const auto& phip = patch().lookupPatchField<surfaceScalarField>(phiName_); + + scalarField volFlowRate(max(phip, scalar(0))); - scalarField Un(max(phip/patch().magSf(), scalar(0))); + if (phip.internalField().dimensions() == dimVolume/dimTime) + { + // No conversion of volFlowRate required + } + else if (phip.internalField().dimensions() == dimMass/dimTime) + { + const auto& rhop = patch().lookupPatchField<volScalarField>(rhoName_); + volFlowRate /= rhop; + } + else + { + FatalErrorInFunction + << "dimensions of phi are not correct\n" + << " on patch " << patch().name() + << " of field " << internalField().name() + << " in file " << internalField().objectPath() << nl + << exit(FatalError); + } - // The non-dimensional parameters - scalar rpm(0); - scalar meanDiam(0); + // The non-dimensional parameters + scalar rpm(0); + scalar meanDiam(0); - if (nonDimensional_) + scalarField pdFan(patch().size(), Zero); + + switch (operatingMode_) + { + case operatingMode::VELOCITY: { - rpm = rpm_->value(this->db().time().timeOutputValue()); - meanDiam = dm_->value(this->db().time().timeOutputValue()); - } + // Note: volFlowRate now becomes face normal velocity + volFlowRate /= patch().magSf(); + + // Per-face values + pdFan = this->jumpTable_->value(volFlowRate); - if (uniformJump_) + break; + } + case operatingMode::UNIFORM_VELOCITY: { + // Note: volFlowRate now becomes face normal velocity + volFlowRate /= patch().magSf(); + + // Set face values to patch area-averaged value const scalar area = gSum(patch().magSf()); - Un = gSum(Un*patch().magSf())/area; + const scalar UnAve = gSum(volFlowRate*patch().magSf())/area; - if (nonDimensional_) - { - // Create an non-dimensional velocity - Un = - ( - 120.0*Un - / stabilise - ( - pow3(constant::mathematical::pi) * meanDiam * rpm, - VSMALL - ) - ); - } - } + // Assign uniform value + pdFan = this->jumpTable_->value(UnAve); - if (phip.internalField().dimensions() == dimMass/dimTime) - { - Un /= patch().lookupPatchField<volScalarField>(rhoName_); + break; } + case operatingMode::VOL_FLOW_RATE: + { + // Face-based volFlowRate converted to patch-based volFlowRate + // for pd curve lookup + const scalar sumVolFlowRate = gSum(volFlowRate); - if (nonDimensional_) + // Assign uniform value + pdFan = this->jumpTable_->value(sumVolFlowRate); + + break; + } + case operatingMode::NON_DIMENSIONAL: { - scalarField deltap(this->jumpTable_->value(Un)); + // Face-based volFlowRate converted to patch-based volFlowRate + // for pd curve lookup + scalar sumVolFlowRate = gSum(volFlowRate); + + rpm = rpm_->value(this->db().time().timeOutputValue()); + meanDiam = dm_->value(this->db().time().timeOutputValue()); - // Convert non-dimensional deltap from curve into deltaP - scalarField pdFan + // Create a non-dimensional flow rate + sumVolFlowRate *= ( - deltap*pow4(constant::mathematical::pi) - * sqr(meanDiam*rpm)/1800.0 + 120.0 + /stabilise + ( + pow3(constant::mathematical::pi*meanDiam)*rpm, + VSMALL + ) ); - this->setJump(pdFan); + const scalar pdNonDim = this->jumpTable_->value(sumVolFlowRate); + + // Convert uniform non-dimensional pdFan from curve into deltaP + pdFan = + pdNonDim + *pow4(constant::mathematical::pi)*sqr(meanDiam*rpm)/1800.0; + + break; } - else + default: { - this->setJump(jumpTable_->value(Un)); + FatalErrorInFunction + << "Unhandled enumeration " + << operatingModeNames_[operatingMode_] + << abort(FatalError); } - - this->relax(); } + + + this->setJump(pdFan); + + this->relax(); } diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.H b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.H index f7b17cb367dae4a3ebf54a4356e522b70e7e3616..c84d5a9536a8c1989deb798dafd63f3b640ae2d7 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.H @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2011 OpenFOAM Foundation + Copyright (C) 2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -25,8 +25,8 @@ License \*---------------------------------------------------------------------------*/ -#ifndef fanFvPatchFields_H -#define fanFvPatchFields_H +#ifndef foam_fanFvPatchFields_H +#define foam_fanFvPatchFields_H #include "fanFvPatchField.H" #include "fieldTypes.H" diff --git a/src/finiteVolume/fields/fvPatchFields/derived/plenumPressure/plenumPressureFvPatchScalarField.C b/src/finiteVolume/fields/fvPatchFields/derived/plenumPressure/plenumPressureFvPatchScalarField.C index 364e24d3aaf3609b2b2993fe88165d2180556b1e..4b5dc3559f0503d0adf8efcf40f13cfcc1ddb47f 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/plenumPressure/plenumPressureFvPatchScalarField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/plenumPressure/plenumPressureFvPatchScalarField.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2016-2017 OpenFOAM Foundation - Copyright (C) 2020 OpenCFD Ltd. + Copyright (C) 2020,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -75,12 +75,15 @@ Foam::plenumPressureFvPatchScalarField::plenumPressureFvPatchScalarField supplyTotalTemperature_(dict.get<scalar>("supplyTotalTemperature")), plenumVolume_(dict.get<scalar>("plenumVolume")), plenumDensity_(dict.get<scalar>("plenumDensity")), + plenumDensityOld_(1.0), plenumTemperature_(dict.get<scalar>("plenumTemperature")), + plenumTemperatureOld_(300.0), rho_(1.0), hasRho_(false), inletAreaRatio_(dict.get<scalar>("inletAreaRatio")), inletDischargeCoefficient_(dict.get<scalar>("inletDischargeCoefficient")), timeScale_(dict.getOrDefault<scalar>("timeScale", 0)), + timeIndex_(-1), phiName_(dict.getOrDefault<word>("phi", "phi")), UName_(dict.getOrDefault<word>("U", "U")) { @@ -103,12 +106,15 @@ Foam::plenumPressureFvPatchScalarField::plenumPressureFvPatchScalarField supplyTotalTemperature_(ptf.supplyTotalTemperature_), plenumVolume_(ptf.plenumVolume_), plenumDensity_(ptf.plenumDensity_), + plenumDensityOld_(ptf.plenumDensityOld_), plenumTemperature_(ptf.plenumTemperature_), + plenumTemperatureOld_(ptf.plenumTemperatureOld_), rho_(ptf.rho_), hasRho_(ptf.hasRho_), inletAreaRatio_(ptf.inletAreaRatio_), inletDischargeCoefficient_(ptf.inletDischargeCoefficient_), timeScale_(ptf.timeScale_), + timeIndex_(ptf.timeIndex_), phiName_(ptf.phiName_), UName_(ptf.UName_) {} @@ -126,12 +132,15 @@ Foam::plenumPressureFvPatchScalarField::plenumPressureFvPatchScalarField supplyTotalTemperature_(tppsf.supplyTotalTemperature_), plenumVolume_(tppsf.plenumVolume_), plenumDensity_(tppsf.plenumDensity_), + plenumDensityOld_(tppsf.plenumDensityOld_), plenumTemperature_(tppsf.plenumTemperature_), + plenumTemperatureOld_(tppsf.plenumTemperatureOld_), rho_(tppsf.rho_), hasRho_(tppsf.hasRho_), inletAreaRatio_(tppsf.inletAreaRatio_), inletDischargeCoefficient_(tppsf.inletDischargeCoefficient_), timeScale_(tppsf.timeScale_), + timeIndex_(tppsf.timeIndex_), phiName_(tppsf.phiName_), UName_(tppsf.UName_) {} @@ -150,12 +159,15 @@ Foam::plenumPressureFvPatchScalarField::plenumPressureFvPatchScalarField supplyTotalTemperature_(tppsf.supplyTotalTemperature_), plenumVolume_(tppsf.plenumVolume_), plenumDensity_(tppsf.plenumDensity_), + plenumDensityOld_(tppsf.plenumDensityOld_), plenumTemperature_(tppsf.plenumTemperature_), + plenumTemperatureOld_(tppsf.plenumTemperatureOld_), rho_(tppsf.rho_), hasRho_(tppsf.hasRho_), inletAreaRatio_(tppsf.inletAreaRatio_), inletDischargeCoefficient_(tppsf.inletDischargeCoefficient_), timeScale_(tppsf.timeScale_), + timeIndex_(tppsf.timeIndex_), phiName_(tppsf.phiName_), UName_(tppsf.UName_) {} diff --git a/src/finiteVolume/fields/fvPatchFields/derived/scaledFixedValue/scaledFixedValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/scaledFixedValue/scaledFixedValueFvPatchField.H index bc8898d43d794d74b9ce7da1706816f56816c581..fb5c4a9c50831315fdd8418e7f5753cdd8a62f47 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/scaledFixedValue/scaledFixedValueFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/scaledFixedValue/scaledFixedValueFvPatchField.H @@ -37,7 +37,7 @@ Usage \table Property | Description | Required | Default value scale | Time varying scale | yes | - patch | patchField providing the raw patch value | yes | + refValue | patchField providing the raw patch value | yes | \endtable Example of the boundary condition specification to scale a reference diff --git a/src/finiteVolume/finiteVolume/fvc/fvcCellReduce.C b/src/finiteVolume/finiteVolume/fvc/fvcCellReduce.C index 73488db5a097d0daa06bd8c03fbfdf0db11be40d..ce6f13b961c6127d3253e7809be8924212c0ed6e 100644 --- a/src/finiteVolume/finiteVolume/fvc/fvcCellReduce.C +++ b/src/finiteVolume/finiteVolume/fvc/fvcCellReduce.C @@ -6,6 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2013-2016 OpenFOAM Foundation + Copyright (C) 2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -71,15 +72,27 @@ Foam::fvc::cellReduce forAll(own, i) { - label celli = own[i]; + const label celli = own[i]; cop(result[celli], ssf[i]); } forAll(nbr, i) { - label celli = nbr[i]; + const label celli = nbr[i]; cop(result[celli], ssf[i]); } + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pssf = ssf.boundaryField()[patchi]; + + forAll(pssf, i) + { + const label celli = pFaceCells[i]; + cop(result[celli], pssf[i]); + } + } + result.correctBoundaryConditions(); return tresult; diff --git a/src/finiteVolume/fvMatrices/fvMatrix/fvMatrix.C b/src/finiteVolume/fvMatrices/fvMatrix/fvMatrix.C index 254436784f3e1c4e492f68a249b335a9b81dc0f1..b00996c073b893db4379eb568814deef4d45fbe0 100644 --- a/src/finiteVolume/fvMatrices/fvMatrix/fvMatrix.C +++ b/src/finiteVolume/fvMatrices/fvMatrix/fvMatrix.C @@ -258,7 +258,9 @@ void Foam::fvMatrix<Type>::setValuesFromList for (const label facei : cells[celli]) { - if (mesh.isInternalFace(facei)) + const label patchi = mesh.boundaryMesh().patchID(facei); + + if (patchi == -1) { if (symmetric()) { @@ -290,8 +292,6 @@ void Foam::fvMatrix<Type>::setValuesFromList } else { - const label patchi = mesh.boundaryMesh().whichPatch(facei); - if (internalCoeffs_[patchi].size()) { const label patchFacei = diff --git a/src/finiteVolume/fvMatrices/solvers/GAMGSymSolver/GAMGAgglomerations/faceAreaPairGAMGAgglomeration/faceAreaPairGAMGAgglomeration.C b/src/finiteVolume/fvMatrices/solvers/GAMGSymSolver/GAMGAgglomerations/faceAreaPairGAMGAgglomeration/faceAreaPairGAMGAgglomeration.C index 1254794ee717a6202f17d292f66666355523d9ec..e0e50e9fdd413bdf3b21bdefb49741f03c63165d 100644 --- a/src/finiteVolume/fvMatrices/solvers/GAMGSymSolver/GAMGAgglomerations/faceAreaPairGAMGAgglomeration/faceAreaPairGAMGAgglomeration.C +++ b/src/finiteVolume/fvMatrices/solvers/GAMGSymSolver/GAMGAgglomerations/faceAreaPairGAMGAgglomeration/faceAreaPairGAMGAgglomeration.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2023 OpenCFD Ltd. + Copyright (C) 2023-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -30,6 +30,9 @@ License #include "fvMesh.H" #include "surfaceFields.H" #include "addToRunTimeSelectionTable.H" +#include "cyclicAMIGAMGInterface.H" +#include "cyclicACMIGAMGInterface.H" +//#include "processorGAMGInterface.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // @@ -65,23 +68,47 @@ Foam::faceAreaPairGAMGAgglomeration::faceAreaPairGAMGAgglomeration { const fvMesh& fvmesh = refCast<const fvMesh>(mesh); - //agglomerate(mesh, sqrt(fvmesh.magSf().primitiveField())); - agglomerate - ( - nCellsInCoarsestLevel_, - 0, //mesh, - mag + if (pairGAMGAgglomeration::requiresUpdate()) + { + // This is the <=2406 logic. Apply perturbation to avoid jagged + // agglomerations on axis-aligned meshes + + DebugPoutInFunction<< "Agglomerate with perturbation" << endl; + + //agglomerate(mesh, sqrt(fvmesh.magSf().primitiveField())); + agglomerate ( - cmptMultiply + nCellsInCoarsestLevel_, + 0, //mesh, + mag ( - fvmesh.Sf().primitiveField() - /sqrt(fvmesh.magSf().primitiveField()), - vector(1, 1.01, 1.02) - //vector::one - ) - ), - true - ); + cmptMultiply + ( + fvmesh.Sf().primitiveField() + /sqrt(fvmesh.magSf().primitiveField()), + vector(1, 1.01, 1.02) + //vector::one + ) + ), + true + ); + } + else + { + // In partial updating mode. Use Galilean invariant agglomeration + // to e.g. have constant agglomeration for solid body rotation. Also + // scale with face area to be consistent with (most) discretisation. + + DebugPoutInFunction<< "Agglomerate with faceArea magnitude" << endl; + + agglomerate + ( + nCellsInCoarsestLevel_, + 0, //mesh, + mag(fvmesh.magSf().primitiveField()), + true + ); + } } @@ -95,23 +122,247 @@ Foam::faceAreaPairGAMGAgglomeration::faceAreaPairGAMGAgglomeration : pairGAMGAgglomeration(mesh, controlDict) { - //agglomerate(mesh, sqrt(mag(faceAreas))); - agglomerate - ( - nCellsInCoarsestLevel_, - 0, //mesh, - mag + if (pairGAMGAgglomeration::requiresUpdate()) + { + // This is the <=2406 logic. Apply perturbation to avoid jagged + // agglomerations on axis-aligned meshes + + DebugPoutInFunction<< "Agglomerate with perturbation" << endl; + + //agglomerate(mesh, sqrt(mag(faceAreas))); + agglomerate ( - cmptMultiply + nCellsInCoarsestLevel_, + 0, //mesh, + mag ( - faceAreas - /sqrt(mag(faceAreas)), - vector(1, 1.01, 1.02) - //vector::one + cmptMultiply + ( + faceAreas + /sqrt(mag(faceAreas)), + vector(1, 1.01, 1.02) + //vector::one + ) + ), + true + ); + } + else + { + // In partial updating mode. Use Galilean invariant agglomeration + // to e.g. have constant agglomeration for solid body rotation. Also + // scale with face area to be consistent with (most) discretisation. + + DebugPoutInFunction<< "Agglomerate with faceArea magnitude" << endl; + + agglomerate + ( + nCellsInCoarsestLevel_, + 0, //mesh, + mag(faceAreas), + true + ); + } +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +bool Foam::faceAreaPairGAMGAgglomeration::movePoints() +{ + const bool ok = pairGAMGAgglomeration::movePoints(); + + if (!requireUpdate_) + { + // movePoints lower down did not trigger update. Update in case of + // cyclicAMI since contains addressing across patches and patches + // have moved. + + bool hasCyclicAMI = false; + if (!processorAgglomerate()) + { + const auto& fineInterfaces = interfaceLevel(0); + forAll(fineInterfaces, inti) + { + if (fineInterfaces.set(inti)) + { + const auto& intf = fineInterfaces[inti]; + if + ( + isA<cyclicAMILduInterface>(intf) + || isA<cyclicACMILduInterface>(intf) + ) + { + hasCyclicAMI = true; + + DebugPoutInFunction + << "Detected cyclicA(C)MI at interface " << inti + << ".Redoing patch agglomeration" << endl; + + break; + } + } + } + } + + + if (hasCyclicAMI) + { + // Redo the interface agglomeration + for + ( + label fineLevelIndex = 0; + fineLevelIndex < size(); + fineLevelIndex++ ) - ), - true - ); + { + // Near complete copy of boundary handling in + // GAMGAgglomeration::agglomerateLduAddressing + + const auto& fineMesh = meshLevel(fineLevelIndex); + const auto& fineInterfaces = interfaceLevel(fineLevelIndex); + const lduAddressing& fineMeshAddr = fineMesh.lduAddr(); + + // Get restriction map for current level + const labelField& restrictMap = + restrictAddressing(fineLevelIndex); + + const label startOfRequests = UPstream::nRequests(); + forAll(fineInterfaces, inti) + { + if (fineInterfaces.set(inti)) + { + const auto& intf = fineInterfaces[inti]; + + if + ( + isA<cyclicAMILduInterface>(intf) + || isA<cyclicACMILduInterface>(intf) + ) + { + if (fineLevelIndex == 0) + { + intf.initInternalFieldTransfer + ( + Pstream::commsTypes::nonBlocking, + restrictMap, + fineMeshAddr.patchAddr(inti) + ); + } + else + { + intf.initInternalFieldTransfer + ( + Pstream::commsTypes::nonBlocking, + restrictMap + ); + } + } + } + } + + // Wait for comms to finised + UPstream::waitRequests(startOfRequests); + + // New coarse-level interfaces + //lduInterfacePtrsList coarseInterfaces(fineInterfaces.size()); + + forAll(fineInterfaces, inti) + { + if (fineInterfaces.set(inti)) + { + const auto& intf = fineInterfaces[inti]; + + if + ( + isA<cyclicAMILduInterface>(intf) + || isA<cyclicACMILduInterface>(intf) + ) + { + tmp<labelField> restrictMapInternalField; + + // The finest mesh uses patchAddr from the + // original lduAdressing. + // the coarser levels create thei own adressing for + // faceCells + if (fineLevelIndex == 0) + { + restrictMapInternalField = + intf.interfaceInternalField + ( + restrictMap, + fineMeshAddr.patchAddr(inti) + ); + } + else + { + restrictMapInternalField = + intf.interfaceInternalField + ( + restrictMap + ); + } + + tmp<labelField> nbrRestrictMapInternalField = + intf.internalFieldTransfer + ( + Pstream::commsTypes::nonBlocking, + restrictMap + ); + + lduPrimitiveMesh& coarseMesh = + meshLevels_[fineLevelIndex]; + + autoPtr<GAMGInterface> coarseIntf + ( + GAMGInterface::New + ( + inti, + coarseMesh.rawInterfaces(), + intf, + restrictMapInternalField(), + nbrRestrictMapInternalField(), + fineLevelIndex, + fineMesh.comm() + ) + ); + + //coarseInterfaces.set(inti, coarseIntf.ptr()); + coarseMesh.interfaces().set + ( + inti, + coarseIntf.ptr() + ); + coarseMesh.primitiveInterfaces().set + ( + inti, + &coarseMesh.interfaces()[inti] + ); + } + } + } + + //meshLevels_[fineLevelIndex].addInterfaces + //( + // coarseInterfaces, + // lduPrimitiveMesh::nonBlockingSchedule + // < + // processorGAMGInterface + // > + // ( + // coarseInterfaces + // ) + //); + } + } + + if (debug) + { + printLevels(); + } + } + + return ok; } diff --git a/src/finiteVolume/fvMatrices/solvers/GAMGSymSolver/GAMGAgglomerations/faceAreaPairGAMGAgglomeration/faceAreaPairGAMGAgglomeration.H b/src/finiteVolume/fvMatrices/solvers/GAMGSymSolver/GAMGAgglomerations/faceAreaPairGAMGAgglomeration/faceAreaPairGAMGAgglomeration.H index 6854459fc1e78dcb4107982c69c2c5ec363e0124..5446e09256308fc2063cf526bd3aef175d6dfc73 100644 --- a/src/finiteVolume/fvMatrices/solvers/GAMGSymSolver/GAMGAgglomerations/faceAreaPairGAMGAgglomeration/faceAreaPairGAMGAgglomeration.H +++ b/src/finiteVolume/fvMatrices/solvers/GAMGSymSolver/GAMGAgglomerations/faceAreaPairGAMGAgglomeration/faceAreaPairGAMGAgglomeration.H @@ -76,6 +76,12 @@ public: const vectorField& faceAreas, const dictionary& controlDict ); + + + // Member Functions + + //- Update when the mesh moves + virtual bool movePoints(); }; diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/averageNeighbour/averageNeighbourFvGeometryScheme.H b/src/finiteVolume/fvMesh/fvGeometryScheme/averageNeighbour/averageNeighbourFvGeometryScheme.H index 578179630104007992b325e068f67cdbe1a311b1..4ddf71443741c2093abc136a8d1d474800f95397 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/averageNeighbour/averageNeighbourFvGeometryScheme.H +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/averageNeighbour/averageNeighbourFvGeometryScheme.H @@ -164,6 +164,23 @@ public: //- Do what is necessary if the mesh has moved virtual void movePoints(); + + //- Calculate geometry quantities using mesh topology and provided + //- points. If oldPoints provided only does local update. Returns + //- true if anything changed, false otherwise + virtual bool updateGeom + ( + const pointField& points, + const refPtr<pointField>& oldPoints, // optional old points + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes + ) const + { + NotImplemented; + return true; + } }; diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/basic/basicFvGeometryScheme.C b/src/finiteVolume/fvMesh/fvGeometryScheme/basic/basicFvGeometryScheme.C index 867b38a28712d2b1ba2061d168f9bd19d7865748..0a037d445ddf25e880fb9faa480b9739d3ba2b90 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/basic/basicFvGeometryScheme.C +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/basic/basicFvGeometryScheme.C @@ -29,6 +29,7 @@ License #include "addToRunTimeSelectionTable.H" #include "surfaceFields.H" #include "volFields.H" +#include "primitiveMeshTools.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // @@ -390,4 +391,36 @@ Foam::basicFvGeometryScheme::nonOrthCorrectionVectors() const } +bool Foam::basicFvGeometryScheme::updateGeom +( + const pointField& points, + const refPtr<pointField>& oldPoints, + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes +) const +{ + primitiveMeshTools::makeFaceCentresAndAreas + ( + mesh_, + points, + faceCentres, + faceAreas + ); + + primitiveMeshTools::makeCellCentresAndVols + ( + mesh_, + faceCentres, + faceAreas, + cellCentres, + cellVolumes + ); + + // Assume something has changed + return true; +} + + // ************************************************************************* // diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/basic/basicFvGeometryScheme.H b/src/finiteVolume/fvMesh/fvGeometryScheme/basic/basicFvGeometryScheme.H index b69d43e834eeae9d982262b13563cfabc82475a6..a59b9b0a177f35550079f3404338742d3b70355f 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/basic/basicFvGeometryScheme.H +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/basic/basicFvGeometryScheme.H @@ -93,6 +93,19 @@ public: //- Return non-orthogonality correction vectors virtual tmp<surfaceVectorField> nonOrthCorrectionVectors() const; + + //- Calculate geometry quantities using mesh topology and provided + //- points. If oldPoints provided only does local update. Returns + //- true if anything changed, false otherwise + virtual bool updateGeom + ( + const pointField& points, + const refPtr<pointField>& oldPoints, // optional old points + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes + ) const; }; diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/fvGeometryScheme/fvGeometryScheme.H b/src/finiteVolume/fvMesh/fvGeometryScheme/fvGeometryScheme/fvGeometryScheme.H index 2dd14d27a282ec2685fafd4ece0db9178357b79f..20552e83ed8229d35707c32f484deb3a0b410c5b 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/fvGeometryScheme/fvGeometryScheme.H +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/fvGeometryScheme/fvGeometryScheme.H @@ -160,6 +160,19 @@ public: // const labelHashSet& patchIDs, // const word& defaultPatchDistMethod //) const = 0; + + //- Calculate geometry quantities using mesh topology and provided + //- points. If oldPoints provided only does local update. Returns + //- true if anything changed, false otherwise + virtual bool updateGeom + ( + const pointField& points, + const refPtr<pointField>& oldPoints, // optional old points + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes + ) const = 0; }; diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/highAspectRatio/highAspectRatioFvGeometryScheme.C b/src/finiteVolume/fvMesh/fvGeometryScheme/highAspectRatio/highAspectRatioFvGeometryScheme.C index 84c3eb064ae128bf4834af12018f9d51aba0931d..0f64298abc1fa40b31207b7e107f625bf160dbfc 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/highAspectRatio/highAspectRatioFvGeometryScheme.C +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/highAspectRatio/highAspectRatioFvGeometryScheme.C @@ -456,4 +456,46 @@ void Foam::highAspectRatioFvGeometryScheme::movePoints() } +bool Foam::highAspectRatioFvGeometryScheme::updateGeom +( + const pointField& points, + const refPtr<pointField>& oldPoints, + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes +) const +{ + // Basic + basicFvGeometryScheme::updateGeom + ( + points, + oldPoints, + faceCentres, + faceAreas, + cellCentres, + cellVolumes + ); + + // Average opposite faces + pointField avgFaceCentres; + pointField avgCellCentres; + makeAverageCentres + ( + mesh_, + points, + faceAreas, + mag(faceAreas), + avgFaceCentres, + avgCellCentres + ); + + faceCentres = std::move(avgFaceCentres); + cellCentres = std::move(avgCellCentres); + + // Assume something has changed. + return true; +} + + // ************************************************************************* // diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/highAspectRatio/highAspectRatioFvGeometryScheme.H b/src/finiteVolume/fvMesh/fvGeometryScheme/highAspectRatio/highAspectRatioFvGeometryScheme.H index 1ed2164b4f01cb3c5a7a9090694928847a885e8c..5965b81ca56c98af084ff7f0433ae1dcb97cab00 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/highAspectRatio/highAspectRatioFvGeometryScheme.H +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/highAspectRatio/highAspectRatioFvGeometryScheme.H @@ -123,6 +123,19 @@ public: //- Do what is necessary if the mesh has moved virtual void movePoints(); + + //- Calculate geometry quantities using mesh topology and provided + //- points. If oldPoints provided only does local update. Returns + //- true if anything changed, false otherwise + virtual bool updateGeom + ( + const pointField& points, + const refPtr<pointField>& oldPoints, // optional old points + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes + ) const; }; diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/parallel/parallelFvGeometryScheme.C b/src/finiteVolume/fvMesh/fvGeometryScheme/parallel/parallelFvGeometryScheme.C index ce14fbaaf523f6afc3edeacd048db0fce4b1c292..debabcd87d73e0f9ac4c8fe07df642386aa29192 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/parallel/parallelFvGeometryScheme.C +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/parallel/parallelFvGeometryScheme.C @@ -47,6 +47,92 @@ namespace Foam // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // +void Foam::parallelFvGeometryScheme::adjustGeometry +( + pointField& faceCentres, + vectorField& faceAreas +) const +{ + pointField syncedBCentres; + syncedBCentres = SubField<vector> + ( + faceCentres, + mesh_.nBoundaryFaces(), + mesh_.nInternalFaces() + ); + syncTools::swapBoundaryFaceList + ( + mesh_, + syncedBCentres + ); + + vectorField syncedBAreas; + syncedBAreas = SubField<vector> + ( + faceAreas, + mesh_.nBoundaryFaces(), + mesh_.nInternalFaces() + ); + syncTools::syncBoundaryFaceList + ( + mesh_, + syncedBAreas, + eqOp<vector>(), + transformOriented() + ); + + const auto& pbm = mesh_.boundaryMesh(); + for (const auto& pp : pbm) + { + const auto* ppp = isA<coupledPolyPatch>(pp); + + //if (ppp) + //{ + // Pout<< "For patch:" << ppp->name() + // << " size:" << ppp->size() + // << endl; + // forAll(*ppp, i) + // { + // const label facei = ppp->start()+i; + // Pout<< " Face:" << facei << nl + // << " meshFc:" << faceCentres[facei] << nl + // << " meshFa:" << faceAreas[facei] << nl + // << endl; + // } + //} + + if (ppp && !ppp->owner()) + { + SubField<point> patchFc + ( + faceCentres, + ppp->size(), + ppp->start() + ); + patchFc = SubField<vector> + ( + syncedBCentres, + ppp->size(), + ppp->offset() + ); + + SubField<vector> patchArea + ( + faceAreas, + ppp->size(), + ppp->start() + ); + patchArea = SubField<vector> + ( + syncedBAreas, + ppp->size(), + ppp->offset() + ); + } + } +} + + void Foam::parallelFvGeometryScheme::adjustGeometry() { // Swap face centres and areas @@ -304,5 +390,38 @@ Foam::parallelFvGeometryScheme::nonOrthCorrectionVectors() const } +bool Foam::parallelFvGeometryScheme::updateGeom +( + const pointField& points, + const refPtr<pointField>& oldPoints, + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes +) const +{ + primitiveMeshTools::makeFaceCentresAndAreas + ( + mesh_, + points, + faceCentres, + cellCentres + ); + + // Parallel consistency + adjustGeometry(faceCentres, faceAreas); + + primitiveMeshTools::makeCellCentresAndVols + ( + mesh_, + faceCentres, + faceAreas, + cellCentres, + cellVolumes + ); + + return true; +} + // ************************************************************************* // diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/parallel/parallelFvGeometryScheme.H b/src/finiteVolume/fvMesh/fvGeometryScheme/parallel/parallelFvGeometryScheme.H index 9fa223f3c9c24a5ceb276747f98d08a7cb6a6995..f85c05d6a01b20057cb3e5b1e6510d9cf123f453 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/parallel/parallelFvGeometryScheme.H +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/parallel/parallelFvGeometryScheme.H @@ -102,6 +102,13 @@ private: // Private Member Functions + //- Swap processor-face geometry + void adjustGeometry + ( + pointField& faceCentres, + vectorField& faceAreas + ) const; + //- Swap processor-face geometry void adjustGeometry(); @@ -181,6 +188,19 @@ public: //- Return non-orthogonality correction vectors virtual tmp<surfaceVectorField> nonOrthCorrectionVectors() const; + + //- Calculate geometry quantities using mesh topology and provided + //- points. If oldPoints provided only does local update. Returns + //- true if anything changed, false otherwise + virtual bool updateGeom + ( + const pointField& points, + const refPtr<pointField>& oldPoints, // optional old points + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes + ) const; }; diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/solidBody/solidBodyFvGeometryScheme.C b/src/finiteVolume/fvMesh/fvGeometryScheme/solidBody/solidBodyFvGeometryScheme.C index 1898dbe506165d56db5c8b316a88c00238ce5a37..19cd197463c2a561214cd8f765488983065abe5c 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/solidBody/solidBodyFvGeometryScheme.C +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/solidBody/solidBodyFvGeometryScheme.C @@ -45,6 +45,68 @@ namespace Foam } +bool Foam::solidBodyFvGeometryScheme::markChanges +( + const pointField& oldPoints, + const pointField& currPoints, + bitSet& isChangedPoint, + bitSet& isChangedFace, + bitSet& isChangedCell +) const +{ + isChangedPoint.setSize(oldPoints.size()); + + // Check for non-identical points + forAll(isChangedPoint, pointi) + { + isChangedPoint.set(pointi, oldPoints[pointi] != currPoints[pointi]); + } + + DebugInfo + << "SBM --- Changed points:" + << returnReduce(isChangedPoint.count(), sumOp<label>()) + << endl; + + // Quick return if no points have moved + if (returnReduceAnd(isChangedPoint.none())) + { + return false; + } + + isChangedFace.setSize(mesh_.nFaces()); + isChangedFace = false; + + isChangedCell.setSize(mesh_.nCells()); + isChangedCell = false; + + const auto& pointFaces = mesh_.pointFaces(); + const auto& own = mesh_.faceOwner(); + const auto& nbr = mesh_.faceNeighbour(); + + // Identify faces and cells attached to moving points + for (const label pointi : isChangedPoint) + { + for (const auto facei : pointFaces[pointi]) + { + isChangedFace.set(facei); + + isChangedCell.set(own[facei]); + if (facei < mesh_.nInternalFaces()) + { + isChangedCell.set(nbr[facei]); + } + } + } + + DebugInfo + << "SBM --- Changed cells:" + << returnReduce(isChangedCell.count(), sumOp<label>()) + << endl; + + return true; +} + + void Foam::solidBodyFvGeometryScheme::setMeshMotionData() { if (!cacheInitialised_ || !cacheMotion_) @@ -67,64 +129,86 @@ void Foam::solidBodyFvGeometryScheme::setMeshMotionData() << abort(FatalError); } - bitSet changedPoints(oldPoints.size()); - - // Check for non-identical points - forAll(changedPoints, pointi) - { - changedPoints.set(pointi, oldPoints[pointi] != currPoints[pointi]); - } - - DebugInfo - << "SBM --- Changed points:" - << returnReduce(changedPoints.count(), sumOp<label>()) - << endl; + //bitSet changedPoints(oldPoints.size()); + // + //// Check for non-identical points + //forAll(changedPoints, pointi) + //{ + // changedPoints.set + // ( + // pointi, + // oldPoints[pointi] != currPoints[pointi] + // ); + //} + // + //DebugInfo + // << "SBM --- Changed points:" + // << returnReduce(changedPoints.count(), sumOp<label>()) + // << endl; + // + //// Quick return if no points have moved + //if (returnReduceAnd(changedPoints.none())) + //{ + // return; + //} + // + //bitSet cellIDs(mesh_.nCells()); + //bitSet faceIDs(mesh_.nFaces()); + // + //const auto& pointFaces = mesh_.pointFaces(); + //const auto& own = mesh_.faceOwner(); + //const auto& nbr = mesh_.faceNeighbour(); + // + //// Identify faces and cells attached to moving points + //for (const label pointi : changedPoints) + //{ + // for (const auto facei : pointFaces[pointi]) + // { + // faceIDs.set(facei); + // + // cellIDs.set(own[facei]); + // if (facei < mesh_.nInternalFaces()) + // { + // cellIDs.set(nbr[facei]); + // } + // } + //} + // + //changedCellIDs_ = cellIDs.toc(); + // + //DebugInfo + // << "SBM --- Changed cells:" + // << returnReduce(changedCellIDs_.size(), sumOp<label>()) + // << endl; + + bitSet isChangedPoint; + bitSet isChangedFace; + bitSet isChangedCell; + const bool changed = markChanges + ( + oldPoints, + currPoints, + isChangedPoint, + isChangedFace, + isChangedCell + ); // Quick return if no points have moved - if (returnReduceAnd(changedPoints.none())) + if (!changed) { return; } - bitSet cellIDs(mesh_.nCells()); - bitSet faceIDs(mesh_.nFaces()); - - const auto& pointFaces = mesh_.pointFaces(); - const auto& own = mesh_.faceOwner(); - const auto& nbr = mesh_.faceNeighbour(); - - // Identify faces and cells attached to moving points - for (const label pointi : changedPoints) - { - for (const auto facei : pointFaces[pointi]) - { - faceIDs.set(facei); - - cellIDs.set(own[facei]); - if (facei < mesh_.nInternalFaces()) - { - cellIDs.set(nbr[facei]); - } - } - } - - changedCellIDs_ = cellIDs.toc(); - - DebugInfo - << "SBM --- Changed cells:" - << returnReduce(changedCellIDs_.size(), sumOp<label>()) - << endl; + changedCellIDs_ = isChangedCell.toc(); // Construct face and patch ID info - const auto changedFaceFlag = faceIDs.values(); - - DynamicList<label> changedFaceIDs(faceIDs.count()); - DynamicList<label> changedPatchIDs(faceIDs.count()); + DynamicList<label> changedFaceIDs(isChangedFace.count()); + DynamicList<label> changedPatchIDs(changedFaceIDs.capacity()); for (label facei = 0; facei < mesh_.nInternalFaces(); ++facei) { - if (changedFaceFlag[facei]) + if (isChangedFace[facei]) { changedFaceIDs.append(facei); changedPatchIDs.append(-1); @@ -138,7 +222,7 @@ void Foam::solidBodyFvGeometryScheme::setMeshMotionData() for (const label meshFacei : pp.range()) { - if (changedFaceFlag[meshFacei]) + if (isChangedFace[meshFacei]) { changedFaceIDs.append(meshFacei); changedPatchIDs.append(patchi); @@ -343,4 +427,82 @@ void Foam::solidBodyFvGeometryScheme::updateMesh(const mapPolyMesh& mpm) } +bool Foam::solidBodyFvGeometryScheme::updateGeom +( + const pointField& points, + const refPtr<pointField>& oldPoints, + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes +) const +{ + if + ( + (faceCentres.size() != mesh_.nFaces()) + || (faceAreas.size() != mesh_.nFaces()) + || (cellCentres.size() != mesh_.nCells()) + || (cellVolumes.size() != mesh_.nCells()) + || !oldPoints + ) + { + // Do all + return basicFvGeometryScheme::updateGeom + ( + points, + oldPoints, + faceCentres, + faceAreas, + cellCentres, + cellVolumes + ); + } + else + { + // Since oldPoints provided assume that face & cell geometry is + // up to date with it + + bitSet isChangedPoint; + bitSet isChangedFace; + bitSet isChangedCell; + const bool changed = markChanges + ( + oldPoints(), + points, + isChangedPoint, + isChangedFace, + isChangedCell + ); + + if (!changed) + { + return false; + } + + // Make face centres and areas consistent with new points + primitiveMeshTools::updateFaceCentresAndAreas + ( + mesh_, + isChangedFace.toc(), + points, + faceCentres, + faceAreas + ); + + primitiveMeshTools::updateCellCentresAndVols + ( + mesh_, + faceCentres, + faceAreas, + isChangedCell.toc(), + mesh_.cells(), + cellCentres, + cellVolumes + ); + + return true; + } +} + + // ************************************************************************* // diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/solidBody/solidBodyFvGeometryScheme.H b/src/finiteVolume/fvMesh/fvGeometryScheme/solidBody/solidBodyFvGeometryScheme.H index 755f21080bf40c8fc3d88ac8e22307165edb7953..d52bfde28e48d5b362cddfbe2e723cebb09209cb 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/solidBody/solidBodyFvGeometryScheme.H +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/solidBody/solidBodyFvGeometryScheme.H @@ -94,6 +94,16 @@ class solidBodyFvGeometryScheme // Private Member Functions + //- Detect what geometry has changed. Return true if anything has. + bool markChanges + ( + const pointField& oldPoints, + const pointField& currPoints, + bitSet& isChangedPoint, + bitSet& isChangedFace, + bitSet& isChangedCell + ) const; + //- Set the mesh motion data (point, face IDs) void setMeshMotionData(); @@ -127,6 +137,19 @@ public: //- Update mesh for topology changes virtual void updateMesh(const mapPolyMesh& mpm); + + //- Calculate geometry quantities using mesh topology and provided + //- points. If oldPoints provided only does local update. Returns + //- true if anything changed, false otherwise + virtual bool updateGeom + ( + const pointField& points, + const refPtr<pointField>& oldPoints, // optional old points + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes + ) const; }; diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/stabilised/stabilisedFvGeometryScheme.C b/src/finiteVolume/fvMesh/fvGeometryScheme/stabilised/stabilisedFvGeometryScheme.C index 90c3c4e00f320fefd6712645a42646cb3cfd1a39..186994a50d58c69c8db684b81b2696d81ca58424 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/stabilised/stabilisedFvGeometryScheme.C +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/stabilised/stabilisedFvGeometryScheme.C @@ -208,4 +208,35 @@ void Foam::stabilisedFvGeometryScheme::movePoints() } +bool Foam::stabilisedFvGeometryScheme::updateGeom +( + const pointField& points, + const refPtr<pointField>& oldPoints, + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes +) const +{ + makeFaceCentresAndAreas + ( + mesh_, + points, + faceCentres, + faceAreas + ); + + primitiveMeshTools::makeCellCentresAndVols + ( + mesh_, + faceCentres, + faceAreas, + cellCentres, + cellVolumes + ); + + return true; +} + + // ************************************************************************* // diff --git a/src/finiteVolume/fvMesh/fvGeometryScheme/stabilised/stabilisedFvGeometryScheme.H b/src/finiteVolume/fvMesh/fvGeometryScheme/stabilised/stabilisedFvGeometryScheme.H index c367ecf9b188cec160cece3f5cbcc5aa7ab84a7e..a137d334a9bcbe59790a65bc091869885fe38e57 100644 --- a/src/finiteVolume/fvMesh/fvGeometryScheme/stabilised/stabilisedFvGeometryScheme.H +++ b/src/finiteVolume/fvMesh/fvGeometryScheme/stabilised/stabilisedFvGeometryScheme.H @@ -112,6 +112,19 @@ public: //- Do what is necessary if the mesh has moved virtual void movePoints(); + + //- Calculate geometry quantities using mesh topology and provided + //- points. If oldPoints provided only does local update. Returns + //- true if anything changed, false otherwise + virtual bool updateGeom + ( + const pointField& points, + const refPtr<pointField>& oldPoints, // optional old points + pointField& faceCentres, + vectorField& faceAreas, + pointField& cellCentres, + scalarField& cellVolumes + ) const; }; diff --git a/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubset.C b/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubset.C index 2f10400289bc4aacfc5c0910c4de4b4dae6e65aa..839d102a171ffd708b3cd0dd51084d0494c50df8 100644 --- a/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubset.C +++ b/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubset.C @@ -32,10 +32,16 @@ License #include "cyclicPolyPatch.H" #include "emptyPolyPatch.H" #include "processorPolyPatch.H" +#include "meshPointPatch.H" +#include "processorPointPatch.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // -Foam::word Foam::fvMeshSubset::exposedPatchName("oldInternalFaces"); +namespace Foam +{ + word fvMeshSubset::exposedPatchName("oldInternalFaces"); + defineTypeNameAndDebug(fvMeshSubset, 0); +} // * * * * * * * * * * * * * * * Local Functions * * * * * * * * * * * * * * // @@ -522,6 +528,16 @@ void Foam::fvMeshSubset::reset void Foam::fvMeshSubset::reset(const Foam::zero) { + // Was old pointMesh present? + const auto* basePointMeshPtr = + baseMesh_.thisDb().cfindObject<pointMesh>(pointMesh::typeName); + if (basePointMeshPtr) + { + DebugPout<< "fvMeshSubset::reset(const Foam::zero) :" + << " Detected pointMesh" << endl; + } + + clear(); // Create zero-sized subMesh @@ -574,6 +590,46 @@ void Foam::fvMeshSubset::reset(const Foam::zero) } + // Clone old additional point patches + if (basePointMeshPtr) + { + DebugPout<< "Subsetting pointMesh" << endl; + const auto& basePointMesh = *basePointMeshPtr; + const auto& oldPointBoundary = basePointMesh.boundary(); + + // 1. Generate pointBoundaryMesh from polyBoundaryMesh (so ignoring + // any additional patches + const auto& newSubPointMesh = pointMesh::New(newSubMesh); + + auto& newBoundary = + const_cast<pointBoundaryMesh&>(newSubPointMesh.boundary()); + + // Start off from (poly)patch map + pointPatchMap_ = patchMap_; + + // 2. Explicitly add subsetted meshPointPatches + for (const auto& oldPointPatch : oldPointBoundary) + { + const auto* mppPtr = isA<meshPointPatch>(oldPointPatch); + if (mppPtr && (newBoundary.findPatchID(mppPtr->name()) == -1)) + { + newBoundary.push_back + ( + mppPtr->clone + ( + newBoundary, + newBoundary.size(), + labelList::null(), // map + labelList::null() // map + ) + ); + } + } + + // Extend patchMap with -1 + pointPatchMap_.setSize(newBoundary.size(), -1); + } + // Add the zones subsetZones(); } @@ -586,6 +642,16 @@ void Foam::fvMeshSubset::reset const bool syncPar ) { + // Was old pointMesh present? + const auto* basePointMeshPtr = + baseMesh_.thisDb().cfindObject<pointMesh>(pointMesh::typeName); + if (basePointMeshPtr) + { + DebugPout<< "fvMeshSubset::reset(const bitSet&) :" + << " Detected pointMesh" << endl; + } + + // Clear all old maps and pointers clear(); @@ -1126,6 +1192,8 @@ void Foam::fvMeshSubset::reset // Inserted patch + label newInternalPatchID = -1; + if (wantedPatchID == -1) { label oldInternalSize = boundaryPatchSizes[oldInternalPatchID]; @@ -1159,6 +1227,7 @@ void Foam::fvMeshSubset::reset // the internal faces patchStart += boundaryPatchSizes[oldInternalPatchID]; patchMap_[nNewPatches] = -1; + newInternalPatchID = nNewPatches; ++nNewPatches; } } @@ -1233,6 +1302,98 @@ void Foam::fvMeshSubset::reset // Subset and add any zones subsetZones(); + + + if (basePointMeshPtr) + { + DebugPout<< "Subsetting pointMesh" << endl; + const auto& basePointMesh = *basePointMeshPtr; + const auto& oldPointBoundary = basePointMesh.boundary(); + + // 1. Generate pointBoundaryMesh from polyBoundaryMesh (so ignoring + // any additional patches + const auto& newSubPointMesh = pointMesh::New(subMeshPtr_()); + + pointPatchMap_ = patchMap_; + + auto& newBoundary = + const_cast<pointBoundaryMesh&>(newSubPointMesh.boundary()); + + + // 2. Explicitly add subsetted meshPointPatches + labelList oldToNewPoints(baseMesh_.nPoints(), -1); + forAll(pointMap_, i) + { + oldToNewPoints[pointMap_[i]] = i; + } + + + // Add meshPointPatches + pointPatchMap_.setSize(newBoundary.size(), -1); + + for (const auto& oldPointPatch : oldPointBoundary) + { + const auto* mppPtr = isA<meshPointPatch>(oldPointPatch); + if (mppPtr && (newBoundary.findPatchID(mppPtr->name()) == -1)) + { + const auto& mp = mppPtr->meshPoints(); + DynamicList<label> subPointMap(mp.size()); + forAll(mp, i) + { + const label newPointi = oldToNewPoints[mp[i]]; + if (newPointi != -1) + { + subPointMap.append(i); + } + } + + pointPatchMap_.push_back(mppPtr->index()); + + newBoundary.push_back + ( + mppPtr->clone + ( + newBoundary, + newBoundary.size(), + subPointMap, // map + oldToNewPoints + ) + ); + } + } + + + // 3. rotate into place: + // - global patches (including meshPointPatches) + // - optional 'internalFaces' patch + // - processor patches + labelList oldToNew(newBoundary.size()); + label newPatchi = 0; + forAll(newBoundary, patchi) + { + if + ( + patchi != newInternalPatchID + && !isA<processorPointPatch>(newBoundary[patchi]) + ) + { + oldToNew[patchi] = newPatchi++; + } + } + if (newInternalPatchID != -1) + { + oldToNew[newInternalPatchID] = newPatchi++; + } + forAll(newBoundary, patchi) + { + if (isA<processorPointPatch>(newBoundary[patchi])) + { + oldToNew[patchi] = newPatchi++; + } + } + newBoundary.reorder(oldToNew, true); + inplaceReorder(oldToNew, pointPatchMap_); + } } diff --git a/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubset.H b/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubset.H index bedb48e44345d5c8809e14c33459c65e21dd9eb1..d4ce7781a0a7ad2dd2aedad2926ca783996f15b0 100644 --- a/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubset.H +++ b/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubset.H @@ -102,6 +102,9 @@ class fvMeshSubset //- Patch mapping array labelList patchMap_; + //- PointPatch mapping array + labelList pointPatchMap_; + // Private Member Functions @@ -135,6 +138,10 @@ protected: public: + // Declare name of the class and its debug switch + ClassName("fvMeshSubset"); + + // Static Data Members //- Name for exposed internal faces (default: oldInternalFaces) @@ -225,6 +232,10 @@ public: //- Return patch map inline const labelList& patchMap() const; + //- Return point-patch map. Usually identical to patchMap except if + //- additional patches are added to the pointMesh. + inline const labelList& pointPatchMap() const; + // Edit diff --git a/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubsetI.H b/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubsetI.H index c1bef91d564a504571a5cc351fa6a3e500cfdd06..b2f47f119c6a49eab63285505e0e66eef936a90c 100644 --- a/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubsetI.H +++ b/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubsetI.H @@ -104,4 +104,19 @@ inline const Foam::labelList& Foam::fvMeshSubset::patchMap() const } +inline const Foam::labelList& Foam::fvMeshSubset::pointPatchMap() const +{ + checkHasSubMesh(); + + if (pointPatchMap_.empty()) + { + return patchMap_; + } + else + { + return pointPatchMap_; + } +} + + // ************************************************************************* // diff --git a/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubsetTemplates.C b/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubsetTemplates.C index 7936eaeb1a40962874d890a1d06bc02ad0ca9bdc..5d7ce171606ca4b5e8e8bafebcfe80f69a03f4ac 100644 --- a/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubsetTemplates.C +++ b/src/finiteVolume/fvMesh/fvMeshSubset/fvMeshSubsetTemplates.C @@ -551,7 +551,7 @@ Foam::fvMeshSubset::interpolate ( sf, pointMesh::New(subMesh()), // subsetted point mesh - patchMap(), + pointPatchMap(), pointMap() ); } diff --git a/src/finiteVolume/fvMesh/wallDist/nearWallDist/nearWallDist.C b/src/finiteVolume/fvMesh/wallDist/nearWallDist/nearWallDist.C index e79ce51ac8b65461cb69faf5f2a5943b652a59b4..f7d7644037e495a3fde221fd5ef85b8cbd628668 100644 --- a/src/finiteVolume/fvMesh/wallDist/nearWallDist/nearWallDist.C +++ b/src/finiteVolume/fvMesh/wallDist/nearWallDist/nearWallDist.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2020 OpenCFD Ltd. + Copyright (C) 2020,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -27,60 +27,137 @@ License \*---------------------------------------------------------------------------*/ #include "nearWallDist.H" -#include "fvMesh.H" #include "cellDistFuncs.H" #include "wallFvPatch.H" -#include "surfaceFields.H" // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // void Foam::nearWallDist::calculate() { - cellDistFuncs wallUtils(mesh_); + const cellDistFuncs wallUtils(mesh_); - // Get patch ids of walls - labelHashSet wallPatchIDs(wallUtils.getPatchIDs<wallPolyPatch>()); + const volVectorField& cellCentres = mesh_.C(); + + + if (cellDistFuncs::useCombinedWallPatch) + { + // Collect indices of wall patches - // Size neighbours array for maximum possible + DynamicList<label> wallPatchIDs(mesh_.boundary().size()); + label nWalls = 0; + + forAll(mesh_.boundary(), patchi) + { + if (isA<wallFvPatch>(mesh_.boundary()[patchi])) + { + wallPatchIDs.append(patchi); + nWalls += mesh_.boundary()[patchi].size(); + } + else + { + // Set distance to 0 + operator[](patchi) = 0.0; + } + } - DynamicList<label> neighbours(wallUtils.maxPatchSize(wallPatchIDs)); + // Collect all mesh faces of wall patches - // Correct all cells with face on wall + DynamicList<label> faceLabels(nWalls); - const volVectorField& cellCentres = mesh_.C(); + for (const label patchi : wallPatchIDs) + { + const fvPatch& patch = mesh_.boundary()[patchi]; + const auto& pp = patch.patch(); - forAll(mesh_.boundary(), patchi) - { - fvPatchScalarField& ypatch = operator[](patchi); + forAll(patch, i) + { + faceLabels.append(pp.start()+i); + } + } + + const uindirectPrimitivePatch wallPatch + ( + UIndirectList<face>(mesh_.faces(), faceLabels), + mesh_.points() + ); - const fvPatch& patch = mesh_.boundary()[patchi]; + DynamicList<label> neighbours; - if (isA<wallFvPatch>(patch)) + nWalls = 0; + for (const label patchi : wallPatchIDs) { - const polyPatch& pPatch = patch.patch(); + const fvPatch& patch = mesh_.boundary()[patchi]; + const labelUList& faceCells = patch.patch().faceCells(); - const labelUList& faceCells = patch.faceCells(); + fvPatchScalarField& ypatch = operator[](patchi); - // Check cells with face on wall forAll(patch, patchFacei) { - wallUtils.getPointNeighbours(pPatch, patchFacei, neighbours); + // Get point connected neighbours (in wallPatch indices!) + wallUtils.getPointNeighbours(wallPatch, nWalls, neighbours); label minFacei = -1; - ypatch[patchFacei] = wallUtils.smallestDist ( cellCentres[faceCells[patchFacei]], - pPatch, + wallPatch, neighbours, minFacei ); + + nWalls++; } } - else + } + else + { + // Get patch ids of walls + const labelHashSet wallPatchIDs(wallUtils.getPatchIDs<wallPolyPatch>()); + + // Size neighbours array for maximum possible + DynamicList<label> neighbours(wallUtils.maxPatchSize(wallPatchIDs)); + + + // Correct all cells with face on wall + + forAll(mesh_.boundary(), patchi) { - ypatch = 0.0; + fvPatchScalarField& ypatch = operator[](patchi); + + const fvPatch& patch = mesh_.boundary()[patchi]; + + if (isA<wallFvPatch>(patch)) + { + const polyPatch& pPatch = patch.patch(); + + const labelUList& faceCells = patch.faceCells(); + + // Check cells with face on wall + forAll(patch, patchFacei) + { + wallUtils.getPointNeighbours + ( + pPatch, + patchFacei, + neighbours + ); + + label minFacei = -1; + + ypatch[patchFacei] = wallUtils.smallestDist + ( + cellCentres[faceCells[patchFacei]], + pPatch, + neighbours, + minFacei + ); + } + } + else + { + ypatch = 0.0; + } } } } diff --git a/src/finiteVolume/fvMesh/wallDist/patchDistMethods/advectionDiffusion/advectionDiffusionPatchDistMethod.C b/src/finiteVolume/fvMesh/wallDist/patchDistMethods/advectionDiffusion/advectionDiffusionPatchDistMethod.C index dece6229b772ebaba4ccc4e0e3e3b7d57d7a8607..c52f1cefbb6d1f820c14566a8a46f700dd077658 100644 --- a/src/finiteVolume/fvMesh/wallDist/patchDistMethods/advectionDiffusion/advectionDiffusionPatchDistMethod.C +++ b/src/finiteVolume/fvMesh/wallDist/patchDistMethods/advectionDiffusion/advectionDiffusionPatchDistMethod.C @@ -79,7 +79,7 @@ Foam::patchDistMethods::advectionDiffusion::advectionDiffusion tolerance_(coeffs_.getOrDefault<scalar>("tolerance", 1e-3)), maxIter_(coeffs_.getOrDefault<int>("maxIter", 10)), predicted_(false), - checkAndWriteMesh_(coeffs_.getOrDefault("checkAndWriteMesh", true)) + checkAndWriteMesh_(coeffs_.getOrDefault("checkAndWriteMesh", false)) {} diff --git a/src/finiteVolume/fvMesh/wallDist/wallDistAddressing/wallDistAddressing.C b/src/finiteVolume/fvMesh/wallDist/wallDistAddressing/wallDistAddressing.C index dad43a7d9fb11ec9f56a3fb37eccdfaf53e536a4..e8111bc20f0de604b5b58692396bcabce4885834 100644 --- a/src/finiteVolume/fvMesh/wallDist/wallDistAddressing/wallDistAddressing.C +++ b/src/finiteVolume/fvMesh/wallDist/wallDistAddressing/wallDistAddressing.C @@ -234,19 +234,34 @@ void Foam::wallDistAddressing::correct(volScalarField& y) if (correctWalls_) { cellToWallFace.reserve(nWalls); - correctBoundaryFaceCells - ( - patchSet, - y, - cellToWallFace - ); - correctBoundaryPointCells - ( - patchSet, - y, - cellToWallFace - ); + if (cellDistFuncs::useCombinedWallPatch) + { + // Correct across multiple patches + correctBoundaryCells + ( + patchIDs_, + true, // do point-connected cells as well + y, + cellToWallFace + ); + } + else + { + // Optional backwards compatibility + correctBoundaryFaceCells + ( + patchSet, + y, + cellToWallFace + ); + correctBoundaryPointCells + ( + patchSet, + y, + cellToWallFace + ); + } } // Make sure boundary values are up to date diff --git a/src/finiteVolume/interpolation/surfaceInterpolation/schemes/zoneBlended/zoneBlended.C b/src/finiteVolume/interpolation/surfaceInterpolation/schemes/zoneBlended/zoneBlended.C new file mode 100644 index 0000000000000000000000000000000000000000..f8ac1722f7369048b6635b7bddb275d3110e284a --- /dev/null +++ b/src/finiteVolume/interpolation/surfaceInterpolation/schemes/zoneBlended/zoneBlended.C @@ -0,0 +1,39 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fvMesh.H" +#include "zoneBlended.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + makeSurfaceInterpolationScheme(zoneBlended); +} + + +// ************************************************************************* // diff --git a/src/finiteVolume/interpolation/surfaceInterpolation/schemes/zoneBlended/zoneBlended.H b/src/finiteVolume/interpolation/surfaceInterpolation/schemes/zoneBlended/zoneBlended.H new file mode 100644 index 0000000000000000000000000000000000000000..49a2cb6c5eab2bdffe324348f0744c39b452f45b --- /dev/null +++ b/src/finiteVolume/interpolation/surfaceInterpolation/schemes/zoneBlended/zoneBlended.H @@ -0,0 +1,370 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::zoneBlended + +Group + grpFvSurfaceInterpolationSchemes + +Description + Multi-faceZone based blending differencing scheme. + + Schemes are set in dictonary format according to: + + \verbatim + divSchemes + { + . + . + div(phi,U) Gauss zoneBlended + { + default defaultScheme; + faceZone1 scheme1; + faceZone2 scheme2; + ... + faceZoneN schemeN; + } + . + . + } + \endverbatim + + The \c default entry specifies the background scheme; additional schemes + can be set per \c faceZone, e.g. \c scheme1 is applied to \c facZone1, + \c scheme2 is applied to \c facZone2 etc. + + +Usage + Example of the \c zoneBlended scheme to use \c linearUpwind as the + background scheme and \c upwind in \c faceZone1: + + \verbatim + divSchemes + { + . + . + div(phi,U) Gauss zoneBlended + { + default linearUpwind grad(U); + faceZone1 upwind; + }; + . + . + } + \endverbatim + +SourceFiles + zoneBlended.C + +\*---------------------------------------------------------------------------*/ + +#ifndef Foam_zoneBlended_H +#define Foam_zoneBlended_H + +#include "surfaceInterpolationScheme.H" +#include "blendedSchemeBase.H" +#include "surfaceInterpolate.H" +#include "UIndirectList.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class zoneBlended Declaration +\*---------------------------------------------------------------------------*/ + +template<class Type> +class zoneBlended +: + public surfaceInterpolationScheme<Type>, + public blendedSchemeBase<Type> +{ + using SurfaceField = GeometricField<Type, fvsPatchField, surfaceMesh>; + using VolumeField = GeometricField<Type, fvPatchField, volMesh>; + + // Private data + + //- Face zones + wordList zoneNames_; + + //- Schemes + // Note: 0 index used to describe default/background scheme + List<tmp<surfaceInterpolationScheme<Type>>> schemePtrs_; + + //- Corrected flag - true if any of the schemes has corrected() set + bool corrected_; + + + // Private Member Functions + + //- Set the lists of face zone names and schemes + void setSchemes(const fvMesh& mesh, const dictionary& dict); + + //- Set the lists of face zone names and schemes + void setSchemes + ( + const fvMesh& mesh, + const surfaceScalarField& faceFlux, + const dictionary& dict + ); + + //- Retrieve a scheme from the list + const surfaceInterpolationScheme<Type>& scheme + ( + const label schemei + ) const + { + return schemePtrs_[schemei](); + } + + //- Set destination values from source values for a face zone + template<class FieldType> + void setFaceZoneValues + ( + FieldType& dest, + const FieldType& src, + const faceZone& fz + ) const; + + //- Set destination values to zero for a face zone + template<class FieldType> + void zeroFaceZoneValues(FieldType& dest, const faceZone& fz) const; + + //- No copy construct + zoneBlended(const zoneBlended&) = delete; + + //- No copy assignment + void operator=(const zoneBlended&) = delete; + + +public: + + //- Runtime type information + TypeName("zoneBlended"); + + + // Constructors + + //- Construct from mesh and Istream. + // The name of the flux field is read from the Istream and looked-up + // from the mesh objectRegistry + zoneBlended(const fvMesh& mesh, Istream& is) + : + surfaceInterpolationScheme<Type>(mesh), + zoneNames_(), + schemePtrs_(), + corrected_(false) + { + const dictionary dict(is); + + setSchemes(mesh, dict); + } + + + //- Construct from mesh, faceFlux and Istream + zoneBlended + ( + const fvMesh& mesh, + const surfaceScalarField& faceFlux, + Istream& is + ) + : + surfaceInterpolationScheme<Type>(mesh), + zoneNames_(), + schemePtrs_(), + corrected_(false) + { + const dictionary dict(is); + + setSchemes(mesh, faceFlux, dict); + } + + + // Member Functions + + //- Return the face-based blending factor + virtual tmp<surfaceScalarField> blendingFactor + ( + const VolumeField& vf + ) const + { + const auto& mesh = vf.mesh(); + auto tbf = surfaceScalarField::New("blendingFactor", mesh, dimless); + auto& bf = tbf.ref(); + auto& bbf = bf.boundaryFieldRef(); + bf = 0.0; + + const auto& pbm = mesh.boundaryMesh(); + const auto& zones = mesh.faceZones(); + + // Use blending factor to show different zones + for (label zonei=1; zonei<zoneNames_.size(); ++zonei) + { + const word& name = zoneNames_[zonei]; + const auto& fz = zones[name]; + + for (const label facei : fz) + { + if (mesh.isInternalFace(facei)) + { + bf[facei] = zonei; + } + else + { + const labelPair pf = pbm.whichPatchFace(facei); + auto& pbf = bbf[pf.first()]; + if (pbf.size()) + { + pbf[pf.second()] = zonei; + } + } + } + } + + return tbf; + } + + + //- Return the interpolation weighting factors + tmp<surfaceScalarField> weights(const VolumeField& vf) const + { + const auto& mesh = vf.mesh(); + auto tweights = + surfaceScalarField::New("weights", vf.mesh(), dimless); + auto& weights = tweights.ref(); + + // Set default scheme weights + weights = this->scheme(0).weights(vf); + + // Set face zone weights + const auto& zones = mesh.faceZones(); + + for (label schemei=1; schemei<schemePtrs_.size(); ++schemei) + { + const auto& scheme = this->scheme(schemei); + + auto tschemeWeights = scheme.weights(vf); + const auto& schemeWeights = tschemeWeights(); + const auto& fz = zones[zoneNames_[schemei]]; + + setFaceZoneValues(weights, schemeWeights, fz); + } + + return tweights; + } + + + //- Return the face-interpolate of the given cell field + // with explicit correction + tmp<SurfaceField> interpolate(const VolumeField& vf) const + { + return + surfaceInterpolationScheme<Type>::interpolate + ( + vf, + weights(vf) + ); + } + + + //- Return true if this scheme uses an explicit correction + virtual bool corrected() const + { + return corrected_; + } + + + //- Return the explicit correction to the face-interpolate + //- for the given field + virtual tmp<SurfaceField> correction + ( + const VolumeField& vf + ) const + { + const auto& mesh = vf.mesh(); + auto tcorr = + SurfaceField::New("correction", vf.mesh(), vf.dimensions()); + auto& corr = tcorr.ref(); + corr = dimensioned<Type>(vf.dimensions(), Zero); + + // Set default scheme correction + const auto& scheme0 = this->scheme(0); + if (scheme0.corrected()) + { + corr = scheme0.correction(vf); + } + + // Only the default scheme exists - can exit early + if (schemePtrs_.size() == 1) return tcorr; + + // Set correction field in faceZones + const auto& zones = mesh.faceZones(); + + for (label schemei=1; schemei<schemePtrs_.size(); ++schemei) + { + const auto& scheme = this->scheme(schemei); + + if (scheme.corrected()) + { + auto tschemeCorr = scheme.correction(vf); + const auto& schemeCorr = tschemeCorr(); + const auto& fz = zones[zoneNames_[schemei]]; + + setFaceZoneValues(corr, schemeCorr, fz); + } + else + { + if (scheme0.corrected()) + { + // Remove correction from base scheme face zone faces + const auto& fz = zones[zoneNames_[schemei]]; + zeroFaceZoneValues(corr, fz); + } + } + } + + return tcorr; + } +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository + #include "zoneBlendedTemplates.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/finiteVolume/interpolation/surfaceInterpolation/schemes/zoneBlended/zoneBlendedTemplates.C b/src/finiteVolume/interpolation/surfaceInterpolation/schemes/zoneBlended/zoneBlendedTemplates.C new file mode 100644 index 0000000000000000000000000000000000000000..687d01847e0d788a2ae653ed176c24b1230e7ddb --- /dev/null +++ b/src/finiteVolume/interpolation/surfaceInterpolation/schemes/zoneBlended/zoneBlendedTemplates.C @@ -0,0 +1,203 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +template<class Type> +void Foam::zoneBlended<Type>::setSchemes +( + const fvMesh& mesh, + const dictionary& dict +) +{ + zoneNames_.resize(dict.size()); + schemePtrs_.resize(dict.size()); + + schemePtrs_[0] = + surfaceInterpolationScheme<Type>::New(mesh, dict.lookup("default")); + + zoneNames_[0] = "default"; + + corrected_ = scheme(0).corrected(); + + label schemei = 1; + + for (const auto& e : dict) + { + if (e.isDict()) + { + FatalIOErrorInFunction(dict) + << "Entries must be given in zoneName-scheme pairs" + << abort(FatalIOError); + } + + const word& key = e.keyword(); + + if (key == "default") + { + // Background scheme - already handled at index 0 + } + else + { + zoneNames_[schemei] = key; + + schemePtrs_[schemei] = + surfaceInterpolationScheme<Type>::New(mesh, e.stream()); + + corrected_ = corrected_ || scheme(schemei).corrected(); + + ++schemei; + } + } +} + + +template<class Type> +void Foam::zoneBlended<Type>::setSchemes +( + const fvMesh& mesh, + const surfaceScalarField& faceFlux, + const dictionary& dict +) +{ + zoneNames_.resize(dict.size()); + schemePtrs_.resize(dict.size()); + + schemePtrs_[0] = + surfaceInterpolationScheme<Type>::New + ( + mesh, + faceFlux, + dict.lookup("default") + ); + + zoneNames_[0] = "default"; + + corrected_ = scheme(0).corrected(); + + label schemei = 1; + + for (const auto& e : dict) + { + if (e.isDict()) + { + FatalIOErrorInFunction(dict) + << "Entries must be given in faceZoneName-scheme pairs" + << abort(FatalIOError); + } + + const word& key = e.keyword(); + + if (key == "default") + { + // Background scheme - already handled at index 0 + } + else + { + zoneNames_[schemei] = key; + + schemePtrs_[schemei] = + surfaceInterpolationScheme<Type>::New + ( + mesh, + faceFlux, + e.stream() + ); + + corrected_ = corrected_ || scheme(schemei).corrected(); + + ++schemei; + } + } +} + + +template<class Type> +template<class FieldType> +void Foam::zoneBlended<Type>::setFaceZoneValues +( + FieldType& dest, + const FieldType& src, + const faceZone& fz +) const +{ + const auto& mesh = dest.mesh(); + const auto& pbm = mesh.boundaryMesh(); + const auto& srcBf = src.boundaryField(); + auto& destBf = dest.boundaryFieldRef(); + + for (const label facei : fz) + { + if (mesh.isInternalFace(facei)) + { + dest[facei] = src[facei]; + } + else + { + const labelPair pf = pbm.whichPatchFace(facei); + auto& pdest = destBf[pf.first()]; + if (pdest.size()) + { + pdest[pf.second()] = srcBf[pf.first()][pf.second()]; + } + } + } +} + + +template<class Type> +template<class FieldType> +void Foam::zoneBlended<Type>::zeroFaceZoneValues +( + FieldType& dest, + const faceZone& fz +) const +{ + const auto& mesh = dest.mesh(); + const auto& pbm = mesh.boundaryMesh(); + auto& destBf = dest.boundaryFieldRef(); + + for (const label facei : fz) + { + if (mesh.isInternalFace(facei)) + { + dest[facei] = pTraits<Type>::zero; + } + else + { + const labelPair pf = pbm.whichPatchFace(facei); + auto& pdest = destBf[pf.first()]; + if (pdest.size()) + { + pdest[pf.second()] = pTraits<Type>::zero; + } + } + } +} + + +// ************************************************************************* // diff --git a/src/functionObjects/field/fieldAverage/fieldAverage.C b/src/functionObjects/field/fieldAverage/fieldAverage.C index ab2cf923bcf6c5af56e766bfed7141c072db0f5e..1c5441f7a870365e7762e4347bd12ece1c2be81a 100644 --- a/src/functionObjects/field/fieldAverage/fieldAverage.C +++ b/src/functionObjects/field/fieldAverage/fieldAverage.C @@ -308,14 +308,31 @@ bool Foam::functionObjects::fieldAverage::read(const dictionary& dict) dict.readIfPresent("restartOnRestart", restartOnRestart_); dict.readIfPresent("restartOnOutput", restartOnOutput_); dict.readIfPresent("periodicRestart", periodicRestart_); - dict.readEntry("fields", faItems_); - for (auto& item : faItems_) + List<fieldAverageItem> faItems0; + dict.readEntry("fields", faItems0); + + DynamicList<fieldAverageItem> faItems(faItems0.size()); + + wordHashSet names; + for (auto& item : faItems0) { - item.setMeanFieldName(scopedName(item.meanFieldName())); - item.setPrime2MeanFieldName(scopedName(item.prime2MeanFieldName())); + if (names.insert(item.fieldName())) + { + item.setMeanFieldName(scopedName(item.meanFieldName())); + item.setPrime2MeanFieldName(scopedName(item.prime2MeanFieldName())); + faItems.push_back(item); + } + else + { + WarningInFunction + << "Duplicate entry found: " << item.fieldName() + << " (ignored)" << endl; + } } + faItems_.transfer(faItems); + const scalar currentTime = obr().time().value(); if (periodicRestart_) diff --git a/src/functionObjects/field/fieldAverage/fieldAverage.H b/src/functionObjects/field/fieldAverage/fieldAverage.H index 868bed614791ab15bfcfca9a87b45c1dbffccb57..3081085188aa474887938b303c8e3011bbf4a965 100644 --- a/src/functionObjects/field/fieldAverage/fieldAverage.H +++ b/src/functionObjects/field/fieldAverage/fieldAverage.H @@ -233,19 +233,19 @@ protected: //- Add mean average field to database template<class Type> - void addMeanFieldType(fieldAverageItem& item); + bool addMeanFieldType(fieldAverageItem& item); //- Add mean average field to database template<class Type> - void addMeanField(fieldAverageItem& item); + bool addMeanField(fieldAverageItem& item); //- Add prime-squared average field to database template<class Type1, class Type2> - void addPrime2MeanFieldType(fieldAverageItem& item); + bool addPrime2MeanFieldType(fieldAverageItem& item); //- Add prime-squared average field to database template<class Type1, class Type2> - void addPrime2MeanField(fieldAverageItem& item); + bool addPrime2MeanField(fieldAverageItem& item); // Calculation functions @@ -263,20 +263,20 @@ protected: //- Add mean-squared field value to prime-squared mean field template<class Type1, class Type2> - void addMeanSqrToPrime2MeanType(const fieldAverageItem& item) const; + bool addMeanSqrToPrime2MeanType(const fieldAverageItem& item) const; //- Add mean-squared field value to prime-squared mean field template<class Type1, class Type2> void addMeanSqrToPrime2Mean() const; template<class Type> - void storeWindowFieldType(fieldAverageItem& item); + bool storeWindowFieldType(fieldAverageItem& item); template<class Type> void storeWindowFields(); template<class Type> - void restoreWindowFieldsType(const fieldAverageItem& item); + bool restoreWindowFieldsType(const fieldAverageItem& item); template<class Type> void restoreWindowFields(const fieldAverageItem& item); @@ -288,7 +288,7 @@ protected: //- Write fields template<class Type> - void writeFieldType(const word& fieldName) const; + bool writeFieldType(const word& fieldName) const; //- Write fields template<class Type> diff --git a/src/functionObjects/field/fieldAverage/fieldAverageTemplates.C b/src/functionObjects/field/fieldAverage/fieldAverageTemplates.C index 9b612df9a8222c7d6c50181e791439ee2328394a..770e96f59edc292cab7f65369d788c58c262bf87 100644 --- a/src/functionObjects/field/fieldAverage/fieldAverageTemplates.C +++ b/src/functionObjects/field/fieldAverage/fieldAverageTemplates.C @@ -35,16 +35,16 @@ License // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // template<class Type> -void Foam::functionObjects::fieldAverage::addMeanFieldType +bool Foam::functionObjects::fieldAverage::addMeanFieldType ( fieldAverageItem& item ) { - const word& fieldName = item.fieldName(); + const Type* fieldPtr = findObject<Type>(item.fieldName()); - if (!foundObject<Type>(fieldName)) + if (!fieldPtr) { - return; + return false; } // Field has been found, so set active flag to true @@ -66,7 +66,7 @@ void Foam::functionObjects::fieldAverage::addMeanFieldType } else { - const Type& baseField = lookupObject<Type>(fieldName); + const Type& baseField = *fieldPtr; // Store on registry obr().store @@ -88,38 +88,51 @@ void Foam::functionObjects::fieldAverage::addMeanFieldType 1*baseField ) ); + + return true; } + + return false; } template<class Type> -void Foam::functionObjects::fieldAverage::addMeanField +bool Foam::functionObjects::fieldAverage::addMeanField ( fieldAverageItem& item ) { typedef GeometricField<Type, fvPatchField, volMesh> VolFieldType; + typedef typename VolFieldType::Internal VolFieldInternalType; typedef GeometricField<Type, fvsPatchField, surfaceMesh> SurfaceFieldType; typedef DimensionedField<Type, polySurfaceGeoMesh> SurfFieldType; + bool added = false; + if (item.mean()) { - addMeanFieldType<VolFieldType>(item); - addMeanFieldType<SurfaceFieldType>(item); - addMeanFieldType<SurfFieldType>(item); + added = + ( + addMeanFieldType<VolFieldType>(item) + || addMeanFieldType<VolFieldInternalType>(item) + || addMeanFieldType<SurfaceFieldType>(item) + || addMeanFieldType<SurfFieldType>(item) + ); } + + return added; } template<class Type> -void Foam::functionObjects::fieldAverage::restoreWindowFieldsType +bool Foam::functionObjects::fieldAverage::restoreWindowFieldsType ( const fieldAverageItem& item ) { if (restartOnOutput_) { - return; + return false; } const word& fieldName = item.fieldName(); @@ -128,7 +141,7 @@ void Foam::functionObjects::fieldAverage::restoreWindowFieldsType if (!fieldPtr) { - return; + return false; } const FIFOStack<word>& fieldNames = item.windowFieldNames(); @@ -160,6 +173,8 @@ void Foam::functionObjects::fieldAverage::restoreWindowFieldsType << endl; } } + + return true; } @@ -170,29 +185,34 @@ void Foam::functionObjects::fieldAverage::restoreWindowFields ) { typedef GeometricField<Type, fvPatchField, volMesh> VolFieldType; + typedef typename VolFieldType::Internal VolFieldInternalType; typedef GeometricField<Type, fvsPatchField, surfaceMesh> SurfaceFieldType; typedef DimensionedField<Type, polySurfaceGeoMesh> SurfFieldType; if (item.window() > 0) { - restoreWindowFieldsType<VolFieldType>(item); - restoreWindowFieldsType<SurfaceFieldType>(item); - restoreWindowFieldsType<SurfFieldType>(item); + (void) + ( + restoreWindowFieldsType<VolFieldType>(item) + || restoreWindowFieldsType<VolFieldInternalType>(item) + || restoreWindowFieldsType<SurfaceFieldType>(item) + || restoreWindowFieldsType<SurfFieldType>(item) + ); } } template<class Type1, class Type2> -void Foam::functionObjects::fieldAverage::addPrime2MeanFieldType +bool Foam::functionObjects::fieldAverage::addPrime2MeanFieldType ( fieldAverageItem& item ) { - const word& fieldName = item.fieldName(); + const auto* baseFieldPtr = findObject<Type1>(item.fieldName()); - if (!foundObject<Type1>(fieldName)) + if (!baseFieldPtr) { - return; + return false; } const word& meanFieldName = item.meanFieldName(); @@ -212,7 +232,7 @@ void Foam::functionObjects::fieldAverage::addPrime2MeanFieldType } else { - const Type1& baseField = lookupObject<Type1>(fieldName); + const auto& baseField = *baseFieldPtr; const Type1& meanField = lookupObject<Type1>(meanFieldName); // Store on registry @@ -233,24 +253,32 @@ void Foam::functionObjects::fieldAverage::addPrime2MeanFieldType sqr(baseField) - sqr(meanField) ) ); + + return true; } + + return false; } template<class Type1, class Type2> -void Foam::functionObjects::fieldAverage::addPrime2MeanField +bool Foam::functionObjects::fieldAverage::addPrime2MeanField ( fieldAverageItem& item ) { typedef GeometricField<Type1, fvPatchField, volMesh> VolFieldType1; + typedef typename VolFieldType1::Internal VolFieldInternalType1; typedef GeometricField<Type1, fvsPatchField, surfaceMesh> SurfaceFieldType1; typedef DimensionedField<Type1, polySurfaceGeoMesh> SurfFieldType1; typedef GeometricField<Type2, fvPatchField, volMesh> VolFieldType2; + typedef typename VolFieldType2::Internal VolFieldInternalType2; typedef GeometricField<Type2, fvsPatchField, surfaceMesh> SurfaceFieldType2; typedef DimensionedField<Type2, polySurfaceGeoMesh> SurfFieldType2; + bool added = false; + if (item.prime2Mean()) { if (!item.mean()) @@ -261,26 +289,34 @@ void Foam::functionObjects::fieldAverage::addPrime2MeanField << item.fieldName() << nl << exit(FatalError); } - addPrime2MeanFieldType<VolFieldType1, VolFieldType2>(item); - addPrime2MeanFieldType<SurfaceFieldType1, SurfaceFieldType2>(item); - addPrime2MeanFieldType<SurfFieldType1, SurfFieldType2>(item); + added = + addPrime2MeanFieldType<VolFieldType1, VolFieldType2>(item) + || addPrime2MeanFieldType<VolFieldInternalType1, VolFieldInternalType2> + ( + item + ) + || addPrime2MeanFieldType<SurfaceFieldType1, SurfaceFieldType2>(item) + || addPrime2MeanFieldType<SurfFieldType1, SurfFieldType2>(item); } + + return added; } template<class Type> -void Foam::functionObjects::fieldAverage::storeWindowFieldType +bool Foam::functionObjects::fieldAverage::storeWindowFieldType ( fieldAverageItem& item ) { - const word& fieldName = item.fieldName(); - if (!foundObject<Type>(fieldName)) + const auto* fPtr = findObject<Type>(item.fieldName()); + + if (!fPtr) { - return; + return false; } - const Type& baseField = lookupObject<Type>(fieldName); + const Type& baseField = *fPtr; const word windowFieldName = item.windowFieldName(this->name()); @@ -306,6 +342,8 @@ void Foam::functionObjects::fieldAverage::storeWindowFieldType DebugInfo << "Create and store: " << windowFieldName << endl; item.addToWindow(windowFieldName, obr().time().deltaTValue()); + + return true; } @@ -313,6 +351,7 @@ template<class Type> void Foam::functionObjects::fieldAverage::storeWindowFields() { typedef GeometricField<Type, fvPatchField, volMesh> VolFieldType; + typedef typename VolFieldType::Internal VolFieldInternalType; typedef GeometricField<Type, fvsPatchField, surfaceMesh> SurfaceFieldType; typedef DimensionedField<Type, polySurfaceGeoMesh> SurfFieldType; @@ -320,9 +359,13 @@ void Foam::functionObjects::fieldAverage::storeWindowFields() { if (item.storeWindowFields()) { - storeWindowFieldType<VolFieldType>(item); - storeWindowFieldType<SurfaceFieldType>(item); - storeWindowFieldType<SurfFieldType>(item); + (void) + ( + storeWindowFieldType<VolFieldType>(item) + || storeWindowFieldType<VolFieldInternalType>(item) + || storeWindowFieldType<SurfaceFieldType>(item) + || storeWindowFieldType<SurfFieldType>(item) + ); } } } @@ -332,14 +375,21 @@ template<class Type> void Foam::functionObjects::fieldAverage::calculateMeanFields() const { typedef GeometricField<Type, fvPatchField, volMesh> VolFieldType; + typedef typename VolFieldType::Internal VolFieldInternalType; typedef GeometricField<Type, fvsPatchField, surfaceMesh> SurfaceFieldType; typedef DimensionedField<Type, polySurfaceGeoMesh> SurfFieldType; + const auto& obr = this->obr(); + for (const fieldAverageItem& item : faItems_) { - item.calculateMeanField<VolFieldType>(obr()); - item.calculateMeanField<SurfaceFieldType>(obr()); - item.calculateMeanField<SurfFieldType>(obr()); + (void) + ( + item.calculateMeanField<VolFieldType>(obr) + || item.calculateMeanField<VolFieldInternalType>(obr) + || item.calculateMeanField<SurfaceFieldType>(obr) + || item.calculateMeanField<SurfFieldType>(obr) + ); } } @@ -348,36 +398,41 @@ template<class Type1, class Type2> void Foam::functionObjects::fieldAverage::calculatePrime2MeanFields() const { typedef GeometricField<Type1, fvPatchField, volMesh> VolFieldType1; + typedef typename VolFieldType1::Internal VolFieldInternalType1; typedef GeometricField<Type1, fvsPatchField, surfaceMesh> SurfaceFieldType1; typedef DimensionedField<Type1, polySurfaceGeoMesh> SurfFieldType1; typedef GeometricField<Type2, fvPatchField, volMesh> VolFieldType2; + typedef typename VolFieldType2::Internal VolFieldInternalType2; typedef GeometricField<Type2, fvsPatchField, surfaceMesh> SurfaceFieldType2; typedef DimensionedField<Type2, polySurfaceGeoMesh> SurfFieldType2; + const auto& obr = this->obr(); + for (const fieldAverageItem& item : faItems_) { - item.calculatePrime2MeanField<VolFieldType1, VolFieldType2>(obr()); - item.calculatePrime2MeanField<SurfaceFieldType1, SurfaceFieldType2> + (void) ( - obr() + item.calculatePrime2MeanField<VolFieldType1, VolFieldType2>(obr) + || item.calculatePrime2MeanField + <VolFieldInternalType1, VolFieldInternalType2>(obr) + || item.calculatePrime2MeanField + <SurfaceFieldType1, SurfaceFieldType2>(obr) + || item.calculatePrime2MeanField<SurfFieldType1, SurfFieldType2>(obr) ); - item.calculatePrime2MeanField<SurfFieldType1, SurfFieldType2>(obr()); } } template<class Type1, class Type2> -void Foam::functionObjects::fieldAverage::addMeanSqrToPrime2MeanType +bool Foam::functionObjects::fieldAverage::addMeanSqrToPrime2MeanType ( const fieldAverageItem& item ) const { - const word& fieldName = item.fieldName(); - - if (!foundObject<Type1>(fieldName)) + if (!foundObject<Type1>(item.fieldName())) { - return; + return false; } const Type1& meanField = lookupObject<Type1>(item.meanFieldName()); @@ -385,6 +440,8 @@ void Foam::functionObjects::fieldAverage::addMeanSqrToPrime2MeanType Type2& prime2MeanField = lookupObjectRef<Type2>(item.prime2MeanFieldName()); prime2MeanField += sqr(meanField); + + return true; } @@ -392,10 +449,12 @@ template<class Type1, class Type2> void Foam::functionObjects::fieldAverage::addMeanSqrToPrime2Mean() const { typedef GeometricField<Type1, fvPatchField, volMesh> VolFieldType1; + typedef typename VolFieldType1::Internal VolFieldInternalType1; typedef GeometricField<Type1, fvsPatchField, surfaceMesh> SurfaceFieldType1; typedef DimensionedField<Type1, polySurfaceGeoMesh> SurfFieldType1; typedef GeometricField<Type2, fvPatchField, volMesh> VolFieldType2; + typedef typename VolFieldType2::Internal VolFieldInternalType2; typedef GeometricField<Type2, fvsPatchField, surfaceMesh> SurfaceFieldType2; typedef DimensionedField<Type2, polySurfaceGeoMesh> SurfFieldType2; @@ -403,28 +462,36 @@ void Foam::functionObjects::fieldAverage::addMeanSqrToPrime2Mean() const { if (item.prime2Mean()) { - addMeanSqrToPrime2MeanType<VolFieldType1, VolFieldType2>(item); - addMeanSqrToPrime2MeanType<SurfaceFieldType1, SurfaceFieldType2> + (void) ( - item + addMeanSqrToPrime2MeanType<VolFieldType1, VolFieldType2>(item) + || addMeanSqrToPrime2MeanType + <VolFieldInternalType1, VolFieldInternalType2>(item) + || addMeanSqrToPrime2MeanType + <SurfaceFieldType1, SurfaceFieldType2>(item) + || addMeanSqrToPrime2MeanType + <SurfFieldType1, SurfFieldType2>(item) ); - addMeanSqrToPrime2MeanType<SurfFieldType1, SurfFieldType2>(item); } } } template<class Type> -void Foam::functionObjects::fieldAverage::writeFieldType +bool Foam::functionObjects::fieldAverage::writeFieldType ( const word& fieldName ) const { - if (foundObject<Type>(fieldName)) + const auto* fPtr = findObject<Type>(fieldName); + + if (fPtr) { - const Type& f = lookupObject<Type>(fieldName); - f.write(); + DebugInfo<< "writing " << Type::typeName << ": " << fieldName << endl; + return fPtr->write(); } + + return false; } @@ -432,6 +499,7 @@ template<class Type> void Foam::functionObjects::fieldAverage::writeFields() const { typedef GeometricField<Type, fvPatchField, volMesh> VolFieldType; + typedef typename VolFieldType::Internal VolFieldInternalType; typedef GeometricField<Type, fvsPatchField, surfaceMesh> SurfaceFieldType; typedef DimensionedField<Type, polySurfaceGeoMesh> SurfFieldType; @@ -440,17 +508,27 @@ void Foam::functionObjects::fieldAverage::writeFields() const if (item.mean()) { const word& fieldName = item.meanFieldName(); - writeFieldType<VolFieldType>(fieldName); - writeFieldType<SurfaceFieldType>(fieldName); - writeFieldType<SurfFieldType>(fieldName); + + (void) + ( + writeFieldType<VolFieldType>(fieldName) + || writeFieldType<VolFieldInternalType>(fieldName) + || writeFieldType<SurfaceFieldType>(fieldName) + || writeFieldType<SurfFieldType>(fieldName) + ); } if (item.prime2Mean()) { const word& fieldName = item.prime2MeanFieldName(); - writeFieldType<VolFieldType>(fieldName); - writeFieldType<SurfaceFieldType>(fieldName); - writeFieldType<SurfFieldType>(fieldName); + + (void) + ( + writeFieldType<VolFieldType>(fieldName) + || writeFieldType<VolFieldInternalType>(fieldName) + || writeFieldType<SurfaceFieldType>(fieldName) + || writeFieldType<SurfFieldType>(fieldName) + ); } if (item.writeWindowFields()) @@ -459,9 +537,14 @@ void Foam::functionObjects::fieldAverage::writeFields() const forAllConstIters(fieldNames, fieldNameIter) { const word& fieldName = fieldNameIter(); - writeFieldType<VolFieldType>(fieldName); - writeFieldType<SurfaceFieldType>(fieldName); - writeFieldType<SurfFieldType>(fieldName); + + (void) + ( + writeFieldType<VolFieldType>(fieldName) + || writeFieldType<VolFieldInternalType>(fieldName) + || writeFieldType<SurfaceFieldType>(fieldName) + || writeFieldType<SurfFieldType>(fieldName) + ); } } } diff --git a/src/functionObjects/field/limitFields/limitFields.C b/src/functionObjects/field/limitFields/limitFields.C index 520ef2af85d02e79b6e18cb8797b2f3424a0b185..51026355e69f854e86f9bee422bf08deaf2e030f 100644 --- a/src/functionObjects/field/limitFields/limitFields.C +++ b/src/functionObjects/field/limitFields/limitFields.C @@ -68,17 +68,19 @@ bool Foam::functionObjects::limitFields::limitScalarField auto& field = *fieldPtr; + Log << " Limiting field " << fieldName << ":"; + if (limitType::CLAMP_NONE != withBounds_) { MinMax<scalar> currentRange = gMinMax(field); if (withBounds_ & limitType::CLAMP_MIN) { - Log << ": min(" << currentRange.min() << ')'; + Log << " min(" << currentRange.min() << ')'; } if (withBounds_ & limitType::CLAMP_MAX) { - Log << ": max(" << currentRange.max() << ')'; + Log << " max(" << currentRange.max() << ')'; } } @@ -95,6 +97,8 @@ bool Foam::functionObjects::limitFields::limitScalarField field.clamp_range(min_, max_); } + Log << endl; + return true; } diff --git a/src/functionObjects/field/limitFields/limitFieldsTemplates.C b/src/functionObjects/field/limitFields/limitFieldsTemplates.C index 25ab497be0d0f112ae4de9a8271c6e2f642e458e..94ffddc752faccf00537d3b1aa1673b750ab7d87 100644 --- a/src/functionObjects/field/limitFields/limitFieldsTemplates.C +++ b/src/functionObjects/field/limitFields/limitFieldsTemplates.C @@ -81,6 +81,8 @@ bool Foam::functionObjects::limitFields::limitField(const word& fieldName) field *= tmField; } + Log << endl; + return true; } diff --git a/src/functionObjects/field/mapFields/mapFieldsTemplates.C b/src/functionObjects/field/mapFields/mapFieldsTemplates.C index 58bd9572dca488982ca429b71baf34e292690d9e..40536b9dba56934225b7cf0ebcdb872b0d86a555 100644 --- a/src/functionObjects/field/mapFields/mapFieldsTemplates.C +++ b/src/functionObjects/field/mapFields/mapFieldsTemplates.C @@ -146,7 +146,7 @@ bool Foam::functionObjects::mapFields::mapFieldType() const mappedField = interpPtr_->mapTgtToSrc(field); - Log << " " << fieldName << ": interpolated"; + Log << " " << fieldName << ": interpolated\n"; evaluateConstraintTypes(mappedField); } @@ -173,7 +173,7 @@ bool Foam::functionObjects::mapFields::writeFieldType() const mappedField.write(); - Log << " " << fieldName << ": written"; + Log << " " << fieldName << ": written\n"; } return processed; diff --git a/src/functionObjects/solvers/electricPotential/electricPotential.C b/src/functionObjects/solvers/electricPotential/electricPotential.C index ff931d858305837562e225ec5f5f4116ffc2a68d..d484a82e554c44cad239dfb5704d87a97b258c27 100644 --- a/src/functionObjects/solvers/electricPotential/electricPotential.C +++ b/src/functionObjects/solvers/electricPotential/electricPotential.C @@ -208,6 +208,7 @@ Foam::functionObjects::electricPotential::electricPotential ) ), fvOptions_(mesh_), + tol_(1), nCorr_(1), writeDerivedFields_(false), electricField_(false) @@ -258,6 +259,7 @@ bool Foam::functionObjects::electricPotential::read(const dictionary& dict) dict.readIfPresent("sigma", sigma_); dict.readIfPresent("epsilonr", epsilonr_); dict.readIfPresent("nCorr", nCorr_); + dict.readIfPresent("tolerance", tol_); dict.readIfPresent("writeDerivedFields", writeDerivedFields_); dict.readIfPresent("electricField", electricField_); @@ -346,6 +348,10 @@ bool Foam::functionObjects::electricPotential::execute() { Log << type() << " execute: " << name() << endl; + // Convergence monitor parameters + bool converged = false; + label iter = 0; + tmp<volScalarField> tsigma = this->sigma(); const auto& sigma = tsigma(); @@ -362,7 +368,9 @@ bool Foam::functionObjects::electricPotential::execute() fvOptions_.constrain(eVEqn); - eVEqn.solve(); + ++iter; + converged = (eVEqn.solve().initialResidual() < tol_); + if (converged) break; } if (electricField_) @@ -371,6 +379,14 @@ bool Foam::functionObjects::electricPotential::execute() E == -fvc::grad(eV); } + if (converged) + { + Log << type() << ": " << name() << ": " + << eV.name() << " is converged." << nl + << tab << "initial-residual tolerance: " << tol_ << nl + << tab << "outer iteration: " << iter << nl; + } + Log << endl; return true; diff --git a/src/functionObjects/solvers/electricPotential/electricPotential.H b/src/functionObjects/solvers/electricPotential/electricPotential.H index af1b0e47fec29d26a098512923137b4918a1079f..d41a2b37df26bfa88601ce504a6b900d61e2fa63 100644 --- a/src/functionObjects/solvers/electricPotential/electricPotential.H +++ b/src/functionObjects/solvers/electricPotential/electricPotential.H @@ -124,6 +124,7 @@ Usage electricField <bool>; E <word>; fvOptions <dict>; + tolerance <scalar>; // Inherited entries ... @@ -143,6 +144,7 @@ Usage electricField | Flag to calculate electric field | bool | no | false E | Name of electric field | word | no | electricPotential:E fvOptions | List of finite-volume options | dict | no | - + tolerance | Outer-loop initial-residual tolerance | scalar | no | 1 \endtable The inherited entries are elaborated in: @@ -218,6 +220,9 @@ class electricPotential //- Run-time selectable finite volume options fv::optionList fvOptions_; + //- Outer-loop initial-residual tolerance + scalar tol_; + //- Number of corrector iterations int nCorr_; diff --git a/src/functionObjects/solvers/energyTransport/energyTransport.C b/src/functionObjects/solvers/energyTransport/energyTransport.C index 2a0ac81eba1c3d7b3e4bac39155d755f2765e978..730a320f8e89a929e3d03944c1086343b82af9d0 100644 --- a/src/functionObjects/solvers/energyTransport/energyTransport.C +++ b/src/functionObjects/solvers/energyTransport/energyTransport.C @@ -26,11 +26,6 @@ License \*---------------------------------------------------------------------------*/ #include "energyTransport.H" -#include "surfaceFields.H" -#include "fvmDdt.H" -#include "fvmDiv.H" -#include "fvmLaplacian.H" -#include "fvmSup.H" #include "turbulentTransportModel.H" #include "turbulentFluidThermoModel.H" #include "addToRunTimeSelectionTable.H" @@ -188,23 +183,6 @@ Foam::functionObjects::energyTransport::energyTransport ) : fvMeshFunctionObject(name, runTime, dict), - fieldName_(dict.getOrDefault<word>("field", "T")), - phiName_(dict.getOrDefault<word>("phi", "phi")), - rhoName_(dict.getOrDefault<word>("rho", "rho")), - nCorr_(0), - schemesField_("unknown-schemesField"), - fvOptions_(mesh_), - multiphaseThermo_(dict.subOrEmptyDict("phaseThermos")), - Cp_("Cp", dimEnergy/dimMass/dimTemperature, 0, dict), - kappa_ - ( - "kappa", - dimEnergy/dimTime/dimLength/dimTemperature, - 0, - dict - ), - rho_("rhoInf", dimDensity, 0, dict), - Prt_("Prt", dimless, 1, dict), rhoCp_ ( IOobject @@ -218,7 +196,25 @@ Foam::functionObjects::energyTransport::energyTransport ), mesh_, dimensionedScalar(dimEnergy/dimTemperature/dimVolume, Zero) - ) + ), + fvOptions_(mesh_), + multiphaseThermo_(dict.subOrEmptyDict("phaseThermos")), + Cp_("Cp", dimEnergy/dimMass/dimTemperature, 0, dict), + kappa_ + ( + "kappa", + dimEnergy/dimTime/dimLength/dimTemperature, + 0, + dict + ), + rho_("rhoInf", dimDensity, 0, dict), + Prt_("Prt", dimless, 1, dict), + fieldName_(dict.getOrDefault<word>("field", "T")), + schemesField_("unknown-schemesField"), + phiName_(dict.getOrDefault<word>("phi", "phi")), + rhoName_(dict.getOrDefault<word>("rho", "rho")), + tol_(1), + nCorr_(0) { read(dict); @@ -305,17 +301,14 @@ Foam::functionObjects::energyTransport::energyTransport } -// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // - -Foam::functionObjects::energyTransport::~energyTransport() -{} - - // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // bool Foam::functionObjects::energyTransport::read(const dictionary& dict) { - fvMeshFunctionObject::read(dict); + if (!fvMeshFunctionObject::read(dict)) + { + return false; + } dict.readIfPresent("phi", phiName_); dict.readIfPresent("rho", rhoName_); @@ -323,6 +316,7 @@ bool Foam::functionObjects::energyTransport::read(const dictionary& dict) schemesField_ = dict.getOrDefault("schemesField", fieldName_); dict.readIfPresent("nCorr", nCorr_); + dict.readIfPresent("tolerance", tol_); if (dict.found("fvOptions")) { @@ -355,12 +349,16 @@ bool Foam::functionObjects::energyTransport::execute() scalar relaxCoeff = 0; mesh_.relaxEquation(schemesField_, relaxCoeff); + // Convergence monitor parameters + bool converged = false; + int iter = 0; + if (phi.dimensions() == dimMass/dimTime) { rhoCp_ = rho()*Cp(); const surfaceScalarField rhoCpPhi(fvc::interpolate(Cp())*phi); - for (label i = 0; i <= nCorr_; i++) + for (int i = 0; i <= nCorr_; ++i) { fvScalarMatrix sEqn ( @@ -376,7 +374,9 @@ bool Foam::functionObjects::energyTransport::execute() fvOptions_.constrain(sEqn); - sEqn.solve(schemesField_); + ++iter; + converged = (sEqn.solve(schemesField_).initialResidual() < tol_); + if (converged) break; } } else if (phi.dimensions() == dimVolume/dimTime) @@ -393,7 +393,7 @@ bool Foam::functionObjects::energyTransport::execute() rhoCp ); - for (label i = 0; i <= nCorr_; i++) + for (int i = 0; i <= nCorr_; ++i) { fvScalarMatrix sEqn ( @@ -408,7 +408,9 @@ bool Foam::functionObjects::energyTransport::execute() fvOptions_.constrain(sEqn); - sEqn.solve(schemesField_); + ++iter; + converged = (sEqn.solve(schemesField_).initialResidual() < tol_); + if (converged) break; } } else @@ -419,6 +421,14 @@ bool Foam::functionObjects::energyTransport::execute() << dimVolume/dimTime << exit(FatalError); } + if (converged) + { + Log << type() << ": " << name() << ": " + << s.name() << " is converged." << nl + << tab << "initial-residual tolerance: " << tol_ << nl + << tab << "outer iteration: " << iter << nl; + } + Log << endl; return true; diff --git a/src/functionObjects/solvers/energyTransport/energyTransport.H b/src/functionObjects/solvers/energyTransport/energyTransport.H index aa3b9929f0abf9ea21067123efbd928ec323b77e..04512f81f38595e8d456b4616d5f04a58ed4c3d0 100644 --- a/src/functionObjects/solvers/energyTransport/energyTransport.H +++ b/src/functionObjects/solvers/energyTransport/energyTransport.H @@ -30,151 +30,180 @@ Group grpSolversFunctionObjects Description - Evolves a simplified energy transport equation for incompressible flows. - It takes into account the inertia, conduction and convection terms plus - a source. - - - The field name must be temperature and its BC's specified in the time - directory. - - The turbulence model should be incompressible - - In order to use in a incompressible multi phase a list of thermal - properties are needed. See below - + Computes the simplified energy transport equation in single-phase or + two-phase flow, considering incompressible cases: + + \f[ + \frac{\partial \rho \, C_p \, T}{\partial t} + + \nabla \cdot \left(\rho \, C_p \, \phi \, T \right) + - \nabla \cdot \left(\rho \, C_p \, \phi \right) \, T + - \nabla \cdot \left(\kappa_{eff} \, \nabla T \right) + = S_T + \f] + + where: + \vartable + T | Scalar field + \rho | (Generic) Fluid density which is unity when not specified + C_p | Specific heat capacity at constant pressure + \phi | (Generic) Flux field + \kappa_{eff} | Effective thermal conductivity + S_T | Scalar field source term + \endvartable Usage - Example of function object specification to solve a energy transport - equation for a single phase flow plus a source term + Minimal example in \c system/controlDict.functions: \verbatim - functions + energyTransport1 { - energy - { - type energyTransport; - libs (energyTransportFunctionObjects); - - enabled true; - writeControl writeTime; - writeInterval 1; - - field T; - - // volumetric Flux - phi phi; + // Mandatory entries + type energyTransport; + libs (solverFunctionObjects); + + // Optional entries + field <word>; + phi <word>; + rho <word>; + Cp <scalar>; + kappa <scalar>; + rhoInf <scalar>; + Prt <scalar>; + schemesField <word>; + tolerance <scalar>; + nCorr <int>; + fvOptions <dict>; + phaseThermos <dict>; + + // Inherited entries + ... + } + \endverbatim - // Thermal properties - Cp Cp [J/kg/K] 1e3; - kappa kappa [W/m/K] 0.0257; - rhoInf rho [kg/m^3] 1.2; + where: + \table + Property | Description | Type | Reqd | Deflt + type | Type name: energyTransport | word | yes | - + libs | Library name: solverFunctionObjects | word | yes | - + field | Name of the passive-scalar field | word | no | s + phi | Name of flux field | word | no | phi + rho | Name of density field | word | no | rho + Cp | Specific heat capacity at constant pressure | scalar | no | 0 + kappa | Thermal conductivity | scalar | no | 0 + rhoInf | Fluid density | scalar | no | 0 + Prt | Turbulent Prandtl number | scalar | no | 1 + schemesField | Name of field to specify schemes | word | no | field + tolerance | Outer-loop initial-residual tolerance | scalar | no | 1 + nCorr | Number of outer-loop correctors | int | no | 0 + fvOptions | List of finite-volume options | dict | no | - + phaseThermos | Dictionary for multi-phase thermo | dict | no | null + \endtable - write true; + The inherited entries are elaborated in: + - \link fvMeshFunctionObject.H \endlink + - \link fvOption.H \endlink - fvOptions + An example of function object specification to solve a energy transport + equation for a single phase flow plus a source term: + \verbatim + energyTransport1 + { + // Mandatory entries + type energyTransport; + libs (solverFunctionObjects); + + // Optional entries + field T; + phi phi; + Cp Cp [J/kg/K] 1e3; + kappa kappa [W/m/K] 0.0257; + rhoInf rho [kg/m^3] 1.2; + fvOptions + { + viscousDissipation { - viscousDissipation + type viscousDissipation; + enabled true; + + viscousDissipationCoeffs { - type viscousDissipation; - enabled true; - - viscousDissipationCoeffs - { - fields (T); - rhoInf $....rhoInf; - } + fields (T); + rhoInf $....rhoInf; } } } + + // Inherited entries + enabled true; + writeControl writeTime; + writeInterval 1; } \endverbatim - Example of function object specification to solve a energy transport - equation for a multiphase phase flow plus a source term - - equation: + An example of function object specification to solve a energy transport + equation for a multiphase phase flow plus a source term: \verbatim - functions + energyTransport1 { - energy - { - type energyTransport; - libs (energyTransportFunctionObjects); + // Mandatory entries + type energyTransport; + libs (solverFunctionObjects); - enabled true; - writeControl writeTime; - writeInterval 1; + // Optional entries + field T; + rho rho; + phi rhoPhi; - field T; - - // rho field name - rho rho; - // mass flux for multiphase - phi rhoPhi; - - write true; - - // Thermal properties of the phases - phaseThermos + // Thermal properties of the phases + phaseThermos + { + alpha.air { - alpha.air - { - Cp 1e3; - kappa 0.0243; - } - alpha.mercury - { - Cp 140; - kappa 8.2; - } - alpha.oil - { - Cp 2e3; - kappa 0.2; - } - alpha.water - { - Cp 4e3; - kappa 0.6; - } + Cp 1e3; + kappa 0.0243; } + alpha.mercury + { + Cp 140; + kappa 8.2; + } + alpha.oil + { + Cp 2e3; + kappa 0.2; + } + alpha.water + { + Cp 4e3; + kappa 0.6; + } + } - - fvOptions + fvOptions + { + viscousDissipation { - viscousDissipation + type viscousDissipation; + enabled true; + + viscousDissipationCoeffs { - type viscousDissipation; - enabled true; - - viscousDissipationCoeffs - { - fields (T); - rho rho; //rho Field - } + fields (T); + rho rho; } } } + + // Inherited entries + enabled true; + writeControl writeTime; + writeInterval 1; } \endverbatim - Where the entries comprise: - \table - Property | Description | Required | Default value - type | Type name: energyTransport | yes | - field | Name of the scalar field | no | T - phi | Name of flux field | no | phi - rho | Name of density field | no | rho - nCorr | Number of correctors | no | 0 - schemesField | Name of field to specify schemes | no | field name - fvOptions | List of scalar sources | no | - Cp | Heat capacity for single phase | no | 0 - rhoInf | Density for single phase | no | 0 - kappa | Thermal conductivity for single phase | no | 0 - Prt | Turbulent Prandlt number | no | 1.0 - phaseThermos | Dictionary for multi-phase thermo |no | null - fvOptions | Opotional extra sources | no | null - \endtable - -See also - Foam::functionObjects::fvMeshFunctionObject +Note + - The field name must be temperature and its boundary conditions + specified in the time directory. + - The turbulence model should be incompressible. SourceFiles energyTransport.C @@ -203,22 +232,10 @@ class energyTransport : public fvMeshFunctionObject { - // Private data - - //- Name of the transport field. - word fieldName_; - - //- Name of flux field - word phiName_; - - //- Name of density field - word rhoName_; + // Private Data - //- Number of corrector iterations (optional) - label nCorr_; - - //- Name of field whose schemes are used (optional) - word schemesField_; + //- Volumetric heat capacity field [J/m^3/K] + volScalarField rhoCp_; //- Run-time selectable finite volume options, e.g. sources, constraints fv::optionList fvOptions_; @@ -229,7 +246,7 @@ class energyTransport //- List of phase names wordList phaseNames_; - //- List of phase heat capacities + //- List of phase specific heat capacities at constant pressure PtrList<dimensionedScalar> Cps_; //- List of phase thermal diffusivity for temperature [J/m/s/K] @@ -238,7 +255,7 @@ class energyTransport //- Unallocated phase list UPtrList<volScalarField> phases_; - //- Heat capacity for single phase flows + //- Specific heat capacity at constant pressure for single phase flows dimensionedScalar Cp_; //- Thermal diffusivity for temperature for single phase flows @@ -250,8 +267,23 @@ class energyTransport //- Turbulent Prandt number dimensionedScalar Prt_; - //- rhoCp - volScalarField rhoCp_; + //- Name of the transport field + word fieldName_; + + //- Name of field whose schemes are used + word schemesField_; + + //- Name of flux field + word phiName_; + + //- Name of density field + word rhoName_; + + //- Outer-loop initial-residual tolerance + scalar tol_; + + //- Number of corrector iterations + int nCorr_; // Private Member Functions @@ -262,21 +294,15 @@ class energyTransport //- Return the diffusivity field tmp<volScalarField> kappaEff() const; - //- Return rho field + //- Return the density field, rho tmp<volScalarField> rho() const; - //- Return Cp + //- Return the specific heat capacity at constant pressure field, Cp tmp<volScalarField> Cp() const; - //- Return kappa + //- Return the thermal diffusivity field tmp<volScalarField> kappa() const; - //- No copy construct - energyTransport(const energyTransport&) = delete; - - //- No copy assignment - void operator=(const energyTransport&) = delete; - public: @@ -296,7 +322,7 @@ public: //- Destructor - virtual ~energyTransport(); + virtual ~energyTransport() = default; // Member Functions diff --git a/src/functionObjects/solvers/scalarTransport/scalarTransport.C b/src/functionObjects/solvers/scalarTransport/scalarTransport.C index f418519024d1bdad66f2dbd5a9245fef639de3f8..99af527a7b3ec2ff31eb0f141b126ce47bf22f14 100644 --- a/src/functionObjects/solvers/scalarTransport/scalarTransport.C +++ b/src/functionObjects/solvers/scalarTransport/scalarTransport.C @@ -27,11 +27,6 @@ License \*---------------------------------------------------------------------------*/ #include "scalarTransport.H" -#include "surfaceFields.H" -#include "fvmDdt.H" -#include "fvmDiv.H" -#include "fvmLaplacian.H" -#include "fvmSup.H" #include "CMULES.H" #include "turbulentTransportModel.H" #include "turbulentFluidThermoModel.H" @@ -172,7 +167,9 @@ Foam::functionObjects::scalarTransport::scalarTransport ) : fvMeshFunctionObject(name, runTime, dict), + fvOptions_(mesh_), fieldName_(dict.getOrDefault<word>("field", "s")), + schemesField_("unknown-schemesField"), phiName_(dict.getOrDefault<word>("phi", "phi")), rhoName_(dict.getOrDefault<word>("rho", "rho")), nutName_(dict.getOrDefault<word>("nut", "none")), @@ -182,11 +179,12 @@ Foam::functionObjects::scalarTransport::scalarTransport dict.getOrDefault<word>("phasePhiCompressed", "alphaPhiUn") ), D_(0), - constantD_(false), + alphaD_(1), + alphaDt_(1), + tol_(1), nCorr_(0), resetOnStartUp_(false), - schemesField_("unknown-schemesField"), - fvOptions_(mesh_), + constantD_(false), bounded01_(dict.getOrDefault("bounded01", true)) { read(dict); @@ -202,31 +200,30 @@ Foam::functionObjects::scalarTransport::scalarTransport } -// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // - -Foam::functionObjects::scalarTransport::~scalarTransport() -{} - - // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // bool Foam::functionObjects::scalarTransport::read(const dictionary& dict) { - fvMeshFunctionObject::read(dict); + if (!fvMeshFunctionObject::read(dict)) + { + return false; + } dict.readIfPresent("phi", phiName_); dict.readIfPresent("rho", rhoName_); dict.readIfPresent("nut", nutName_); dict.readIfPresent("phase", phaseName_); - dict.readIfPresent("bounded01", bounded01_); + dict.readIfPresent("phasePhiCompressed", phasePhiCompressedName_); schemesField_ = dict.getOrDefault("schemesField", fieldName_); - constantD_ = dict.readIfPresent("D", D_); - alphaD_ = dict.getOrDefault<scalar>("alphaD", 1); - alphaDt_ = dict.getOrDefault<scalar>("alphaDt", 1); + dict.readIfPresent("alphaD", alphaD_); + dict.readIfPresent("alphaDt", alphaDt_); + dict.readIfPresent("tolerance", tol_); dict.readIfPresent("nCorr", nCorr_); dict.readIfPresent("resetOnStartUp", resetOnStartUp_); + constantD_ = dict.readIfPresent("D", D_); + dict.readIfPresent("bounded01", bounded01_); if (dict.found("fvOptions")) { @@ -256,6 +253,10 @@ bool Foam::functionObjects::scalarTransport::execute() scalar relaxCoeff = 0; mesh_.relaxEquation(schemesField_, relaxCoeff); + // Convergence monitor parameters + bool converged = false; + int iter = 0; + // Two phase scalar transport if (phaseName_ != "none") { @@ -272,7 +273,7 @@ bool Foam::functionObjects::scalarTransport::execute() // Solve tmp<surfaceScalarField> tTPhiUD; - for (label i = 0; i <= nCorr_; i++) + for (int i = 0; i <= nCorr_; ++i) { fvScalarMatrix sEqn ( @@ -285,9 +286,13 @@ bool Foam::functionObjects::scalarTransport::execute() sEqn.relax(relaxCoeff); fvOptions_.constrain(sEqn); - sEqn.solve(schemesField_); + + ++iter; + converged = (sEqn.solve(schemesField_).initialResidual() < tol_); tTPhiUD = sEqn.flux(); + + if (converged) break; } if (bounded01_) @@ -307,9 +312,8 @@ bool Foam::functionObjects::scalarTransport::execute() { const volScalarField& rho = lookupObject<volScalarField>(rhoName_); - for (label i = 0; i <= nCorr_; i++) + for (int i = 0; i <= nCorr_; ++i) { - fvScalarMatrix sEqn ( fvm::ddt(rho, s) @@ -323,12 +327,14 @@ bool Foam::functionObjects::scalarTransport::execute() fvOptions_.constrain(sEqn); - sEqn.solve(schemesField_); + ++iter; + converged = (sEqn.solve(schemesField_).initialResidual() < tol_); + if (converged) break; } } else if (phi.dimensions() == dimVolume/dimTime) { - for (label i = 0; i <= nCorr_; i++) + for (int i = 0; i <= nCorr_; ++i) { fvScalarMatrix sEqn ( @@ -343,7 +349,9 @@ bool Foam::functionObjects::scalarTransport::execute() fvOptions_.constrain(sEqn); - sEqn.solve(schemesField_); + ++iter; + converged = (sEqn.solve(schemesField_).initialResidual() < tol_); + if (converged) break; } } else @@ -354,6 +362,14 @@ bool Foam::functionObjects::scalarTransport::execute() << dimVolume/dimTime << exit(FatalError); } + if (converged) + { + Log << type() << ": " << name() << ": " + << s.name() << " is converged." << nl + << tab << "initial-residual tolerance: " << tol_ << nl + << tab << "outer iteration: " << iter << nl; + } + Log << endl; return true; diff --git a/src/functionObjects/solvers/scalarTransport/scalarTransport.H b/src/functionObjects/solvers/scalarTransport/scalarTransport.H index 686d6cdba6c6f0185b5b291048d22ca5f1c8e0a7..6a97eafb22025a7e2a8ba2cfbba4bc380283d115 100644 --- a/src/functionObjects/solvers/scalarTransport/scalarTransport.H +++ b/src/functionObjects/solvers/scalarTransport/scalarTransport.H @@ -31,110 +31,134 @@ Group grpSolversFunctionObjects Description - Evolves a passive scalar transport equation. - - - To specify the field name set the \c field entry - - To employ the same numerical schemes as another field set - the \c schemesField entry, - - The diffusivity can be set manually using the 'D' entry, retrieved - from the turbulence model or specified nut - - Alternatively if a turbulence model is available a turbulent diffusivity - may be constructed from the laminar and turbulent viscosities using the - optional diffusivity coefficients \c alphaD and \c alphaDt (which default - to 1): - \verbatim - D = alphaD*nu + alphaDt*nut - \endverbatim - - To specify a transport quantity within a phase enter phase. - - bounded01 bounds the transported scalar within 0 and 1. + Computes the transport equation for a passive scalar in single-phase or + two-phase flow, considering both incompressible and compressible cases: + + \f[ + \frac{\partial \rho \, T}{\partial t} + + \nabla \cdot \left( \phi_\alpha \, T \right) + - \nabla \cdot (D_T \, \nabla T) + = \alpha \, S_T + \f] + + where: + \vartable + T | Passive scalar field + \rho | (Generic) Fluid density which is unity when not specified + \phi_\alpha | (Generic) Flux field + \alpha | Phase fraction which is unity for single-phase flows + D_T | Diffusivity representing the diffusive transport of T + S_T | Passive-scalar field source term + \endvartable Usage - Example of function object specification to solve a scalar transport - equation: + Minimal example in \c system/controlDict.functions: \verbatim - functions + scalarTransport1 { - scalar1 - { - type scalarTransport; - libs (solverFunctionObjects); - - resetOnStartUp no; - region cabin; - field H2O; + // Mandatory entries + type scalarTransport; + libs (solverFunctionObjects); + + // Optional entries + field <word>; + phi <word>; + rho <word>; + nut <word>; + phase <word>; + phasePhiCompressed <word>; + schemesField <word>; + bounded01 <bool>; + D <scalar>; + alphaD <scalar>; + alphaDt <scalar>; + tolerance <scalar>; + nCorr <int>; + resetOnStartUp <bool>; + fvOptions <dict>; + + // Inherited entries + ... + } + where: + \table + Property | Description | Type | Reqd | Deflt + type | Type name: scalarTransport | word | yes | - + libs | Library name: solverFunctionObjects | word | yes | - + field | Name of the passive-scalar field | word | no | s + phi | Name of flux field | word | no | phi + rho | Name of density field | word | no | rho + nut | Name of the turbulence viscosity | word | no | none + phase | Name of the phase | word | no | none + phasePhiCompressed | Name of compressed VOF flux | word | no | alphaPhiUn + schemesField | Name of field to specify schemes | word | no | field + bounded01 | Bounds scalar between 0-1 for multiphase | bool | no | true + D | Diffusion coefficient | scalar | no | - + alphaD | Laminar diffusivity coefficient | scalar | no | 1 + alphaDt | Turbulent diffusivity coefficient | scalar | no | 1 + tolerance | Outer-loop initial-residual tolerance | scalar | no | 1 + nCorr | Number of outer-loop correctors | int | no | 0 + resetOnStartUp | Flag to reset field to zero on start-up | bool | no | no + fvOptions | List of finite-volume options | dict | no | - + \endtable - fvOptions - { - ... - } - } - } - \endverbatim + The inherited entries are elaborated in: + - \link fvMeshFunctionObject.H \endlink + - \link fvOption.H \endlink - Example of function object specification to solve a residence time - in a two phase flow: - equation: + An example of function object specification to solve a residence time + in a two-phase flow: \verbatim - functions + scalarTransport1 { - sTransport + // Mandatory entries + type scalarTransport; + libs (solverFunctionObjects); + + // Optional entries + field s; + bounded01 false; + phase alpha.water; + tolerance 1e-5; + resetOnStartUp false; + fvOptions { - type scalarTransport; - libs (solverFunctionObjects); - - enabled true; - writeControl writeTime; - writeInterval 1; - - field s; - bounded01 false; - phase alpha.water; - - write true; - - fvOptions + unitySource { - unitySource - { - type scalarSemiImplicitSource; - enabled true; + type scalarSemiImplicitSource; + enabled true; - selectionMode all; - volumeMode specific; + selectionMode all; + volumeMode specific; - sources - { - s (1 0); - } + sources + { + s (1 0); } } - - resetOnStartUp false; } + + // Inherited entries + enabled true; + writeControl writeTime; + writeInterval 1; } \endverbatim - Where the entries comprise: - \table - Property | Description | Required | Default value - type | Type name: scalarTransport | yes | - field | Name of the scalar field | no | s - phi | Name of flux field | no | phi - rho | Name of density field | no | rho - phase | Name of the phase | no | none - nut | Name of the turbulence viscosity | no | none - D | Diffusion coefficient | no | auto generated - nCorr | Number of correctors | no | 0 - resetOnStartUp | Reset scalar to zero on start-up | no | no - schemesField | Name of field to specify schemes | no | field name - fvOptions | List of scalar sources | no | - bounded01 | Bounds scalar between 0-1 for multiphase | no | true - phasePhiCompressed | Compressed flux for VOF | no | alphaPhiUn - \endtable +Note + - To use the same numerical schemes as another field, + set the \c schemesField entry. + - The diffusivity can be set manually using the \c D entry, obtained + from the turbulence model or specified as `nut`. + - Alternatively, if a turbulence model is available, turbulent diffusivity + can be constructed from the laminar and turbulent viscosities using the + optional diffusivity coefficients \c alphaD and \c alphaDt + (which default to 1): -See also - Foam::functionObjects::fvMeshFunctionObject + \f[ + D = \alpha_D \, \nu + \alpha_{Dt} \, \nu_t + \f] SourceFiles scalarTransport.C @@ -163,49 +187,52 @@ class scalarTransport : public fvMeshFunctionObject { - // Private data + // Private Data + + //- Run-time selectable finite volume options, e.g. sources, constraints + fv::optionList fvOptions_; //- Name of the transport field. word fieldName_; - //- Name of flux field (optional) + //- Name of field whose schemes are used + word schemesField_; + + //- Name of flux field word phiName_; - //- Name of density field (optional) + //- Name of density field word rhoName_; - //- Name of turbulent viscosity field (optional) + //- Name of turbulent viscosity field word nutName_; - //- Name of phase field (optional) + //- Name of phase field word phaseName_; - //- Name of phase field compressed flux (optional) + //- Name of phase field compressed flux word phasePhiCompressedName_; - //- Diffusion coefficient (optional) + //- Diffusion coefficient scalar D_; - //- Flag to indicate whether a constant, uniform D_ is specified - bool constantD_; - - //- Laminar diffusion coefficient (optional) + //- Laminar diffusion coefficient scalar alphaD_; - //- Turbulent diffusion coefficient (optional) + //- Turbulent diffusion coefficient scalar alphaDt_; - //- Number of corrector iterations (optional) - label nCorr_; + //- Outer-loop initial-residual tolerance + scalar tol_; + + //- Number of corrector iterations + int nCorr_; //- Flag to reset the scalar to zero on start-up bool resetOnStartUp_; - //- Name of field whose schemes are used (optional) - word schemesField_; - - //- Run-time selectable finite volume options, e.g. sources, constraints - fv::optionList fvOptions_; + //- Flag to indicate whether a constant, uniform D_ is specified + bool constantD_; //- Bound scalar between 0-1 using MULES for multiphase case bool bounded01_; @@ -223,12 +250,6 @@ class scalarTransport const surfaceScalarField& phi ) const; - //- No copy construct - scalarTransport(const scalarTransport&) = delete; - - //- No copy assignment - void operator=(const scalarTransport&) = delete; - public: @@ -248,7 +269,7 @@ public: //- Destructor - virtual ~scalarTransport(); + virtual ~scalarTransport() = default; // Member Functions diff --git a/src/functionObjects/utilities/Make/files b/src/functionObjects/utilities/Make/files index aed6a6fa70dd76862b514715b14d950ddc2789c8..9da1341dfa4c24e926fd98462203b5aec976a3d3 100644 --- a/src/functionObjects/utilities/Make/files +++ b/src/functionObjects/utilities/Make/files @@ -9,6 +9,17 @@ areaWrite/areaWrite.C ensightWrite/ensightWrite.C ensightWrite/ensightWriteUpdate.C +foamReport/foamReport.C +foamReport/substitutionModels/substitutionModel/substitutionModel.C +foamReport/substitutionModels/substitutionModel/substitutionModelNew.C +foamReport/substitutionModels/dictionaryValue/dictionaryValue.C +foamReport/substitutionModels/functionObjectValue/functionObjectValue.C +foamReport/substitutionModels/fileRegEx/fileRegEx.C +foamReport/substitutionModels/environmentVariable/environmentVariable.C +foamReport/substitutionModels/userValue/userValue.C + +graphFunctionObject/graphFunctionObject.C + vtkWrite/vtkWrite.C vtkWrite/vtkWriteUpdate.C diff --git a/src/functionObjects/utilities/caseInfo/caseInfo.C b/src/functionObjects/utilities/caseInfo/caseInfo.C index caec64d93553f16368cb894102a2bdd924ab2e3a..aac75b8f43fc202d8a79fe3ec879c416a455f0a2 100644 --- a/src/functionObjects/utilities/caseInfo/caseInfo.C +++ b/src/functionObjects/utilities/caseInfo/caseInfo.C @@ -261,7 +261,7 @@ void Foam::functionObjects::caseInfo::writeFileDicts fileName path(ePtr->stream()); path.expand(); - IOobject io(path, time(), IOobject::MUST_READ); + IOobject io(path, time_, IOobject::MUST_READ); if (!io.typeHeaderOk<dictionary>(false)) { @@ -404,6 +404,17 @@ Foam::functionObjects::caseInfo::caseInfo const dictionary& dict ) : + IOdictionary + ( + IOobject + ( + name, + runTime.timeName(), + runTime, + IOobject::NO_READ, + IOobject::NO_WRITE + ) + ), stateFunctionObject(name, runTime), writeFile(runTime, name, typeName, dict), writeFormat_(writeFormat::dict), @@ -420,12 +431,13 @@ bool Foam::functionObjects::caseInfo::read(const dictionary& dict) if (stateFunctionObject::read(dict) && writeFile::read(dict)) { writeFormatNames_.readIfPresent("writeFormat", dict, writeFormat_); + writeFile::setExt("." + writeFormatNames_[writeFormat_]); + lookupModeNames_.readIfPresent("lookupMode", dict, lookupMode_); dictionaries_ = dict.subOrEmptyDict("dictionaries"); - functionObjectNames_ = - dict.getOrDefault<wordList>("functionObjects", wordList()); + dict.readIfPresent("functionObjects", functionObjectNames_); return true; } @@ -443,7 +455,8 @@ bool Foam::functionObjects::caseInfo::execute() bool Foam::functionObjects::caseInfo::write() { // Output dictionary - dictionary data; + dictionary& data = *this; + data.clear(); // Case meta data writeMeta(data.subDictOrAdd("meta")); @@ -498,7 +511,7 @@ bool Foam::functionObjects::caseInfo::write() if (Pstream::master()) { - auto filePtr = newFileAtTime(name(), time_.value()); + auto filePtr = newFileAtTime(functionObject::name(), time_.value()); auto& os = filePtr(); // Reset stream width - was set in writeFile @@ -508,7 +521,7 @@ bool Foam::functionObjects::caseInfo::write() { case writeFormat::dict: { - os << data << endl; + IOdictionary::writeData(os); break; } case writeFormat::json: diff --git a/src/functionObjects/utilities/caseInfo/caseInfo.H b/src/functionObjects/utilities/caseInfo/caseInfo.H index 0be7f2929406c307912bf3683403c3532bf96500..09f204ad51aa31dce66455d384f5e3dfdbc87384 100644 --- a/src/functionObjects/utilities/caseInfo/caseInfo.H +++ b/src/functionObjects/utilities/caseInfo/caseInfo.H @@ -118,6 +118,7 @@ SourceFiles #ifndef functionObjects_caseInfo_H #define functionObjects_caseInfo_H +#include "IOdictionary.H" #include "writeFile.H" #include "stateFunctionObject.H" #include "Enum.H" @@ -139,6 +140,7 @@ namespace functionObjects class caseInfo : + public IOdictionary, public stateFunctionObject, public writeFile { @@ -264,6 +266,9 @@ public: // Member Functions + using regIOobject::read; + using regIOobject::write; + //- Read the controls virtual bool read(const dictionary& dict); diff --git a/src/functionObjects/utilities/ensightWrite/ensightWrite.C b/src/functionObjects/utilities/ensightWrite/ensightWrite.C index 9023f151bcf76693ac08ae1dd3691a63b04ca45b..0207decdff2d1667de2e2b4d585fb63f5e174a69 100644 --- a/src/functionObjects/utilities/ensightWrite/ensightWrite.C +++ b/src/functionObjects/utilities/ensightWrite/ensightWrite.C @@ -269,10 +269,10 @@ bool Foam::functionObjects::ensightWrite::write() true // prune ); - Log << type() << " " << name() << " write: ("; + Log << type() << " " << name() << " write:\n"; writeAllVolFields(meshSubset_, candidateNames); - Log << " )" << nl; + Log << nl; ensCase().write(); // Flush case information diff --git a/src/functionObjects/utilities/ensightWrite/ensightWriteImpl.C b/src/functionObjects/utilities/ensightWrite/ensightWriteImpl.C index b55c4f19b3fa896c349d8aee5482e76ef84f7a36..a37e30581662b86e017ad1d25d353202e5385faa 100644 --- a/src/functionObjects/utilities/ensightWrite/ensightWriteImpl.C +++ b/src/functionObjects/utilities/ensightWrite/ensightWriteImpl.C @@ -65,7 +65,7 @@ Foam::label Foam::functionObjects::ensightWrite::writeVolFieldsImpl caseOpts_.nodeValues() ); - Log << ' ' << fieldName; + Log << " " << fieldName << "\n"; ++count; } diff --git a/src/functionObjects/utilities/foamReport/foamReport.C b/src/functionObjects/utilities/foamReport/foamReport.C new file mode 100644 index 0000000000000000000000000000000000000000..349fbf777bed5ea7d048a43d5f2a8019d01bf07d --- /dev/null +++ b/src/functionObjects/utilities/foamReport/foamReport.C @@ -0,0 +1,350 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "foamReport.H" +#include "addToRunTimeSelectionTable.H" +#include "argList.H" +#include "clock.H" +#include "cloud.H" +#include "foamVersion.H" +#include "fvMesh.H" +#include "IFstream.H" +#include "stringOps.H" +#include "substitutionModel.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace functionObjects +{ + defineTypeNameAndDebug(foamReport, 0); + addToRunTimeSelectionTable(functionObject, foamReport, dictionary); +} +} + + +// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * // + +void Foam::functionObjects::foamReport::setStaticBuiltins() +{ + substitutionModel::addBuiltinStr("OF_HOST", Foam::hostName()); + substitutionModel::addBuiltinStr + ( + "OF_PROC_ZERO_DIR", + Pstream::parRun() ? "processor0" : "" + ); + + substitutionModel::addBuiltin("OF_API", foamVersion::api); + substitutionModel::addBuiltinStr("OF_PATCH", foamVersion::patch); + substitutionModel::addBuiltinStr("OF_BUILD", foamVersion::build); + substitutionModel::addBuiltinStr("OF_BUILD_ARCH", foamVersion::buildArch); + substitutionModel::addBuiltinStr("OF_VERSION", foamVersion::version); + + substitutionModel::addBuiltinStr("OF_DATE_START", clock::date()); + substitutionModel::addBuiltinStr("OF_CLOCK_START", clock::clockTime()); + + substitutionModel::addBuiltinStr("OF_EXECUTABLE", argList::envExecutable()); + substitutionModel::addBuiltinStr("OF_CASE_PATH", argList::envGlobalPath()); + substitutionModel::addBuiltinStr("OF_CASE_NAME", time().globalCaseName()); + + substitutionModel::addBuiltin("OF_NPROCS", Pstream::nProcs()); + + // Set mesh builtins when there is only 1 mesh + const auto meshes = time_.lookupClass<fvMesh>(); + if (meshes.size() == 1) + { + const auto& mesh = *(meshes.begin().val()); + substitutionModel::addBuiltin("OF_MESH_NCELLS", mesh.nCells()); + substitutionModel::addBuiltin("OF_MESH_NFACES", mesh.nFaces()); + substitutionModel::addBuiltin("OF_MESH_NEDGES", mesh.nEdges()); + substitutionModel::addBuiltin("OF_MESH_NPOINTS", mesh.nPoints()); + substitutionModel::addBuiltin + ( + "OF_MESH_NINTERNALFACES", + mesh.nInternalFaces() + ); + substitutionModel::addBuiltin + ( + "OF_MESH_NBOUNDARYFACES", + mesh.nBoundaryFaces() + ); + substitutionModel::addBuiltin + ( + "OF_MESH_NPATCHES", + mesh.boundaryMesh().nNonProcessor() + ); + substitutionModel::addBuiltin + ( + "OF_MESH_BOUNDS_MIN", + mesh.bounds().min() + ); + substitutionModel::addBuiltin + ( + "OF_MESH_BOUNDS_MAX", + mesh.bounds().max() + ); + } +} + + +void Foam::functionObjects::foamReport::setDynamicBuiltins() +{ + // Overwrite existing entries + substitutionModel::setBuiltinStr("OF_TIME", time().timeName()); + substitutionModel::setBuiltin("OF_NTIMES", time().times().size()); + substitutionModel::setBuiltin("OF_TIME_INDEX", time().timeIndex()); + substitutionModel::setBuiltin("OF_TIME_DELTAT", time().deltaTValue()); + + substitutionModel::setBuiltinStr("OF_DATE_NOW", clock::date()); + substitutionModel::setBuiltinStr("OF_CLOCK_NOW", clock::clockTime()); + + substitutionModel::setBuiltin("OF_NREGIONS", time().names<fvMesh>().size()); + substitutionModel::setBuiltin("OF_NCLOUDS", time().names<cloud>().size()); +} + + +bool Foam::functionObjects::foamReport::parseTemplate(const fileName& fName) +{ + Info<< " Reading template from " << fName << endl; + + IFstream is(fName); + + if (!is.good()) + { + FatalErrorInFunction + << "Unable to open file " << fName << endl; + } + + DynamicList<string> contents; + string buffer; + + label lineNo = 0; + while (is.good()) + { + is.getLine(buffer); + + // Collect keys for this line and clean the buffer + const wordList keys(substitutionModel::getKeys(buffer)); + + Tuple2<label, DynamicList<label>> nullValue(-1, DynamicList<label>()); + + // Assemble table of keyword and lines where the keyword appears + for (const word& key : keys) + { + if (modelKeys_.insert(key, nullValue)) + { + // Set substitution model responsible for this keyword + label modeli = -1; + forAll(substitutions_, i) + { + if (substitutions_[i].valid(key)) + { + modeli = i; + break; + } + } + + // Note: cannot check that key/model is set here + // - dynamic builtins not ready yet... + + modelKeys_[key].first() = modeli; + } + + DynamicList<label>& lineNos = modelKeys_[key].second(); + lineNos.push_back(lineNo); + } + + contents.push_back(buffer); + + ++lineNo; + } + + templateContents_.transfer(contents); + + return templateContents_.size() > 0; +} + + +bool Foam::functionObjects::foamReport::apply(Ostream& os) const +{ + List<string> out(templateContents_); + + forAllConstIters(modelKeys_, iter) + { + const word& key = iter.key(); + const label modeli = iter.val().first(); + const DynamicList<label>& lineNos = iter.val().second(); + + DebugInfo<< "key:" << key << endl; + + for (const label linei : lineNos) + { + if (modeli == -1) + { + if (!substitutionModel::replaceBuiltin(key, out[linei])) + { + WarningInFunction + << "Unable to find substitution for " << key + << " on line " << linei << endl; + } + } + else + { + substitutions_[modeli].apply(key, out[linei]); + } + } + } + + for (const auto& line : out) + { + os << line.c_str() << nl; + } + + return true; +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::functionObjects::foamReport::foamReport +( + const word& name, + const Time& runTime, + const dictionary& dict +) +: + stateFunctionObject(name, runTime), + writeFile(runTime, name, typeName, dict), + templateFile_(), + modelKeys_(), + substitutions_(), + debugKeys_(dict.getOrDefault<bool>("debugKeys", false)) +{ + read(dict); + + setStaticBuiltins(); +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +bool Foam::functionObjects::foamReport::read(const dictionary& dict) +{ + if (stateFunctionObject::read(dict)) + { + Info<< type() << " " << name() << ":" << nl; + + dict.readEntry("template", templateFile_); + + Info<< " Template: " << templateFile_ << endl; + + const word ext = templateFile_.ext(); + + if (ext.size()) + { + setExt("." + ext); + } + else + { + setExt(ext); + } + + Info<< " Reading substitutions" << endl; + + const dictionary& subsDict = dict.subDict("substitutions"); + + substitutions_.resize(subsDict.size()); + + label i = 0; + for (const entry& e : subsDict) + { + if (!e.isDict()) + { + FatalIOErrorInFunction(subsDict) + << "Substitution models must be provided in dictionary " + << "format" + << exit(FatalIOError); + } + + substitutions_.set(i++, substitutionModel::New(e.dict(), time())); + } + + parseTemplate(templateFile_.expand()); + + Info<< endl; + + return true; + } + + return false; +} + + +bool Foam::functionObjects::foamReport::execute() +{ + for (auto& sub : substitutions_) + { + sub.update(); + } + + return true; +} + + +bool Foam::functionObjects::foamReport::write() +{ + if (!Pstream::master()) return true; + + setDynamicBuiltins(); + + auto filePtr = newFileAtTime(name(), time().value()); + auto& os = filePtr(); + + // Reset stream width (by default assumes fixed width tabular output) + os.width(0); + + // Perform the substitutions + apply(os); + + if (debugKeys_) + { + os << "Model keys:" << nl; + for (const auto& model : substitutions_) + { + os << model.type() << ":" << model.keys() << nl; + } + + os << "Builtins:" << nl; + substitutionModel::writeBuiltins(os); + } + + return true; +} + + +// ************************************************************************* // diff --git a/src/functionObjects/utilities/foamReport/foamReport.H b/src/functionObjects/utilities/foamReport/foamReport.H new file mode 100644 index 0000000000000000000000000000000000000000..52651560cf3de5493d33138cad390c990a3c62c3 --- /dev/null +++ b/src/functionObjects/utilities/foamReport/foamReport.H @@ -0,0 +1,273 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::functionObjects::foamReport + +Group + grpUtilitiesFunctionObjects + +Description + Replaces user-supplied keywords by run-time computed values in a text file. + + Operands: + \table + Operand | Type | Location + input | - | - + output file | TBA <!-- + --> | postProcessing/\<FO\>/\<time\>/\<file\>(s) + \endtable + +Usage + Example using \c system/controlDict.functions: + + \verbatim + foamReport1 + { + // Mandatory entries + type foamReport; + libs (utilityFunctionObjects); + + template "<system>/myTemplate.md"; + + substitutions + { + divSchemes1 + { + type dictionaryValue; + object fvSchemes; + + entries + { + divSchemes "divSchemes"; + } + } + fvSolution1 + { + type dictionaryValue; + path "<system>/fvSolution"; + + entries + { + solver_p "solvers/p/solver"; + solver_p_tol "solvers/p/tolerance"; + solver_p_reltol "solvers/p/relTol"; + solver_U "solvers/U/solver"; + solver_U_tol "solvers/U/tolerance"; + solver_U_reltol "solvers/U/relTol"; + } + } + controlDict1 + { + type dictionaryValue; + path "<system>/controlDict"; + + entries + { + initial_deltaT "deltaT"; + } + } + continuityErrors + { + type functionObjectValue; + functionObject continuityError1; + + entries + { + cont_error_local local; + cont_error_global global; + cont_error_cumulative cumulative; + } + } + } + + // Optional entries + debugKeys <bool>; + + // Inherited entries + ... + } + \endverbatim + + where the entries mean: + \table + Property | Description | Type | Reqd | Deflt + type | Type name: foamReport | word | yes | - + libs | Library name: utilityFunctionObjects | word | yes | - + template | Path to user-supplied text template | string | yes | - + substitutions | Dictionary of substitution models | dictionary | yes | - + debugKeys | Flag to write all known keys | bool | no | false + \endtable + + The \c entries sections typically define a dictionary of keys (to use in + your template) and method to set the key value, e.g. for a dictionaryValue + model used to set values from the \c fvSolution file: + + \verbatim + type dictionaryValue; + path "<system>/fvSolution"; + + entries + { + solver_p "solvers/p/solver"; + solver_p_tol "solvers/p/tolerance"; + } + \endverbatim + + The inherited entries are elaborated in: + - \link substitutionModel.H \endlink + - \link stateFunctionObject.H \endlink + - \link writeFile.H \endlink + +See also + - Foam::functionObject + - Foam::functionObjects::stateFunctionObject + - Foam::functionObjects::writeFile + - Foam::substitutionModel + +SourceFiles + foamReport.C + foamReportTemplates.C + +\*---------------------------------------------------------------------------*/ + +#ifndef functionObjects_foamReport_H +#define functionObjects_foamReport_H + +#include "stateFunctionObject.H" +#include "writeFile.H" +#include "Tuple2.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +class substitutionModel; + +namespace functionObjects +{ + +/*---------------------------------------------------------------------------*\ + Class foamReport Declaration +\*---------------------------------------------------------------------------*/ + +class foamReport +: + public stateFunctionObject, + public writeFile +{ + +protected: + + // Protected Data + + //- Path to user-supplied template + fileName templateFile_; + + //- Mapping from keyword to substitution model index and line + //- numbers of template file where keyword is used + HashTable<Tuple2<label, DynamicList<label>>> modelKeys_; + + //- Template file contents split into lines + List<string> templateContents_; + + //- List of substitution models + PtrList<substitutionModel> substitutions_; + + //- Debug flag to write all known keys + // Helps when assembling template file... + bool debugKeys_; + + + // Protected Member Functions + + //- Parse the template and collect keyword information + bool parseTemplate(const fileName& fName); + + //- Set static builtin entries + void setStaticBuiltins(); + + //- Set dynamic (potentially changing per execution step) builtin + //- entries + void setDynamicBuiltins(); + + //- Apply the substitution models to the template + bool apply(Ostream& os) const; + + + // Generated Methods + + //- No copy construct + foamReport(const foamReport&) = delete; + + //- No copy assignment + void operator=(const foamReport&) = delete; + + +public: + + //- Runtime type information + TypeName("foamReport"); + + + // Constructors + + //- Construct from Time and dictionary + foamReport + ( + const word& name, + const Time& runTime, + const dictionary& dict + ); + + + //- Destructor + virtual ~foamReport() = default; + + + // Member Functions + + //- Read foamReport settings + virtual bool read(const dictionary&); + + //- Execute foamReport + virtual bool execute(); + + //- Write foamReport results + virtual bool write(); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace functionObjects +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/dictionaryValue/dictionaryValue.C b/src/functionObjects/utilities/foamReport/substitutionModels/dictionaryValue/dictionaryValue.C new file mode 100644 index 0000000000000000000000000000000000000000..d754ff598c4574d5d6606bbc0332411326389328 --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/dictionaryValue/dictionaryValue.C @@ -0,0 +1,219 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "dictionaryValue.H" +#include "addToRunTimeSelectionTable.H" +#include "IFstream.H" +#include "polyMesh.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace substitutionModels +{ + defineTypeNameAndDebug(dictionaryValue, 0); + addToRunTimeSelectionTable(substitutionModel, dictionaryValue, dictionary); +} +} + + +// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * // + +bool Foam::substitutionModels::dictionaryValue::processDict +( + const dictionary& dict, + const word& key, + string& buffer +) const +{ + const string& lookup = entries_[key]; + + OStringStream oss; + if (lookup.empty()) + { + // Add complete dictionary + oss << dict; + } + else + { + const entry* ePtr = dict.findScoped(lookup); + + if (!ePtr) + { + WarningInFunction + << "Unable to find entry " << lookup + << endl; + return false; + } + + if (ePtr->isDict()) + { + const dictionary& de = ePtr->dict(); + + // Write dictionary contents + oss << de.dictName() << de; + } + else + { + for (const auto& t : ePtr->stream()) + { + if (oss.count()) oss << separator_; + oss << t; + } + } + } + + buffer.replaceAll(keyify(key), oss.str()); + + return true; +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::substitutionModels::dictionaryValue::dictionaryValue +( + const dictionary& dict, + const Time& time +) +: + substitutionModel(dict, time), + object_(), + region_(polyMesh::defaultRegion), + path_(), + separator_(dict.getOrDefault<word>("separator", " ")), + entries_() +{ + const auto* oPtr = dict.findEntry("object"); + const auto* pPtr = dict.findEntry("path"); + + if (oPtr && pPtr) + { + FatalIOErrorInFunction(dict) + << "Specify either 'object' or 'path' but not both" + << exit(FatalIOError); + } + + if (oPtr) + { + // Optionally read the region + dict.readIfPresent<word>("region", region_); + + // Must read the object name to look up + object_ = dict.get<word>("object"); + } + + if (pPtr) + { + path_ = dict.get<fileName>("path").expand(); + } + + // Populate entries + const dictionary& entriesDict = dict.subDict("entries"); + for (const auto& e : entriesDict) + { + entries_.insert(cleanKey(e.keyword()), string(e.stream())); + } +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +bool Foam::substitutionModels::dictionaryValue::valid(const word& keyName) const +{ + return entries_.found(keyName); +} + + +bool Foam::substitutionModels::dictionaryValue::apply +( + const word& key, + string& buffer +) const +{ + if (!valid(key)) return false; + + if (path_.size()) + { + fileName path(path_); + if (replaceBuiltin(path)) + { + path.clean(); + } + + IFstream is(path); + + if (!is.good()) + { + WarningInFunction + << "Unable to find dictionary at " << path + << ". Deactivating." << endl; + + return false; + } + + return processDict(dictionary(is), key, buffer); + } + else + { + const auto* obrPtr = time_.cfindObject<objectRegistry>(region_); + + if (!obrPtr) + { + WarningInFunction + << "Unable to find region " << region_ + << ". Deactivating." << endl; + + return false; + } + + // Find object; recursive lookup into parent + const auto* dictPtr = obrPtr->cfindObject<IOdictionary>(object_, true); + + if (!dictPtr) + { + WarningInFunction + << "Unable find dictionary " << object_ + << " on region " << region_ + << ". Deactivating." << endl; + + return false; + } + + return processDict(*dictPtr, key, buffer); + } +} + + +Foam::wordList Foam::substitutionModels::dictionaryValue::keys() const +{ + return entries_.sortedToc(); +} + + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/dictionaryValue/dictionaryValue.H b/src/functionObjects/utilities/foamReport/substitutionModels/dictionaryValue/dictionaryValue.H new file mode 100644 index 0000000000000000000000000000000000000000..e1cd47506a623f857311cf8c6050ef5d38724ccf --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/dictionaryValue/dictionaryValue.H @@ -0,0 +1,182 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::substitutionModels::dictionaryValue + +Description + The \c dictionaryValue substitution model. Dictionaries can be retrieved + from an object registry, e.g. time, mesh, or from file. + + The example below shows how the keywords \c p_solver and \c u_solver are set + by retrieving values from the \c fvSolution dictionary. + + \verbatim + dictionaryValues1 + { + // Mandatory entries + type dictionaryValue; + + entries + { + p_solver "solvers/p/solver"; + u_solver "solvers/u/solver"; + } + + // Conditional entries + + // Option-1 + object "fvSolution"; // registry-based retrieval + // region "fluidMesh"; + + // Option-2 + // path "<system>/fvSolution"; // file-based retrieval + + + // Optional entries + separator <word>; + + // Inherited entries + ... + } + \endverbatim + + The entries mean: + \table + Property | Description | Type | Reqd | Deflt + type | Type name: dictionaryValue | word | yes | - + entries | keyword lookup pairs | dictionary | yes | - + object | Name of registered dictionary | string | no | - + region | Name of mesh region | word | no | region0 + path | Path to dictionary file | string | no | - + separator | Sep. when lookup value has multiple tokens | word | no | - + \endtable + + The inherited entries are elaborated in: + - \link substitutionModel.H \endlink + +SourceFiles + dictionaryValue.C + +---------------------------------------------------------------------------*/ + +#ifndef Foam_substitutionModels_dictionaryValue_H +#define Foam_substitutionModels_dictionaryValue_H + +#include "substitutionModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +namespace substitutionModels +{ + +/*---------------------------------------------------------------------------*\ + Class dictionaryValue Declaration +\*---------------------------------------------------------------------------*/ + +class dictionaryValue +: + public substitutionModel +{ + // Private Data + + //- Dictionary name for registry-based lookup + word object_; + + //- Region name for registry-based lookup + word region_; + + //- Path to dictionary for file-based lookup + fileName path_; + + //- Separator when lookup value has multiple tokens + const word separator_; + + //- Hash table for key and entry-lookup pairs + HashTable<string> entries_; + + + // Private Functions + + //- No copy construct + dictionaryValue(const dictionaryValue&) = delete; + + //- No copy assignment + void operator=(const dictionaryValue&) = delete; + + +protected: + + // Protected Member Functions + + //- Main function to process the dictionary + bool processDict + ( + const dictionary& dict, + const word& key, + string& buffer + ) const; + + +public: + + //- Runtime type information + TypeName("dictionaryValue"); + + + //- Constructor + dictionaryValue(const dictionary& dict, const Time& time); + + + //- Destructor + virtual ~dictionaryValue() = default; + + + // Member Functions + + //- Return true of model applies to this keyName + virtual bool valid(const word& keyName) const; + + //- Apply substitutions to this string buffer + virtual bool apply(const word& key, string& buffer) const; + + //- Return a word list of the keys + virtual wordList keys() const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace substitutionModels +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/environmentVariable/environmentVariable.C b/src/functionObjects/utilities/foamReport/substitutionModels/environmentVariable/environmentVariable.C new file mode 100644 index 0000000000000000000000000000000000000000..49e1951e02ae586b20e856b542f434baf753185d --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/environmentVariable/environmentVariable.C @@ -0,0 +1,101 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "environmentVariable.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace substitutionModels +{ + defineTypeNameAndDebug(environmentVariable, 0); + addToRunTimeSelectionTable + ( + substitutionModel, + environmentVariable, + dictionary + ); +} +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::substitutionModels::environmentVariable::environmentVariable +( + const dictionary& dict, + const Time& time +) +: + substitutionModel(dict, time), + entries_() +{ + // Populate entries + const dictionary& entriesDict = dict.subDict("entries"); + for (const auto& e : entriesDict) + { + entries_.insert(cleanKey(e.keyword()), string(e.stream())); + } +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +bool Foam::substitutionModels::environmentVariable::valid +( + const word& keyName +) const +{ + return entries_.found(keyName); +} + + +bool Foam::substitutionModels::environmentVariable::apply +( + const word& key, + string& buffer +) const +{ + if (!valid(key)) return false; + + const string env(Foam::getEnv(entries_[key])); + + buffer.replaceAll(keyify(key), env); + + return true; +} + + +Foam::wordList Foam::substitutionModels::environmentVariable::keys() const +{ + return entries_.sortedToc(); +} + + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/environmentVariable/environmentVariable.H b/src/functionObjects/utilities/foamReport/substitutionModels/environmentVariable/environmentVariable.H new file mode 100644 index 0000000000000000000000000000000000000000..d72088e823b4219b27e19741fe0e3a1f6a8672bf --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/environmentVariable/environmentVariable.H @@ -0,0 +1,136 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::substitutionModels::environmentVariable + +Description + The \c environmentVariable substitution model. + + \verbatim + environmentVariables1 + { + // Mandatory entries + type environmentVariable; + + entries + { + home "HOME"; + ldpath "LD_LIBRARY_PATH"; + } + + // Inherited entries + ... + } + \endverbatim + + The entries mean: + \table + Property | Description | Type | Reqd | Deflt + type | Type name: environmentVariable | word | yes | - + entries | Keyword lookup pairs | dictionary | yes | - + \endtable + + The inherited entries are elaborated in: + - \link substitutionModel.H \endlink + +SourceFiles + environmentVariable.C + +---------------------------------------------------------------------------*/ + +#ifndef Foam_substitutionModels_environmentVariable_H +#define Foam_substitutionModels_environmentVariable_H + +#include "substitutionModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +namespace substitutionModels +{ + +/*---------------------------------------------------------------------------*\ + Class environmentVariable Declaration +\*---------------------------------------------------------------------------*/ + +class environmentVariable +: + public substitutionModel +{ + // Private Data + + //- Hash table for key and environment variable pairs + HashTable<string> entries_; + + + // Private Functions + + //- No copy construct + environmentVariable(const environmentVariable&) = delete; + + //- No copy assignment + void operator=(const environmentVariable&) = delete; + + +public: + + //- Runtime type information + TypeName("environmentVariable"); + + + //- Constructor + environmentVariable(const dictionary& dict, const Time& time); + + + //- Destructor + virtual ~environmentVariable() = default; + + + // Member Functions + + //- Return true of model applies to this keyName + virtual bool valid(const word& keyName) const; + + //- Apply substitutions to this string buffer + virtual bool apply(const word& key, string& buffer) const; + + //- Return a word list of the keys + virtual wordList keys() const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace substitutionModels +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/fileRegEx/fileRegEx.C b/src/functionObjects/utilities/foamReport/substitutionModels/fileRegEx/fileRegEx.C new file mode 100644 index 0000000000000000000000000000000000000000..37fc3f0d68c9dbc76f873adec166d5d1b8251ce2 --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/fileRegEx/fileRegEx.C @@ -0,0 +1,163 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fileRegEx.H" +#include "addToRunTimeSelectionTable.H" +#include "IFstream.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace substitutionModels +{ + defineTypeNameAndDebug(fileRegEx, 0); + addToRunTimeSelectionTable(substitutionModel, fileRegEx, dictionary); +} +} + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::substitutionModels::fileRegEx::fileRegEx +( + const dictionary& dict, + const Time& time +) +: + substitutionModel(dict, time), + path_(dict.get<fileName>("path")), + entries_(), + sectionSeparator_ + ( + dict.getOrDefault<string> + ( + "sectionSeparator", + "Time =" + ) + ), + matchSeparator_(dict.getOrDefault<string>("matchSeparator", " ")), + lastMatch_(dict.getOrDefault<bool>("lastMatch", true)) +{ + // Populate entries + const dictionary& entriesDict = dict.subDict("entries"); + for (const auto& e : entriesDict) + { + entries_.insert(cleanKey(e.keyword()), string(e.stream())); + } +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +bool Foam::substitutionModels::fileRegEx::valid(const word& keyName) const +{ + return entries_.found(keyName); +} + + +bool Foam::substitutionModels::fileRegEx::apply +( + const word& key, + string& buffer +) const +{ + if (!valid(key)) return false; + + fileName path(path_); + replaceBuiltin(path); + IFstream is(path); + + if (!is.good()) + { + WarningInFunction + << "Unable to find file at " << path_ + << ". Deactivating." << endl; + + return false; + } + + Info<< "Scanning for sections beginning with " + << sectionSeparator_ << endl; + + // For log files containing multiple time steps + // - put strings for last time step into a string list + DynamicList<string> lines(96); + string line; + bool started = sectionSeparator_.empty() ? true : false; + while (is.good()) + { + is.getLine(line); + if (line.starts_with(sectionSeparator_)) + { + started = true; + lines.clear(); + } + if (started) + { + lines.append(line); + } + } + + Info<< "Cached " << lines.size() << " lines" << endl; + + OStringStream oss; + regExp re(entries_[key].c_str()); + + for (const string& data : lines) + { + regExp::results_type match; + if (re.match(data, match)) + { + oss.reset(); + + for (size_t i = 1; i < match.size(); ++i) + { + if (i > 1) oss << matchSeparator_; + oss << match[i].str().c_str(); + } + + if (!lastMatch_) break; + } + } + + if (oss.count()) + { + buffer.replaceAll(keyify(key), oss.str()); + return true; + } + + return false; +} + + +Foam::wordList Foam::substitutionModels::fileRegEx::keys() const +{ + return entries_.sortedToc(); +} + + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/fileRegEx/fileRegEx.H b/src/functionObjects/utilities/foamReport/substitutionModels/fileRegEx/fileRegEx.H new file mode 100644 index 0000000000000000000000000000000000000000..891a1d6858f27fd5551322afb3b4997e0246ef37 --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/fileRegEx/fileRegEx.H @@ -0,0 +1,162 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::substitutionModels::fileRegEx + +Description + The \c fileRegEx substitution model. + + The example below shows how the keyword \c executionTime is set by + applying a regular expression (string) to a log file. + + \verbatim + fileRegEx1 + { + // Mandatory entries + type fileRegEx; + path "log.simpleFoam"; + + entries + { + executionTime "ExecutionTime = (.*) s Clock.*"; + } + + // Optional entries + sectionSeparator <string>; + matchSeparator <string>; + lastMatch <bool>; + + // Inherited entries + ... + } + \endverbatim + + The entries mean: + \table + Property | Description | Type | Reqd | Deflt + type | Type name: functionObjectValue | word | yes | - + path | Path to file | string | yes | - + entries | Keyword regular-expression pairs | dictionary | yes | - + sectionSeparator | Marker used to separate files into sections <!-- + --!> | string | no | "Time =" + matchSeparator | Separator used to join multiple values <!-- + --!> | string | no | " " + lastMatch | Flag to use last file section | bool | no | yes + \endtable + + The inherited entries are elaborated in: + - \link substitutionModel.H \endlink + +SourceFiles + fileRegEx.C + +---------------------------------------------------------------------------*/ + +#ifndef Foam_substitutionModels_fileRegEx_H +#define Foam_substitutionModels_fileRegEx_H + +#include "substitutionModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +namespace substitutionModels +{ + +/*---------------------------------------------------------------------------*\ + Class fileRegEx Declaration +\*---------------------------------------------------------------------------*/ + +class fileRegEx +: + public substitutionModel +{ + // Private Data + + //- Path to dictionary + const fileName path_; + + //- Hash table for key and regular expression pairs + HashTable<string> entries_; + + //- Section separator to dive log files, e.g. into time step info + const string sectionSeparator_; + + //- Separator to apply between (multiple) matches + const string matchSeparator_; + + //- Last match wins flag + bool lastMatch_; + + + // Private Functions + + //- No copy construct + fileRegEx(const fileRegEx&) = delete; + + //- No copy assignment + void operator=(const fileRegEx&) = delete; + + +public: + + //- Runtime type information + TypeName("fileRegEx"); + + + //- Constructor + fileRegEx(const dictionary& dict, const Time& time); + + + //- Destructor + virtual ~fileRegEx() = default; + + + // Member Functions + + //- Return true of model applies to this keyName + virtual bool valid(const word& keyName) const; + + //- Apply substitutions to this string buffer + virtual bool apply(const word& key, string& buffer) const; + + //- Return a word list of the keys + virtual wordList keys() const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace substitutionModels +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/functionObjectValue/functionObjectValue.C b/src/functionObjects/utilities/foamReport/substitutionModels/functionObjectValue/functionObjectValue.C new file mode 100644 index 0000000000000000000000000000000000000000..34f5188331581d43a6d755bc923f424c9a829aa3 --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/functionObjectValue/functionObjectValue.C @@ -0,0 +1,149 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "functionObjectValue.H" +#include "addToRunTimeSelectionTable.H" +#include "IFstream.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace substitutionModels +{ + defineTypeNameAndDebug(functionObjectValue, 0); + addToRunTimeSelectionTable + ( + substitutionModel, + functionObjectValue, + dictionary + ); +} +} + +// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * // + +template<class Type> +bool Foam::substitutionModels::functionObjectValue::getValue +( + OStringStream& oss, + const word& lookup +) const +{ + const auto& foProps = time_.functionObjects().propsDict(); + + Type result; + if (foProps.getObjectResult(functionObject_, lookup, result)) + { + oss << result; + return true; + } + + return false; +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::substitutionModels::functionObjectValue::functionObjectValue +( + const dictionary& dict, + const Time& time +) +: + substitutionModel(dict, time), + functionObject_(dict.get<word>("functionObject")), + entries_(), + debugValues_(dict.getOrDefault<bool>("debugValues", false)) +{ + // Populate entries + const dictionary& entriesDict = dict.subDict("entries"); + for (const auto& e : entriesDict) + { + entries_.insert(cleanKey(e.keyword()), word(e.stream())); + } +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +bool Foam::substitutionModels::functionObjectValue::update() +{ + if (debugValues_) + { + Info<< nl << "Function object results:" << nl; + time_.functionObjects().propsDict().writeAllResultEntries(Info); + } + + return true; +} + + +bool Foam::substitutionModels::functionObjectValue::valid +( + const word& keyName +) const +{ + return entries_.found(keyName); +} + + +bool Foam::substitutionModels::functionObjectValue::apply +( + const word& key, + string& buffer +) const +{ + if (!valid(key)) return false; + + OStringStream oss; + + const word& lookup = entries_[key]; + + bool ok = + getValue<label>(oss, lookup) + || getValue<scalar>(oss, lookup) + || getValue<vector>(oss, lookup) + || getValue<sphericalTensor>(oss, lookup) + || getValue<symmTensor>(oss, lookup) + || getValue<tensor>(oss, lookup); + + if (!ok) return false; + + buffer.replaceAll(keyify(key), oss.str()); + + return true; +} + + +Foam::wordList Foam::substitutionModels::functionObjectValue::keys() const +{ + return entries_.sortedToc(); +} + + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/functionObjectValue/functionObjectValue.H b/src/functionObjects/utilities/foamReport/substitutionModels/functionObjectValue/functionObjectValue.H new file mode 100644 index 0000000000000000000000000000000000000000..024ef6774c50e7234bcad368ab41432d8472f13e --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/functionObjectValue/functionObjectValue.H @@ -0,0 +1,167 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::substitutionModels::functionObjectValue + +Description + functionObjectValue substitution model. + +Usage + The \c functionObjectValue substitution model. + + The example below shows how the keywords \c cont_error_* are set by + retrieving the values \c local, \c global, \c cumulative from the function + object \c functionObjectValue. + + \verbatim + functionObjectValue1 + { + // Mandatory entries + type functionObjectValue; + functionObject continuityError1; + + entries + { + cont_error_local local; + cont_error_global global; + cont_error_cumulative cumulative; + } + + // Optional entries + debugValues <bool>; + + // Inherited entries + ... + } + \endverbatim + + The entries mean: + \table + Property | Description | Type | Reqd | Deflt + type | Type name: functionObjectValue | word | yes | - + functionObject | Name of function object to query | word | yes | - + entries | Keyword-lookup pairs | dictionary | yes | - + debugValues | Flag to show available function values | bool | no | false + \endtable + + The inherited entries are elaborated in: + - \link substitutionModel.H \endlink + +SourceFiles + functionObjectValue.C + +---------------------------------------------------------------------------*/ + +#ifndef Foam_substitutionModels_functionObjectValue_H +#define Foam_substitutionModels_functionObjectValue_H + +#include "substitutionModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +namespace substitutionModels +{ + +/*---------------------------------------------------------------------------*\ + Class functionObjectValue Declaration +\*---------------------------------------------------------------------------*/ + +class functionObjectValue +: + public substitutionModel +{ + // Private Data + + //- Name of function object + const word functionObject_; + + //- Hash table for key and entry-lookup pairs + HashTable<word> entries_; + + //- Debug - shows available function values + bool debugValues_; + + + // Private Functions + + //- Get the result value from the function object + template<class Type> + bool getValue(OStringStream& oss, const word& lookup) const; + + //- No copy construct + functionObjectValue(const functionObjectValue&) = delete; + + //- No copy assignment + void operator=(const functionObjectValue&) = delete; + + +public: + + //- Runtime type information + TypeName("functionObjectValue"); + + + //- Constructor + functionObjectValue + ( + const dictionary& dict, + const Time& time + ); + + + //- Destructor + virtual ~functionObjectValue() = default; + + + // Member Functions + + //- Update model local data + virtual bool update(); + + //- Return true of model applies to this keyName + virtual bool valid(const word& keyName) const; + + //- Apply substitutions to this string buffer + virtual bool apply(const word& key, string& buffer) const; + + //- Return a word list of the keys + virtual wordList keys() const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace substitutionModels +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModel.C b/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModel.C new file mode 100644 index 0000000000000000000000000000000000000000..bac232c9516473341f34ff89750da8498f07bd43 --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModel.C @@ -0,0 +1,167 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "substitutionModel.H" +#include "stringOps.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ + defineTypeNameAndDebug(substitutionModel, 0); + defineRunTimeSelectionTable(substitutionModel, dictionary); +} + +const Foam::word Foam::substitutionModel::KEY_BEGIN = "{{"; +const Foam::word Foam::substitutionModel::KEY_END = "}}"; +Foam::HashTable<Foam::string> Foam::substitutionModel::builtin_; + +// * * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * // + +Foam::string Foam::substitutionModel::keyify(const word& w) +{ + return KEY_BEGIN + w + KEY_END; +} + + +Foam::word Foam::substitutionModel::cleanKey(const string& str) +{ + return stringOps::upper(stringOps::trim(str)); +}; + + +Foam::wordList Foam::substitutionModel::getKeys(string& buffer) +{ + const label lBegin = KEY_BEGIN.length(); + const label lEnd = KEY_END.length(); + + wordHashSet keys; + + size_t pos0 = 0; + size_t pos = 0; + string cleanedBuffer = ""; + while (((pos = buffer.find(KEY_BEGIN, pos)) != string::npos)) + { + cleanedBuffer += buffer.substr(pos0, pos-pos0); + + size_t posEnd = buffer.find(KEY_END, pos); + + if (posEnd != string::npos) + { + const word k(cleanKey(buffer.substr(pos+lBegin, posEnd-pos-lEnd))); + keys.insert(k); + cleanedBuffer += keyify(k); + } + + pos = posEnd + lEnd; + pos0 = pos; + } + + cleanedBuffer += buffer.substr(pos0, buffer.length() - pos0); + buffer = cleanedBuffer; + + return keys.toc(); +} + + +void Foam::substitutionModel::addBuiltinStr +( + const word& key, + const string& value +) +{ + builtin_.insert(cleanKey(key), value.c_str()); +} + + +bool Foam::substitutionModel::containsBuiltin(const word& key) +{ + return builtin_.contains(key); +} + + +void Foam::substitutionModel::setBuiltinStr +( + const word& key, + const string& value +) +{ + builtin_.set(cleanKey(key), value.c_str()); +} + + +bool Foam::substitutionModel::replaceBuiltin(const word& key, string& str) +{ + if (builtin_.found(key)) + { + str.replaceAll(keyify(key), builtin_[key].c_str()); + return true; + } + + return false; +} + + +bool Foam::substitutionModel::replaceBuiltin(string& str) +{ + const string str0 = str; + + // Quick exit if there are no keys in the string + if (str.find(KEY_BEGIN) == string::npos) return false; + + forAllConstIters(builtin_, iter) + { + str.replaceAll(keyify(iter.key()), iter.val().c_str()); + } + + return str != str0; +} + + +void Foam::substitutionModel::writeBuiltins(Ostream& os) +{ + for (const auto& iter : builtin_.csorted()) + { + os << keyify(iter.key()).c_str() << " : " << iter.val() << nl; + } +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::substitutionModel::substitutionModel +( + const dictionary& dict, + const Time& time +) +: + dict_(dict), + time_(time) +{} + + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModel.H b/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModel.H new file mode 100644 index 0000000000000000000000000000000000000000..d4c474416bba3df2798ac03fecad09a5aae11e87 --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModel.H @@ -0,0 +1,206 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::substitutionModel + +Description + Base class for substitution models. + + Provides a static hash table for builtin keyword-value pairs and functions + to manipulate/interact. + +SourceFiles + substitutionModel.C + substitutionModelNew.C + +---------------------------------------------------------------------------*/ + +#ifndef Foam_substitutionModel_H +#define Foam_substitutionModel_H + +#include "runTimeSelectionTables.H" +#include "dictionary.H" +#include "Time.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class substitutionModel Declaration +\*---------------------------------------------------------------------------*/ + +class substitutionModel +{ +public: + + // Static Data Members + + //- Keyword starting characters + static const word KEY_BEGIN; + + //- Keyword ending characters + static const word KEY_END; + + //- Built-in substitutions + static HashTable<string> builtin_; + + + // Static Member Functions + + //- Return a key representation from a word + static string keyify(const word& w); + + //- Clean the key text + static word cleanKey(const string& str); + + //- Return all keys from a string buffer + // Also cleans the key strings in the buffer + static wordList getKeys(string& buffer); + + //- Add a builtin to the hash table - does not overwrite + static void addBuiltinStr(const word& key, const string& value); + + //- Add a builtin to the hash table - does not overwrite + template<class Type> + static void addBuiltin(const word& key, const Type& value); + + //- Return true if key is builtin + static bool containsBuiltin(const word& key); + + //- Set a builtin to the hash table + static void setBuiltinStr(const word& key, const string& value); + + //- Set a builtin to the hash table + template<class Type> + static void setBuiltin(const word& key, const Type& value); + + //- Replace key in string + static bool replaceBuiltin(const word& key, string& str); + + //- Replace all occurrences of key in string + static bool replaceBuiltin(string& str); + + //- Write all builtins to stream + static void writeBuiltins(Ostream& os); + + +private: + + // Private Functions + + //- No copy construct + substitutionModel(const substitutionModel&) = delete; + + //- No copy assignment + void operator=(const substitutionModel&) = delete; + + +protected: + + // Protected Data + + //- Construction dictionary + const dictionary dict_; + + //- Reference to the time database + const Time& time_; + + +public: + + //- Runtime type information + TypeName("substitutionModel"); + + // Declare run-time constructor selection table + + declareRunTimeSelectionTable + ( + autoPtr, + substitutionModel, + dictionary, + ( + const dictionary& dict, + const Time& time + ), + (dict, time) + ); + + + // Selectors + + //- Return a reference to the selected substitution model + static autoPtr<substitutionModel> New + ( + const dictionary& dict, + const Time& time + ); + + + //- Constructor + substitutionModel + ( + const dictionary& dict, + const Time& time + ); + + + //- Destructor + virtual ~substitutionModel() = default; + + + // Member Functions + + //- Update model local data + virtual bool update() { return true; } + + //- Return true of model applies to this keyName + virtual bool valid(const word& keyName) const = 0; + + //- Apply substitutions to this string buffer + virtual bool apply(const word& key, string& buffer) const = 0; + + //- Return a word list of the keys + virtual wordList keys() const = 0; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository + #include "substitutionModelTemplates.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModelNew.C b/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModelNew.C new file mode 100644 index 0000000000000000000000000000000000000000..c284136c373d29e39bd032209b7696deaabb0798 --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModelNew.C @@ -0,0 +1,60 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +---------------------------------------------------------------------------*/ + +#include "substitutionModel.H" +#include "error.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +Foam::autoPtr<Foam::substitutionModel> Foam::substitutionModel::New +( + const dictionary& dict, + const Time& time +) +{ + const word modelType(dict.get<word>("type")); + + Info<< " Selecting substitution model " << modelType << endl; + + auto* ctorPtr = dictionaryConstructorTable(modelType); + + if (!ctorPtr) + { + FatalIOErrorInLookup + ( + dict, + "substitutionModel", + modelType, + *dictionaryConstructorTablePtr_ + ) << exit(FatalIOError); + } + + return autoPtr<substitutionModel>(ctorPtr(dict, time)); +} + + +// ************************************************************************* // diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModelTemplates.C b/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModelTemplates.C new file mode 100644 index 0000000000000000000000000000000000000000..71a4a90b83a73e8e021e45cdd5cc1cfaaa963d38 --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/substitutionModel/substitutionModelTemplates.C @@ -0,0 +1,47 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +template<class Type> +void Foam::substitutionModel::addBuiltin(const word& key, const Type& value) +{ + OStringStream oss; + oss << value; + addBuiltinStr(key, oss.str()); +} + + +template<class Type> +void Foam::substitutionModel::setBuiltin(const word& key, const Type& value) +{ + OStringStream oss; + oss << value; + + setBuiltinStr(key, oss.str()); +} + + +// ************************************************************************* // diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/userValue/userValue.C b/src/functionObjects/utilities/foamReport/substitutionModels/userValue/userValue.C new file mode 100644 index 0000000000000000000000000000000000000000..4c05164c32f3692b880c810bb5bfdece26bfb96c --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/userValue/userValue.C @@ -0,0 +1,99 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "userValue.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace substitutionModels +{ + defineTypeNameAndDebug(userValue, 0); + addToRunTimeSelectionTable + ( + substitutionModel, + userValue, + dictionary + ); +} +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::substitutionModels::userValue::userValue +( + const dictionary& dict, + const Time& time +) +: + substitutionModel(dict, time), + entries_() +{ + // Populate entries + const dictionary& entriesDict = dict.subDict("entries"); + for (const auto& e : entriesDict) + { + entries_.insert(cleanKey(e.keyword()), string(e.stream())); + } +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +bool Foam::substitutionModels::userValue::valid +( + const word& keyName +) const +{ + return entries_.found(keyName); +} + + +bool Foam::substitutionModels::userValue::apply +( + const word& key, + string& buffer +) const +{ + if (!valid(key)) return false; + + buffer.replaceAll(keyify(key), entries_[key]); + + return true; +} + + +Foam::wordList Foam::substitutionModels::userValue::keys() const +{ + return entries_.sortedToc(); +} + + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/foamReport/substitutionModels/userValue/userValue.H b/src/functionObjects/utilities/foamReport/substitutionModels/userValue/userValue.H new file mode 100644 index 0000000000000000000000000000000000000000..78ec3a48183d533cbafed4d645c2bf40448f4d40 --- /dev/null +++ b/src/functionObjects/utilities/foamReport/substitutionModels/userValue/userValue.H @@ -0,0 +1,137 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::substitutionModels::userValue + +Description + The \c userValue substitution model. Dictionaries can be retrieved from + an object registry, e.g. time, mesh, or from a file. + + \verbatim + userValues1 + { + // Mandatory entries + type userValue; + + entries + { + my_keyword1 "My local string value"; + my_keyword2 "My local string value"; + } + + // Inherited entries + ... + } + \endverbatim + + The entries mean: + \table + Property | Description | Type | Reqd | Deflt + type | Type name: userValue | word | yes | - + entries | Keyword lookup pairs | dictionary | yes | - + \endtable + + The inherited entries are elaborated in: + - \link substitutionModel.H \endlink + +SourceFiles + userValue.C + +---------------------------------------------------------------------------*/ + +#ifndef Foam_substitutionModels_userValue_H +#define Foam_substitutionModels_userValue_H + +#include "substitutionModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +namespace substitutionModels +{ + +/*---------------------------------------------------------------------------*\ + Class userValue Declaration +\*---------------------------------------------------------------------------*/ + +class userValue +: + public substitutionModel +{ + // Private Data + + //- Hash table for key and environment variable pairs + HashTable<string> entries_; + + + // Private Functions + + //- No copy construct + userValue(const userValue&) = delete; + + //- No copy assignment + void operator=(const userValue&) = delete; + + +public: + + //- Runtime type information + TypeName("userValue"); + + + //- Constructor + userValue(const dictionary& dict, const Time& time); + + + //- Destructor + virtual ~userValue() = default; + + + // Member Functions + + //- Return true of model applies to this keyName + virtual bool valid(const word& keyName) const; + + //- Apply substitutions to this string buffer + virtual bool apply(const word& key, string& buffer) const; + + //- Return a word list of the keys + virtual wordList keys() const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace substitutionModels +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/graphFunctionObject/SVGTools.H b/src/functionObjects/utilities/graphFunctionObject/SVGTools.H new file mode 100644 index 0000000000000000000000000000000000000000..18ec80537bf16377e63970da41a284fc77a0165c --- /dev/null +++ b/src/functionObjects/utilities/graphFunctionObject/SVGTools.H @@ -0,0 +1,238 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Namespace + Foam::SVG + +Description + Collection of tools to generate SVG strings + +SourceFiles + SVGTools.H + +\*---------------------------------------------------------------------------*/ + +#ifndef Foam_SVGTools_H +#define Foam_SVGTools_H + +#include "Ostream.H" +#include "OStringStream.H" +#include "List.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Namespace SVG Declaration +\*---------------------------------------------------------------------------*/ + +namespace SVG +{ + typedef std::pair<const char*, string> entryType; + + struct element; + Ostream& operator<<(Ostream& os, const element& e); + + // Base SVG element + struct element + { + const word key_; + DynamicList<entryType> styles_; + DynamicList<entryType> elems_; + + element + ( + const word& key, + const std::initializer_list<entryType>& styles = {}, + const std::initializer_list<entryType>& elems = {} + ) + : + key_(key), + styles_(styles), + elems_(elems) + {} + + template<class Type> + void addAttr(const char* key, const Type& value) + { + OStringStream oss; + oss << value; + elems_.push_back(entryType(key, oss.str().c_str())); + } + + void addAttrStr(const char* key, const string& str) + { + elems_.push_back(entryType(key, str.c_str())); + } + + friend Ostream& operator<<(Ostream& os, const element& ele) + { + os << "<" << ele.key_; + + for (const auto& e : ele.elems_) + { + os << " " << e.first << "=" << e.second; + } + + os << " style=\""; + for (const auto& s : ele.styles_) + { + os << s.first << ":" << s.second.c_str() << ";"; + } + + os << "\">"; + + return os; + } + + const word end = "</" + key_ + ">"; + }; + + + struct text; + Ostream& operator<<(Ostream& os, const text& t); + + // Text + struct text + : + element + { + const string text_; + + text + ( + const string text, + const label left, + const label top, + const std::initializer_list<entryType>& styles = {}, + const word anchor = "middle", + const std::initializer_list<entryType>& elems = {} + ) + : + element("text", styles, elems), + text_(text) + { + elems_.push_back(entryType("x", Foam::name(left))); + elems_.push_back(entryType("y", Foam::name(top))); + elems_.push_back(entryType("text-anchor", anchor)); + elems_.push_back + ( + entryType("font-family", "Arial, Helvetica, sans-serif") + ); + } + + + friend Ostream& operator<<(Ostream& os, const text& t) + { + // element::operator<<(os, t); + os << static_cast<const element&>(t); + + os << t.text_.c_str(); + + os << t.end; + + return os; + } + }; + + + struct line; + Ostream& operator<<(Ostream& os, const line& l); + + // Line + struct line + : + element + { + line + ( + const label x1, + const label y1, + const label x2, + const label y2, + const std::initializer_list<entryType>& styles = {}, + const std::initializer_list<entryType>& elems = {} + ) + : + element("line", styles, elems) + { + elems_.push_back(entryType("x1", Foam::name(x1))); + elems_.push_back(entryType("y1", Foam::name(y1))); + elems_.push_back(entryType("x2", Foam::name(x2))); + elems_.push_back(entryType("y2", Foam::name(y2))); + } + + + friend Ostream& operator<<(Ostream& os, const line& l) + { + // element::operator<<(os, l); + os << static_cast<const element&>(l); + os << l.end; + + return os; + } + }; + + struct header; + Ostream& operator<<(Ostream& os, const header& h); + + // Header + struct header + { + label width_; + label height_; + + header(const label width, const label height) + : + width_(width), + height_(height) + {} + + friend Ostream& operator<<(Ostream& os, const header& h) + { + os << "<svg viewBox=\"0 0 " << h.width_ << ' ' << h.height_ << "\"" + << " xmlns=\"http://www.w3.org/2000/svg\"" + << " xmlns:xlink=\"http://www.w3.org/1999/xlink\"" + << " xmlns:bx=\"https://www.boxy-svg.com/bx\">"; + + return os; + } + }; + + // Close SVG element + const char* end = "</svg>"; + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace SVG +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/graphFunctionObject/graphFunctionObject.C b/src/functionObjects/utilities/graphFunctionObject/graphFunctionObject.C new file mode 100644 index 0000000000000000000000000000000000000000..1627dbf6f26e4718a2050f246f4c9f0244bec989 --- /dev/null +++ b/src/functionObjects/utilities/graphFunctionObject/graphFunctionObject.C @@ -0,0 +1,654 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "graphFunctionObject.H" +#include "addToRunTimeSelectionTable.H" +#include "OFstream.H" +#include "labelVector.H" +#include "FlatOutput.H" +#include "SVGTools.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace functionObjects +{ + defineTypeNameAndDebug(graphFunctionObject, 0); + addToRunTimeSelectionTable + ( + functionObject, + graphFunctionObject, + dictionary + ); +} +} + +// 'Muted' colour scheme from https://personal.sron.nl/~pault/ (12.07.24) +Foam::wordList Foam::functionObjects::graphFunctionObject::defaultColours +({ + "#CC6677", + "#332288", + "#DDCC77", + "#117733", + "#88CCEE", + "#882255", + "#44AA99", + "#999933", + "#AA4499" +}); + + +// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * // + +template<class Type> +bool Foam::functionObjects::graphFunctionObject::getValue +( + const label objecti, + label& valuei +) +{ + const word& object = objects_[objecti]; + const word& entry = entries_[objecti]; + + Type result; + if (!this->getObjectResult(object, entry, result)) + { + return false; + } + + auto& cols = objectToCol_[objecti]; + if (cols.empty()) + { + for (direction d = 0; d < pTraits<Type>::nComponents; ++d) + { + cols.push_back(valuei++); + values_.push_back(DynamicList<scalar>()); + } + } + + for (direction d = 0; d < pTraits<Type>::nComponents; ++d) + { + scalar v = component(result, d); + + if (logScaleY_) + { + v = (v < SMALL) ? 1 : log10(v); + } + + values_[cols[d]].push_back(v); + } + + return true; +} + + +Foam::label Foam::functionObjects::graphFunctionObject::setAxisProps +( + const bool logScale, + scalar& xmin, + scalar& xmax, + scalar& xtick +) const +{ + DebugInfo + << "1 -- xmin:" << xmin << " xmax:" << xmax + << " xtick:" << xtick << endl; + + /* + Divisions Based on (12.07.24): + https://peltiertech.com/calculate-nice-axis-scales-in-your-excel-worksheet + */ + + const scalar range = xmax - xmin; + const scalar eps = 0.01*range; + + // Extend xmin and xmax by eps + if (mag(xmin) < SMALL) + { + xmin = 0; + } + else + { + xmin = (xmin > 0) ? max(0, xmin - eps) : xmin - eps; + } + + if (mag(xmax) < SMALL) + { + xmax = mag(xmin) < SMALL ? 1 : 0; + } + else + { + xmax = (xmax < 0) ? min(0, xmax + eps) : xmax + eps; + } + + DebugInfo + << "2 -- xmin:" << xmin << " xmax:" << xmax + << " xtick:" << xtick << endl; + + auto lookup = [](const scalar x) -> scalar + { + if (x < 2.5) { return 0.2; } + if (x < 5.0) { return 0.5; } + if (x < 10.0) { return 2.0; } + return 10.0; + }; + + const scalar power = log10(range); + const scalar factor = pow(10, power - floor(power)); + + xtick = lookup(factor)*pow(10, floor(power)); + xmin = xtick*floor(xmin/xtick); + xmax = xtick*(floor(xmax/xtick) + 1); + + // Convert ticks to integer powers of 10 for log scales + if (logScale) + { + xmin = floor(xmin); + xmax = ceil(xmax); + xtick = 1; + } + + DebugInfo + << "power:" << power << " factor:" << factor + << " xmin:" << xmin << " xmax:" << xmax + << " xtick:" << xtick << endl; + + return round((xmax - xmin)/xtick); +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::functionObjects::graphFunctionObject::graphFunctionObject +( + const word& name, + const Time& runTime, + const dictionary& dict +) +: + stateFunctionObject(name, runTime), + writeFile(runTime, name, typeName, dict, true, ".svg"), + objects_(), + entries_(), + titles_(), + colours_(), + dashes_(), + times_(), + values_(), + objectToCol_(), + xMin_(dict.getOrDefault<scalar>("xMin", GREAT)), + xMax_(dict.getOrDefault<scalar>("xMax", GREAT)), + yMin_(dict.getOrDefault<scalar>("yMin", GREAT)), + yMax_(dict.getOrDefault<scalar>("yMax", GREAT)), + xlabel_(dict.getOrDefault<string>("xlabel", "Iteration/Time")), + ylabel_(dict.getOrDefault<string>("ylabel", "Property")), + width_(dict.getOrDefault<label>("width", 800)), + height_(dict.getOrDefault<label>("height", 600)), + strokeWidth_(dict.getOrDefault<label>("strokeWidth", 2)), + logScaleX_(dict.getOrDefault<bool>("logScaleX", false)), + logScaleY_(dict.getOrDefault<bool>("logScaleY", false)), + drawGrid_(dict.getOrDefault<bool>("drawGrid", true)) +{ + const dictionary& functions = dict.subDict("functions"); + objects_.setSize(functions.size()); + entries_.setSize(functions.size()); + titles_.setSize(functions.size()); + colours_.setSize(functions.size()); + dashes_.setSize(functions.size()); + objectToCol_.setSize(functions.size()); + + label defaultColouri = 0; + label entryi = 0; + + for (const auto& e : functions) + { + if (!e.isDict()) + { + FatalIOErrorInFunction(functions) + << "Functions must be provided in dictionary format" + << exit(FatalIOError); + } + + const dictionary& d = e.dict(); + objects_[entryi] = d.get<word>("object"); + entries_[entryi] = d.get<word>("entry"); + titles_[entryi] = d.getOrDefault<string>("title", e.keyword()); + + labelVector colour; + if (d.readIfPresent("colour", colour)) + { + // Warn/error if outside 0-255 range? + colour[0] = min(255, max(0, colour[0])); + colour[1] = min(255, max(0, colour[1])); + colour[2] = min(255, max(0, colour[2])); + + OStringStream oss; + oss << "rgb" << flatOutput(colour, FlatOutput::ParenComma{}); + colours_[entryi] = oss.str(); + } + else + { + colours_[entryi] = defaultColours[defaultColouri++]; + if (defaultColouri == defaultColours.size()) + { + // Lots of lines to plot - exhausted list of default colours. + // Restarting ... + defaultColouri = 0; + } + } + + { + labelList dashes; + if (d.readIfPresent("dashes", dashes)) + { + OStringStream oss; + oss << flatOutput(dashes, FlatOutput::BareSpace{}); + dashes_[entryi] = oss.str(); + } + else + { + // Solid line + dashes_[entryi] = "0"; + } + } + + ++entryi; + } +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +bool Foam::functionObjects::graphFunctionObject::execute() +{ + if (!Pstream::master()) return true; + + scalar& graphTime = times_.emplace_back(time_.timeOutputValue()); + + if (logScaleX_) + { + graphTime = log10(max(graphTime, SMALL)); + } + + label valuei = 0; + forAll(objects_, objecti) + { + bool ok = + getValue<label>(objecti, valuei) + || getValue<scalar>(objecti, valuei) + || getValue<vector>(objecti, valuei) + || getValue<sphericalTensor>(objecti, valuei) + || getValue<symmTensor>(objecti, valuei) + || getValue<tensor>(objecti, valuei); + + if (!ok) + { + // Entry not found + Log << type() << " " << name() << " execute: " + << "Unable to get value for object:" << objects_[objecti] + << " entry:" << entries_[objecti] << endl; + } + } + + return true; +} + + +bool Foam::functionObjects::graphFunctionObject::write() +{ + if (!Pstream::master()) return true; + // DebugVar(values_); + + auto filePtr = newFileAtTime(name(), time().value()); + auto& os = filePtr(); + + scalar ymin = GREAT; + scalar ymax = -GREAT; + + bool valid = false; + for (const auto& data : values_) + { + for (const auto& value : data) + { + ymin = min(ymin, value); + ymax = max(ymax, value); + valid = true; + } + } + + // Early exit if there is no data + if (!valid) + { + Log << type() << " " << name() << " write:" << nl + << " No data to plot - skipping" << nl; + + // Empty graph + os << SVG::header(width_, height_) << nl << SVG::end << endl; + + return false; + } + + auto applyLimits = [](const scalar val, const scalar lim, const bool lg) + { + if (lim < 0.99*GREAT) + { + return lg ? log10(lim) : lim; + } + + return val; + }; + + + // Set y axis limits if user-supplied + ymin = applyLimits(ymin, yMin_, logScaleY_); + ymax = applyLimits(ymax, yMax_, logScaleY_); + + + scalar ytick = 0; + const label ny = setAxisProps(logScaleY_, ymin, ymax, ytick); + + const scalar border = 0.1; + const scalar w = width_*(1.0 - 2*border); + const scalar h = height_*(1.0 - 2*border); + + // Set x axis limits if user-supplied + scalar xmin = applyLimits(0, xMin_, logScaleX_); + scalar xmax = applyLimits(max(times_), xMax_, logScaleX_); + + // Set x axis properties; return the number of tic divisions + scalar xtick = 0; + const label nx = setAxisProps(logScaleX_, xmin, xmax, xtick); + + // Top pixel co-ordinate + auto top = [=](const scalar y) + { + const scalar ratio = (y - ymin)/(ymax - ymin + ROOTVSMALL); + return round(height_ - ratio*h - border*height_); + }; + + // Left pixel co-ordinate + auto left = [=](const scalar x) + { + return round(x/(xmax - xmin + ROOTVSMALL)*w + border*width_); + }; + + const scalar fontpx = min(20, h/(2*values_.size())); + const scalar fontdy = 1.5*fontpx; + + // Legend - top right: text (right aligned), coloured line (fixed positions) + const label legendLineRight = border*width_ + w - fontpx; + const label legendLineLeft = legendLineRight - 0.5*border*width_; + const label legendLabelRight = legendLineLeft - 0.5*fontpx; + + // Graph box and tick colour + const word colour = "rgb(105,105,105)"; + + os << SVG::header(width_, height_) << nl; + + // Graph bounding box + SVG::element bounds("rect", {{"fill", "none"}, {"stroke", colour}}); + bounds.addAttr("x", round(border*width_)); + bounds.addAttr("y", round(border*height_)); + bounds.addAttr("width", round(w)); + bounds.addAttr("height", round(h)); + os << bounds << bounds.end << nl; + + + // X axis label + os << SVG::text + ( + xlabel_, + 0.5*width_, + height_ - 0.5*(border*height_) + fontpx, + {{"font-size", Foam::name(1.2*fontpx)}}, + "middle" + ) + << nl; + + // Y axis label - text rotated + SVG::text ytext + ( + ylabel_, + 0, + 0, + {{"font-size", Foam::name(1.2*fontpx)}}, + "middle" + ); + ytext.addAttr("alignment-baseline", "middle"); + ytext.addAttrStr + ( + "transform", + "translate(" + Foam::name(left(xmin) - 3*fontpx) + "," + + Foam::name(0.5*height_) + ") rotate(270)" + ); + os << ytext << nl; + + const label dTick = 0.2*fontpx; + + // Background grid + if (drawGrid_) + { + const word colourGrid = "rgb(200,200,200)"; + + for (label i = 1; i < nx; ++i) + { + const label x = left(xmin + i*xtick); + const label y1 = top(ymin); + const label y2 = top(ymax); + + // Dashed grid lines + os << SVG::line + ( + x, + y1, + x, + y2, + { + {"stroke", colourGrid}, + {"stroke-width", "1"}, + {"stroke-dasharray", "4"} + } + ) << nl; + } + + for (label i = 1; i < ny; ++i) + { + const label y = top(ymin + i*ytick); + const label x1 = left(xmin); + const label x2 = left(xmax); + + // Dashed grid lines + os << SVG::line + ( + x1, + y, + x2, + y, + { + {"stroke", colourGrid}, + {"stroke-width", "1"}, + {"stroke-dasharray", "4"} + } + ) << nl; + } + } + + // Axis labels + for (label i = 0; i <= nx; ++i) + { + const scalar v = xmin + i*xtick; + const label x = left(v); + const scalar y0 = ymin; + const label y1 = top(y0); + const label y2 = y1 + dTick; + const string tickLabel = logScaleX_ + ? "<tspan>10<tspan style=\"font-size:" + + Foam::name(label(0.75*fontpx)) + + "px\" dy=\"" + Foam::name(-0.4*fontpx) + "\">" + + Foam::name(v) + + "</tspan></tspan>" + : Foam::name(v); + + // Ticks + os << SVG::line + ( + x, + y1, + x, + y2, + { + {"stroke", colour}, + {"stroke-width", Foam::name(strokeWidth_)} + } + ) << nl; + + // Labels + os << SVG::text + ( + tickLabel, + x, + y2 + 1.25*fontpx, + {{"font-size", Foam::name(fontpx)}}, + "middle" + ) << nl; + } + for (label i = 0; i <= ny; ++i) + { + const scalar v = ymin + i*ytick; + const label y = top(v); + const label y2 = y + 0.4*fontpx; + const scalar x0 = xmin; + const label x1 = left(x0); + const label x2 = x1 - dTick; + const string tickLabel = logScaleY_ + ? "<tspan>10<tspan style=\"font-size:" + + Foam::name(label(0.6*fontpx)) + + "px\" dy=\"" + Foam::name(-0.4*fontpx) + "\">" + + Foam::name(v) + + "</tspan></tspan>" + : Foam::name(v); + + // Ticks + os << SVG::line + ( + x1, + y, + x2, + y, + {{"stroke", colour},{"stroke-width", "1"}} + ) << nl; + + // Labels + os << SVG::text + ( + tickLabel, + x2 - 0.5*fontpx, + y2, + {{"font-size", Foam::name(fontpx)}}, + "end" + ) << nl; + } + + + forAll(objects_, objecti) + { + const word& colour = colours_[objecti]; + + const auto& cols = objectToCol_[objecti]; + for (const label c : cols) + { + const word cmpt = cols.size() > 1 ? Foam::name(c) : ""; + + label legendTop = border*height_ + fontdy*(c+1); + os << SVG::text + ( + titles_[objecti] + cmpt, + legendLabelRight, + legendTop, + {{"font-size", Foam::name(fontpx)}}, + "end" + ) << nl; + + os << SVG::line + ( + legendLineLeft, + legendTop - 0.5*fontpx, + legendLineRight, + legendTop - 0.5*fontpx, + {{"stroke", colour},{"stroke-width", "2"}}, + {{"stroke-dasharray", dashes_[objecti]}} + ) << nl; + + + os << "<path d=\""; + const auto& data = values_[c]; + bool firstPoint = true; + forAll(data, i) + { + const scalar t = times_[i]; + const scalar v = data[i]; + + if ((v > ymin) && (v < ymax)) + { + if (firstPoint) + { + os << " M "; + } + else + { + os << " L "; + } + + os << left(t) << ' ' << top(v); + + firstPoint = false; + } + else + { + firstPoint = true; + } + } + + os << "\"" + << " style=\"stroke:" << colour << ";" + << " fill:none; stroke-width:2;\"" + << " stroke-dasharray=\"" << dashes_[objecti].c_str() << "\" />" + << nl; + } + } + + os << SVG::end << endl; + + Log << type() << " " << name() << " write:" << nl + << " Written file " << os.name() << nl << endl; + + return true; +} + + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/graphFunctionObject/graphFunctionObject.H b/src/functionObjects/utilities/graphFunctionObject/graphFunctionObject.H new file mode 100644 index 0000000000000000000000000000000000000000..73ddbac9d934e96ba7456027beaa07f94ea78749 --- /dev/null +++ b/src/functionObjects/utilities/graphFunctionObject/graphFunctionObject.H @@ -0,0 +1,300 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \ / F ield | OpenFOAM: The Open Source CFD Toolbox + \ / O peration | + \ / A nd | www.openfoam.com + \/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::functionObjects::graphFunctionObject + +Description + Accumulates function object result values and renders into a graph in + SVG format. + + Operands: + \table + Operand | Type | Location + input | Function object results | Memory; <!-- + --> $FOAM_CASE/\<time\>/uniform/functionObjects/functionObjectProperties + output file | SVG | <!-- + --> $FOAM_CASE/postProcessing/<functionObject>/<time>/<functionObject>.svg + \endtable + +Usage + Minimal example by using \c system/controlDict.functions to plot the + residuals from the \c solverInfo function object: + + \verbatim + residualGraph + { + // Mandatory entries + type graphFunctionObject; + libs (utilityFunctionObjects); + + functions + { + entry + { + // Mandatory entries + object <word>; + entry <word>; + + // Optional entries + title <string>; + colour <labelVector>; + dashes <labelList>; + } + line1 + { + object solverInfo1; + entry Ux_initial; + } + line2 + { + object solverInfo1; + entry p_initial; + } + } + + // Optional entries + xMin <scalar>; + xMax <scalar>; + yMin <scalar>; + yMax <scalar>; + xlabel <string>; // "Iteration"; + ylabel <string>; // "log10(Initial residual)"; + width <label>; + height <label>; + strokeWidth <label>; + logScaleX <bool>; + logScaleY <bool>; + drawGrid <bool>; + + // Inherited entries + ... + } + \endverbatim + + where the entries mean: + \table + Property | Description | Type | Reqd | Deflt + type | Type name: graphFunctionObject | word | yes | - + libs | Library name: utilityFunctionObjects | word | yes | - + functions | Dictionary of lines to draw | dictionary | yes | - + width | Output SVG width in pixel | label| no | 800 + height | Output SVG height in pixel | label| no | 600 + xMin | User defined minimum x axis limit | scalar | no | calculated + xMax | User defined maximum x axis limit | scalar | no | calculated + yMin | User defined minimum y axis limit | scalar | no | calculated + yMax | User defined maximum y axis limit | scalar | no | calculated + xLabel | X axis label | string | no | Iteration/Time + yLabel | Y axis label | string | no | Property + strokeWidth | Line stroke width in pixel | label | no | 2 + logScaleX | Use log scale for x axis | bool | no | false + logScaleY | Use log scale for y axis | bool | no | false + drawGrid | Draw background grid | bool | no | true + \endtable + + The inherited entries are elaborated in: + - \link stateFunctionObject.H \endlink + - \link writeFile.H \endlink + + Each line corresponds to the history of function object result values, e.g. + + \verbatim + line1 + { + object solverInfo1; + entry Ux_initial; + colour (255 0 0); + dashes (4 1); + title Ux; + } + \endverbatim + + where the entries mean: + \table + Property | Description | Type | Reqd | Deflt + object | Function object name | word | yes | - + entry | Function object result entry name | word | yes | - + colour | Line colour | label vector | no | auto + dashes | Line dash array | label vector | no | auto + title | Title | string | no | dict name + \endtable + +See also + - Foam::functionObjects::solverInfo + +SourceFiles + graphFunctionObject.C + +\*---------------------------------------------------------------------------*/ + +#ifndef Foam_functionObjects_graphFunctionObject_H +#define Foam_functionObjects_graphFunctionObject_H + +#include "stateFunctionObject.H" +#include "writeFile.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +namespace functionObjects +{ + +/*---------------------------------------------------------------------------*\ + Class graphFunctionObject Declaration +\*---------------------------------------------------------------------------*/ + +class graphFunctionObject +: + public stateFunctionObject, + public writeFile +{ + // Private Data + + //- List of default curve colours + static wordList defaultColours; + + //- Names of function objects + List<word> objects_; + + //- Function object entries + List<word> entries_; + + //- Line titles + List<string> titles_; + + //- Line colours - hex string + List<word> colours_; + + //- Line dash array + List<string> dashes_; + + //- Times + DynamicList<scalar> times_; + + //- Time vs. flattened values + DynamicList<DynamicList<scalar>> values_; + + //- Mapping from object to column index in values_ + List<DynamicList<label>> objectToCol_; + + //- User-supplied minimum x value + scalar xMin_; + + //- User-supplied maximum x value + scalar xMax_; + + //- User-supplied minimum y value + scalar yMin_; + + //- User-supplied maximum y value + scalar yMax_; + + //- X axis label + const string xlabel_; + + //- Y axis label + const string ylabel_; + + //- Width in px + const label width_; + + //- Height in px + const label height_; + + //- Line width in px + const label strokeWidth_; + + //- Flag to use log scale on x-axis + bool logScaleX_; + + //- Flag to use log scale on y-axis + bool logScaleY_; + + //- Draw background grid + const bool drawGrid_; + + + // Private Functions + + //- Get the result value from the function object + // \returns true if the value was found + template<class Type> + bool getValue(const label objecti, label& valuei); + + //- Set axis min, max, tick + // \returns number of ticks + label setAxisProps + ( + const bool logScale, + scalar& xmin, + scalar& xmax, + scalar& xtick + ) const; + + //- No copy construct + graphFunctionObject(const graphFunctionObject&) = delete; + + //- No copy assignment + void operator=(const graphFunctionObject&) = delete; + + +public: + + //- Runtime type information + TypeName("graphFunctionObject"); + + //- Construct from Time and dictionary + graphFunctionObject + ( + const word& name, + const Time& runTime, + const dictionary& dict + ); + + //- Destructor + virtual ~graphFunctionObject() = default; + + + // Member Functions + + //- Execute + virtual bool execute(); + + //- Write + virtual bool write(); +}; + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace functionObjects +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // \ No newline at end of file diff --git a/src/functionObjects/utilities/writeObjects/writeObjects.C b/src/functionObjects/utilities/writeObjects/writeObjects.C index b897d64e206a0f95dd2cc6a9f4c6818b127d8940..266d5e9e2974e45f7bf94f765fc65958674d71d4 100644 --- a/src/functionObjects/utilities/writeObjects/writeObjects.C +++ b/src/functionObjects/utilities/writeObjects/writeObjects.C @@ -58,6 +58,7 @@ Foam::functionObjects::writeObjects::writeOptionNames_ { writeOption::NO_WRITE, "noWrite" }, { writeOption::AUTO_WRITE, "autoWrite" }, { writeOption::ANY_WRITE, "anyWrite" }, + { writeOption::LOG, "log" }, }); const Foam::objectRegistry& setRegistry @@ -99,7 +100,10 @@ Foam::functionObjects::writeObjects::writeObjects bool Foam::functionObjects::writeObjects::read(const dictionary& dict) { - functionObject::read(dict); + if (!functionObject::read(dict)) + { + return false; + } if (dict.found("field")) { @@ -134,6 +138,31 @@ bool Foam::functionObjects::writeObjects::execute() bool Foam::functionObjects::writeObjects::write() { + if (writeOption_ == writeOption::LOG) + { + const auto& classes = obr_.classes(); + + Log << "Registered objects:\n"; + + forAllConstIters(classes, classInfo) + { + const word& className = classInfo.key(); + const wordHashSet& objectSet = classInfo(); + + Log << " " << className << ":\n"; + + for (const auto& objectName : objectSet) + { + Log << " " << objectName << "\n"; + } + Log << nl; + } + + Log << endl; + + return true; + } + Log << type() << " " << name() << " write:" << nl; if (!obr_.time().writeTime()) diff --git a/src/functionObjects/utilities/writeObjects/writeObjects.H b/src/functionObjects/utilities/writeObjects/writeObjects.H index 6198eb882706270045a45a57b04b5247ce99679b..1804f87a806112f3469b4c40815c455846b3d721 100644 --- a/src/functionObjects/utilities/writeObjects/writeObjects.H +++ b/src/functionObjects/utilities/writeObjects/writeObjects.H @@ -34,49 +34,55 @@ Description Allows specification of different writing frequency of objects registered to the database. - It has similar functionality as the main time database through the - \c writeControl setting: - - timeStep - - writeTime - - adjustableRunTime - - runTime - - clockTime - - cpuTime - - It also has the ability to write the selected objects that were defined - with the respective write mode for the requested \c writeOption, namely: - \vartable - autoWrite | objects set to write at output time - noWrite | objects set to not write by default - anyWrite | any option of the previous two - \endvartable - Usage - Example of function object specification: + Minimal example by using \c system/controlDict.functions: \verbatim writeObjects1 { - type writeObjects; - libs (utilityFunctionObjects); + // Mandatory entries + type writeObjects; + libs (utilityFunctionObjects); + + // Optional entries + writeOption <word>; + + // Conditional entries + + // Option-1 + field <word>; + + // Option-2 + fields (<wordRes>); + + // Option-3 + objects (<wordRes>); + + // Inherited entries ... - objects (obj1 obj2); - writeOption anyWrite; } \endverbatim - Where the entries comprise: + where the entries mean: \table - Property | Description | Required | Default value - type | type name: writeObjects | yes | - objects | objects to write | yes | - writeOption | only those with this write option | no | anyWrite + Property | Description | Type | Reqd | Deflt + type | Type name: writeObjects | word | yes | - + libs | Library name: utilityFunctionObjects | word | yes | - + writeOption | Select objects with the specified write mode | no | anyWrite + field | Name of field to write | word | no | - + fields | Names of fields to write | wordRes | no | - + objects | Names of objects to write | wordRes | no | - \endtable - Note: Regular expressions can also be used in \c objects. + Options for the \c writeOption entry: + \vartable + autoWrite | Objects set to write at output time + noWrite | Objects set to not write by default + anyWrite | Any option of the previous two + log | Only report registered objects without writing objects + \endvartable -See also - Foam::functionObject - Foam::functionObjects::timeControl + The inherited entries are elaborated in: + - \link functionObject.H \endlink SourceFiles writeObjects.C @@ -119,9 +125,11 @@ public: { NO_WRITE, AUTO_WRITE, - ANY_WRITE + ANY_WRITE, + LOG }; + //- Names for writeOption static const Enum<writeOption> writeOptionNames_; private: diff --git a/src/fused/finiteVolume/Make/files b/src/fused/finiteVolume/Make/files new file mode 100644 index 0000000000000000000000000000000000000000..fde0488e45b0e09660cafd038f508a0c4923ac74 --- /dev/null +++ b/src/fused/finiteVolume/Make/files @@ -0,0 +1,7 @@ +fusedGaussLaplacianSchemes.C +fusedLeastSquaresGrads.C +fusedGaussDivSchemes.C +fusedGaussConvectionSchemes.C +fusedGaussGrads.C + +LIB = $(FOAM_LIBBIN)/libfusedFiniteVolume diff --git a/src/fused/finiteVolume/Make/options b/src/fused/finiteVolume/Make/options new file mode 100644 index 0000000000000000000000000000000000000000..f6fbc14a767901de6c856affc842742d9f007192 --- /dev/null +++ b/src/fused/finiteVolume/Make/options @@ -0,0 +1,7 @@ +EXE_INC = \ + -I$(LIB_SRC)/finiteVolume/lnInclude \ + -I$(LIB_SRC)/meshTools/lnInclude \ + -I$(LIB_SRC)/sampling/lnInclude + +LIB_LIBS = \ + -lfiniteVolume diff --git a/src/fused/finiteVolume/fusedGaussConvectionScheme.C b/src/fused/finiteVolume/fusedGaussConvectionScheme.C new file mode 100644 index 0000000000000000000000000000000000000000..fb735008750b5f2ce057b9d3045ae263d763a774 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussConvectionScheme.C @@ -0,0 +1,265 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2024 M. Janssens +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fvcSurfaceOps.H" +#include "fusedGaussConvectionScheme.H" +#include "fvcSurfaceIntegrate.H" +#include "fvMatrices.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace fv +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +template<class Type> +const surfaceInterpolationScheme<Type>& +fusedGaussConvectionScheme<Type>::interpScheme() const +{ + return tinterpScheme_(); +} + + +template<class Type> +tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> +fusedGaussConvectionScheme<Type>::interpolate +( + const surfaceScalarField&, + const GeometricField<Type, fvPatchField, volMesh>& vf +) const +{ + return tinterpScheme_().interpolate(vf); +} + + +template<class Type> +tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> +fusedGaussConvectionScheme<Type>::flux +( + const surfaceScalarField& faceFlux, + const GeometricField<Type, fvPatchField, volMesh>& vf +) const +{ + return faceFlux*interpolate(faceFlux, vf); +} + + +template<class Type> +tmp<fvMatrix<Type>> +fusedGaussConvectionScheme<Type>::fvmDiv +( + const surfaceScalarField& faceFlux, + const GeometricField<Type, fvPatchField, volMesh>& vf +) const +{ + DebugPout<< "fusedGaussConvectionScheme<Type>::fvmDiv on " << vf.name() + << " with flux " << faceFlux.name() << endl; + + tmp<surfaceScalarField> tweights = tinterpScheme_().weights(vf); + const surfaceScalarField& weights = tweights(); + + tmp<fvMatrix<Type>> tfvm + ( + new fvMatrix<Type> + ( + vf, + faceFlux.dimensions()*vf.dimensions() + ) + ); + fvMatrix<Type>& fvm = tfvm.ref(); + + //fvm.lower() = -weights.primitiveField()*faceFlux.primitiveField(); + multiplySubtract + ( + fvm.lower(), + weights.primitiveField(), + faceFlux.primitiveField() + ); + + //fvm.upper() = fvm.lower() + faceFlux.primitiveField(); + add(fvm.upper(), fvm.lower(), faceFlux.primitiveField()); + + fvm.negSumDiag(); + + forAll(vf.boundaryField(), patchi) + { + const fvPatchField<Type>& psf = vf.boundaryField()[patchi]; + const fvsPatchScalarField& patchFlux = faceFlux.boundaryField()[patchi]; + const fvsPatchScalarField& pw = weights.boundaryField()[patchi]; + + auto& intCoeffs = fvm.internalCoeffs()[patchi]; + auto& bouCoeffs = fvm.boundaryCoeffs()[patchi]; + + //fvm.internalCoeffs()[patchi] = patchFlux*psf.valueInternalCoeffs(pw); + multiply(intCoeffs, patchFlux, psf.valueInternalCoeffs(pw)()); + + //fvm.boundaryCoeffs()[patchi] = -patchFlux*psf.valueBoundaryCoeffs(pw); + multiply(bouCoeffs, patchFlux, psf.valueBoundaryCoeffs(pw)()); + bouCoeffs.negate(); + } + + if (tinterpScheme_().corrected()) + { + fvm += fvc::surfaceIntegrate(faceFlux*tinterpScheme_().correction(vf)); + } + + return tfvm; +} + + +template<class Type> +tmp<GeometricField<Type, fvPatchField, volMesh>> +fusedGaussConvectionScheme<Type>::fvcDiv +( + const surfaceScalarField& faceFlux, + const GeometricField<Type, fvPatchField, volMesh>& vf +) const +{ + DebugPout<< "fusedGaussConvectionScheme<Type>::fvcDiv on " << vf.name() + << " with flux " << faceFlux.name() << endl; + + typedef GeometricField<Type, fvPatchField, volMesh> FieldType; + + const fvMesh& mesh = vf.mesh(); + + tmp<FieldType> tConvection + ( + new FieldType + ( + IOobject + ( + "convection(" + faceFlux.name() + ',' + vf.name() + ')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + dimensioned<Type> + ( + faceFlux.dimensions() + *vf.dimensions() + /dimVol, + Zero + ), + fvPatchFieldBase::extrapolatedCalculatedType() + ) + ); + + if (this->tinterpScheme_().corrected()) + { + const auto tfaceCorr(this->tinterpScheme_().correction(vf)); + auto& faceCorr = tfaceCorr(); + + const auto interpolator = [&] + ( + const vector& area, + const scalar lambda, + + const Type& ownVal, + const Type& neiVal, + + const scalar& faceVal, + const Type& correction + + ) -> Type + { + return faceVal*((lambda*(ownVal - neiVal) + neiVal) + correction); + }; + + fvc::surfaceSum + ( + // interpolation factors for volume field + this->tinterpScheme_().weights(vf), + + // volume field(s) + vf, + + // surface field(s) + faceFlux, + faceCorr, + + // operation + interpolator, + + tConvection.ref(), + false + ); + } + else + { + const auto interpolator = [&] + ( + const vector& area, + const scalar lambda, + const Type& ownVal, + const Type& neiVal, + + const scalar& faceVal + ) -> Type + { + return faceVal*(lambda*(ownVal - neiVal) + neiVal); + }; + + fvc::surfaceSum + ( + tinterpScheme_().weights(vf), + + vf, + + faceFlux, + + interpolator, + tConvection.ref(), + false + ); + } + + tConvection.ref().primitiveFieldRef() /= mesh.Vsc(); + + tConvection.ref().correctBoundaryConditions(); + + return tConvection; +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace fv + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedGaussConvectionScheme.H b/src/fused/finiteVolume/fusedGaussConvectionScheme.H new file mode 100644 index 0000000000000000000000000000000000000000..677a9df8271b883fe2415b7b5c18d5746b2832f4 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussConvectionScheme.H @@ -0,0 +1,162 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::fv::fusedGaussConvectionScheme + +Group + grpFvConvectionSchemes + +Description + Basic second-order convection using face-gradients and Gauss' theorem. + +SourceFiles + fusedGaussConvectionScheme.C + +\*---------------------------------------------------------------------------*/ + +#ifndef fusedGaussConvectionScheme_H +#define fusedGaussConvectionScheme_H + +#include "convectionScheme.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace fv +{ + +/*---------------------------------------------------------------------------*\ + Class fusedGaussConvectionScheme Declaration +\*---------------------------------------------------------------------------*/ + +template<class Type> +class fusedGaussConvectionScheme +: + public fv::convectionScheme<Type> +{ + // Private data + + tmp<surfaceInterpolationScheme<Type>> tinterpScheme_; + + + // Private Member Functions + + //- No copy construct + fusedGaussConvectionScheme(const fusedGaussConvectionScheme&) = delete; + + //- No copy assignment + void operator=(const fusedGaussConvectionScheme&) = delete; + + +public: + + //- Runtime type information + TypeName("fusedGauss"); + + + // Constructors + + //- Construct from flux and interpolation scheme + fusedGaussConvectionScheme + ( + const fvMesh& mesh, + const surfaceScalarField& faceFlux, + const tmp<surfaceInterpolationScheme<Type>>& scheme + ) + : + convectionScheme<Type>(mesh, faceFlux), + tinterpScheme_(scheme) + {} + + //- Construct from flux and Istream + fusedGaussConvectionScheme + ( + const fvMesh& mesh, + const surfaceScalarField& faceFlux, + Istream& is + ) + : + convectionScheme<Type>(mesh, faceFlux), + tinterpScheme_ + ( + surfaceInterpolationScheme<Type>::New(mesh, faceFlux, is) + ) + {} + + + // Member Functions + + const surfaceInterpolationScheme<Type>& interpScheme() const; + + tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> interpolate + ( + const surfaceScalarField&, + const GeometricField<Type, fvPatchField, volMesh>& + ) const; + + tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> flux + ( + const surfaceScalarField&, + const GeometricField<Type, fvPatchField, volMesh>& + ) const; + + tmp<fvMatrix<Type>> fvmDiv + ( + const surfaceScalarField&, + const GeometricField<Type, fvPatchField, volMesh>& + ) const; + + tmp<GeometricField<Type, fvPatchField, volMesh>> fvcDiv + ( + const surfaceScalarField&, + const GeometricField<Type, fvPatchField, volMesh>& + ) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace fv + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository + #include "fusedGaussConvectionScheme.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedGaussConvectionSchemes.C b/src/fused/finiteVolume/fusedGaussConvectionSchemes.C new file mode 100644 index 0000000000000000000000000000000000000000..950406e278314c0ba715b52dc9292420b82ace28 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussConvectionSchemes.C @@ -0,0 +1,35 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fusedGaussConvectionScheme.H" +#include "fvMesh.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +makeFvConvectionScheme(fusedGaussConvectionScheme) + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedGaussDivScheme.C b/src/fused/finiteVolume/fusedGaussDivScheme.C new file mode 100644 index 0000000000000000000000000000000000000000..ffb51ac7c16e63415861c8a75a92c87836920b35 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussDivScheme.C @@ -0,0 +1,155 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2024 M. Janssens +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fvcSurfaceOps.H" +#include "fusedGaussDivScheme.H" +#include "fvcSurfaceIntegrate.H" +#include "fvMatrices.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace fv +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +template<class Type> +tmp +< + GeometricField + <typename innerProduct<vector, Type>::type, fvPatchField, volMesh> +> +fusedGaussDivScheme<Type>::fvcDiv +( + const GeometricField<Type, fvPatchField, volMesh>& vf +) +{ + typedef typename innerProduct<vector, Type>::type DivType; + typedef GeometricField<DivType, fvPatchField, volMesh> DivFieldType; + + const fvMesh& mesh = vf.mesh(); + + DebugPout<< "fusedGaussDivScheme<Type>::fvcDiv on " << vf.name() + << endl; + + tmp<DivFieldType> tDiv + ( + new DivFieldType + ( + IOobject + ( + "div(" + vf.name() + ')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + dimensioned<DivType>(vf.dimensions()/dimLength, Zero), + fvPatchFieldBase::extrapolatedCalculatedType() + ) + ); + DivFieldType& div = tDiv.ref(); + + //fvcDiv(vf, this->tinterpScheme_().weights(vf), div); + + if (this->tinterpScheme_().corrected()) + { + const auto tfaceCorr(this->tinterpScheme_().correction(vf)); + auto& faceCorr = tfaceCorr(); + + const auto dotInterpolate = [&] + ( + const vector& area, + const scalar lambda, + + const Type& ownVal, + const Type& neiVal, + + const Type& correction + + ) -> DivType + { + return area & ((lambda*(ownVal - neiVal) + neiVal) + correction); + }; + + fvc::surfaceSum + ( + this->tinterpScheme_().weights(vf), + vf, + faceCorr, + dotInterpolate, + div, + false + ); + } + else + { + const auto dotInterpolate = [&] + ( + const vector& area, + const scalar lambda, + const Type& ownVal, + const Type& neiVal + ) -> DivType + { + return area & (lambda*(ownVal - neiVal) + neiVal); + }; + + fvc::surfaceSum + ( + this->tinterpScheme_().weights(vf), + vf, + dotInterpolate, + div, + false + ); + } + + tDiv.ref().primitiveFieldRef() /= mesh.V(); + + tDiv.ref().correctBoundaryConditions(); + + return tDiv; +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace fv + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedGaussDivScheme.H b/src/fused/finiteVolume/fusedGaussDivScheme.H new file mode 100644 index 0000000000000000000000000000000000000000..1a02ebadfa739eadd8e1d355afe4394a3b737832 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussDivScheme.H @@ -0,0 +1,125 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::fv::fusedGaussDivScheme + +Group + grpFvDivSchemes + +Description + Variant of gaussDiv that avoids intermediates + +SourceFiles + fusedGaussDivScheme.C + +\*---------------------------------------------------------------------------*/ + +#ifndef fusedGaussDivScheme_H +#define fusedGaussDivScheme_H + +#include "divScheme.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace fv +{ + +/*---------------------------------------------------------------------------*\ + Class fusedGaussDivScheme Declaration +\*---------------------------------------------------------------------------*/ + +template<class Type> +class fusedGaussDivScheme +: + public fv::divScheme<Type> +{ + // Private Member Functions + + //- No copy construct + fusedGaussDivScheme(const fusedGaussDivScheme&) = delete; + + //- No copy assignment + void operator=(const fusedGaussDivScheme&) = delete; + + +public: + + //- Runtime type information + TypeName("fusedGauss"); + + + // Constructors + + //- Construct null + fusedGaussDivScheme(const fvMesh& mesh) + : + divScheme<Type>(mesh) + {} + + //- Construct from Istream + fusedGaussDivScheme(const fvMesh& mesh, Istream& is) + : + divScheme<Type>(mesh, is) + {} + + + // Member Functions + + tmp + < + GeometricField + <typename innerProduct<vector, Type>::type, fvPatchField, volMesh> + > fvcDiv + ( + const GeometricField<Type, fvPatchField, volMesh>& + ); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace fv + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository + #include "fusedGaussDivScheme.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedGaussDivSchemes.C b/src/fused/finiteVolume/fusedGaussDivSchemes.C new file mode 100644 index 0000000000000000000000000000000000000000..2def82689a8e1539816143303643d90e6d0874a9 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussDivSchemes.C @@ -0,0 +1,35 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2015 OpenFOAM Foundation +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fusedGaussDivScheme.H" +#include "fvMesh.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +makeFvDivScheme(fusedGaussDivScheme) + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedGaussGrad.C b/src/fused/finiteVolume/fusedGaussGrad.C new file mode 100644 index 0000000000000000000000000000000000000000..5954e5804ce23c72d2a2d7d9da9f320d1896a073 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussGrad.C @@ -0,0 +1,263 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2018-2021 OpenCFD Ltd. + Copyright (C) 2024 M. Janssens +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fusedGaussGrad.H" +#include "extrapolatedCalculatedFvPatchField.H" +#include "fvcSurfaceOps.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +template<class Type> +Foam::tmp +< + Foam::GeometricField + < + typename Foam::outerProduct<Foam::vector, Type>::type, + Foam::fvPatchField, + Foam::volMesh + > +> +Foam::fv::fusedGaussGrad<Type>::gradf +( + const GeometricField<Type, fvsPatchField, surfaceMesh>& ssf, + const word& name +) +{ + typedef typename outerProduct<vector, Type>::type GradType; + typedef GeometricField<GradType, fvPatchField, volMesh> GradFieldType; + + const fvMesh& mesh = ssf.mesh(); + + DebugPout<< "fusedGaussGrad<Type>::gradf on " << ssf.name() + << " with name " << name << endl; + + tmp<GradFieldType> tgGrad + ( + new GradFieldType + ( + IOobject + ( + name, + ssf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + dimensioned<GradType>(ssf.dimensions()/dimLength, Zero), + fvPatchFieldBase::extrapolatedCalculatedType() + ) + ); + GradFieldType& gGrad = tgGrad.ref(); + + const labelUList& owner = mesh.owner(); + const labelUList& neighbour = mesh.neighbour(); + const vectorField& Sf = mesh.Sf(); + + Field<GradType>& igGrad = gGrad; + const Field<Type>& issf = ssf; + + forAll(owner, facei) + { + const GradType Sfssf = Sf[facei]*issf[facei]; + + igGrad[owner[facei]] += Sfssf; + igGrad[neighbour[facei]] -= Sfssf; + } + + forAll(mesh.boundary(), patchi) + { + const labelUList& pFaceCells = + mesh.boundary()[patchi].faceCells(); + + const vectorField& pSf = mesh.Sf().boundaryField()[patchi]; + + const fvsPatchField<Type>& pssf = ssf.boundaryField()[patchi]; + + forAll(mesh.boundary()[patchi], facei) + { + igGrad[pFaceCells[facei]] += pSf[facei]*pssf[facei]; + } + } + + igGrad /= mesh.V(); + + gGrad.correctBoundaryConditions(); + + return tgGrad; +} + + +template<class Type> +Foam::tmp +< + Foam::GeometricField + < + typename Foam::outerProduct<Foam::vector, Type>::type, + Foam::fvPatchField, + Foam::volMesh + > +> +Foam::fv::fusedGaussGrad<Type>::calcGrad +( + const GeometricField<Type, fvPatchField, volMesh>& vf, + const word& name +) const +{ + typedef typename outerProduct<vector, Type>::type GradType; + typedef GeometricField<GradType, fvPatchField, volMesh> GradFieldType; + + const fvMesh& mesh = vf.mesh(); + + DebugPout<< "fusedGaussGrad<Type>::calcGrad on " << vf.name() + << " with name " << name << endl; + + tmp<GradFieldType> tgGrad + ( + new GradFieldType + ( + IOobject + ( + name, + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + dimensioned<GradType>(vf.dimensions()/dimLength, Zero), + fvPatchFieldBase::extrapolatedCalculatedType() + ) + ); + GradFieldType& gGrad = tgGrad.ref(); + + if (this->tinterpScheme_().corrected()) + { + const auto tfaceCorr(this->tinterpScheme_().correction(vf)); + auto& faceCorr = tfaceCorr(); + + DebugPout<< "fusedGaussGrad<Type>::calcGrad corrected interpScheme " + << this->tinterpScheme_().type() << endl; + + const auto interpolate = [&] + ( + const vector& area, + const scalar lambda, + + const Type& ownVal, + const Type& neiVal, + + const Type& correction + + ) -> GradType + { + return area*((lambda*(ownVal - neiVal) + neiVal) + correction); + }; + + fvc::surfaceSum + ( + this->tinterpScheme_().weights(vf), + vf, + faceCorr, + interpolate, + gGrad, + false + ); + } + else + { + DebugPout<< "fusedGaussGrad<Type>::calcGrad uncorrected interpScheme " + << this->tinterpScheme_().type() << endl; + + const auto interpolate = [&] + ( + const vector& area, + const scalar lambda, + const Type& ownVal, + const Type& neiVal + ) -> GradType + { + return area*(lambda*(ownVal - neiVal) + neiVal); + }; + + fvc::surfaceSum + ( + tinterpScheme_().weights(vf), + vf, + interpolate, + gGrad, + false + ); + } + + gGrad.primitiveFieldRef() /= mesh.V(); + + gGrad.correctBoundaryConditions(); + + correctBoundaryConditions(vf, gGrad); + + return tgGrad; +} + + +template<class Type> +template<class GradType> +void Foam::fv::fusedGaussGrad<Type>::correctBoundaryConditions +( + const GeometricField<Type, fvPatchField, volMesh>& vf, + GeometricField<GradType, fvPatchField, volMesh>& gGrad +) +{ + DebugPout<< "fusedGaussGrad<Type>::correctBoundaryConditions on " + << vf.name() << " with gGrad " << gGrad.name() << endl; + + const fvMesh& mesh = vf.mesh(); + auto& gGradbf = gGrad.boundaryFieldRef(); + + forAll(vf.boundaryField(), patchi) + { + if (!vf.boundaryField()[patchi].coupled()) + { + const auto& pSf = mesh.Sf().boundaryField()[patchi]; + const auto tsnGrad(vf.boundaryField()[patchi].snGrad()); + const auto& snGrad = tsnGrad(); + auto& pgrad = gGradbf[patchi]; + + forAll(pgrad, facei) + { + const vector n(pSf[facei]/mag(pSf[facei])); + const Type uncorrectSnGrad(n & pgrad[facei]); + pgrad[facei] += n*(snGrad[facei] - uncorrectSnGrad); + } + } + } +} + + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedGaussGrad.H b/src/fused/finiteVolume/fusedGaussGrad.H new file mode 100644 index 0000000000000000000000000000000000000000..233ecdc577609f305d9eda7bfb8bfadada620645 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussGrad.H @@ -0,0 +1,177 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2018-2021 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::fv::fusedGaussGrad + +Group + grpFvGradSchemes + +Description + Basic second-order gradient scheme using face-interpolation + and Gauss' theorem. + +SourceFiles + fusedGaussGrad.C + +\*---------------------------------------------------------------------------*/ + +#ifndef Foam_fusedGaussGrad_H +#define Foam_fusedGaussGrad_H + +#include "gradScheme.H" +#include "surfaceInterpolationScheme.H" +#include "linear.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace fv +{ + +/*---------------------------------------------------------------------------*\ + Class fusedGaussGrad Declaration +\*---------------------------------------------------------------------------*/ + +template<class Type> +class fusedGaussGrad +: + public fv::gradScheme<Type> +{ + // Private Data + + //- Interpolation scheme + tmp<surfaceInterpolationScheme<Type>> tinterpScheme_; + + + // Private Member Functions + + //- No copy construct + fusedGaussGrad(const fusedGaussGrad&) = delete; + + //- No copy assignment + void operator=(const fusedGaussGrad&) = delete; + + +public: + + //- Runtime type information + TypeName("fusedGauss"); + + + // Constructors + + //- Construct from mesh + fusedGaussGrad(const fvMesh& mesh) + : + gradScheme<Type>(mesh), + tinterpScheme_(new linear<Type>(mesh)) + {} + + //- Construct from mesh and Istream + fusedGaussGrad(const fvMesh& mesh, Istream& is) + : + gradScheme<Type>(mesh), + tinterpScheme_(nullptr) + { + if (is.eof()) + { + tinterpScheme_.reset + ( + new linear<Type>(mesh) + ); + } + else + { + tinterpScheme_.reset + ( + surfaceInterpolationScheme<Type>::New(mesh, is) + ); + } + } + + + // Member Functions + + //- Return the gradient of the given field + //- calculated using Gauss' theorem on the given surface field + static + tmp + < + GeometricField + <typename outerProduct<vector, Type>::type, fvPatchField, volMesh> + > gradf + ( + const GeometricField<Type, fvsPatchField, surfaceMesh>&, + const word& name + ); + + //- Return the gradient of the given field to the gradScheme::grad + //- for optional caching + virtual tmp + < + GeometricField + <typename outerProduct<vector, Type>::type, fvPatchField, volMesh> + > calcGrad + ( + const GeometricField<Type, fvPatchField, volMesh>& vsf, + const word& name + ) const; + + //- Correct the boundary values of the gradient using the patchField + //- snGrad functions + template<class GradType> + static void correctBoundaryConditions + ( + const GeometricField<Type, fvPatchField, volMesh>&, + GeometricField<GradType, fvPatchField, volMesh>& + ); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace fv + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository + #include "fusedGaussGrad.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedGaussGrads.C b/src/fused/finiteVolume/fusedGaussGrads.C new file mode 100644 index 0000000000000000000000000000000000000000..86a85a8bee65db70afb4baea15f0ba0e652a4136 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussGrads.C @@ -0,0 +1,35 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2015 OpenFOAM Foundation +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fvMesh.H" +#include "fusedGaussGrad.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +makeFvGradScheme(fusedGaussGrad) + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedGaussLaplacianScheme.C b/src/fused/finiteVolume/fusedGaussLaplacianScheme.C new file mode 100644 index 0000000000000000000000000000000000000000..00553d55d98a31d6caff98697bb29f527f651d48 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussLaplacianScheme.C @@ -0,0 +1,581 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2024 M. Janssens +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fusedGaussLaplacianScheme.H" +#include "fvcSurfaceOps.H" +#include "surfaceInterpolate.H" +#include "fvcDiv.H" +#include "fvcGrad.H" +#include "fvMatrices.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace fv +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +template<class Type, class GType> +tmp<fvMatrix<Type>> +fusedGaussLaplacianScheme<Type, GType>::fvmLaplacianUncorrected +( + const surfaceScalarField& gammaMagSf, + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& vf +) +{ + DebugPout + << "fusedGaussLaplacianScheme<Type, GType>::fvmLaplacianUncorrected on " + << vf.name() + << " with gammaMagSf " << gammaMagSf.name() + << " with deltaCoeffs " << deltaCoeffs.name() + << endl; + + tmp<fvMatrix<Type>> tfvm + ( + new fvMatrix<Type> + ( + vf, + deltaCoeffs.dimensions()*gammaMagSf.dimensions()*vf.dimensions() + ) + ); + fvMatrix<Type>& fvm = tfvm.ref(); + + //fvm.upper() = deltaCoeffs.primitiveField()*gammaMagSf.primitiveField(); + multiply + ( + fvm.upper(), + deltaCoeffs.primitiveField(), + gammaMagSf.primitiveField() + ); + fvm.negSumDiag(); + + forAll(vf.boundaryField(), patchi) + { + const fvPatchField<Type>& pvf = vf.boundaryField()[patchi]; + const fvsPatchScalarField& pGamma = gammaMagSf.boundaryField()[patchi]; + const fvsPatchScalarField& pDeltaCoeffs = + deltaCoeffs.boundaryField()[patchi]; + + auto& intCoeffs = fvm.internalCoeffs()[patchi]; + auto& bouCoeffs = fvm.boundaryCoeffs()[patchi]; + + if (pvf.coupled()) + { + //intCoeffs = pGamma*pvf.gradientInternalCoeffs(pDeltaCoeffs); + multiply + ( + intCoeffs, + pGamma, + pvf.gradientInternalCoeffs(pDeltaCoeffs)() + ); + //bouCoeffs = -pGamma*pvf.gradientBoundaryCoeffs(pDeltaCoeffs); + multiply + ( + bouCoeffs, + pGamma, + pvf.gradientBoundaryCoeffs(pDeltaCoeffs)() + ); + bouCoeffs.negate(); + } + else + { + //intCoeffs = pGamma*pvf.gradientInternalCoeffs(); + multiply + ( + intCoeffs, + pGamma, + pvf.gradientInternalCoeffs()() + ); + //bouCoeffs = -pGamma*pvf.gradientBoundaryCoeffs(); + multiply + ( + bouCoeffs, + pGamma, + pvf.gradientBoundaryCoeffs()() + ); + bouCoeffs.negate(); + } + } + + return tfvm; +} + + +template<class Type, class GType> +tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> +fusedGaussLaplacianScheme<Type, GType>::gammaSnGradCorr +( + const surfaceVectorField& SfGammaCorr, + const GeometricField<Type, fvPatchField, volMesh>& vf +) +{ + const fvMesh& mesh = this->mesh(); + + DebugPout<< "fusedGaussLaplacianScheme<Type, GType>::gammaSnGradCorr on " + << vf.name() << " with SfGammCorr " << SfGammaCorr.name() << endl; + + tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> tgammaSnGradCorr + ( + new GeometricField<Type, fvsPatchField, surfaceMesh> + ( + IOobject + ( + "gammaSnGradCorr("+vf.name()+')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + SfGammaCorr.dimensions() + *vf.dimensions()*mesh.deltaCoeffs().dimensions() + ) + ); + auto& gammaSnGradCorr = tgammaSnGradCorr.ref(); + gammaSnGradCorr.oriented() = SfGammaCorr.oriented(); + + for (direction cmpt = 0; cmpt < pTraits<Type>::nComponents; cmpt++) + { + gammaSnGradCorr.replace + ( + cmpt, + fvc::dotInterpolate(SfGammaCorr, fvc::grad(vf.component(cmpt))) + ); + } + + return tgammaSnGradCorr; +} + + +/* +template<class Type, class GType> +void fusedGaussLaplacianScheme<Type, GType>::gradComponent +( + const surfaceScalarField& weights, + const GeometricField<Type, fvPatchField, volMesh>& vf, + const direction cmpt, + GeometricField<Type, fvPatchField, volMesh>& gGrad +) +{ + gGrad = dimensioned<Type>(vf.dimensions()/dimLength, Zero); + + // Calculate grad of vf.component(cmpt) + fvc::GaussOp + ( + vf, + weights, + componentInterpolate<Type>(cmpt), + gGrad + ); +} +template<class Type, class GType> +tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> +fusedGaussLaplacianScheme<Type, GType>::gammaSnGradCorr +( + const surfaceScalarField& weights, + const GeometricField<GType, fvPatchField, volMesh>& gamma, + const GeometricField<Type, fvPatchField, volMesh>& vf +) +{ + const fvMesh& mesh = this->mesh(); + + tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> tgammaSnGradCorr + ( + new GeometricField<Type, fvsPatchField, surfaceMesh> + ( + IOobject + ( + "gammaSnGradCorr("+vf.name()+')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + gamma.dimensions() + *vf.dimensions()*mesh.deltaCoeffs().dimensions() + ) + ); + auto& gammaSnGradCorr = tgammaSnGradCorr.ref(); + + gammaSnGradCorr.oriented() = gamma.oriented(); + + + GeometricField<Type, fvPatchField, volMesh> gradCmptFld + ( + IOobject + ( + vf.name() + ".component()", + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE, + false + ), + mesh, + vf.dimensions() + ); + + for (direction cmpt = 0; cmpt < pTraits<Type>::nComponents; cmpt++) + { + // Calculate fvc::grad(vf.component(cmpt)) into gradCmptFld + gradComponent + ( + weights, + vf, + cmpt, + + gradCmptFld + ); + + //gammaSnGradCorr.replace + //( + // cmpt, + // fvc::dotInterpolate(SfGammaCorr, gradCmptFld) + //); + + + fvc::interpolate + ( + weights, + + gradCmptFld, // fvc::grad(vf.component(cmpt)) + + gamma, // weight field + + tanInterpolate<Type, GType>(cmpt), + + gammaSnGradCorr + ); + } + + return tgammaSnGradCorr; +} +*/ + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +template<class Type, class GType> +tmp<GeometricField<Type, fvPatchField, volMesh>> +fusedGaussLaplacianScheme<Type, GType>::fvcLaplacian +( + const GeometricField<Type, fvPatchField, volMesh>& vf +) +{ + typedef GeometricField<Type, fvPatchField, volMesh> FieldType; + //typedef GeometricField<Type, fvsPatchField, surfaceMesh> SurfaceFieldType; + + tmp<FieldType> tresult + ( + new FieldType + ( + IOobject + ( + "laplacian(" + vf.name() + ')', + vf.instance(), + vf.mesh(), + IOobject::NO_READ, + IOobject::NO_WRITE + ), + vf.mesh(), + dimensioned<Type>(vf.dimensions()/dimArea, Zero), + fvPatchFieldBase::extrapolatedCalculatedType() + ) + ); + FieldType& result = tresult.ref(); + + DebugPout + << "fusedGaussLaplacianScheme<Type, GType>::fvcLaplacian on " + << vf.name() + << " to generate " << result.name() << endl; + + // Note: cannot use fvc::GaussOp since specialised handling on boundary. + // Maybe bypass for processor boundaries? + + const auto tdeltaCoeffs(this->tsnGradScheme_().deltaCoeffs(vf)); + const auto& deltaCoeffs = tdeltaCoeffs(); + + + const fvMesh& mesh = vf.mesh(); + + if (this->tsnGradScheme_().corrected()) + { + // Problem when instantiating for tensors - outerProduct not defined. + // scalar/vector specialisations in *Schemes.C file. + + FatalErrorInFunction<< "Corrected snGrad not supported for field " + << vf.name() << exit(FatalError); + + //typedef typename outerProduct<vector, Type>::type GradType; + //typedef GeometricField<GradType, fvPatchField, volMesh> GradFieldType; + //// Calculate sn gradient + //tmp<SurfaceFieldType> tfaceGrad + //( + // new SurfaceFieldType + // ( + // IOobject + // ( + // "snGradCorr("+vf.name()+')', + // vf.instance(), + // mesh, + // IOobject::NO_READ, + // IOobject::NO_WRITE + // ), + // mesh, + // vf.dimensions() + // ) + //); + // + //{ + // // Calculate gradient + // tmp<GradFieldType> tgGrad + // ( + // gradScheme<Type>::New + // ( + // mesh, + // mesh.gradScheme("grad(" + vf.name() + ')') + // )().grad(vf, "grad(" + vf.name() + ')') + // ); + // const auto& gGrad = tgGrad(); + // + // // Doing a dotinterpolate with nonOrthCorrectionVectors + // const auto dotInterpolate = [&] + // ( + // const vector& area, + // const scalar lambda, + // + // const GradType& ownVal, + // const GradType& neiVal, + // + // const vector& dotVector, + // + // Type& result + // ) + // { + // result = dotVector&(lambda*(ownVal - neiVal) + neiVal); + // }; + // + // fvc::interpolate + // ( + // mesh.surfaceInterpolation::weights(), // linear interp + // gGrad, // volume field + // mesh.nonOrthCorrectionVectors(),// surface multiplier + // dotInterpolate, + // tfaceGrad.ref() + // ); + //} + //const auto& faceGrad = tfaceGrad(); + // + //const auto snGrad = [&] + //( + // const vector& Sf, + // const scalar dc, + // const Type& ownVal, + // const Type& neiVal, + // const Type& correction + //) -> Type + //{ + // const auto snGrad(dc*(neiVal-ownVal) + correction); + // return mag(Sf)*snGrad; + //}; + // + //fvc::surfaceSnSum + //( + // deltaCoeffs, + // vf, + // faceGrad, // face-based addition + // snGrad, + // result, + // false // avoid boundary evaluation until volume division + //); + } + else + { + const auto snGrad = [&] + ( + const vector& Sf, + const scalar dc, + const Type& ownVal, + const Type& neiVal + ) -> Type + { + const auto snGrad(dc*(neiVal-ownVal)); + return mag(Sf)*snGrad; + }; + + fvc::surfaceSnSum + ( + deltaCoeffs, + vf, + snGrad, + result, + false // avoid boundary evaluation until volume division + ); + } + + result.primitiveFieldRef() /= mesh.V(); + result.correctBoundaryConditions(); + + return tresult; +} + + +template<class Type, class GType> +tmp<GeometricField<Type, fvPatchField, volMesh>> +fusedGaussLaplacianScheme<Type, GType>::fvcLaplacian +( + const GeometricField<GType, fvPatchField, volMesh>& gamma, + const GeometricField<Type, fvPatchField, volMesh>& vf +) +{ + DebugPout + << "fusedGaussLaplacianScheme<Type, GType>::fvcLaplacian on " + << vf.name() << " with gamma " << gamma.name() << endl; + + return fvcLaplacian(this->tinterpGammaScheme_().interpolate(gamma)(), vf); +} + + +template<class Type, class GType> +tmp<fvMatrix<Type>> +fusedGaussLaplacianScheme<Type, GType>::fvmLaplacian +( + const GeometricField<GType, fvsPatchField, surfaceMesh>& gamma, + const GeometricField<Type, fvPatchField, volMesh>& vf +) +{ + DebugPout<< "fusedGaussLaplacianScheme<Type, GType>::fvmLaplacian on " + << vf.name() << " with gamma " << gamma.name() << endl; + + const fvMesh& mesh = this->mesh(); + + const surfaceVectorField Sn(mesh.Sf()/mesh.magSf()); + const surfaceVectorField SfGamma(mesh.Sf() & gamma); + const GeometricField<scalar, fvsPatchField, surfaceMesh> SfGammaSn + ( + SfGamma & Sn + ); + const surfaceVectorField SfGammaCorr(SfGamma - SfGammaSn*Sn); + + tmp<fvMatrix<Type>> tfvm = fvmLaplacianUncorrected + ( + SfGammaSn, + this->tsnGradScheme_().deltaCoeffs(vf), + vf + ); + fvMatrix<Type>& fvm = tfvm.ref(); + + tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> tfaceFluxCorrection + = gammaSnGradCorr(SfGammaCorr, vf); + + if (this->tsnGradScheme_().corrected()) + { + tfaceFluxCorrection.ref() += + SfGammaSn*this->tsnGradScheme_().correction(vf); + } + + fvm.source() -= mesh.V()*fvc::div(tfaceFluxCorrection())().primitiveField(); + + if (mesh.fluxRequired(vf.name())) + { + fvm.faceFluxCorrectionPtr(tfaceFluxCorrection.ptr()); + } + + return tfvm; +} + + +template<class Type, class GType> +tmp<fvMatrix<Type>> +fusedGaussLaplacianScheme<Type, GType>::fvmLaplacian +( + const GeometricField<GType, fvPatchField, volMesh>& gamma, + const GeometricField<Type, fvPatchField, volMesh>& vf +) +{ + DebugPout<< "fusedGaussLaplacianScheme<Type, GType>::fvmLaplacian on " + << vf.name() << " with gamma " << gamma.name() << endl; + return fvmLaplacian(this->tinterpGammaScheme_().interpolate(gamma)(), vf); +} + + +template<class Type, class GType> +tmp<GeometricField<Type, fvPatchField, volMesh>> +fusedGaussLaplacianScheme<Type, GType>::fvcLaplacian +( + const GeometricField<GType, fvsPatchField, surfaceMesh>& gamma, + const GeometricField<Type, fvPatchField, volMesh>& vf +) +{ + DebugPout<< "fusedGaussLaplacianScheme<Type, GType>::fvcLaplacian on " + << vf.name() << " with gamma " << gamma.name() << endl; + + const fvMesh& mesh = this->mesh(); + + const surfaceVectorField Sn(mesh.Sf()/mesh.magSf()); + const surfaceVectorField SfGamma(mesh.Sf() & gamma); + const GeometricField<scalar, fvsPatchField, surfaceMesh> SfGammaSn + ( + SfGamma & Sn + ); + const surfaceVectorField SfGammaCorr(SfGamma - SfGammaSn*Sn); + + tmp<GeometricField<Type, fvPatchField, volMesh>> tLaplacian + ( + fvc::div + ( + SfGammaSn*this->tsnGradScheme_().snGrad(vf) + + gammaSnGradCorr(SfGammaCorr, vf) + ) + ); + + tLaplacian.ref().rename + ( + "laplacian(" + gamma.name() + ',' + vf.name() + ')' + ); + + return tLaplacian; +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace fv + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedGaussLaplacianScheme.H b/src/fused/finiteVolume/fusedGaussLaplacianScheme.H new file mode 100644 index 0000000000000000000000000000000000000000..85753bff018f85b6e0d633520cfee330a265ef09 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussLaplacianScheme.H @@ -0,0 +1,264 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2019 OpenCFD Ltd. + Copyright (C) 2024 M. Janssens +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::fv::GaussLaplacianScheme + +Group + grpFvLaplacianSchemes + +Description + Variant of GaussLaplacian that avoids intermediate fields + +SourceFiles + fusedGaussLaplacianScheme.C + +\*---------------------------------------------------------------------------*/ + +#ifndef fusedGaussLaplacianScheme_H +#define fusedGaussLaplacianScheme_H + +#include "laplacianScheme.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace fv +{ + +/*---------------------------------------------------------------------------*\ + Class fusedGaussLaplacianScheme Declaration +\*---------------------------------------------------------------------------*/ + +template<class Type, class GType> +class fusedGaussLaplacianScheme +: + public fv::laplacianScheme<Type, GType> +{ + // Private Member Functions + + //- See gaussLaplacianScheme + tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> gammaSnGradCorr + ( + const surfaceVectorField& SfGammaCorr, + const GeometricField<Type, fvPatchField, volMesh>& + ); + + //- No copy construct + fusedGaussLaplacianScheme(const fusedGaussLaplacianScheme&) + = delete; + + //- No copy assignment + void operator=(const fusedGaussLaplacianScheme&) = delete; + + +public: + + //- Runtime type information + TypeName("fusedGauss"); + + + // Constructors + + //- Construct null + fusedGaussLaplacianScheme(const fvMesh& mesh) + : + laplacianScheme<Type, GType>(mesh) + {} + + //- Construct from Istream + fusedGaussLaplacianScheme(const fvMesh& mesh, Istream& is) + : + laplacianScheme<Type, GType>(mesh, is) + {} + + //- Construct from mesh, interpolation and snGradScheme schemes + fusedGaussLaplacianScheme + ( + const fvMesh& mesh, + const tmp<surfaceInterpolationScheme<GType>>& igs, + const tmp<snGradScheme<Type>>& sngs + ) + : + laplacianScheme<Type, GType>(mesh, igs, sngs) + {} + + + //- Destructor + virtual ~fusedGaussLaplacianScheme() = default; + + + // Member Functions + + static tmp<fvMatrix<Type>> fvmLaplacianUncorrected + ( + const surfaceScalarField& gammaMagSf, + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& + ); + + ////- Helper: grad on component. Move to GaussGrad? Template on + //// - cell-access operator? + //// - cell-to-face operator? + //// - face-to-cell operator? + //static void gradComponent + //( + // const surfaceScalarField& weights, + // const GeometricField<Type, fvPatchField, volMesh>& vf, + // const direction cmpt, + // GeometricField<Type, fvPatchField, volMesh>& gGrad + //); + + virtual tmp<GeometricField<Type, fvPatchField, volMesh>> fvcLaplacian + ( + const GeometricField<Type, fvPatchField, volMesh>& + ); + + virtual tmp<fvMatrix<Type>> fvmLaplacian + ( + const GeometricField<GType, fvsPatchField, surfaceMesh>&, + const GeometricField<Type, fvPatchField, volMesh>& + ); + + virtual tmp<GeometricField<Type, fvPatchField, volMesh>> fvcLaplacian + ( + const GeometricField<GType, fvsPatchField, surfaceMesh>&, + const GeometricField<Type, fvPatchField, volMesh>& + ); + + + // New: override laplacianScheme::fvc/mLaplacian for scalar gamma and + // scalar,vector volField + + virtual tmp<fvMatrix<Type>> fvmLaplacian + ( + const GeometricField<GType, fvPatchField, volMesh>&, + const GeometricField<Type, fvPatchField, volMesh>& + ); + + virtual tmp<GeometricField<Type, fvPatchField, volMesh>> fvcLaplacian + ( + const GeometricField<GType, fvPatchField, volMesh>&, + const GeometricField<Type, fvPatchField, volMesh>& + ); +}; + + +// Use macros to emulate partial-specialisation of the Laplacian functions +// for scalar diffusivity gamma + +#define defineFvmLaplacianScalarGamma(Type) \ + \ +template<> \ +tmp<fvMatrix<Type>> fusedGaussLaplacianScheme<Type, scalar>::fvmLaplacian \ +( \ + const GeometricField<scalar, fvsPatchField, surfaceMesh>&, \ + const GeometricField<Type, fvPatchField, volMesh>& \ +); \ + \ +template<> \ +tmp<GeometricField<Type, fvPatchField, volMesh>> \ +fusedGaussLaplacianScheme<Type, scalar>::fvcLaplacian \ +( \ + const GeometricField<scalar, fvsPatchField, surfaceMesh>&, \ + const GeometricField<Type, fvPatchField, volMesh>& \ +); + +defineFvmLaplacianScalarGamma(scalar); +defineFvmLaplacianScalarGamma(vector); +defineFvmLaplacianScalarGamma(sphericalTensor); +defineFvmLaplacianScalarGamma(symmTensor); +defineFvmLaplacianScalarGamma(tensor); + +// Unweighted laplacian +template<> +tmp<GeometricField<scalar, fvPatchField, volMesh>> +fusedGaussLaplacianScheme<scalar, scalar>::fvcLaplacian +( + const GeometricField<scalar, fvPatchField, volMesh>& +); +template<> +tmp<GeometricField<vector, fvPatchField, volMesh>> +fusedGaussLaplacianScheme<vector, scalar>::fvcLaplacian +( + const GeometricField<vector, fvPatchField, volMesh>& +); + +// Weighted laplacian +template<> +tmp<GeometricField<scalar, fvPatchField, volMesh>> +fusedGaussLaplacianScheme<scalar, scalar>::fvcLaplacian +( + const GeometricField<scalar, fvPatchField, volMesh>&, + const GeometricField<scalar, fvPatchField, volMesh>& +); +template<> +tmp<GeometricField<vector, fvPatchField, volMesh>> +fusedGaussLaplacianScheme<vector, scalar>::fvcLaplacian +( + const GeometricField<scalar, fvPatchField, volMesh>&, + const GeometricField<vector, fvPatchField, volMesh>& +); +template<> +tmp<fvMatrix<scalar>> +fusedGaussLaplacianScheme<scalar, scalar>::fvmLaplacian +( + const GeometricField<scalar, fvPatchField, volMesh>&, + const GeometricField<scalar, fvPatchField, volMesh>& +); +template<> +tmp<fvMatrix<vector>> +fusedGaussLaplacianScheme<vector, scalar>::fvmLaplacian +( + const GeometricField<scalar, fvPatchField, volMesh>&, + const GeometricField<vector, fvPatchField, volMesh>& +); + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace fv + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository + #include "fusedGaussLaplacianScheme.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedGaussLaplacianSchemes.C b/src/fused/finiteVolume/fusedGaussLaplacianSchemes.C new file mode 100644 index 0000000000000000000000000000000000000000..0433c423d3731b9f1d40ebc9b3a81b2d65935f30 --- /dev/null +++ b/src/fused/finiteVolume/fusedGaussLaplacianSchemes.C @@ -0,0 +1,866 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2024 M. Janssens +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fusedGaussLaplacianScheme.H" +#include "fvMesh.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +makeFvLaplacianScheme(fusedGaussLaplacianScheme) + +#define declareFvmLaplacianScalarGamma(Type) \ + \ +template<> \ +Foam::tmp<Foam::fvMatrix<Foam::Type>> \ +Foam::fv::fusedGaussLaplacianScheme<Foam::Type, Foam::scalar>:: \ +fvmLaplacian \ +( \ + const GeometricField<scalar, fvsPatchField, surfaceMesh>& gamma, \ + const GeometricField<Type, fvPatchField, volMesh>& vf \ +) \ +{ \ + DebugPout<< "fusedGaussLaplacianScheme::fvmLaplacian on " << vf.name() \ + << " with scalar gamma " << gamma.name() << endl; \ + \ + const fvMesh& mesh = this->mesh(); \ + \ + GeometricField<scalar, fvsPatchField, surfaceMesh> gammaMagSf \ + ( \ + gamma*mesh.magSf() \ + ); \ + \ + tmp<fvMatrix<Type>> tfvm = fvmLaplacianUncorrected \ + ( \ + gammaMagSf, \ + this->tsnGradScheme_().deltaCoeffs(vf), \ + vf \ + ); \ + fvMatrix<Type>& fvm = tfvm.ref(); \ + \ + if (this->tsnGradScheme_().corrected()) \ + { \ + if (mesh.fluxRequired(vf.name())) \ + { \ + fvm.faceFluxCorrectionPtr() = std::make_unique \ + < \ + GeometricField<Type, fvsPatchField, surfaceMesh> \ + > \ + ( \ + gammaMagSf*this->tsnGradScheme_().correction(vf) \ + ); \ + \ + fvm.source() -= \ + mesh.V()* \ + fvc::div \ + ( \ + *fvm.faceFluxCorrectionPtr() \ + )().primitiveField(); \ + } \ + else \ + { \ + fvm.source() -= \ + mesh.V()* \ + fvc::div \ + ( \ + gammaMagSf*this->tsnGradScheme_().correction(vf) \ + )().primitiveField(); \ + } \ + } \ + \ + return tfvm; \ +} \ + \ + \ +template<> \ +Foam::tmp<Foam::GeometricField<Foam::Type, Foam::fvPatchField, Foam::volMesh>> \ +Foam::fv::fusedGaussLaplacianScheme<Foam::Type, Foam::scalar>:: \ +fvcLaplacian \ +( \ + const GeometricField<scalar, fvsPatchField, surfaceMesh>& gamma, \ + const GeometricField<Type, fvPatchField, volMesh>& vf \ +) \ +{ \ + DebugPout<< "fvcLaplacian on " << vf.name() \ + << " with scalar gamma " << gamma.name() << endl; \ + \ + const fvMesh& mesh = this->mesh(); \ + \ + tmp<GeometricField<Type, fvPatchField, volMesh>> tLaplacian \ + ( \ + fvc::div(gamma*this->tsnGradScheme_().snGrad(vf)*mesh.magSf()) \ + ); \ + \ + tLaplacian.ref().rename \ + ( \ + "laplacian(" + gamma.name() + ',' + vf.name() + ')' \ + ); \ + \ + return tLaplacian; \ +} + + +template<> +Foam::tmp +< + Foam::GeometricField<Foam::scalar, Foam::fvPatchField, Foam::volMesh> +> +Foam::fv::fusedGaussLaplacianScheme<Foam::scalar, Foam::scalar>::fvcLaplacian +( + const GeometricField<scalar, fvPatchField, volMesh>& gamma, + const GeometricField<scalar, fvPatchField, volMesh>& vf +) +{ + typedef scalar Type; + typedef GeometricField<Type, fvPatchField, volMesh> FieldType; + typedef GeometricField<Type, fvsPatchField, surfaceMesh> SurfaceFieldType; + typedef typename outerProduct<vector, Type>::type GradType; + typedef GeometricField<GradType, fvPatchField, volMesh> GradFieldType; + + DebugPout + << "fusedGaussLaplacianScheme<scalar, scalar>::fvcLaplacian" + << " on " << vf.name() << " with gamma " << gamma.name() << endl; + + const fvMesh& mesh = vf.mesh(); + + tmp<FieldType> tresult + ( + new FieldType + ( + IOobject + ( + "laplacian(" + vf.name() + ')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + dimensioned<Type> + ( + gamma.dimensions()*vf.dimensions()/dimArea, Zero + ), + fvPatchFieldBase::extrapolatedCalculatedType() + ) + ); + FieldType& result = tresult.ref(); + + const auto tweights(this->tinterpGammaScheme_().weights(gamma)); + const auto& weights = tweights(); + const auto tdeltaCoeffs(this->tsnGradScheme_().deltaCoeffs(vf)); + const auto& deltaCoeffs = tdeltaCoeffs(); + + if (this->tsnGradScheme_().corrected()) + { + // Calculate sn gradient + tmp<SurfaceFieldType> tfaceGrad + ( + new SurfaceFieldType + ( + IOobject + ( + "snGradCorr("+vf.name()+')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + vf.dimensions() + ) + ); + + { + // Calculate gradient + tmp<GradFieldType> tgGrad + ( + gradScheme<Type>::New + ( + mesh, + mesh.gradScheme("grad(" + vf.name() + ')') + )().grad(vf, "grad(" + vf.name() + ')') + ); + const auto& gGrad = tgGrad(); + + // Doing a dotinterpolate with nonOrthCorrectionVectors + const auto dotInterpolate = [&] + ( + const vector& area, + const scalar lambda, + + const GradType& ownVal, + const GradType& neiVal, + + const vector& dotVector, + + Type& result + ) + { + result = dotVector&(lambda*(ownVal - neiVal) + neiVal); + }; + + fvc::interpolate + ( + mesh.surfaceInterpolation::weights(), // linear interpolation + gGrad, // volume field + mesh.nonOrthCorrectionVectors(),// surface multiplier + dotInterpolate, + tfaceGrad.ref() + ); + } + const auto& faceGrad = tfaceGrad(); + + const auto snGrad = [&] + ( + const vector& Sf, + + const scalar weight, + const scalar ownGamma, + const scalar neiGamma, + + const scalar dc, + const Type& ownVal, + const Type& neiVal, + + const Type& correction + ) -> Type + { + const auto snGrad(dc*(neiVal-ownVal) + correction); + const scalar faceGamma(weight*(ownGamma-neiGamma)+neiGamma); + return mag(Sf)*faceGamma*snGrad; + }; + + fvc::surfaceSnSum + ( + weights, // gamma weights + gamma, + + deltaCoeffs, + vf, + + faceGrad, // face-based addition + + snGrad, + + result, + false // avoid boundary evaluation until volume division + ); + } + else + { + const auto snGrad = [&] + ( + const vector& Sf, + + const scalar weight, + const scalar ownGamma, + const scalar neiGamma, + + const scalar dc, + const Type& ownVal, + const Type& neiVal + ) -> Type + { + const auto snGrad(dc*(neiVal-ownVal)); + const scalar faceGamma(weight*(ownGamma-neiGamma)+neiGamma); + return mag(Sf)*faceGamma*snGrad; + }; + + fvc::surfaceSnSum + ( + weights, + gamma, + + deltaCoeffs, + vf, + + snGrad, + + result, + false // avoid boundary evaluation until volume division + ); + } + + result.primitiveFieldRef() /= mesh.V(); + result.correctBoundaryConditions(); + + return tresult; +} + + +template<> +Foam::tmp +< + Foam::GeometricField<Foam::vector, Foam::fvPatchField, Foam::volMesh> +> +Foam::fv::fusedGaussLaplacianScheme<Foam::vector, Foam::scalar>::fvcLaplacian +( + const GeometricField<scalar, fvPatchField, volMesh>& gamma, + const GeometricField<vector, fvPatchField, volMesh>& vf +) +{ + DebugPout + << "fusedGaussLaplacianScheme<vector, scalar>::fvcLaplacian" + << " on " << vf.name() << " with gamma " << gamma.name() << endl; + + typedef vector Type; + typedef GeometricField<Type, fvPatchField, volMesh> FieldType; + typedef GeometricField<Type, fvsPatchField, surfaceMesh> SurfaceFieldType; + typedef typename outerProduct<vector, Type>::type GradType; + typedef GeometricField<GradType, fvPatchField, volMesh> GradFieldType; + + const fvMesh& mesh = vf.mesh(); + + tmp<FieldType> tresult + ( + new FieldType + ( + IOobject + ( + "laplacian(" + vf.name() + ')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + dimensioned<Type> + ( + gamma.dimensions()*vf.dimensions()/dimArea, Zero + ), + fvPatchFieldBase::extrapolatedCalculatedType() + ) + ); + FieldType& result = tresult.ref(); + + const auto tweights(this->tinterpGammaScheme_().weights(gamma)); + const auto& weights = tweights(); + const auto tdeltaCoeffs(this->tsnGradScheme_().deltaCoeffs(vf)); + const auto& deltaCoeffs = tdeltaCoeffs(); + + if (this->tsnGradScheme_().corrected()) + { + // Calculate sn gradient + tmp<SurfaceFieldType> tfaceGrad + ( + new SurfaceFieldType + ( + IOobject + ( + "snGradCorr("+vf.name()+')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + vf.dimensions() + ) + ); + + { + // Calculate gradient + tmp<GradFieldType> tgGrad + ( + gradScheme<Type>::New + ( + mesh, + mesh.gradScheme("grad(" + vf.name() + ')') + )().grad(vf, "grad(" + vf.name() + ')') + ); + const auto& gGrad = tgGrad(); + + // Doing a dotinterpolate with nonOrthCorrectionVectors + const auto dotInterpolate = [&] + ( + const vector& area, + const scalar lambda, + + const GradType& ownVal, + const GradType& neiVal, + + const vector& dotVector, + + Type& result + ) + { + result = dotVector&(lambda*(ownVal - neiVal) + neiVal); + }; + + fvc::interpolate + ( + mesh.surfaceInterpolation::weights(), // linear interpolation + gGrad, // volume field + mesh.nonOrthCorrectionVectors(),// surface multiplier + dotInterpolate, + tfaceGrad.ref() + ); + } + const auto& faceGrad = tfaceGrad(); + + const auto snGrad = [&] + ( + const vector& Sf, + + const scalar weight, + const scalar ownGamma, + const scalar neiGamma, + + const scalar dc, + const Type& ownVal, + const Type& neiVal, + + const Type& correction + ) -> Type + { + const auto snGrad(dc*(neiVal-ownVal) + correction); + const scalar faceGamma(weight*(ownGamma-neiGamma)+neiGamma); + return mag(Sf)*faceGamma*snGrad; + }; + + fvc::surfaceSnSum + ( + weights, // gamma weights + gamma, + + deltaCoeffs, + vf, + + faceGrad, // face-based addition + + snGrad, + + result, + false // avoid boundary evaluation until volume division + ); + } + else + { + const auto snGrad = [&] + ( + const vector& Sf, + + const scalar weight, + const scalar ownGamma, + const scalar neiGamma, + + const scalar dc, + const Type& ownVal, + const Type& neiVal + ) -> Type + { + const auto snGrad(dc*(neiVal-ownVal)); + const scalar faceGamma(weight*(ownGamma-neiGamma)+neiGamma); + return mag(Sf)*faceGamma*snGrad; + }; + + fvc::surfaceSnSum + ( + weights, // gamma weights + gamma, + + deltaCoeffs, + vf, + + snGrad, + + result, + false // avoid boundary evaluation until volume division + ); + } + + result.primitiveFieldRef() /= mesh.V(); + result.correctBoundaryConditions(); + + return tresult; +} + + +template<> +Foam::tmp<Foam::fvMatrix<Foam::scalar>> +Foam::fv::fusedGaussLaplacianScheme<Foam::scalar, Foam::scalar>::fvmLaplacian +( + const GeometricField<scalar, fvPatchField, volMesh>& gamma, + const GeometricField<scalar, fvPatchField, volMesh>& vf +) +{ + // TBD + DebugPout + << "fusedGaussLaplacianScheme<scalar, scalar>::fvmLaplacian" + << " on " << vf.name() << " with gamma " << gamma.name() << endl; + return fvmLaplacian(this->tinterpGammaScheme_().interpolate(gamma)(), vf); +} + + +template<> +Foam::tmp<Foam::fvMatrix<Foam::vector>> +Foam::fv::fusedGaussLaplacianScheme<Foam::vector, Foam::scalar>::fvmLaplacian +( + const GeometricField<scalar, fvPatchField, volMesh>& gamma, + const GeometricField<vector, fvPatchField, volMesh>& vf +) +{ + // TBD + DebugPout + << "fusedGaussLaplacianScheme<vector, scalar>::fvmLaplacian" + << " on " << vf.name() << " with gamma " << gamma.name() << endl; + return fvmLaplacian(this->tinterpGammaScheme_().interpolate(gamma)(), vf); +} + + +template<> +Foam::tmp +< + Foam::GeometricField<Foam::scalar, Foam::fvPatchField, Foam::volMesh> +> +Foam::fv::fusedGaussLaplacianScheme<Foam::scalar, Foam::scalar>::fvcLaplacian +( + const GeometricField<scalar, fvPatchField, volMesh>& vf +) +{ + typedef scalar Type; + + typedef GeometricField<Type, fvPatchField, volMesh> FieldType; + typedef GeometricField<Type, fvsPatchField, surfaceMesh> SurfaceFieldType; + typedef typename outerProduct<vector, Type>::type GradType; + typedef GeometricField<GradType, fvPatchField, volMesh> GradFieldType; + + const fvMesh& mesh = vf.mesh(); + + tmp<FieldType> tresult + ( + new FieldType + ( + IOobject + ( + "laplacian(" + vf.name() + ')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + dimensioned<Type>(vf.dimensions()/dimArea, Zero), + fvPatchFieldBase::extrapolatedCalculatedType() + ) + ); + FieldType& result = tresult.ref(); + + DebugPout + << "fusedGaussLaplacianScheme<scalar, GType>::fvcLaplacian on " + << vf.name() + << " to generate " << result.name() << endl; + + + const auto tdeltaCoeffs(this->tsnGradScheme_().deltaCoeffs(vf)); + const auto& deltaCoeffs = tdeltaCoeffs(); + + + if (this->tsnGradScheme_().corrected()) + { + // Calculate sn gradient + tmp<SurfaceFieldType> tfaceGrad + ( + new SurfaceFieldType + ( + IOobject + ( + "snGradCorr("+vf.name()+')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + vf.dimensions() + ) + ); + + { + // Calculate gradient + tmp<GradFieldType> tgGrad + ( + gradScheme<Type>::New + ( + mesh, + mesh.gradScheme("grad(" + vf.name() + ')') + )().grad(vf, "grad(" + vf.name() + ')') + ); + const auto& gGrad = tgGrad(); + + // Doing a dotinterpolate with nonOrthCorrectionVectors + const auto dotInterpolate = [&] + ( + const vector& area, + const scalar lambda, + + const GradType& ownVal, + const GradType& neiVal, + + const vector& dotVector, + + Type& result + ) + { + result = dotVector&(lambda*(ownVal - neiVal) + neiVal); + }; + + fvc::interpolate + ( + mesh.surfaceInterpolation::weights(), // linear interpolation + gGrad, // volume field + mesh.nonOrthCorrectionVectors(),// surface multiplier + dotInterpolate, + tfaceGrad.ref() + ); + } + const auto& faceGrad = tfaceGrad(); + + const auto snGrad = [&] + ( + const vector& Sf, + const scalar dc, + const Type& ownVal, + const Type& neiVal, + const Type& correction + ) -> Type + { + const auto snGrad(dc*(neiVal-ownVal) + correction); + return mag(Sf)*snGrad; + }; + + fvc::surfaceSnSum + ( + deltaCoeffs, + vf, + faceGrad, // face-based addition + snGrad, + result, + false // avoid boundary evaluation until volume division + ); + } + else + { + const auto snGrad = [&] + ( + const vector& Sf, + const scalar dc, + const Type& ownVal, + const Type& neiVal + ) -> Type + { + const auto snGrad(dc*(neiVal-ownVal)); + return mag(Sf)*snGrad; + }; + + fvc::surfaceSnSum + ( + deltaCoeffs, + vf, + snGrad, + result, + false // avoid boundary evaluation until volume division + ); + } + + result.primitiveFieldRef() /= mesh.V(); + result.correctBoundaryConditions(); + + return tresult; +} + + +template<> +Foam::tmp +< + Foam::GeometricField<Foam::vector, Foam::fvPatchField, Foam::volMesh> +> +Foam::fv::fusedGaussLaplacianScheme<Foam::vector, Foam::scalar>::fvcLaplacian +( + const GeometricField<vector, fvPatchField, volMesh>& vf +) +{ + typedef vector Type; + + typedef GeometricField<Type, fvPatchField, volMesh> FieldType; + typedef GeometricField<Type, fvsPatchField, surfaceMesh> SurfaceFieldType; + typedef typename outerProduct<vector, Type>::type GradType; + typedef GeometricField<GradType, fvPatchField, volMesh> GradFieldType; + + const fvMesh& mesh = vf.mesh(); + + tmp<FieldType> tresult + ( + new FieldType + ( + IOobject + ( + "laplacian(" + vf.name() + ')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + dimensioned<Type>(vf.dimensions()/dimArea, Zero), + fvPatchFieldBase::extrapolatedCalculatedType() + ) + ); + FieldType& result = tresult.ref(); + + DebugPout + << "fusedGaussLaplacianScheme<vector, GType>::fvcLaplacian on " + << vf.name() + << " to generate " << result.name() << endl; + + + const auto tdeltaCoeffs(this->tsnGradScheme_().deltaCoeffs(vf)); + const auto& deltaCoeffs = tdeltaCoeffs(); + + + if (this->tsnGradScheme_().corrected()) + { + // Calculate sn gradient + tmp<SurfaceFieldType> tfaceGrad + ( + new SurfaceFieldType + ( + IOobject + ( + "snGradCorr("+vf.name()+')', + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + vf.dimensions() + ) + ); + + { + // Calculate gradient + tmp<GradFieldType> tgGrad + ( + gradScheme<Type>::New + ( + mesh, + mesh.gradScheme("grad(" + vf.name() + ')') + )().grad(vf, "grad(" + vf.name() + ')') + ); + const auto& gGrad = tgGrad(); + + // Doing a dotinterpolate with nonOrthCorrectionVectors + const auto dotInterpolate = [&] + ( + const vector& area, + const scalar lambda, + + const GradType& ownVal, + const GradType& neiVal, + + const vector& dotVector, + + Type& result + ) + { + result = dotVector&(lambda*(ownVal - neiVal) + neiVal); + }; + + fvc::interpolate + ( + mesh.surfaceInterpolation::weights(), // linear interpolation + gGrad, // volume field + mesh.nonOrthCorrectionVectors(),// surface multiplier + dotInterpolate, + tfaceGrad.ref() + ); + } + const auto& faceGrad = tfaceGrad(); + + const auto snGrad = [&] + ( + const vector& Sf, + const scalar dc, + const Type& ownVal, + const Type& neiVal, + const Type& correction + ) -> Type + { + const auto snGrad(dc*(neiVal-ownVal) + correction); + return mag(Sf)*snGrad; + }; + + fvc::surfaceSnSum + ( + deltaCoeffs, + vf, + faceGrad, // face-based addition + snGrad, + result, + false // avoid boundary evaluation until volume division + ); + } + else + { + const auto snGrad = [&] + ( + const vector& Sf, + const scalar dc, + const Type& ownVal, + const Type& neiVal + ) -> Type + { + const auto snGrad(dc*(neiVal-ownVal)); + return mag(Sf)*snGrad; + }; + + fvc::surfaceSnSum + ( + deltaCoeffs, + vf, + snGrad, + result, + false // avoid boundary evaluation until volume division + ); + } + + result.primitiveFieldRef() /= mesh.V(); + result.correctBoundaryConditions(); + + return tresult; +} + + +declareFvmLaplacianScalarGamma(scalar); +declareFvmLaplacianScalarGamma(vector); +declareFvmLaplacianScalarGamma(sphericalTensor); +declareFvmLaplacianScalarGamma(symmTensor); +declareFvmLaplacianScalarGamma(tensor); + + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedLeastSquaresGrad.C b/src/fused/finiteVolume/fusedLeastSquaresGrad.C new file mode 100644 index 0000000000000000000000000000000000000000..64799830191ceb0afc2b29b1026d19e92f32490f --- /dev/null +++ b/src/fused/finiteVolume/fusedLeastSquaresGrad.C @@ -0,0 +1,115 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2018-2021 OpenCFD Ltd. + Copyright (C) 2024 M. Janssens +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fusedLeastSquaresGrad.H" +#include "leastSquaresVectors.H" +#include "gaussGrad.H" +#include "fvMesh.H" +#include "volMesh.H" +#include "surfaceMesh.H" +#include "GeometricField.H" +#include "extrapolatedCalculatedFvPatchField.H" +#include "fvcSurfaceOps.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +template<class Type> +Foam::tmp +< + Foam::GeometricField + < + typename Foam::outerProduct<Foam::vector, Type>::type, + Foam::fvPatchField, + Foam::volMesh + > +> +Foam::fv::fusedLeastSquaresGrad<Type>::calcGrad +( + const GeometricField<Type, fvPatchField, volMesh>& vf, + const word& name +) const +{ + typedef typename outerProduct<vector, Type>::type GradType; + typedef GeometricField<GradType, fvPatchField, volMesh> GradFieldType; + + const fvMesh& mesh = vf.mesh(); + + DebugPout<< "fusedLeastSquaresGrad<Type>::calcGrad on " << vf.name() + << " with name " << name << endl; + + tmp<GradFieldType> tlsGrad + ( + new GradFieldType + ( + IOobject + ( + name, + vf.instance(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + dimensioned<GradType>(vf.dimensions()/dimLength, Zero), + fvPatchFieldBase::extrapolatedCalculatedType() + ) + ); + GradFieldType& lsGrad = tlsGrad.ref(); + + // Get reference to least square vectors + const leastSquaresVectors& lsv = leastSquaresVectors::New(mesh); + const surfaceVectorField& ownLs = lsv.pVectors(); + const surfaceVectorField& neiLs = lsv.nVectors(); + + const auto differenceOp = [&] + ( + const vector& area, + const Type& ownVal, + const Type& neiVal + ) -> Type + { + return neiVal - ownVal; + }; + + fvc::surfaceOp + ( + vf, + ownLs, + neiLs, + differenceOp, + lsGrad + ); + + gaussGrad<Type>::correctBoundaryConditions(vf, lsGrad); + + return tlsGrad; +} + + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedLeastSquaresGrad.H b/src/fused/finiteVolume/fusedLeastSquaresGrad.H new file mode 100644 index 0000000000000000000000000000000000000000..78dc13c31b5655a198df1af88756a4723170f6fc --- /dev/null +++ b/src/fused/finiteVolume/fusedLeastSquaresGrad.H @@ -0,0 +1,129 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2018-2021 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::fv::fusedLeastSquaresGrad + +Group + grpFvGradSchemes + +Description + Second-order gradient scheme using least-squares. + +SourceFiles + leastSquaresGrad.C + +\*---------------------------------------------------------------------------*/ + +#ifndef fusedLeastSquaresGrad_H +#define fusedLeastSquaresGrad_H + +#include "gradScheme.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace fv +{ + +/*---------------------------------------------------------------------------*\ + Class fusedLeastSquaresGrad Declaration +\*---------------------------------------------------------------------------*/ + +template<class Type> +class fusedLeastSquaresGrad +: + public fv::gradScheme<Type> +{ + // Private Member Functions + + //- No copy construct + fusedLeastSquaresGrad(const fusedLeastSquaresGrad&) = delete; + + //- No copy assignment + void operator=(const fusedLeastSquaresGrad&) = delete; + + +public: + + //- Runtime type information + TypeName("fusedLeastSquares"); + + + // Constructors + + //- Construct from mesh + fusedLeastSquaresGrad(const fvMesh& mesh) + : + gradScheme<Type>(mesh) + {} + + //- Construct from Istream + fusedLeastSquaresGrad(const fvMesh& mesh, Istream&) + : + gradScheme<Type>(mesh) + {} + + + // Member Functions + + //- Return the gradient of the given field to the gradScheme::grad + //- for optional caching + virtual tmp + < + GeometricField + <typename outerProduct<vector, Type>::type, fvPatchField, volMesh> + > calcGrad + ( + const GeometricField<Type, fvPatchField, volMesh>& vsf, + const word& name + ) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace fv + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository + #include "fusedLeastSquaresGrad.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fusedLeastSquaresGrads.C b/src/fused/finiteVolume/fusedLeastSquaresGrads.C new file mode 100644 index 0000000000000000000000000000000000000000..93b2735299e0488c4e82138d6e55deab634c80ce --- /dev/null +++ b/src/fused/finiteVolume/fusedLeastSquaresGrads.C @@ -0,0 +1,35 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2015 OpenFOAM Foundation +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fvMesh.H" +#include "fusedLeastSquaresGrad.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +makeFvGradScheme(fusedLeastSquaresGrad) + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fvcSurfaceOps.C b/src/fused/finiteVolume/fvcSurfaceOps.C new file mode 100644 index 0000000000000000000000000000000000000000..11d9b93d3cda42d9e6e9404a728c738ed69e7f7a --- /dev/null +++ b/src/fused/finiteVolume/fvcSurfaceOps.C @@ -0,0 +1,1408 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 M.Janssens +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "fvcSurfaceOps.H" +#include "fvMesh.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace fvc +{ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +template<class Type, class ResultType, class CellToFaceOp> +void surfaceSum +( + const surfaceScalarField& lambdas, + const GeometricField<Type, fvPatchField, volMesh>& vf, + const CellToFaceOp& cop, + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions +) +{ + const fvMesh& mesh = vf.mesh(); + const auto& Sf = mesh.Sf(); + const auto& P = mesh.owner(); + const auto& N = mesh.neighbour(); + + const auto& vfi = vf.primitiveField(); + auto& sfi = result.primitiveFieldRef(); + + // See e.g. surfaceInterpolationScheme<Type>::dotInterpolate + + // Internal field + { + const auto& Sfi = Sf.primitiveField(); + const auto& lambda = lambdas.primitiveField(); + + for (label facei=0; facei<P.size(); facei++) + { + const label ownCelli = P[facei]; + const label neiCelli = N[facei]; + + const ResultType faceVal + ( + cop + ( + Sfi[facei], + lambda[facei], + vfi[ownCelli], + vfi[neiCelli] + ) + ); + sfi[ownCelli] += faceVal; + sfi[neiCelli] -= faceVal; + } + } + + + // Boundary field + { + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pSf = Sf.boundaryField()[patchi]; + const auto& pvf = vf.boundaryField()[patchi]; + const auto& pLambda = lambdas.boundaryField()[patchi]; + + if (pvf.coupled()) + { + auto tpnf(pvf.patchNeighbourField()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + // Interpolate between owner-side and neighbour-side values + const ResultType faceVal + ( + cop + ( + pSf[facei], + pLambda[facei], + vfi[pFaceCells[facei]], + pnf[facei] + ) + ); + + sfi[pFaceCells[facei]] += faceVal; + } + } + else + { + for (label facei=0; facei<pFaceCells.size(); facei++) + { + // Use patch value only + const ResultType faceVal + ( + cop + ( + pSf[facei], + scalar(1.0), + pvf[facei], + pTraits<Type>::zero // not used + ) + ); + sfi[pFaceCells[facei]] += faceVal; + } + } + } + } + + if (doCorrectBoundaryConditions) + { + result.correctBoundaryConditions(); + } +} + + +template<class Type, class FType, class ResultType, class CellToFaceOp> +void surfaceSum +( + const surfaceScalarField& lambdas, + const GeometricField<Type, fvPatchField, volMesh>& vf, + const GeometricField<FType, fvsPatchField, surfaceMesh>& sadd, + const CellToFaceOp& cop, + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions +) +{ + const fvMesh& mesh = vf.mesh(); + const auto& Sf = mesh.Sf(); + const auto& P = mesh.owner(); + const auto& N = mesh.neighbour(); + + const auto& vfi = vf.primitiveField(); + auto& sfi = result.primitiveFieldRef(); + + // See e.g. surfaceInterpolationScheme<Type>::dotInterpolate + + // Internal field + { + const auto& Sfi = Sf.primitiveField(); + const auto& lambda = lambdas.primitiveField(); + const auto& saddi = sadd.primitiveField(); + + for (label facei=0; facei<P.size(); facei++) + { + const label ownCelli = P[facei]; + const label neiCelli = N[facei]; + + const ResultType faceVal + ( + cop + ( + Sfi[facei], + lambda[facei], + vfi[ownCelli], + vfi[neiCelli], + + saddi[facei] // additional face value + ) + ); + sfi[ownCelli] += faceVal; + sfi[neiCelli] -= faceVal; + } + } + + + // Boundary field + { + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pSf = Sf.boundaryField()[patchi]; + const auto& pvf = vf.boundaryField()[patchi]; + const auto& pLambda = lambdas.boundaryField()[patchi]; + const auto& psadd = sadd.boundaryField()[patchi]; + + if (pvf.coupled()) + { + auto tpnf(pvf.patchNeighbourField()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + // Interpolate between owner-side and neighbour-side values + const ResultType faceVal + ( + cop + ( + pSf[facei], + pLambda[facei], + vfi[pFaceCells[facei]], + pnf[facei], + psadd[facei] + ) + ); + + sfi[pFaceCells[facei]] += faceVal; + } + } + else + { + for (label facei=0; facei<pFaceCells.size(); facei++) + { + // Use patch value only + const ResultType faceVal + ( + cop + ( + pSf[facei], + scalar(1.0), + pvf[facei], + pTraits<Type>::zero, // not used + + psadd[facei] + ) + ); + sfi[pFaceCells[facei]] += faceVal; + } + } + } + } + + if (doCorrectBoundaryConditions) + { + result.correctBoundaryConditions(); + } +} + + +template +< + class Type, + class FType0, + class FType1, + class ResultType, + class CellToFaceOp +> +void surfaceSum +( + const surfaceScalarField& lambdas, + const GeometricField<Type, fvPatchField, volMesh>& vf, + + const GeometricField<FType0, fvsPatchField, surfaceMesh>& sf0, + const GeometricField<FType1, fvsPatchField, surfaceMesh>& sf1, + + const CellToFaceOp& cop, + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions +) +{ + const fvMesh& mesh = vf.mesh(); + const auto& Sf = mesh.Sf(); + const auto& P = mesh.owner(); + const auto& N = mesh.neighbour(); + + const auto& vfi = vf.primitiveField(); + auto& resulti = result.primitiveFieldRef(); + + // See e.g. surfaceInterpolationScheme<Type>::dotInterpolate + + // Internal field + { + const auto& Sfi = Sf.primitiveField(); + const auto& lambda = lambdas.primitiveField(); + const auto& sf0i = sf0.primitiveField(); + const auto& sf1i = sf1.primitiveField(); + + for (label facei=0; facei<P.size(); facei++) + { + const label ownCelli = P[facei]; + const label neiCelli = N[facei]; + + const ResultType faceVal + ( + cop + ( + Sfi[facei], + + lambda[facei], + vfi[ownCelli], + vfi[neiCelli], + + sf0i[facei], // additional face value + sf1i[facei] // additional face value + ) + ); + resulti[ownCelli] += faceVal; + resulti[neiCelli] -= faceVal; + } + } + + + // Boundary field + { + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pSf = Sf.boundaryField()[patchi]; + const auto& pvf = vf.boundaryField()[patchi]; + const auto& pLambda = lambdas.boundaryField()[patchi]; + const auto& psf0 = sf0.boundaryField()[patchi]; + const auto& psf1 = sf1.boundaryField()[patchi]; + + if (pvf.coupled()) + { + auto tpnf(pvf.patchNeighbourField()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + // Interpolate between owner-side and neighbour-side values + const ResultType faceVal + ( + cop + ( + pSf[facei], + + pLambda[facei], + vfi[pFaceCells[facei]], + pnf[facei], + + psf0[facei], + psf1[facei] + ) + ); + + resulti[pFaceCells[facei]] += faceVal; + } + } + else + { + for (label facei=0; facei<pFaceCells.size(); facei++) + { + // Use patch value only + const ResultType faceVal + ( + cop + ( + pSf[facei], + scalar(1.0), + pvf[facei], + pTraits<Type>::zero, // not used + + psf0[facei], + psf1[facei] + ) + ); + resulti[pFaceCells[facei]] += faceVal; + } + } + } + } + + if (doCorrectBoundaryConditions) + { + result.correctBoundaryConditions(); + } +} + + +template<class Type, class ResultType, class CombineOp> +void GaussOp +( + const surfaceScalarField& lambdas, + const GeometricField<Type, fvPatchField, volMesh>& vf, + const CombineOp& cop, + GeometricField<ResultType, fvPatchField, volMesh>& result +) +{ + const fvMesh& mesh = vf.mesh(); + + // Sum contributions + surfaceSum(lambdas, vf, cop, result, false); + + auto& sfi = result.primitiveFieldRef(); + sfi /= mesh.V(); + + result.correctBoundaryConditions(); +} + + +template<class Type, class ResultType, class CombineOp> +void surfaceOp +( + const GeometricField<Type, fvPatchField, volMesh>& vf, + const surfaceVectorField& ownLs, + const surfaceVectorField& neiLs, + const CombineOp& cop, + GeometricField<ResultType, fvPatchField, volMesh>& result +) +{ + const fvMesh& mesh = vf.mesh(); + const auto& Sf = mesh.Sf(); + const auto& P = mesh.owner(); + const auto& N = mesh.neighbour(); + + const auto& vfi = vf.primitiveField(); + auto& sfi = result.primitiveFieldRef(); + + // Internal field + { + const auto& Sfi = Sf.primitiveField(); + + for (label facei=0; facei<P.size(); facei++) + { + const label ownCelli = P[facei]; + const label neiCelli = N[facei]; + + const Type faceVal + ( + cop + ( + Sfi[facei], // needed? + vfi[ownCelli], + vfi[neiCelli] + ) + ); + sfi[ownCelli] += ownLs[facei]*faceVal; + sfi[neiCelli] -= neiLs[facei]*faceVal; + } + } + + + // Boundary field + { + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pSf = Sf.boundaryField()[patchi]; + const auto& pvf = vf.boundaryField()[patchi]; + const auto& pOwnLs = ownLs.boundaryField()[patchi]; + + if (pvf.coupled()) + { + auto tpnf(pvf.patchNeighbourField()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const Type faceVal + ( + cop + ( + pSf[facei], // needed? + vfi[pFaceCells[facei]], + pnf[facei] + ) + ); + + sfi[pFaceCells[facei]] += pOwnLs[facei]*faceVal; + } + } + else + { + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const Type faceVal + ( + cop + ( + pSf[facei], + vfi[pFaceCells[facei]], + pvf[facei] + ) + ); + sfi[pFaceCells[facei]] += pOwnLs[facei]*faceVal; + } + } + } + } + + result.correctBoundaryConditions(); +} + + +template<class Type, class ResultType, class CellToFaceOp> +void surfaceSnSum +( + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& vf, + + const CellToFaceOp& cop, + + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions +) +{ + const fvMesh& mesh = vf.mesh(); + const auto& Sf = mesh.Sf(); + const auto& P = mesh.owner(); + const auto& N = mesh.neighbour(); + + const auto& vfi = vf.primitiveField(); + auto& sfi = result.primitiveFieldRef(); + + // Internal field + { + const auto& Sfi = Sf.primitiveField(); + const auto& dc = deltaCoeffs.primitiveField(); + + for (label facei=0; facei<P.size(); facei++) + { + const label ownCelli = P[facei]; + const label neiCelli = N[facei]; + + const ResultType faceVal + ( + cop + ( + Sfi[facei], // area vector + dc[facei], // delta coefficients + vfi[ownCelli], + vfi[neiCelli] + ) + ); + sfi[ownCelli] += faceVal; + sfi[neiCelli] -= faceVal; + } + } + + + // Boundary field + { + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pSf = Sf.boundaryField()[patchi]; + const auto& pvf = vf.boundaryField()[patchi]; + const auto& pdc = deltaCoeffs.boundaryField()[patchi]; + + if (pvf.coupled()) + { + auto tpnf(pvf.patchNeighbourField()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const label ownCelli = pFaceCells[facei]; + + // Interpolate between owner-side and neighbour-side values + const ResultType faceVal + ( + cop + ( + pSf[facei], // area vector + pdc[facei], + vfi[ownCelli], + pnf[facei] + ) + ); + + sfi[ownCelli] += faceVal; + } + } + else + { + auto tpnf(pvf.snGrad()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const label ownCelli = pFaceCells[facei]; + + // Use patch value only + const ResultType faceVal + ( + cop + ( + pSf[facei], // area vector + scalar(1.0), // use 100% of pnf + pTraits<Type>::zero, + pnf[facei] + ) + ); + sfi[ownCelli] += faceVal; + } + } + } + } + + if (doCorrectBoundaryConditions) + { + result.correctBoundaryConditions(); + } +} + + +template<class Type, class ResultType, class CellToFaceOp> +void surfaceSnSum +( + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& vf, + const GeometricField<Type, fvsPatchField, surfaceMesh>& sadd, + + const CellToFaceOp& cop, + + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions +) +{ + const fvMesh& mesh = vf.mesh(); + const auto& Sf = mesh.Sf(); + const auto& P = mesh.owner(); + const auto& N = mesh.neighbour(); + + const auto& vfi = vf.primitiveField(); + auto& sfi = result.primitiveFieldRef(); + + // Internal field + { + const auto& Sfi = Sf.primitiveField(); + const auto& dc = deltaCoeffs.primitiveField(); + const auto& saddi = sadd.primitiveField(); + + for (label facei=0; facei<P.size(); facei++) + { + const label ownCelli = P[facei]; + const label neiCelli = N[facei]; + + const ResultType faceVal + ( + cop + ( + Sfi[facei], // area vector + dc[facei], // delta coefficients + vfi[ownCelli], + vfi[neiCelli], + saddi[facei] // face addition value + ) + ); + sfi[ownCelli] += faceVal; + sfi[neiCelli] -= faceVal; + } + } + + + // Boundary field + { + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pSf = Sf.boundaryField()[patchi]; + const auto& pvf = vf.boundaryField()[patchi]; + const auto& pdc = deltaCoeffs.boundaryField()[patchi]; + const auto& psadd = sadd.boundaryField()[patchi]; + + if (pvf.coupled()) + { + auto tpnf(pvf.patchNeighbourField()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const label ownCelli = pFaceCells[facei]; + + // Interpolate between owner-side and neighbour-side values + const ResultType faceVal + ( + cop + ( + pSf[facei], // area vector + pdc[facei], + vfi[ownCelli], + pnf[facei], + psadd[facei] + ) + ); + + sfi[ownCelli] += faceVal; + } + } + else + { + auto tpnf(pvf.snGrad()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const label ownCelli = pFaceCells[facei]; + + // Use patch value only + const ResultType faceVal + ( + cop + ( + pSf[facei], // area vector + scalar(1.0), // use 100% of pnf + pTraits<Type>::zero, + pnf[facei], + psadd[facei] + ) + ); + sfi[ownCelli] += faceVal; + } + } + } + } + + if (doCorrectBoundaryConditions) + { + result.correctBoundaryConditions(); + } +} + + +template<class Type, class GType, class ResultType, class CellToFaceOp> +void surfaceSnSum +( + const surfaceScalarField& gammaWeights, + const GeometricField<GType, fvPatchField, volMesh>& gamma, + + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& vf, + + const CellToFaceOp& cop, + + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions +) +{ + const fvMesh& mesh = vf.mesh(); + const auto& Sf = mesh.Sf(); + const auto& P = mesh.owner(); + const auto& N = mesh.neighbour(); + + const auto& gammai = gamma.primitiveField(); + const auto& vfi = vf.primitiveField(); + auto& sfi = result.primitiveFieldRef(); + + // Internal field + { + const auto& Sfi = Sf.primitiveField(); + const auto& weights = gammaWeights.primitiveField(); + const auto& dc = deltaCoeffs.primitiveField(); + + for (label facei=0; facei<P.size(); facei++) + { + const label ownCelli = P[facei]; + const label neiCelli = N[facei]; + + const ResultType faceVal + ( + cop + ( + Sfi[facei], // area vector + + weights[facei], // interpolation weights + gammai[ownCelli], + gammai[neiCelli], + + dc[facei], // delta coefficients + vfi[ownCelli], + vfi[neiCelli] + ) + ); + sfi[ownCelli] += faceVal; + sfi[neiCelli] -= faceVal; + } + } + + + // Boundary field + { + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pSf = Sf.boundaryField()[patchi]; + const auto& pvf = vf.boundaryField()[patchi]; + const auto& pdc = deltaCoeffs.boundaryField()[patchi]; + const auto& pweights = gammaWeights.boundaryField()[patchi]; + const auto& pgamma = gamma.boundaryField()[patchi]; + + if (pvf.coupled()) + { + auto tpnf(pvf.patchNeighbourField()); + auto& pnf = tpnf(); + auto tgammanf(pgamma.patchNeighbourField()); + auto& gammanf = tgammanf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const label ownCelli = pFaceCells[facei]; + + // Interpolate between owner-side and neighbour-side values + const ResultType faceVal + ( + cop + ( + pSf[facei], // area vector + + pweights[facei], + gammai[ownCelli], + gammanf[facei], + + pdc[facei], + vfi[ownCelli], + pnf[facei] + ) + ); + + sfi[ownCelli] += faceVal; + } + } + else + { + auto tpnf(pvf.snGrad()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const label ownCelli = pFaceCells[facei]; + + // Use patch value only + const ResultType faceVal + ( + cop + ( + pSf[facei], // area vector + + scalar(1.0), + pgamma[facei], + pTraits<GType>::zero, // not used + + + scalar(1.0), // use 100% of pnf + pTraits<Type>::zero, + pnf[facei] + ) + ); + sfi[ownCelli] += faceVal; + } + } + } + } + + if (doCorrectBoundaryConditions) + { + result.correctBoundaryConditions(); + } +} + + +template<class Type, class GType, class ResultType, class CellToFaceOp> +void surfaceSnSum +( + const surfaceScalarField& gammaWeights, + const GeometricField<GType, fvPatchField, volMesh>& gamma, + + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& vf, + + const GeometricField<Type, fvsPatchField, surfaceMesh>& sadd, + + const CellToFaceOp& cop, + + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions +) +{ + const fvMesh& mesh = vf.mesh(); + const auto& Sf = mesh.Sf(); + const auto& P = mesh.owner(); + const auto& N = mesh.neighbour(); + + const auto& gammai = gamma.primitiveField(); + const auto& vfi = vf.primitiveField(); + auto& sfi = result.primitiveFieldRef(); + + // Internal field + { + const auto& Sfi = Sf.primitiveField(); + const auto& weights = gammaWeights.primitiveField(); + const auto& dc = deltaCoeffs.primitiveField(); + const auto& saddi = sadd.primitiveField(); + + for (label facei=0; facei<P.size(); facei++) + { + const label ownCelli = P[facei]; + const label neiCelli = N[facei]; + + const ResultType faceVal + ( + cop + ( + Sfi[facei], // area vector + + weights[facei], // interpolation weights + gammai[ownCelli], + gammai[neiCelli], + + dc[facei], // delta coefficients + vfi[ownCelli], + vfi[neiCelli], + + saddi[facei] // face addition value + ) + ); + sfi[ownCelli] += faceVal; + sfi[neiCelli] -= faceVal; + } + } + + + // Boundary field + { + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pSf = Sf.boundaryField()[patchi]; + const auto& pvf = vf.boundaryField()[patchi]; + const auto& pdc = deltaCoeffs.boundaryField()[patchi]; + const auto& pweights = gammaWeights.boundaryField()[patchi]; + const auto& pgamma = gamma.boundaryField()[patchi]; + const auto& psadd = sadd.boundaryField()[patchi]; + + if (pvf.coupled()) + { + auto tpnf(pvf.patchNeighbourField()); + auto& pnf = tpnf(); + auto tgammanf(pgamma.patchNeighbourField()); + auto& gammanf = tgammanf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const label ownCelli = pFaceCells[facei]; + + // Interpolate between owner-side and neighbour-side values + const ResultType faceVal + ( + cop + ( + pSf[facei], // area vector + + pweights[facei], + gammai[ownCelli], + gammanf[facei], + + pdc[facei], + vfi[ownCelli], + pnf[facei], + + psadd[facei] + ) + ); + + sfi[ownCelli] += faceVal; + } + } + else + { + auto tpnf(pvf.snGrad()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const label ownCelli = pFaceCells[facei]; + + // Use patch value only + const ResultType faceVal + ( + cop + ( + pSf[facei], // area vector + + scalar(1.0), + pgamma[facei], + pTraits<GType>::zero, // not used + + + scalar(1.0), // use 100% of pnf + pTraits<Type>::zero, + pnf[facei], + + psadd[facei] + ) + ); + sfi[ownCelli] += faceVal; + } + } + } + } + + if (doCorrectBoundaryConditions) + { + result.correctBoundaryConditions(); + } +} + + +template +< + class Type, + class GType0, + class GType1, + class ResultType, + class CellToFaceOp +> +void surfaceSnSum +( + const surfaceScalarField& gammaWeights, + const GeometricField<GType0, fvPatchField, volMesh>& gamma0, + const GeometricField<GType1, fvPatchField, volMesh>& gamma1, + + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& vf, + + const CellToFaceOp& cop, + + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions +) +{ + const fvMesh& mesh = vf.mesh(); + const auto& Sf = mesh.Sf(); + const auto& P = mesh.owner(); + const auto& N = mesh.neighbour(); + + const auto& gamma0i = gamma0.primitiveField(); + const auto& gamma1i = gamma1.primitiveField(); + const auto& vfi = vf.primitiveField(); + auto& sfi = result.primitiveFieldRef(); + + // Internal field + { + const auto& Sfi = Sf.primitiveField(); + const auto& weights = gammaWeights.primitiveField(); + const auto& dc = deltaCoeffs.primitiveField(); + + for (label facei=0; facei<P.size(); facei++) + { + const label ownCelli = P[facei]; + const label neiCelli = N[facei]; + + const ResultType faceVal + ( + cop + ( + Sfi[facei], // area vector + + weights[facei], // interpolation weights + + gamma0i[ownCelli], + gamma0i[neiCelli], + + gamma1i[ownCelli], + gamma1i[neiCelli], + + dc[facei], // delta coefficients + vfi[ownCelli], + vfi[neiCelli] + ) + ); + sfi[ownCelli] += faceVal; + sfi[neiCelli] -= faceVal; + } + } + + + // Boundary field + { + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pSf = Sf.boundaryField()[patchi]; + const auto& pvf = vf.boundaryField()[patchi]; + const auto& pdc = deltaCoeffs.boundaryField()[patchi]; + const auto& pweights = gammaWeights.boundaryField()[patchi]; + const auto& pgamma0 = gamma0.boundaryField()[patchi]; + const auto& pgamma1 = gamma1.boundaryField()[patchi]; + + if (pvf.coupled()) + { + auto tpnf(pvf.patchNeighbourField()); + auto& pnf = tpnf(); + auto tgamma0nf(pgamma0.patchNeighbourField()); + auto& gamma0nf = tgamma0nf(); + auto tgamma1nf(pgamma1.patchNeighbourField()); + auto& gamma1nf = tgamma1nf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const label ownCelli = pFaceCells[facei]; + + // Interpolate between owner-side and neighbour-side values + const ResultType faceVal + ( + cop + ( + pSf[facei], // area vector + + pweights[facei], + + gamma0i[ownCelli], + gamma0nf[facei], + + gamma1i[ownCelli], + gamma1nf[facei], + + pdc[facei], + vfi[ownCelli], + pnf[facei] + ) + ); + + sfi[ownCelli] += faceVal; + } + } + else + { + auto tpnf(pvf.snGrad()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + const label ownCelli = pFaceCells[facei]; + + // Use patch value only + const ResultType faceVal + ( + cop + ( + pSf[facei], // area vector + + scalar(1.0), + + pgamma0[facei], + pTraits<GType0>::zero, // not used + + pgamma1[facei], + pTraits<GType1>::zero, // not used + + scalar(1.0), // use 100% of pnf + pTraits<Type>::zero, + pnf[facei] + ) + ); + sfi[ownCelli] += faceVal; + } + } + } + } + + if (doCorrectBoundaryConditions) + { + result.correctBoundaryConditions(); + } +} + + +template<class Type, class FType, class ResultType, class CellToFaceOp> +void interpolate +( + const surfaceScalarField& weights, + const GeometricField<Type, fvPatchField, volMesh>& vf, + const GeometricField<FType, fvsPatchField, surfaceMesh>& sf, + const CellToFaceOp& cop, + GeometricField<ResultType, fvsPatchField, surfaceMesh>& result +) +{ + const fvMesh& mesh = vf.mesh(); + const auto& Sf = mesh.Sf(); + const auto& P = mesh.owner(); + const auto& N = mesh.neighbour(); + + const auto& vfi = vf.primitiveField(); + + // Internal field + { + const auto& Sfi = Sf.primitiveField(); + const auto& weight = weights.primitiveField(); + const auto& sfi = sf.primitiveField(); + + auto& resulti = result.primitiveFieldRef(); + + for (label facei=0; facei<P.size(); facei++) + { + const label ownCelli = P[facei]; + const label neiCelli = N[facei]; + + cop + ( + Sfi[facei], + + weight[facei], + vfi[ownCelli], + vfi[neiCelli], + + sfi[facei], + + resulti[facei] + ); + } + } + + + // Boundary field + { + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pSf = Sf.boundaryField()[patchi]; + const auto& pvf = vf.boundaryField()[patchi]; + const auto& pweight = weights.boundaryField()[patchi]; + const auto& psf = sf.boundaryField()[patchi]; + auto& presult = result.boundaryFieldRef()[patchi]; + + if (pvf.coupled()) + { + auto tpnf(pvf.patchNeighbourField()); + auto& pnf = tpnf(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + // Interpolate between owner-side and neighbour-side values + cop + ( + pSf[facei], + + pweight[facei], + vfi[pFaceCells[facei]], + pnf[facei], + + psf[facei], + + presult[facei] + ); + } + } + else + { + for (label facei=0; facei<pFaceCells.size(); facei++) + { + // Use patch value only + cop + ( + pSf[facei], + + scalar(1.0), + pvf[facei], + pTraits<Type>::zero, // not used + + psf[facei], + + presult[facei] + ); + } + } + } + } +} +template +< + class Type0, + class Type1, + class ResultType, + class CellToFaceOp +> +void interpolate +( + const surfaceScalarField& weights, + const GeometricField<Type0, fvPatchField, volMesh>& vf0, + const GeometricField<Type1, fvPatchField, volMesh>& vf1, + const CellToFaceOp& cop, + GeometricField<ResultType, fvsPatchField, surfaceMesh>& result +) +{ + const fvMesh& mesh = vf0.mesh(); + const auto& Sf = mesh.Sf(); + const auto& P = mesh.owner(); + const auto& N = mesh.neighbour(); + + const auto& vf0i = vf0.primitiveField(); + const auto& vf1i = vf1.primitiveField(); + + // Internal field + { + const auto& Sfi = Sf.primitiveField(); + const auto& weight = weights.primitiveField(); + + auto& resulti = result.primitiveFieldRef(); + + for (label facei=0; facei<P.size(); facei++) + { + const label ownCelli = P[facei]; + const label neiCelli = N[facei]; + + cop + ( + Sfi[facei], + + weight[facei], + + vf0i[ownCelli], + vf0i[neiCelli], + + vf1i[ownCelli], + vf1i[neiCelli], + + resulti[facei] + ); + } + } + + + // Boundary field + { + forAll(mesh.boundary(), patchi) + { + const auto& pFaceCells = mesh.boundary()[patchi].faceCells(); + const auto& pSf = Sf.boundaryField()[patchi]; + const auto& pvf0 = vf0.boundaryField()[patchi]; + const auto& pvf1 = vf1.boundaryField()[patchi]; + const auto& pweight = weights.boundaryField()[patchi]; + auto& presult = result.boundaryFieldRef()[patchi]; + + if (pvf0.coupled() || pvf1.coupled()) + { + auto tpnf0(pvf0.patchNeighbourField()); + auto& pnf0 = tpnf0(); + + auto tpnf1(pvf1.patchNeighbourField()); + auto& pnf1 = tpnf1(); + + for (label facei=0; facei<pFaceCells.size(); facei++) + { + // Interpolate between owner-side and neighbour-side values + cop + ( + pSf[facei], + + pweight[facei], + + vf0i[pFaceCells[facei]], + pnf0[facei], + + vf1i[pFaceCells[facei]], + pnf1[facei], + + presult[facei] + ); + } + } + else + { + for (label facei=0; facei<pFaceCells.size(); facei++) + { + // Use patch value only + cop + ( + pSf[facei], + + scalar(1.0), + + pvf0[facei], + pTraits<Type0>::zero, // not used + + pvf1[facei], + pTraits<Type1>::zero, // not used + + presult[facei] + ); + } + } + } + } +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace fvc + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// ************************************************************************* // diff --git a/src/fused/finiteVolume/fvcSurfaceOps.H b/src/fused/finiteVolume/fvcSurfaceOps.H new file mode 100644 index 0000000000000000000000000000000000000000..a5a602fc62fbe9cb36c8bb036062f9cb95757121 --- /dev/null +++ b/src/fused/finiteVolume/fvcSurfaceOps.H @@ -0,0 +1,291 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 M.Janssens +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +InNamespace + Foam::fvc + +Description + Surface integrate surfaceField creating a volField. + Surface sum a surfaceField creating a volField. + +SourceFiles + fvcSurfaceOps.C + +\*---------------------------------------------------------------------------*/ + + +#ifndef fvcSurfaceOps_H +#define fvcSurfaceOps_H + +#include "primitiveFieldsFwd.H" +#include "volFieldsFwd.H" +#include "surfaceFieldsFwd.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +//- In-place operations on Fields. Add to FieldFunctions.C ? +#define INPLACE_PRODUCT_OPERATOR(product, CombineOp, Op, OpFunc) \ + \ +template<class Type1, class Type2> \ +void OpFunc \ +( \ + Field<typename product<Type1, Type2>::type>& result, \ + const UList<Type1>& f1, \ + const UList<Type2>& f2 \ +) \ +{ \ + typedef typename product<Type1, Type2>::type resultType; \ + TFOR_ALL_F_OP_F_OP_F \ + (resultType, result, CombineOp, Type1, f1, Op, Type2, f2) \ +} + + +INPLACE_PRODUCT_OPERATOR(outerProduct, +=, *, multiplyAdd) +INPLACE_PRODUCT_OPERATOR(outerProduct, -=, *, multiplySubtract) + +#undef INPLACE_PRODUCT_OPERATOR + + + +/*---------------------------------------------------------------------------*\ + Namespace fvc functions Declaration +\*---------------------------------------------------------------------------*/ + +namespace fvc +{ + // Interpolation + + //- Interpolate to face (using cop) and additional face field + template<class Type, class FType, class ResultType, class CellToFaceOp> + void interpolate + ( + const surfaceScalarField& lambdas, + const GeometricField<Type, fvPatchField, volMesh>& vf, + const GeometricField<FType, fvsPatchField, surfaceMesh>& sf, + const CellToFaceOp& cop, + GeometricField<ResultType, fvsPatchField, surfaceMesh>& result + ); + + //- Interpolate to face (using cop) + template + < + class Type0, + class Type1, + class ResultType, + class CellToFaceOp + > + void interpolate + ( + const surfaceScalarField& weights, + const GeometricField<Type0, fvPatchField, volMesh>& vf0, + const GeometricField<Type1, fvPatchField, volMesh>& vf1, + const CellToFaceOp& cop, + GeometricField<ResultType, fvsPatchField, surfaceMesh>& result + ); + + + // Interpolation and accumulation + + //- Interpolate to face (using cop) and accumulate. + template<class Type, class ResultType, class CellToFaceOp> + void surfaceSum + ( + const surfaceScalarField& lambdas, + const GeometricField<Type, fvPatchField, volMesh>& vf, + const CellToFaceOp& cop, + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions = true + ); + + //- Interpolate to face (using cop) and accumulate. Additional + //- face field + template<class Type, class FType, class ResultType, class CellToFaceOp> + void surfaceSum + ( + const surfaceScalarField& lambdas, + const GeometricField<Type, fvPatchField, volMesh>& vf, + const GeometricField<FType, fvsPatchField, surfaceMesh>& sf, + const CellToFaceOp& cop, + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions = true + ); + + //- Interpolate to face (using cop) and accumulate. Additional + //- face fields + template + < + class Type, + class FType0, + class FType1, + class ResultType, + class CellToFaceOp + > + void surfaceSum + ( + const surfaceScalarField& lambdas, + const GeometricField<Type, fvPatchField, volMesh>& vf, + + const GeometricField<FType0, fvsPatchField, surfaceMesh>& sf0, + const GeometricField<FType1, fvsPatchField, surfaceMesh>& sf1, + + const CellToFaceOp& cop, + + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions = true + ); + + //- Interpolate to face (using cop) and apply Gauss. Note: uses V(), + // not Vsc() + template<class Type, class ResultType, class CellToFaceOp> + void GaussOp + ( + const surfaceScalarField& lambdas, + const GeometricField<Type, fvPatchField, volMesh>& vf, + const CellToFaceOp& cop, + GeometricField<ResultType, fvPatchField, volMesh>& result + ); + + + // Difference and accumulation + + //- sum of snGrad + template<class Type, class ResultType, class CellToFaceOp> + void surfaceSnSum + ( + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& vf, + + const CellToFaceOp& cop, + + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions + ); + //- sum of snGrad with additional surface field + template<class Type, class ResultType, class CellToFaceOp> + void surfaceSnSum + ( + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& vf, + const GeometricField<Type, fvsPatchField, surfaceMesh>& sadd, + + const CellToFaceOp& cop, + + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions + ); + + //- sum of snGrad with additional (interpolated) volField + template<class Type, class GType, class ResultType, class CellToFaceOp> + void surfaceSnSum + ( + const surfaceScalarField& gammaWeights, + const GeometricField<GType, fvPatchField, volMesh>& gamma, + + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& vf, + + const CellToFaceOp& cop, + + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions + ); + + //- sum of snGrad with additional (interpolated) volfields + template + < + class Type, + class GType0, + class GType1, + class ResultType, + class CellToFaceOp + > + void surfaceSnSum + ( + const surfaceScalarField& weights, + + const GeometricField<GType0, fvPatchField, volMesh>& gamma0, + const GeometricField<GType1, fvPatchField, volMesh>& gamma1, + + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& vf, + + const CellToFaceOp& cop, + + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions + ); + + //- sum of snGrad with additional surface field + template<class Type, class GType, class ResultType, class CellToFaceOp> + void surfaceSnSum + ( + const surfaceScalarField& gammaWeights, + const GeometricField<GType, fvPatchField, volMesh>& gamma, + + const surfaceScalarField& deltaCoeffs, + const GeometricField<Type, fvPatchField, volMesh>& vf, + + const GeometricField<Type, fvsPatchField, surfaceMesh>& sadd, + + const CellToFaceOp& cop, + + GeometricField<ResultType, fvPatchField, volMesh>& result, + const bool doCorrectBoundaryConditions + ); + + + // Other + + //- Interpolate to face (using cop) and apply distribution vectors + template<class Type, class ResultType, class CellToFaceOp> + void surfaceOp + ( + const GeometricField<Type, fvPatchField, volMesh>& vf, + const surfaceVectorField& ownLs, + const surfaceVectorField& neiLs, + const CellToFaceOp& cop, + GeometricField<ResultType, fvPatchField, volMesh>& result + ); +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository + #include "fvcSurfaceOps.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/fvMotionSolver/Make/files b/src/fvMotionSolver/Make/files index 426e49f6b6c3feb75eedb70739a76026fa4b4dea..83ff9c248d31c304db5e8569cef549db9d049153 100644 --- a/src/fvMotionSolver/Make/files +++ b/src/fvMotionSolver/Make/files @@ -38,6 +38,8 @@ $(derivedPoint)/angularOscillatingDisplacement/angularOscillatingDisplacementPoi $(derivedPoint)/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.C $(derivedPoint)/surfaceDisplacement/surfaceDisplacementPointPatchVectorField.C $(derivedPoint)/waveDisplacement/waveDisplacementPointPatchVectorField.C +$(derivedPoint)/edgeSlipDisplacement/edgeSlipDisplacementPointPatchVectorField.C +$(derivedPoint)/pointAttractionDisplacement/pointAttractionDisplacementPointPatchVectorField.C $(derivedPoint)/timeVaryingMappedFixedValue/timeVaryingMappedFixedValuePointPatchFields.C $(derivedPoint)/uniformInterpolatedDisplacement/uniformInterpolatedDisplacementPointPatchVectorField.C diff --git a/src/fvMotionSolver/fvMotionSolvers/componentDisplacement/componentLaplacian/displacementComponentLaplacianFvMotionSolver.C b/src/fvMotionSolver/fvMotionSolvers/componentDisplacement/componentLaplacian/displacementComponentLaplacianFvMotionSolver.C index 541cc4882baa91673d2e68db748301940330e339..826d7e4b0b937cac8e910d0a20292fe5b2410226 100644 --- a/src/fvMotionSolver/fvMotionSolvers/componentDisplacement/componentLaplacian/displacementComponentLaplacianFvMotionSolver.C +++ b/src/fvMotionSolver/fvMotionSolvers/componentDisplacement/componentLaplacian/displacementComponentLaplacianFvMotionSolver.C @@ -145,6 +145,18 @@ Foam::displacementComponentLaplacianFvMotionSolver::curPoints() const pointDisplacement_ ); + // Evaluate the bcs so they are consistent with the internal field + // Might fight the multi-patch behaviour inside volPointInterpolate + if + ( + pointDisplacement_.boundaryField().size() + != cellDisplacement_.boundaryField().size() + ) + { + pointDisplacement_.correctBoundaryConditions(); + } + + if (pointLocation_) { if (debug) diff --git a/src/fvMotionSolver/fvMotionSolvers/displacement/SBRStress/displacementSBRStressFvMotionSolver.C b/src/fvMotionSolver/fvMotionSolvers/displacement/SBRStress/displacementSBRStressFvMotionSolver.C index c220b6635c808c85e052c7c461e0485b10d10b3d..9c0cf0d2674897405ed3351ab6113af2a41c5eab 100644 --- a/src/fvMotionSolver/fvMotionSolvers/displacement/SBRStress/displacementSBRStressFvMotionSolver.C +++ b/src/fvMotionSolver/fvMotionSolvers/displacement/SBRStress/displacementSBRStressFvMotionSolver.C @@ -160,6 +160,17 @@ Foam::displacementSBRStressFvMotionSolver::curPoints() const pointDisplacement_ ); + // Evaluate the bcs so they are consistent with the internal field + // Might fight the multi-patch behaviour inside volPointInterpolate + if + ( + pointDisplacement_.boundaryField().size() + != cellDisplacement_.boundaryField().size() + ) + { + pointDisplacement_.correctBoundaryConditions(); + } + tmp<pointField> tcurPoints ( points0() + pointDisplacement().primitiveField() @@ -186,6 +197,10 @@ void Foam::displacementSBRStressFvMotionSolver::solve() *diffusivityPtr_->operator()() ); + // Make sure the cellMotion bcs are consistent with the pointDisplacement. + // This makes sure the grad below uses more up-to-date values. + cellDisplacement_.boundaryFieldRef().updateCoeffs(); + volTensorField gradCd("gradCd", fvc::grad(cellDisplacement_)); fv::options& fvOptions(fv::options::New(fvMesh_)); diff --git a/src/fvMotionSolver/fvMotionSolvers/displacement/laplacian/displacementLaplacianFvMotionSolver.C b/src/fvMotionSolver/fvMotionSolvers/displacement/laplacian/displacementLaplacianFvMotionSolver.C index e29a6e486520e1a535267a8e67cd3808b641001a..765c8e2baf1dbfc2fc2660d57fc14f7e9de994bc 100644 --- a/src/fvMotionSolver/fvMotionSolvers/displacement/laplacian/displacementLaplacianFvMotionSolver.C +++ b/src/fvMotionSolver/fvMotionSolvers/displacement/laplacian/displacementLaplacianFvMotionSolver.C @@ -267,6 +267,17 @@ Foam::displacementLaplacianFvMotionSolver::curPoints() const pointDisplacement_ ); + // Evaluate the bcs so they are consistent with the internal field + // Might fight the multi-patch behaviour inside volPointInterpolate + if + ( + pointDisplacement_.boundaryField().size() + != cellDisplacement_.boundaryField().size() + ) + { + pointDisplacement_.correctBoundaryConditions(); + } + if (pointLocation_) { if (debug) @@ -333,6 +344,10 @@ void Foam::displacementLaplacianFvMotionSolver::solve() diffusivity().correct(); pointDisplacement_.boundaryFieldRef().updateCoeffs(); + // Make sure the cellMotion bcs are consistent with the pointDisplacement. + // This makes sure the grad below uses more up-to-date values. + cellDisplacement_.boundaryFieldRef().updateCoeffs(); + fv::options& fvOptions(fv::options::New(fvMesh_)); // We explicitly do NOT want to interpolate the motion inbetween diff --git a/src/fvMotionSolver/fvMotionSolvers/displacement/solidBodyDisplacementLaplacian/solidBodyDisplacementLaplacianFvMotionSolver.C b/src/fvMotionSolver/fvMotionSolvers/displacement/solidBodyDisplacementLaplacian/solidBodyDisplacementLaplacianFvMotionSolver.C index 79ddc0d9beddc825555178727e8b9d4713a4c75f..453931bff87114f1fead6638bbdca705587355e7 100644 --- a/src/fvMotionSolver/fvMotionSolvers/displacement/solidBodyDisplacementLaplacian/solidBodyDisplacementLaplacianFvMotionSolver.C +++ b/src/fvMotionSolver/fvMotionSolvers/displacement/solidBodyDisplacementLaplacian/solidBodyDisplacementLaplacianFvMotionSolver.C @@ -271,6 +271,17 @@ Foam::solidBodyDisplacementLaplacianFvMotionSolver::curPoints() const pointDisplacement_ ); + // Evaluate the bcs so they are consistent with the internal field + // Might fight the multi-patch behaviour inside volPointInterpolate + if + ( + pointDisplacement_.boundaryField().size() + != cellDisplacement_.boundaryField().size() + ) + { + pointDisplacement_.correctBoundaryConditions(); + } + tmp<pointField> tnewPoints ( transformPoints(SBMFPtr_().transformation(), points0()) diff --git a/src/fvMotionSolver/fvMotionSolvers/fvMotionSolver/fvMotionSolverTemplates.C b/src/fvMotionSolver/fvMotionSolvers/fvMotionSolver/fvMotionSolverTemplates.C index 47825b752590178940d38b06bd25430ae5fe3f71..81d6c996011af7abab71266705254dd10838d7c9 100644 --- a/src/fvMotionSolver/fvMotionSolvers/fvMotionSolver/fvMotionSolverTemplates.C +++ b/src/fvMotionSolver/fvMotionSolvers/fvMotionSolver/fvMotionSolverTemplates.C @@ -6,6 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2012-2016 OpenFOAM Foundation + Copyright (C) 2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -28,6 +29,7 @@ License #include "fvMotionSolver.H" #include "fixedValuePointPatchFields.H" #include "cellMotionFvPatchFields.H" +#include "facePointPatch.H" // * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * // @@ -38,23 +40,33 @@ Foam::wordList Foam::fvMotionSolver::cellMotionBoundaryTypes Boundary& pmUbf ) const { - wordList cmUbf = pmUbf.types(); + wordList cmUbf(fvMesh_.boundary().size()); - // Remove global patches from the end of the list - cmUbf.setSize(fvMesh_.boundary().size()); - - forAll(cmUbf, patchi) + forAll(pmUbf, patchi) { - if (isA<fixedValuePointPatchField<Type>>(pmUbf[patchi])) + const auto& pfld = pmUbf[patchi]; + const auto* fppPtr = isA<facePointPatch>(pfld.patch()); + if (fppPtr) { - cmUbf[patchi] = cellMotionFvPatchField<Type>::typeName; - } + const auto& fpp = *fppPtr; + const label polyPatchi = fpp.patch().index(); - if (debug) - { - Pout<< "Patch:" << fvMesh_.boundary()[patchi].patch().name() - << " pointType:" << pmUbf.types()[patchi] - << " cellType:" << cmUbf[patchi] << endl; + if (isA<fixedValuePointPatchField<Type>>(pfld)) + { + cmUbf[polyPatchi] = cellMotionFvPatchField<Type>::typeName; + } + else + { + // Take over pointPatch type + cmUbf[polyPatchi] = pfld.type(); + } + + if (debug) + { + Pout<< "Patch:" << fvMesh_.boundary()[patchi].patch().name() + << " pointType:" << pfld.type() + << " cellType:" << cmUbf[patchi] << endl; + } } } diff --git a/src/fvMotionSolver/fvPatchFields/derived/cellMotion/cellMotionFvPatchField.H b/src/fvMotionSolver/fvPatchFields/derived/cellMotion/cellMotionFvPatchField.H index b175af60ee7452c8b9b876d994765dd976112479..26505e57d8045944c4a086baf12a2ee4c980f4ee 100644 --- a/src/fvMotionSolver/fvPatchFields/derived/cellMotion/cellMotionFvPatchField.H +++ b/src/fvMotionSolver/fvPatchFields/derived/cellMotion/cellMotionFvPatchField.H @@ -37,7 +37,6 @@ SourceFiles #ifndef cellMotionFvPatchField_H #define cellMotionFvPatchField_H -#include "Random.H" #include "fixedValueFvPatchFields.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/src/fvMotionSolver/pointPatchFields/derived/edgeSlipDisplacement/edgeSlipDisplacementPointPatchVectorField.C b/src/fvMotionSolver/pointPatchFields/derived/edgeSlipDisplacement/edgeSlipDisplacementPointPatchVectorField.C new file mode 100644 index 0000000000000000000000000000000000000000..5cc1fa769f535dfaad8205f4bd43396c3ec4b1c6 --- /dev/null +++ b/src/fvMotionSolver/pointPatchFields/derived/edgeSlipDisplacement/edgeSlipDisplacementPointPatchVectorField.C @@ -0,0 +1,398 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "edgeSlipDisplacementPointPatchVectorField.H" +#include "addToRunTimeSelectionTable.H" +#include "Time.H" +#include "transformField.H" +#include "displacementMotionSolver.H" +#include "featureEdgeMesh.H" + +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // + +void Foam::edgeSlipDisplacementPointPatchVectorField::read +( + const objectRegistry& obr, + const dictionary& dict +) +{ + const Time& tm = obr.time(); + + const fileName featFileName(dict.get<fileName>("file", keyType::LITERAL)); + + if (tm.foundObject<edgeMesh>(featFileName)) + { + return; + } + + IOobject extFeatObj + ( + featFileName, // name + tm.constant(), // instance + "extendedFeatureEdgeMesh", // local + obr, // registry + IOobject::MUST_READ, + IOobject::NO_WRITE, + IOobject::REGISTER + ); + + //const fileName fName(typeFilePath<extendedFeatureEdgeMesh>(extFeatObj)); + const fileName fName(extFeatObj.typeFilePath<extendedFeatureEdgeMesh>()); + + if (!fName.empty() && extendedEdgeMesh::canRead(fName)) + { + Info<< "Reading edgeMesh from " << extFeatObj.objectRelPath() << endl; + auto* eMeshPtr = new extendedFeatureEdgeMesh(extFeatObj); + eMeshPtr->store(); + } + else + { + // Try reading as edgeMesh + + IOobject featObj + ( + featFileName, // name + tm.constant(), // instance + "triSurface", // local + obr, // registry + IOobject::MUST_READ, + IOobject::NO_WRITE, + IOobject::REGISTER + ); + + Info<< "Reading edgeMesh from " << featObj.objectRelPath() << endl; + const fileName fName(featObj.typeFilePath<featureEdgeMesh>()); + + if (fName.empty()) + { + FatalIOErrorInFunction(dict) + << "Could not open " << featObj.objectPath() + << exit(FatalIOError); + } + + // Read as edgeMesh + auto* eMeshPtr = new featureEdgeMesh(featObj); + eMeshPtr->store(); + } +} + + +void Foam::edgeSlipDisplacementPointPatchVectorField::calcProjection +( + vectorField& displacement +) const +{ + const polyMesh& mesh = patch().boundaryMesh().mesh()(); + const labelList& meshPoints = patch().meshPoints(); + + //const scalar deltaT = mesh.time().deltaTValue(); + + // Construct large enough vector in direction of projectDir so + // we're guaranteed to hit something. + + //- Per point projection vector: + const scalar projectLen = mesh.bounds().mag(); + + + + // Get fixed points (bit of a hack) + const pointZone* zonePtr = nullptr; + + if (frozenPointsZone_.size() > 0) + { + const pointZoneMesh& pZones = mesh.pointZones(); + + zonePtr = &pZones[frozenPointsZone_]; + + Info<< "edgeSlipDisplacementPointPatchVectorField : Fixing all " + << zonePtr->size() << " points in pointZone " << zonePtr->name() + << endl; + } + + // Get the starting locations from the motionSolver + const pointField& points0 = mesh.lookupObject<displacementMotionSolver> + ( + "dynamicMeshDict" + ).points0(); + + + pointField start(meshPoints.size()); + forAll(start, i) + { + start[i] = points0[meshPoints[i]] + displacement[i]; + } + + const auto& tree = edgeTree(); + + label nNotProjected = 0; + forAll(meshPoints, i) + { + const label meshPointi = meshPoints[i]; + const point& pt = mesh.points()[meshPointi]; + + if (zonePtr && (zonePtr->whichPoint(meshPointi) >= 0)) + { + // Fixed point. Reset to point0 location. + displacement[i] = points0[meshPointi] - pt; + } + else + { + pointIndexHit nearest = tree.findNearest(start[i], sqr(projectLen)); + if (nearest.hit()) + { + displacement[i] = nearest.point() - points0[meshPointi]; + } + else + { + nNotProjected++; + + if (debug) + { + Pout<< " point:" << meshPointi + << " coord:" << pt + << " did not find any surface within " << projectLen + << endl; + } + } + } + } + + reduce(nNotProjected, sumOp<label>()); + + if (nNotProjected > 0) + { + Info<< "edgeSlipDisplacement :" + << " on patch " << patch().name() + << " did not project " << nNotProjected + << " out of " << returnReduce(meshPoints.size(), sumOp<label>()) + << " points." << endl; + } +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::edgeSlipDisplacementPointPatchVectorField:: +edgeSlipDisplacementPointPatchVectorField +( + const pointPatch& p, + const DimensionedField<vector, pointMesh>& iF +) +: + pointPatchVectorField(p, iF), + velocity_(Zero) +{} + + +Foam::edgeSlipDisplacementPointPatchVectorField:: +edgeSlipDisplacementPointPatchVectorField +( + const pointPatch& p, + const DimensionedField<vector, pointMesh>& iF, + const dictionary& dict +) +: + pointPatchVectorField(p, iF, dict), + velocity_(dict.get<vector>("velocity")), + featFileName_(dict.get<fileName>("file", keyType::LITERAL)), + frozenPointsZone_(dict.getOrDefault("frozenPointsZone", word::null)) +{ + read(this->patch().boundaryMesh().mesh().time(), dict); +} + + +Foam::edgeSlipDisplacementPointPatchVectorField:: +edgeSlipDisplacementPointPatchVectorField +( + const edgeSlipDisplacementPointPatchVectorField& ppf, + const pointPatch& p, + const DimensionedField<vector, pointMesh>& iF, + const pointPatchFieldMapper& +) +: + pointPatchVectorField(p, iF), + velocity_(ppf.velocity_), + featFileName_(ppf.featFileName_), + frozenPointsZone_(ppf.frozenPointsZone_) +{} + + +Foam::edgeSlipDisplacementPointPatchVectorField:: +edgeSlipDisplacementPointPatchVectorField +( + const edgeSlipDisplacementPointPatchVectorField& ppf +) +: + pointPatchVectorField(ppf), + velocity_(ppf.velocity_), + featFileName_(ppf.featFileName_), + frozenPointsZone_(ppf.frozenPointsZone_) +{} + + +Foam::edgeSlipDisplacementPointPatchVectorField:: +edgeSlipDisplacementPointPatchVectorField +( + const edgeSlipDisplacementPointPatchVectorField& ppf, + const DimensionedField<vector, pointMesh>& iF +) +: + pointPatchVectorField(ppf, iF), + velocity_(ppf.velocity_), + featFileName_(ppf.featFileName_), + frozenPointsZone_(ppf.frozenPointsZone_) +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +const Foam::indexedOctree<Foam::treeDataEdge>& +Foam::edgeSlipDisplacementPointPatchVectorField::edgeTree() const +{ + if (!edgeTreePtr_) + { + const Time& tm = this->patch().boundaryMesh().mesh().time(); + const auto& eMesh = tm.lookupObject<edgeMesh>(featFileName_); + + const pointField& points = eMesh.points(); + const edgeList& edges = eMesh.edges(); + + // Calculate bb of all points + treeBoundBox bb(points); + + // Random number generator. Bit dodgy since not exactly random ;-) + Random rndGen(65431); + + // Slightly extended bb. Slightly off-centred just so on symmetric + // geometry there are less face/edge aligned items. + bb.inflate(rndGen, 1e-4, ROOTVSMALL); + + edgeTreePtr_.reset + ( + new indexedOctree<treeDataEdge> + ( + treeDataEdge(edges, points), // All edges + + bb, // overall search domain + 8, // maxLevel + 10, // leafsize + 3.0 // duplicity + ) + ); + } + + return edgeTreePtr_(); +} + + +void Foam::edgeSlipDisplacementPointPatchVectorField::updateCoeffs() +{ + if (this->updated()) + { + return; + } + + const vectorField currentDisplacement(this->patchInternalField()); + + // Calculate displacement to project points onto surface + vectorField displacement(currentDisplacement); + calcProjection(displacement); + + + // offset wrt current displacement + vectorField offset(displacement-currentDisplacement); + + // Clip offset to maximum displacement possible: velocity*timestep + + const Time& tm = this->patch().boundaryMesh().mesh().time(); + const scalar deltaT = tm.deltaTValue(); + const vector clipVelocity = velocity_*deltaT; + + forAll(displacement, i) + { + vector& d = offset[i]; + + const scalar magD(mag(d)); + if (magD > ROOTVSMALL) + { + d /= magD; + d *= min(magD, mag(clipVelocity)); + } + } + + if (debug) + { + Pout<< type() << " :" + << " on patch " << patch().name() + << " of field " << this->internalField().name() + << " projection" + << " min:" << gMin(displacement) + << " max:" << gMaxMagSqr(displacement) + << " average:" << gAverage(displacement) + << endl; + } + + // Get internal field to insert values into + Field<vector>& iF = const_cast<Field<vector>&>(this->primitiveField()); + + setInInternalField(iF, (currentDisplacement+offset)()); + + pointPatchVectorField::updateCoeffs(); +} + + +void Foam::edgeSlipDisplacementPointPatchVectorField::write +( + Ostream& os +) const +{ + pointPatchField<vector>::write(os); + os.writeEntry("file", featFileName_); + os.writeEntryIfDifferent<word> + ( + "frozenPointsZone", + word::null, + frozenPointsZone_ + ); + os.writeEntry("velocity", velocity_); +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +makePointPatchTypeField +( + pointPatchVectorField, + edgeSlipDisplacementPointPatchVectorField +); + +} // End namespace Foam + +// ************************************************************************* // diff --git a/src/fvMotionSolver/pointPatchFields/derived/edgeSlipDisplacement/edgeSlipDisplacementPointPatchVectorField.H b/src/fvMotionSolver/pointPatchFields/derived/edgeSlipDisplacement/edgeSlipDisplacementPointPatchVectorField.H new file mode 100644 index 0000000000000000000000000000000000000000..d1a8257e7cf534bb6bf866e4d3a10487ecd1a3a1 --- /dev/null +++ b/src/fvMotionSolver/pointPatchFields/derived/edgeSlipDisplacement/edgeSlipDisplacementPointPatchVectorField.H @@ -0,0 +1,198 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::edgeSlipDisplacementPointPatchVectorField + +Description + Displacement follows an edgeMesh. Use in a displacementMotionSolver + as a bc on the pointDisplacement field. + + Needs: + - file : name of edgeMesh. Either: + - .extendedFeatureEdgeMesh (read from constant/extendedFeatureEdgeMesh) + - or .eMesh in or a known format (read from constant/triSurface) + - frozenPointsZone : empty or name of pointZone containing points + that do not move + - velocity : maximum displacement velocity + + +SourceFiles + edgeSlipDisplacementPointPatchVectorField.C + +\*---------------------------------------------------------------------------*/ + +#ifndef edgeSlipDisplacementPointPatchVectorField_H +#define edgeSlipDisplacementPointPatchVectorField_H + +#include "pointPatchFields.H" +#include "extendedFeatureEdgeMesh.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class edgeSlipDisplacementPointPatchVectorField Declaration +\*---------------------------------------------------------------------------*/ + +class edgeSlipDisplacementPointPatchVectorField +: + public pointPatchVectorField +{ +private: + + // Private data + + //- Maximum velocity + const vector velocity_; + + //- file + const fileName featFileName_; + + //- pointZone with frozen points + const word frozenPointsZone_; + + //- Edge searching + mutable autoPtr<indexedOctree<treeDataEdge>> edgeTreePtr_; + + + // Private Member Functions + + //- Calculate displacement (w.r.t. points0()) to project onto surface + void calcProjection(vectorField& displacement) const; + + //- No copy assignment + void operator= + ( + const edgeSlipDisplacementPointPatchVectorField& + ) = delete; + + +protected: + + const indexedOctree<treeDataEdge>& edgeTree() const; + + +public: + + //- Runtime type information + TypeName("edgeSlipDisplacement"); + + + // Constructors + + //- Construct from patch and internal field + edgeSlipDisplacementPointPatchVectorField + ( + const pointPatch&, + const DimensionedField<vector, pointMesh>& + ); + + //- Construct from patch, internal field and dictionary + edgeSlipDisplacementPointPatchVectorField + ( + const pointPatch&, + const DimensionedField<vector, pointMesh>&, + const dictionary& + ); + + //- Construct by mapping given patch field onto a new patch + edgeSlipDisplacementPointPatchVectorField + ( + const edgeSlipDisplacementPointPatchVectorField&, + const pointPatch&, + const DimensionedField<vector, pointMesh>&, + const pointPatchFieldMapper& + ); + + //- Construct as copy + edgeSlipDisplacementPointPatchVectorField + ( + const edgeSlipDisplacementPointPatchVectorField& + ); + + //- Construct and return a clone + virtual autoPtr<pointPatchVectorField> clone() const + { + return autoPtr<pointPatchVectorField> + ( + new edgeSlipDisplacementPointPatchVectorField + ( + *this + ) + ); + } + + //- Construct as copy setting internal field reference + edgeSlipDisplacementPointPatchVectorField + ( + const edgeSlipDisplacementPointPatchVectorField&, + const DimensionedField<vector, pointMesh>& + ); + + //- Construct and return a clone setting internal field reference + virtual autoPtr<pointPatchVectorField> clone + ( + const DimensionedField<vector, pointMesh>& iF + ) const + { + return autoPtr<pointPatchVectorField> + ( + new edgeSlipDisplacementPointPatchVectorField + ( + *this, + iF + ) + ); + } + + // Member Functions + + //- Update the coefficients associated with the patch field + virtual void updateCoeffs(); + + //- Read (& store) geometry. Exposed so point attraction can reuse it. + static void read + ( + const objectRegistry& obr, + const dictionary& dict + ); + + //- Write + virtual void write(Ostream&) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/fvMotionSolver/pointPatchFields/derived/pointAttractionDisplacement/pointAttractionDisplacementPointPatchVectorField.C b/src/fvMotionSolver/pointPatchFields/derived/pointAttractionDisplacement/pointAttractionDisplacementPointPatchVectorField.C new file mode 100644 index 0000000000000000000000000000000000000000..835b1c14859e71bf66e8c00b6d628f296399db81 --- /dev/null +++ b/src/fvMotionSolver/pointPatchFields/derived/pointAttractionDisplacement/pointAttractionDisplacementPointPatchVectorField.C @@ -0,0 +1,324 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "pointAttractionDisplacementPointPatchVectorField.H" +#include "addToRunTimeSelectionTable.H" +#include "Time.H" +#include "transformField.H" +#include "displacementMotionSolver.H" +#include "featureEdgeMesh.H" +#include "edgeSlipDisplacementPointPatchVectorField.H" + +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // + +void Foam::pointAttractionDisplacementPointPatchVectorField::calcProjection +( + vectorField& displacement +) const +{ + const polyMesh& mesh = patch().boundaryMesh().mesh()(); + const labelList& meshPoints = patch().meshPoints(); + + //const scalar deltaT = mesh.time().deltaTValue(); + + // Construct large enough vector in direction of projectDir so + // we're guaranteed to hit something. + + //- Per point projection vector: + const scalar projectLen = mesh.bounds().mag(); + + + + // Get fixed points (bit of a hack) + const pointZone* zonePtr = nullptr; + + if (frozenPointsZone_.size() > 0) + { + const pointZoneMesh& pZones = mesh.pointZones(); + + zonePtr = &pZones[frozenPointsZone_]; + + Pout<< "pointAttractionDisplacementPointPatchVectorField : Fixing all " + << zonePtr->size() << " points in pointZone " << zonePtr->name() + << endl; + } + + // Get the starting locations from the motionSolver + const pointField& points0 = mesh.lookupObject<displacementMotionSolver> + ( + "dynamicMeshDict" + ).points0(); + + + pointField start(meshPoints.size()); + forAll(start, i) + { + start[i] = points0[meshPoints[i]] + displacement[i]; + } + + const auto& tree = pointTree(); + + label nNotProjected = 0; + forAll(meshPoints, i) + { + const label meshPointi = meshPoints[i]; + const point& pt = mesh.points()[meshPointi]; + + if (zonePtr && (zonePtr->whichPoint(meshPointi) >= 0)) + { + // Fixed point. Reset to point0 location. + displacement[i] = points0[meshPointi] - pt; + } + else + { + pointIndexHit nearest = tree.findNearest(start[i], sqr(projectLen)); + if (nearest.hit()) + { + displacement[i] = nearest.point() - points0[meshPointi]; + } + else + { + nNotProjected++; + + if (debug) + { + Pout<< " point:" << meshPointi + << " coord:" << pt + << " did not find any surface within " << projectLen + << endl; + } + } + } + } + + reduce(nNotProjected, sumOp<label>()); + + if (nNotProjected > 0) + { + Info<< "pointAttractionDisplacement :" + << " on patch " << patch().name() + << " did not project " << nNotProjected + << " out of " << returnReduce(meshPoints.size(), sumOp<label>()) + << " points." << endl; + } +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::pointAttractionDisplacementPointPatchVectorField:: +pointAttractionDisplacementPointPatchVectorField +( + const pointPatch& p, + const DimensionedField<vector, pointMesh>& iF +) +: + pointPatchVectorField(p, iF), + velocity_(Zero) +{} + + +Foam::pointAttractionDisplacementPointPatchVectorField:: +pointAttractionDisplacementPointPatchVectorField +( + const pointPatch& p, + const DimensionedField<vector, pointMesh>& iF, + const dictionary& dict +) +: + pointPatchVectorField(p, iF, dict), + velocity_(dict.get<vector>("velocity")), + featFileName_(dict.get<fileName>("file", keyType::LITERAL)), + frozenPointsZone_(dict.getOrDefault("frozenPointsZone", word::null)) +{ + // Read&store edge mesh on registry + edgeSlipDisplacementPointPatchVectorField::read + ( + this->patch().boundaryMesh().mesh().time(), + dict + ); +} + + +Foam::pointAttractionDisplacementPointPatchVectorField:: +pointAttractionDisplacementPointPatchVectorField +( + const pointAttractionDisplacementPointPatchVectorField& ppf, + const pointPatch& p, + const DimensionedField<vector, pointMesh>& iF, + const pointPatchFieldMapper& +) +: + pointPatchVectorField(p, iF), + velocity_(ppf.velocity_), + featFileName_(ppf.featFileName_), + frozenPointsZone_(ppf.frozenPointsZone_) +{} + + +Foam::pointAttractionDisplacementPointPatchVectorField:: +pointAttractionDisplacementPointPatchVectorField +( + const pointAttractionDisplacementPointPatchVectorField& ppf +) +: + pointPatchVectorField(ppf), + velocity_(ppf.velocity_), + featFileName_(ppf.featFileName_), + frozenPointsZone_(ppf.frozenPointsZone_) +{} + + +Foam::pointAttractionDisplacementPointPatchVectorField:: +pointAttractionDisplacementPointPatchVectorField +( + const pointAttractionDisplacementPointPatchVectorField& ppf, + const DimensionedField<vector, pointMesh>& iF +) +: + pointPatchVectorField(ppf, iF), + velocity_(ppf.velocity_), + featFileName_(ppf.featFileName_), + frozenPointsZone_(ppf.frozenPointsZone_) +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +const Foam::indexedOctree<Foam::treeDataPoint>& +Foam::pointAttractionDisplacementPointPatchVectorField::pointTree() const +{ + if (!pointTreePtr_) + { + const Time& tm = this->patch().boundaryMesh().mesh().time(); + const auto& eMesh = tm.lookupObject<edgeMesh>(featFileName_); + + const pointField& points = eMesh.points(); + + // Calculate bb of all points + treeBoundBox bb(points); + + // Random number generator. Bit dodgy since not exactly random ;-) + Random rndGen(65431); + + // Slightly extended bb. Slightly off-centred just so on symmetric + // geometry there are less face/edge aligned items. + bb.inflate(rndGen, 1e-4, ROOTVSMALL); + + pointTreePtr_.reset + ( + new indexedOctree<treeDataPoint> + ( + treeDataPoint(points), // All edges + + bb, // overall search domain + 8, // maxLevel + 10, // leafsize + 3.0 // duplicity + ) + ); + } + + return pointTreePtr_(); +} + + +void Foam::pointAttractionDisplacementPointPatchVectorField::updateCoeffs() +{ + if (this->updated()) + { + return; + } + + const vectorField currentDisplacement(this->patchInternalField()); + + // Calculate displacement to project points onto surface + vectorField displacement(currentDisplacement); + calcProjection(displacement); + + + // offset wrt current displacement + vectorField offset(displacement-currentDisplacement); + + // Clip offset to maximum displacement possible: velocity*timestep + + const Time& tm = this->patch().boundaryMesh().mesh().time(); + const scalar deltaT = tm.deltaTValue(); + const vector clipVelocity = velocity_*deltaT; + + forAll(displacement, i) + { + vector& d = offset[i]; + + const scalar magD(mag(d)); + if (magD > ROOTVSMALL) + { + d /= magD; + d *= min(magD, mag(clipVelocity)); + } + } + + // Get internal field to insert values into + Field<vector>& iF = const_cast<Field<vector>&>(this->primitiveField()); + + setInInternalField(iF, (currentDisplacement+offset)()); + + pointPatchVectorField::updateCoeffs(); +} + + +void Foam::pointAttractionDisplacementPointPatchVectorField::write +( + Ostream& os +) const +{ + pointPatchField<vector>::write(os); + os.writeEntry("file", featFileName_); + os.writeEntryIfDifferent<word> + ( + "frozenPointsZone", + word::null, + frozenPointsZone_ + ); + os.writeEntry("velocity", velocity_); +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +makePointPatchTypeField +( + pointPatchVectorField, + pointAttractionDisplacementPointPatchVectorField +); + +} // End namespace Foam + +// ************************************************************************* // diff --git a/src/fvMotionSolver/pointPatchFields/derived/pointAttractionDisplacement/pointAttractionDisplacementPointPatchVectorField.H b/src/fvMotionSolver/pointPatchFields/derived/pointAttractionDisplacement/pointAttractionDisplacementPointPatchVectorField.H new file mode 100644 index 0000000000000000000000000000000000000000..cf87d9eb884f29efb450b1e63c1de0ca0b9b6360 --- /dev/null +++ b/src/fvMotionSolver/pointPatchFields/derived/pointAttractionDisplacement/pointAttractionDisplacementPointPatchVectorField.H @@ -0,0 +1,191 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::pointAttractionDisplacementPointPatchVectorField + +Description + Displacement by attraction to nearest point. Use in a + displacementMotionSolver as a bc on the pointDisplacement field. + + Needs: + - file : name of edgeMesh. Either: + - .extendedFeatureEdgeMesh (read from constant/extendedFeatureEdgeMesh) + - or .eMesh in or a known format (read from constant/triSurface) + - frozenPointsZone : empty or name of pointZone containing points + that do not move + - velocity : maximum displacement velocity + + +SourceFiles + pointAttractionDisplacementPointPatchVectorField.C + +\*---------------------------------------------------------------------------*/ + +#ifndef pointAttractionDisplacementPointPatchVectorField_H +#define pointAttractionDisplacementPointPatchVectorField_H + +#include "pointPatchFields.H" +#include "extendedFeatureEdgeMesh.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class pointAttractionDisplacementPointPatchVectorField Declaration +\*---------------------------------------------------------------------------*/ + +class pointAttractionDisplacementPointPatchVectorField +: + public pointPatchVectorField +{ +private: + + // Private data + + //- Maximum velocity + const vector velocity_; + + //- file + const fileName featFileName_; + + //- pointZone with frozen points + const word frozenPointsZone_; + + //- Point searching + mutable autoPtr<indexedOctree<treeDataPoint>> pointTreePtr_; + + + // Private Member Functions + + //- Calculate displacement (w.r.t. points0()) to project onto surface + void calcProjection(vectorField& displacement) const; + + //- No copy assignment + void operator= + ( + const pointAttractionDisplacementPointPatchVectorField& + ) = delete; + + +protected: + + const indexedOctree<treeDataPoint>& pointTree() const; + + +public: + + //- Runtime type information + TypeName("pointAttraction"); + + + // Constructors + + //- Construct from patch and internal field + pointAttractionDisplacementPointPatchVectorField + ( + const pointPatch&, + const DimensionedField<vector, pointMesh>& + ); + + //- Construct from patch, internal field and dictionary + pointAttractionDisplacementPointPatchVectorField + ( + const pointPatch&, + const DimensionedField<vector, pointMesh>&, + const dictionary& + ); + + //- Construct by mapping given patch field onto a new patch + pointAttractionDisplacementPointPatchVectorField + ( + const pointAttractionDisplacementPointPatchVectorField&, + const pointPatch&, + const DimensionedField<vector, pointMesh>&, + const pointPatchFieldMapper& + ); + + //- Construct as copy + pointAttractionDisplacementPointPatchVectorField + ( + const pointAttractionDisplacementPointPatchVectorField& + ); + + //- Construct and return a clone + virtual autoPtr<pointPatchVectorField> clone() const + { + return autoPtr<pointPatchVectorField> + ( + new pointAttractionDisplacementPointPatchVectorField + ( + *this + ) + ); + } + + //- Construct as copy setting internal field reference + pointAttractionDisplacementPointPatchVectorField + ( + const pointAttractionDisplacementPointPatchVectorField&, + const DimensionedField<vector, pointMesh>& + ); + + //- Construct and return a clone setting internal field reference + virtual autoPtr<pointPatchVectorField> clone + ( + const DimensionedField<vector, pointMesh>& iF + ) const + { + return autoPtr<pointPatchVectorField> + ( + new pointAttractionDisplacementPointPatchVectorField + ( + *this, + iF + ) + ); + } + + // Member Functions + + //- Update the coefficients associated with the patch field + virtual void updateCoeffs(); + + //- Write + virtual void write(Ostream&) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/fvMotionSolver/pointPatchFields/derived/surfaceDisplacement/surfaceDisplacementPointPatchVectorField.C b/src/fvMotionSolver/pointPatchFields/derived/surfaceDisplacement/surfaceDisplacementPointPatchVectorField.C index 92c499d62498f5b9cc176fc512a641cd452d16fa..2595f2053e5d38f900b39bd7e834c6df4e48cbfe 100644 --- a/src/fvMotionSolver/pointPatchFields/derived/surfaceDisplacement/surfaceDisplacementPointPatchVectorField.C +++ b/src/fvMotionSolver/pointPatchFields/derived/surfaceDisplacement/surfaceDisplacementPointPatchVectorField.C @@ -55,7 +55,6 @@ void Foam::surfaceDisplacementPointPatchVectorField::calcProjection ) const { const polyMesh& mesh = patch().boundaryMesh().mesh()(); - const pointField& localPoints = patch().localPoints(); const labelList& meshPoints = patch().meshPoints(); //const scalar deltaT = mesh.time().deltaTValue(); @@ -117,16 +116,19 @@ void Foam::surfaceDisplacementPointPatchVectorField::calcProjection forAll(nearest, i) { - if (zonePtr && (zonePtr->whichPoint(meshPoints[i]) >= 0)) + const label meshPointi = meshPoints[i]; + const point& pt = mesh.points()[meshPointi]; + + if (zonePtr && (zonePtr->whichPoint(meshPointi) >= 0)) { // Fixed point. Reset to point0 location. - displacement[i] = points0[meshPoints[i]] - localPoints[i]; + displacement[i] = points0[meshPointi] - pt; } else if (nearest[i].hit()) { displacement[i] = nearest[i].point() - - points0[meshPoints[i]]; + - points0[meshPointi]; } else { @@ -134,8 +136,8 @@ void Foam::surfaceDisplacementPointPatchVectorField::calcProjection if (debug) { - Pout<< " point:" << meshPoints[i] - << " coord:" << localPoints[i] + Pout<< " point:" << meshPointi + << " coord:" << pt << " did not find any surface within " << projectLen << endl; } @@ -207,17 +209,20 @@ void Foam::surfaceDisplacementPointPatchVectorField::calcProjection // 3. Choose either -fixed, nearest, right, left. forAll(displacement, i) { - if (zonePtr && (zonePtr->whichPoint(meshPoints[i]) >= 0)) + const label meshPointi = meshPoints[i]; + const point& pt = mesh.points()[meshPointi]; + + if (zonePtr && (zonePtr->whichPoint(meshPointi) >= 0)) { // Fixed point. Reset to point0 location. - displacement[i] = points0[meshPoints[i]] - localPoints[i]; + displacement[i] = points0[meshPointi] - pt; } else if (nearest[i].hit()) { // Found nearest. displacement[i] = nearest[i].point() - - points0[meshPoints[i]]; + - points0[meshPointi]; } else { @@ -257,7 +262,7 @@ void Foam::surfaceDisplacementPointPatchVectorField::calcProjection { interPt.point()[wedgePlane_] += offset[i]; } - displacement[i] = interPt.point() - points0[meshPoints[i]]; + displacement[i] = interPt.point() - points0[meshPointi]; } else { @@ -265,8 +270,8 @@ void Foam::surfaceDisplacementPointPatchVectorField::calcProjection if (debug) { - Pout<< " point:" << meshPoints[i] - << " coord:" << localPoints[i] + Pout<< " point:" << meshPointi + << " coord:" << pt << " did not find any intersection between" << " ray from " << start[i]-projectVecs[i] << " to " << start[i]+projectVecs[i] << endl; @@ -283,7 +288,7 @@ void Foam::surfaceDisplacementPointPatchVectorField::calcProjection Info<< "surfaceDisplacement :" << " on patch " << patch().name() << " did not project " << nNotProjected - << " out of " << returnReduce(localPoints.size(), sumOp<label>()) + << " out of " << returnReduce(meshPoints.size(), sumOp<label>()) << " points." << endl; } } @@ -318,7 +323,12 @@ surfaceDisplacementPointPatchVectorField velocity_(dict.get<vector>("velocity")), surfacesDict_(dict.subDict("geometry")), projectMode_(projectModeNames_.get("projectMode", dict)), - projectDir_(dict.get<vector>("projectDirection")), + projectDir_ + ( + (projectMode_ == FIXEDNORMAL) + ? dict.get<vector>("projectDirection") + : Zero + ), wedgePlane_(dict.getOrDefault("wedgePlane", -1)), frozenPointsZone_(dict.getOrDefault("frozenPointsZone", word::null)) { @@ -424,12 +434,13 @@ void Foam::surfaceDisplacementPointPatchVectorField::updateCoeffs() const polyMesh& mesh = patch().boundaryMesh().mesh()(); - vectorField currentDisplacement(this->patchInternalField()); + const vectorField currentDisplacement(this->patchInternalField()); // Calculate intersections with surface w.r.t points0. vectorField displacement(currentDisplacement); calcProjection(displacement); + // offset wrt current displacement vectorField offset(displacement-currentDisplacement); @@ -442,21 +453,15 @@ void Foam::surfaceDisplacementPointPatchVectorField::updateCoeffs() { vector& d = offset[i]; - for (direction cmpt = 0; cmpt < vector::nComponents; cmpt++) + const scalar magD(mag(d)); + if (magD > ROOTVSMALL) { - if (d[cmpt] < 0) - { - d[cmpt] = max(d[cmpt], -clipVelocity[cmpt]); - } - else - { - d[cmpt] = min(d[cmpt], clipVelocity[cmpt]); - } + d /= magD; + d *= min(magD, mag(clipVelocity)); } } this->operator==(currentDisplacement+offset); - fixedValuePointPatchVectorField::updateCoeffs(); } @@ -467,9 +472,13 @@ void Foam::surfaceDisplacementPointPatchVectorField::write(Ostream& os) const os.writeEntry("velocity", velocity_); os.writeEntry("geometry", surfacesDict_); os.writeEntry("projectMode", projectModeNames_[projectMode_]); - os.writeEntry("projectDirection", projectDir_); - os.writeEntry("wedgePlane", wedgePlane_); - + os.writeEntryIfDifferent<vector> + ( + "projectDirection", + Zero, + projectDir_ + ); + os.writeEntryIfDifferent<label>("wedgePlane", -1, wedgePlane_); os.writeEntryIfDifferent<word> ( "frozenPointsZone", diff --git a/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.C b/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.C index 8d6b096d59d016cb5ee28d84313fa64d140f039b..14f9b9f875e6b27a05aaaf9098460309beb46bf0 100644 --- a/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.C +++ b/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2020-2022 OpenCFD Ltd. + Copyright (C) 2020-2022,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -32,6 +32,7 @@ License #include "transformField.H" #include "fvMesh.H" #include "displacementMotionSolver.H" +#include "facePointPatch.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // @@ -272,6 +273,16 @@ void Foam::surfaceSlipDisplacementPointPatchVectorField::calcProjection } } + if (scalePtr_) + { + const scalarField s + ( + scalePtr_->value(this->db().time().timeOutputValue()) + ); + + displacement *= s; + } + reduce(nNotProjected, sumOp<label>()); if (nNotProjected > 0) @@ -312,9 +323,24 @@ surfaceSlipDisplacementPointPatchVectorField pointPatchVectorField(p, iF, dict), surfacesDict_(dict.subDict("geometry")), projectMode_(projectModeNames_.get("projectMode", dict)), - projectDir_(dict.get<vector>("projectDirection")), + projectDir_ + ( + (projectMode_ == FIXEDNORMAL) + ? dict.get<vector>("projectDirection") + : Zero + ), wedgePlane_(dict.getOrDefault("wedgePlane", -1)), - frozenPointsZone_(dict.getOrDefault("frozenPointsZone", word::null)) + frozenPointsZone_(dict.getOrDefault("frozenPointsZone", word::null)), + scalePtr_ + ( + PatchFunction1<scalar>::NewIfPresent + ( + refCast<const facePointPatch>(p).patch(), + "scale", + dict, + false // point values + ) + ) {} @@ -332,7 +358,8 @@ surfaceSlipDisplacementPointPatchVectorField projectMode_(ppf.projectMode_), projectDir_(ppf.projectDir_), wedgePlane_(ppf.wedgePlane_), - frozenPointsZone_(ppf.frozenPointsZone_) + frozenPointsZone_(ppf.frozenPointsZone_), + scalePtr_(ppf.scalePtr_.clone(refCast<const facePointPatch>(p).patch())) {} @@ -347,7 +374,14 @@ surfaceSlipDisplacementPointPatchVectorField projectMode_(ppf.projectMode_), projectDir_(ppf.projectDir_), wedgePlane_(ppf.wedgePlane_), - frozenPointsZone_(ppf.frozenPointsZone_) + frozenPointsZone_(ppf.frozenPointsZone_), + scalePtr_ + ( + ppf.scalePtr_.clone + ( + refCast<const facePointPatch>(ppf.patch()).patch() + ) + ) {} @@ -363,7 +397,14 @@ surfaceSlipDisplacementPointPatchVectorField projectMode_(ppf.projectMode_), projectDir_(ppf.projectDir_), wedgePlane_(ppf.wedgePlane_), - frozenPointsZone_(ppf.frozenPointsZone_) + frozenPointsZone_(ppf.frozenPointsZone_), + scalePtr_ + ( + ppf.scalePtr_.clone + ( + refCast<const facePointPatch>(ppf.patch()).patch() + ) + ) {} @@ -397,23 +438,37 @@ Foam::surfaceSlipDisplacementPointPatchVectorField::surfaces() const } -void Foam::surfaceSlipDisplacementPointPatchVectorField::evaluate -( - const Pstream::commsTypes commsType -) +void Foam::surfaceSlipDisplacementPointPatchVectorField::updateCoeffs() { + if (this->updated()) + { + return; + } + vectorField displacement(this->patchInternalField()); // Calculate displacement to project points onto surface calcProjection(displacement); + if (debug) + { + Pout<< type() << " :" + << " on patch " << patch().name() + << " of field " << this->internalField().name() + << " projection" + << " min:" << gMin(displacement) + << " max:" << gMaxMagSqr(displacement) + << " average:" << gAverage(displacement) + << endl; + } + // Get internal field to insert values into Field<vector>& iF = const_cast<Field<vector>&>(this->primitiveField()); //setInInternalField(iF, motionU); setInInternalField(iF, displacement); - pointPatchVectorField::evaluate(commsType); + pointPatchVectorField::updateCoeffs(); } @@ -425,15 +480,24 @@ void Foam::surfaceSlipDisplacementPointPatchVectorField::write pointPatchField<vector>::write(os); os.writeEntry("geometry", surfacesDict_); os.writeEntry("projectMode", projectModeNames_[projectMode_]); - os.writeEntry("projectDirection", projectDir_); - os.writeEntry("wedgePlane", wedgePlane_); - + os.writeEntryIfDifferent<vector> + ( + "projectDirection", + Zero, + projectDir_ + ); + os.writeEntryIfDifferent<label>("wedgePlane", -1, wedgePlane_); os.writeEntryIfDifferent<word> ( "frozenPointsZone", word::null, frozenPointsZone_ ); + + if (scalePtr_) + { + scalePtr_->writeData(os); + } } diff --git a/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.H b/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.H index a65d3d791079041503ed5626a7b7dc445c69bf3e..809c6c1c389c6efb59e2d9e17cf11e9aa2099ef4 100644 --- a/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.H +++ b/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.H @@ -6,6 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation + Copyright (C) 2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -46,6 +47,8 @@ Description - wedgePlane : -1 or component to knock out of intersection normal - frozenPointsZone : empty or name of pointZone containing points that do not move + - scale : optional scaling factor as PatchFunction1 + SourceFiles surfaceSlipDisplacementPointPatchVectorField.C @@ -57,6 +60,7 @@ SourceFiles #include "pointPatchFields.H" #include "searchableSurfaces.H" +#include "PatchFunction1.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -105,6 +109,9 @@ private: //- pointZone with frozen points const word frozenPointsZone_; + //- Scalar scale factor + autoPtr<PatchFunction1<scalar>> scalePtr_; + //- Demand driven: surface to project mutable autoPtr<searchableSurfaces> surfacesPtr_; @@ -187,11 +194,8 @@ public: //- Surface to follow. Demand loads surfaceNames. const searchableSurfaces& surfaces() const; - //- Update the patch field - virtual void evaluate - ( - const Pstream::commsTypes commsType=Pstream::commsTypes::buffered - ); + //- Update the coefficients associated with the patch field + virtual void updateCoeffs(); //- Write virtual void write(Ostream&) const; diff --git a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeNozzleInjection/ConeNozzleInjection.C b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeNozzleInjection/ConeNozzleInjection.C index 527b32851d06b6512ec071131b4c9f28fa495641..20eb4cbf2c737507b1299b91d06ddc14f04d94ff 100644 --- a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeNozzleInjection/ConeNozzleInjection.C +++ b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeNozzleInjection/ConeNozzleInjection.C @@ -30,6 +30,7 @@ License #include "Function1.H" #include "unitConversion.H" #include "distributionModel.H" +#include "axisAngleRotation.H" using namespace Foam::constant; @@ -43,8 +44,10 @@ Foam::ConeNozzleInjection<CloudType>::injectionMethodNames ({ { injectionMethod::imPoint, "point" }, { injectionMethod::imDisc, "disc" }, + { injectionMethod::imDiscSegments, "discSegments" }, }); + template<class CloudType> const Foam::Enum < @@ -231,6 +234,20 @@ Foam::ConeNozzleInjection<CloudType>::ConeNozzleInjection owner.rndGen() ) ), + t0_(this->template getModelProperty<scalar>("t0")), + nInjectors_ + ( + this->coeffDict().template getOrDefault<scalar>("nInjectors", 1) + ), + Uinjector_(Zero), + initialInjectorDir_ + ( + this->coeffDict().template getOrDefault<vector> + ( + "initialInjectorDir", + Zero + ) + ), tanVec1_(Zero), tanVec2_(Zero), normal_(Zero), @@ -248,6 +265,15 @@ Foam::ConeNozzleInjection<CloudType>::ConeNozzleInjection << exit(FatalError); } + if (nInjectors_ < SMALL) + { + FatalIOErrorInFunction(this->coeffDict()) + << "Number of injectors in angular-segmented disc " + << "must be positive" << nl + << " nInjectors: " << nInjectors_ << nl + << exit(FatalIOError); + } + // Convert from user time to reduce the number of time conversion calls const Time& time = owner.db().time(); duration_ = time.userTimeToTime(duration_); @@ -297,6 +323,10 @@ Foam::ConeNozzleInjection<CloudType>::ConeNozzleInjection thetaInner_(im.thetaInner_.clone()), thetaOuter_(im.thetaOuter_.clone()), sizeDistribution_(im.sizeDistribution_.clone()), + t0_(im.t0_), + nInjectors_(im.nInjectors_), + Uinjector_(im.Uinjector_), + initialInjectorDir_(im.initialInjectorDir_), tanVec1_(im.tanVec1_), tanVec2_(im.tanVec2_), normal_(im.normal_), @@ -420,6 +450,14 @@ void Foam::ConeNozzleInjection<CloudType>::setPositionAndCell { position = positionVsTime_->value(t); + // Estimate the moving injector velocity + const vector position0(positionVsTime_->value(t0_)); + const scalar dt = t - t0_; + if (dt > 0) + { + Uinjector_ = (position - position0)/dt; + } + this->findCellAtPosition ( cellOwner, @@ -438,6 +476,70 @@ void Foam::ConeNozzleInjection<CloudType>::setPositionAndCell position = positionVsTime_->value(t) + r*normal_; + // Estimate the moving injector velocity + const vector position0(positionVsTime_->value(t0_) + r*normal_); + const scalar dt = t - t0_; + if (dt > 0) + { + Uinjector_ = (position - position0)/dt; + } + + this->findCellAtPosition + ( + cellOwner, + tetFacei, + tetPti, + position + ); + break; + } + case injectionMethod::imDiscSegments: + { + // Calculate the uniform angular increment in radians + const scalar angleIncrement = mathematical::twoPi/nInjectors_; + + // Randomly set the index of injector angles + const label injectorIndex = + rndGen.globalPosition<label>(0, nInjectors_ - 1); + + // Calculate the angle for the current injection + const scalar angle = injectorIndex*angleIncrement; + + // Calculate the rotation tensor around an axis by an angle + const tensor R + ( + coordinateRotations::axisAngle::rotation + ( + direction_, + angle, + false // radians + ) + ); + + // Compute a random radius between innerDiameter_ and outerDiameter_ + const scalar fraction = rndGen.globalSample01<scalar>(); + const scalar dr = outerDiameter_ - innerDiameter_; + const scalar radius = 0.5*(innerDiameter_ + fraction*dr); + + // Rotate the initial direction to get the normal direction + // for this injector + normal_ = R & initialInjectorDir_; + + // Compute the particle's injection position + const vector radialOffset(radius*normal_); + position = positionVsTime_->value(t) + radialOffset; + + // Estimate the injector velocity if time has advanced + const scalar dt = t - t0_; + if (dt > 0) + { + const vector position0 + ( + positionVsTime_->value(t0_) + radialOffset + ); + Uinjector_ = (position - position0)/dt; + } + this->findCellAtPosition ( cellOwner, @@ -455,6 +557,9 @@ void Foam::ConeNozzleInjection<CloudType>::setPositionAndCell << exit(FatalError); } } + + // Update the previous time step + t0_ = t; } @@ -487,7 +592,7 @@ void Foam::ConeNozzleInjection<CloudType>::setProperties { case flowType::ftConstantVelocity: { - parcel.U() = UMag_*dirVec; + parcel.U() = UMag_*dirVec + Uinjector_; break; } case flowType::ftPressureDrivenVelocity: @@ -495,7 +600,7 @@ void Foam::ConeNozzleInjection<CloudType>::setProperties scalar pAmbient = this->owner().pAmbient(); scalar rho = parcel.rho(); scalar UMag = ::sqrt(2.0*(Pinj_->value(t) - pAmbient)/rho); - parcel.U() = UMag*dirVec; + parcel.U() = UMag*dirVec + Uinjector_; break; } case flowType::ftFlowRateAndDischarge: @@ -508,7 +613,7 @@ void Foam::ConeNozzleInjection<CloudType>::setProperties /this->volumeTotal(); scalar Umag = massFlowRate/(parcel.rho()*Cd_->value(t)*(Ao - Ai)); - parcel.U() = Umag*dirVec; + parcel.U() = Umag*dirVec + Uinjector_; break; } default: @@ -520,6 +625,7 @@ void Foam::ConeNozzleInjection<CloudType>::setProperties } } + if (omegaPtr_) { const scalar omega = omegaPtr_->value(t); @@ -552,4 +658,16 @@ bool Foam::ConeNozzleInjection<CloudType>::validInjection(const label) } +template<class CloudType> +void Foam::ConeNozzleInjection<CloudType>::info() +{ + InjectionModel<CloudType>::info(); + + if (this->writeTime()) + { + this->setModelProperty("t0", t0_); + } +} + + // ************************************************************************* // diff --git a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeNozzleInjection/ConeNozzleInjection.H b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeNozzleInjection/ConeNozzleInjection.H index bd03d0771e0122df25233ca8e843d04731e878eb..5110bce14fae0a8615a84c24647c2326ec004d2c 100644 --- a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeNozzleInjection/ConeNozzleInjection.H +++ b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeNozzleInjection/ConeNozzleInjection.H @@ -97,7 +97,8 @@ public: enum class injectionMethod { imPoint, - imDisc + imDisc, + imDiscSegments //<! Disc with angular segments }; static const Enum<injectionMethod> injectionMethodNames; @@ -171,6 +172,18 @@ private: //- Parcel size PDF model autoPtr<distributionModel> sizeDistribution_; + //- Previous-time value + scalar t0_; + + //- Number of injectors in angular-segmented disc + label nInjectors_; + + //- Estimated speed of the moving injector + vector Uinjector_; + + //- Initial injector direction + vector initialInjectorDir_; + // Tangential vectors to the direction vector @@ -282,6 +295,12 @@ public: //- Return flag to identify whether or not injection of parcelI is // permitted virtual bool validInjection(const label parcelI); + + + // I-O + + //- Write injection info + virtual void info(); }; diff --git a/src/lumpedPointMotion/lumpedPointMovementDict b/src/lumpedPointMotion/lumpedPointMovementDict index 3f176c4526f3efe1e43977ff199504aaf9edc3c8..434150e3f2b0673ae7e2ea5c078ed7850b0f57fe 100644 --- a/src/lumpedPointMotion/lumpedPointMovementDict +++ b/src/lumpedPointMotion/lumpedPointMovementDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/src/mesh/snappyHexMesh/Make/files b/src/mesh/snappyHexMesh/Make/files index 28be73f7c19a1518a16812b2bef320e72e9bcffe..50a44505e83dcf427bc01192f08e745cc0439f79 100644 --- a/src/mesh/snappyHexMesh/Make/files +++ b/src/mesh/snappyHexMesh/Make/files @@ -2,6 +2,7 @@ snappyHexMeshDriver/snappyLayerDriver.C snappyHexMeshDriver/snappyLayerDriverSinglePass.C snappyHexMeshDriver/snappySnapDriver.C snappyHexMeshDriver/snappySnapDriverFeature.C +snappyHexMeshDriver/snappySnapDriverBufferLayers.C snappyHexMeshDriver/snappyRefineDriver.C snappyHexMeshDriver/snappyVoxelMeshDriver.C diff --git a/src/mesh/snappyHexMesh/externalDisplacementMeshMover/medialAxisMeshMover.C b/src/mesh/snappyHexMesh/externalDisplacementMeshMover/medialAxisMeshMover.C index 7db914643c1cf8bcf945a0e223fe7f0d25bbcafb..295013ecba66b10efd07182f41cf5dbbd4961be0 100644 --- a/src/mesh/snappyHexMesh/externalDisplacementMeshMover/medialAxisMeshMover.C +++ b/src/mesh/snappyHexMesh/externalDisplacementMeshMover/medialAxisMeshMover.C @@ -1692,6 +1692,22 @@ void Foam::medialAxisMeshMover::calculateDisplacement displacement ); } + + if (str) + { + Info<< typeName + << " : Written " << returnReduce(str().nVertices(), sumOp<label>()) + << " points with too large an extrusion distance to " + << str().name() << endl; + } + if (medialVecStr) + { + Info<< typeName + << " : Written " + << returnReduce(medialVecStr().nVertices(), sumOp<label>()) + << " medial axis vectors on points with too large" + << " an extrusion distance to " << medialVecStr().name() << endl; + } } diff --git a/src/mesh/snappyHexMesh/meshRefinement/meshRefinement.C b/src/mesh/snappyHexMesh/meshRefinement/meshRefinement.C index 130845c1961c6e3fd6ff2c11d66703ea857d2621..758f69f794222ef1574af0387612f1636244650b 100644 --- a/src/mesh/snappyHexMesh/meshRefinement/meshRefinement.C +++ b/src/mesh/snappyHexMesh/meshRefinement/meshRefinement.C @@ -75,6 +75,18 @@ namespace Foam } +const Foam::Enum +< + Foam::meshRefinement::MeshType +> +Foam::meshRefinement::MeshTypeNames +({ + { MeshType::CASTELLATED, "castellated" }, + { MeshType::CASTELLATEDBUFFERLAYER, "castellatedBufferLayer" }, + { MeshType::CASTELLATEDBUFFERLAYER2, "castellatedBufferLayer2" } +}); + + const Foam::Enum < Foam::meshRefinement::debugType @@ -1178,56 +1190,90 @@ Foam::autoPtr<Foam::mapPolyMesh> Foam::meshRefinement::doRemoveCells } +void Foam::meshRefinement::splitFace +( + const face& f, + const labelPair& split, + + face& f0, + face& f1 +) +{ + if (split.find(-1) != -1) + { + FatalErrorInFunction<< "Illegal split " << split + << " on face " << f << exit(FatalError); + } + + label nVerts = split[1]-split[0]; + if (nVerts < 0) + { + nVerts += f.size(); + } + nVerts += 1; + + + // Split into f0, f1 + f0.resize_nocopy(nVerts); + + label fp = split[0]; + forAll(f0, i) + { + f0[i] = f[fp]; + fp = f.fcIndex(fp); + } + + f1.resize_nocopy(f.size()-f0.size()+2); + fp = split[1]; + forAll(f1, i) + { + f1[i] = f[fp]; + fp = f.fcIndex(fp); + } +} + + void Foam::meshRefinement::doSplitFaces ( const labelList& splitFaces, const labelPairList& splits, + const labelPairList& splitPatches, //const List<Pair<point>>& splitPoints, polyTopoChange& meshMod ) const { + face f0, f1; + forAll(splitFaces, i) { - label facei = splitFaces[i]; + const label facei = splitFaces[i]; + const auto& split = splits[i]; + const auto& twoPatches = splitPatches[i]; + const face& f = mesh_.faces()[facei]; // Split as start and end index in face - const labelPair& split = splits[i]; - - label nVerts = split[1]-split[0]; - if (nVerts < 0) - { - nVerts += f.size(); - } - nVerts += 1; - - - // Split into f0, f1 - face f0(nVerts); - - label fp = split[0]; - forAll(f0, i) - { - f0[i] = f[fp]; - fp = f.fcIndex(fp); - } - - face f1(f.size()-f0.size()+2); - fp = split[1]; - forAll(f1, i) - { - f1[i] = f[fp]; - fp = f.fcIndex(fp); - } - + splitFace(f, split, f0, f1); // Determine face properties label own = mesh_.faceOwner()[facei]; label nei = -1; - label patchi = -1; + label patch0 = -1; + label patch1 = -1; if (facei >= mesh_.nInternalFaces()) { - patchi = mesh_.boundaryMesh().whichPatch(facei); + patch0 = + ( + twoPatches[0] != -1 + ? twoPatches[0] + : mesh_.boundaryMesh().whichPatch(facei) + ); + patch1 = + ( + twoPatches[1] != -1 + ? twoPatches[1] + : mesh_.boundaryMesh().whichPatch(facei) + ); } else { @@ -1258,7 +1304,7 @@ void Foam::meshRefinement::doSplitFaces own, // owner nei, // neighbour false, // face flip - patchi, // patch for face + patch0, // patch for face zonei, // zone for face zoneFlip // face flip in zone ); @@ -1272,7 +1318,7 @@ void Foam::meshRefinement::doSplitFaces -1, // master edge facei, // master face false, // face flip - patchi, // patch for face + patch1, // patch for face zonei, // zone for face zoneFlip // face flip in zone ); @@ -1301,6 +1347,7 @@ Foam::label Foam::meshRefinement::splitFacesUndo ( const labelList& splitFaces, const labelPairList& splits, + const labelPairList& splitPatches, const dictionary& motionDict, labelList& duplicateFace, @@ -1327,7 +1374,7 @@ Foam::label Foam::meshRefinement::splitFacesUndo ); // Insert the mesh changes - doSplitFaces(splitFaces, splits, meshMod); + doSplitFaces(splitFaces, splits, splitPatches, meshMod); // Remove any unnecessary fields mesh_.clearOut(); @@ -1687,6 +1734,7 @@ Foam::meshRefinement::meshRefinement const shellSurfaces& shells, const shellSurfaces& limitShells, const labelUList& checkFaces, + const MeshType meshType, const bool dryRun ) : @@ -1698,6 +1746,7 @@ Foam::meshRefinement::meshRefinement features_(features), shells_(shells), limitShells_(limitShells), + meshType_(meshType), dryRun_(dryRun), meshCutter_ ( @@ -1774,6 +1823,7 @@ Foam::autoPtr<Foam::mapDistributePolyMesh> Foam::meshRefinement::balance ( const bool keepZoneFaces, const bool keepBaffles, + const labelList& singleProcPoints, const scalarField& cellWeights, decompositionMethod& decomposer, fvMeshDistribute& distributor @@ -1952,6 +2002,40 @@ Foam::autoPtr<Foam::mapDistributePolyMesh> Foam::meshRefinement::balance blockedFace[baffle.second()] = false; } + if (returnReduceOr(singleProcPoints.size())) + { + // Modify couples to force all selected points be on the same + // processor + + const polyBoundaryMesh& pbm = mesh_.boundaryMesh(); + + label nPointFaces = 0; + for (const label pointi : singleProcPoints) + { + for (const label facei : mesh_.pointFaces()[pointi]) + { + if (blockedFace[facei]) + { + if + ( + mesh_.isInternalFace(facei) + || pbm[pbm.whichPatch(facei)].coupled() + ) + { + blockedFace[facei] = false; + nPointFaces++; + } + } + } + } + reduce(nPointFaces, sumOp<label>()); + Info<< "Found " << nPointFaces + << " additional point-coupled faces to keep together." << endl; + + nUnblocked += nPointFaces; + } + + distribution = decomposer.decompose ( mesh_, @@ -2054,7 +2138,6 @@ Foam::labelList Foam::meshRefinement::intersectedPoints() const // Mark all points on faces that will become baffles bitSet isBoundaryPoint(mesh_.nPoints()); - label nBoundaryPoints = 0; const labelList& surfIndex = surfaceIndex(); @@ -2062,15 +2145,7 @@ Foam::labelList Foam::meshRefinement::intersectedPoints() const { if (surfIndex[facei] != -1) { - const face& f = faces[facei]; - - forAll(f, fp) - { - if (isBoundaryPoint.set(f[fp])) - { - nBoundaryPoints++; - } - } + isBoundaryPoint.set(faces[facei]); } } @@ -2083,37 +2158,17 @@ Foam::labelList Foam::meshRefinement::intersectedPoints() const // if (patchi != -1) // { // const polyPatch& pp = mesh_.boundaryMesh()[patchi]; - // - // label facei = pp.start(); - // // forAll(pp, i) // { - // const face& f = faces[facei]; - // - // forAll(f, fp) - // { - // if (isBoundaryPoint.set(f[fp])) - // nBoundaryPoints++; - // } - // } - // facei++; + // isBoundaryPoint.set(faces[pp.start()+i]); // } // } //} + // Make sure all processors have the same data + syncTools::syncPointList(mesh_, isBoundaryPoint, orEqOp<unsigned int>(), 0); - // Pack - labelList boundaryPoints(nBoundaryPoints); - nBoundaryPoints = 0; - forAll(isBoundaryPoint, pointi) - { - if (isBoundaryPoint.test(pointi)) - { - boundaryPoints[nBoundaryPoints++] = pointi; - } - } - - return boundaryPoints; + return isBoundaryPoint.sortedToc(); } diff --git a/src/mesh/snappyHexMesh/meshRefinement/meshRefinement.H b/src/mesh/snappyHexMesh/meshRefinement/meshRefinement.H index 7e3b43f9cbb60187d953aef979a333054d991cb3..cc87edc7623c623ec0135b99255e32aa0fa8f6fe 100644 --- a/src/mesh/snappyHexMesh/meshRefinement/meshRefinement.H +++ b/src/mesh/snappyHexMesh/meshRefinement/meshRefinement.H @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation - Copyright (C) 2015-2023 OpenCFD Ltd. + Copyright (C) 2015-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -91,6 +91,18 @@ public: // Public Data Types + //- Enumeration for how to operate + enum MeshType + { + CASTELLATED, // split-hex refinement, snapping, layer addition + CASTELLATEDBUFFERLAYER, // same but add buffer layers before + // snapping + CASTELLATEDBUFFERLAYER2 // experimental. wip. + }; + + static const Enum<MeshType> MeshTypeNames; + + //- Enumeration for what to debug. Used as a bit-pattern. enum debugType { @@ -179,9 +191,13 @@ private: //- All limit-refinement interaction const shellSurfaces& limitShells_; + //- How to generate mesh + const MeshType meshType_; + //- Are we operating in test mode? const bool dryRun_; + //- Refinement engine hexRef8 meshCutter_; @@ -778,10 +794,12 @@ private: //- Extract those baffles (duplicate) faces that are on the edge // of a baffle region. These are candidates for merging. + // samePatch : include only if both sides on the same patch. List<labelPair> freeStandingBaffles ( const List<labelPair>&, - const scalar freeStandingAngle + const scalar freeStandingAngle, + const bool samePatch ) const; @@ -997,6 +1015,7 @@ public: const shellSurfaces&, // omnidirectional refinement const shellSurfaces&, // limit refinement const labelUList& checkFaces, // initial faces to check + const MeshType meshType, const bool dryRun ); @@ -1062,6 +1081,12 @@ public: return meshCutter_; } + //- Mode of meshing + MeshType meshType() const + { + return meshType_; + } + //- Per start-end edge the index of the surface hit const labelList& surfaceIndex() const; @@ -1098,10 +1123,12 @@ public: // keepZoneFaces : find all faceZones from zoned surfaces and keep // owner and neighbour together // keepBaffles : find all baffles and keep them together + // singleProcPoints : all faces using point are kept together autoPtr<mapDistributePolyMesh> balance ( const bool keepZoneFaces, const bool keepBaffles, + const labelList& singleProcPoints, const scalarField& cellWeights, decompositionMethod& decomposer, fvMeshDistribute& distributor @@ -1366,6 +1393,7 @@ public: //- Merge free-standing baffles void mergeFreeStandingBaffles ( + const bool samePatch, const snapParameters& snapParams, const bool useTopologicalSnapDetection, const bool removeEdgeConnectedCells, @@ -1449,6 +1477,14 @@ public: const List<labelPair>& baffles ); + //- Map baffles after layer addition. Gets new-to-old face map. + static void mapBaffles + ( + const polyMesh& mesh, + const labelList& faceMap, + List<labelPair>& baffles + ); + //- Get per-face information (faceZone, master/slave patch) void getZoneFaces ( @@ -1625,11 +1661,24 @@ public: const refPtr<coordSetWriter>& leakPathFormatter ); + //- Helper: split face into: + // - f0 : split[0] to split[1] + // - f1 : split[1] to split[0] + static void splitFace + ( + const face& f, + const labelPair& split, + + face& f0, + face& f1 + ); + //- Split faces into two void doSplitFaces ( const labelList& splitFaces, const labelPairList& splits, + const labelPairList& splitPatches, polyTopoChange& meshMod ) const; @@ -1639,6 +1688,7 @@ public: ( const labelList& splitFaces, const labelPairList& splits, + const labelPairList& splitPatches, const dictionary& motionDict, labelList& duplicateFace, diff --git a/src/mesh/snappyHexMesh/meshRefinement/meshRefinementBaffles.C b/src/mesh/snappyHexMesh/meshRefinement/meshRefinementBaffles.C index 1286200ced72933dbda83cc36ce44a2d02fa5ef2..3afa51b1e3741b43694666cd956d65a883a4ecae 100644 --- a/src/mesh/snappyHexMesh/meshRefinement/meshRefinementBaffles.C +++ b/src/mesh/snappyHexMesh/meshRefinement/meshRefinementBaffles.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2014 OpenFOAM Foundation - Copyright (C) 2015-2023 OpenCFD Ltd. + Copyright (C) 2015-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -727,6 +727,49 @@ Foam::List<Foam::labelPair> Foam::meshRefinement::subsetBaffles } +void Foam::meshRefinement::mapBaffles +( + const polyMesh& mesh, + const labelList& faceMap, + List<labelPair>& baffles +) +{ + // Create old-to-new map just for boundary faces. (since multiple faces + // get created from the same baffle face) + labelList reverseFaceMap(mesh.nFaces(), -1); + for + ( + label facei = mesh.nInternalFaces(); + facei < mesh.nFaces(); + facei++ + ) + { + label oldFacei = faceMap[facei]; + if (oldFacei != -1) + { + reverseFaceMap[oldFacei] = facei; + } + } + + + DynamicList<labelPair> newBaffles(baffles.size()); + forAll(baffles, i) + { + const labelPair& p = baffles[i]; + labelPair newBaffle + ( + reverseFaceMap[p[0]], + reverseFaceMap[p[1]] + ); + if (newBaffle[0] != -1 && newBaffle[1] != -1) + { + newBaffles.append(newBaffle); + } + } + baffles = std::move(newBaffles); +} + + void Foam::meshRefinement::getZoneFaces ( const labelList& zoneIDs, @@ -927,7 +970,8 @@ Foam::autoPtr<Foam::mapPolyMesh> Foam::meshRefinement::createZoneBaffles Foam::List<Foam::labelPair> Foam::meshRefinement::freeStandingBaffles ( const List<labelPair>& couples, - const scalar planarAngle + const scalar planarAngle, + const bool samePatch ) const { // Done by counting the number of baffles faces per mesh edge. If edge @@ -1036,8 +1080,11 @@ Foam::List<Foam::labelPair> Foam::meshRefinement::freeStandingBaffles if ( - patches.whichPatch(couple.first()) - == patches.whichPatch(couple.second()) + !samePatch + || ( + patches.whichPatch(couple.first()) + == patches.whichPatch(couple.second()) + ) ) { const labelList& fEdges = mesh_.faceEdges(couple.first()); @@ -2430,15 +2477,24 @@ void Foam::meshRefinement::growCellZone // No blocked faces, limitless gap size const bitSet isBlockedFace(mesh_.nFaces()); - List<scalarList> regionToBlockSize(surfaces_.surfaces().size()); + //List<scalarList> regionToBlockSize(surfaces_.surfaces().size()); + //{ + // forAll(surfaces_.surfaces(), surfi) + // { + // const label geomi = surfaces_.surfaces()[surfi]; + // const auto& s = surfaces_.geometry()[geomi]; + // const label nRegions = s.regions().size(); + // regionToBlockSize[surfi].setSize(nRegions, Foam::sqr(GREAT)); + // } + //} + + //- regionToBlockSize is indexed with cellZone index (>= 0) and region + //- on cellZone (currently always 0) + const auto& czs = mesh_.cellZones(); + List<scalarList> regionToBlockSize(czs.size()); + for (auto& blockSizes : regionToBlockSize) { - forAll(surfaces_.surfaces(), surfi) - { - const label geomi = surfaces_.surfaces()[surfi]; - const auto& s = surfaces_.geometry()[geomi]; - const label nRegions = s.regions().size(); - regionToBlockSize[surfi].setSize(nRegions, Foam::sqr(GREAT)); - } + blockSizes.setSize(1, Foam::sqr(GREAT)); } @@ -4773,6 +4829,7 @@ void Foam::meshRefinement::baffleAndSplitMesh void Foam::meshRefinement::mergeFreeStandingBaffles ( + const bool samePatch, const snapParameters& snapParams, const bool useTopologicalSnapDetection, const bool removeEdgeConnectedCells, @@ -4801,7 +4858,8 @@ void Foam::meshRefinement::mergeFreeStandingBaffles freeStandingBaffles // filter out freestanding baffles ( localPointRegion::findDuplicateFacePairs(mesh_), - planarAngle + planarAngle, + samePatch ) ); diff --git a/src/mesh/snappyHexMesh/meshRefinement/meshRefinementProblemCells.C b/src/mesh/snappyHexMesh/meshRefinement/meshRefinementProblemCells.C index 61fa183e7d7d6c9f20fc73c8f10fefcabe6f856a..f4de036e95c714905e80adcf738dbe0966a98793 100644 --- a/src/mesh/snappyHexMesh/meshRefinement/meshRefinementProblemCells.C +++ b/src/mesh/snappyHexMesh/meshRefinement/meshRefinementProblemCells.C @@ -1112,8 +1112,9 @@ void Foam::meshRefinement::markFacesOnProblemCellsGeometric *this, globalToMasterPatch, globalToSlavePatch, - snapDist, // attraction pp, + pp.localPoints(), + snapDist, // attraction nearestPoint, nearestNormal ) diff --git a/src/mesh/snappyHexMesh/meshRefinement/meshRefinementRefine.C b/src/mesh/snappyHexMesh/meshRefinement/meshRefinementRefine.C index cec01d92c7444a28adde9532fe7229279477659b..d8c2ada5e33a22b3176a8cc3af00bcfdd9ec37db 100644 --- a/src/mesh/snappyHexMesh/meshRefinement/meshRefinementRefine.C +++ b/src/mesh/snappyHexMesh/meshRefinement/meshRefinementRefine.C @@ -2674,6 +2674,7 @@ Foam::autoPtr<Foam::mapDistributePolyMesh> Foam::meshRefinement::balance ( false, //keepZoneFaces false, //keepBaffles + labelList::null(), //singleProcPoints cellWeights, decomposer, distributor diff --git a/src/mesh/snappyHexMesh/refinementSurfaces/refinementSurfaces.C b/src/mesh/snappyHexMesh/refinementSurfaces/refinementSurfaces.C index 5b32ac72cfc4335e6eebfa940e49ec108c1275fc..07a648247d64b9caa9cdb7e3bcf422cb3f720a08 100644 --- a/src/mesh/snappyHexMesh/refinementSurfaces/refinementSurfaces.C +++ b/src/mesh/snappyHexMesh/refinementSurfaces/refinementSurfaces.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2015 OpenFOAM Foundation - Copyright (C) 2015-2022 OpenCFD Ltd. + Copyright (C) 2015-2022,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -208,6 +208,9 @@ Foam::refinementSurfaces::refinementSurfaces labelList globalBlockLevel(surfI, labelMax); labelList globalLeakLevel(surfI, labelMax); + // Supported in buffer-layer mode only + boolList globalBufferLayers(surfI, true); + // Per surface, per region data List<Map<label>> regionMinLevel(surfI); List<Map<label>> regionMaxLevel(surfI); @@ -220,6 +223,7 @@ Foam::refinementSurfaces::refinementSurfaces List<Map<autoPtr<dictionary>>> regionPatchInfo(surfI); List<Map<label>> regionBlockLevel(surfI); List<Map<label>> regionLeakLevel(surfI); + List<Map<label>> regionBufferLayers(surfI); wordHashSet unmatchedKeys(surfacesDict.toc()); @@ -346,7 +350,7 @@ Foam::refinementSurfaces::refinementSurfaces dict.readIfPresent("perpendicularAngle", globalAngle[surfI]); dict.readIfPresent("blockLevel", globalBlockLevel[surfI]); dict.readIfPresent("leakLevel", globalLeakLevel[surfI]); - + dict.readIfPresent("addBufferLayers", globalBufferLayers[surfI]); if (dict.found("regions")) { @@ -499,6 +503,14 @@ Foam::refinementSurfaces::refinementSurfaces { regionLeakLevel[surfI].insert(regionI, l); } + bool s; + if + ( + regionDict.readIfPresent<bool>("addBufferLayers", s) + ) + { + regionBufferLayers[surfI].insert(regionI, s); + } } } } @@ -551,6 +563,8 @@ Foam::refinementSurfaces::refinementSurfaces blockLevel_ = labelMax; leakLevel_.setSize(nRegions); leakLevel_ = labelMax; + addBufferLayers_.setSize(nRegions); + addBufferLayers_ = false; forAll(globalMinLevel, surfI) @@ -582,6 +596,7 @@ Foam::refinementSurfaces::refinementSurfaces } blockLevel_[globalRegionI] = globalBlockLevel[surfI]; leakLevel_[globalRegionI] = globalLeakLevel[surfI]; + addBufferLayers_[globalRegionI] = globalBufferLayers[surfI]; } // Overwrite with region specific information @@ -636,6 +651,11 @@ Foam::refinementSurfaces::refinementSurfaces blockLevel_[globalRegionI] = iter.val(); leakLevel_[globalRegionI] = iter.val(); } + forAllConstIters(regionBufferLayers[surfI], iter) + { + const label globalRegionI = regionOffset_[surfI] + iter.key(); + addBufferLayers_[globalRegionI] = iter.val(); + } } } diff --git a/src/mesh/snappyHexMesh/refinementSurfaces/refinementSurfaces.H b/src/mesh/snappyHexMesh/refinementSurfaces/refinementSurfaces.H index 8f022033584f254f9f5ca46270280fdb1100d7de..6a035f14d0a18a9c5f018ceef5b7fe006b9ffe05 100644 --- a/src/mesh/snappyHexMesh/refinementSurfaces/refinementSurfaces.H +++ b/src/mesh/snappyHexMesh/refinementSurfaces/refinementSurfaces.H @@ -119,6 +119,9 @@ class refinementSurfaces //- From global region number to patchType PtrList<dictionary> patchInfo_; + //- From global region number to whether to add buffer layers + boolList addBufferLayers_; + //- Are we operating in test mode? const bool dryRun_; @@ -291,6 +294,13 @@ public: return patchInfo_; } + //- From global region number to whether to add buffer layers + // when snapping + const boolList& addBufferLayers() const + { + return addBufferLayers_; + } + // Helper diff --git a/src/mesh/snappyHexMesh/shellSurfaces/shellSurfaces.C b/src/mesh/snappyHexMesh/shellSurfaces/shellSurfaces.C index 198be01bcf71f133a77380de31ef7b6ba5ec5ff6..a6547fa1142cc9ce4ce14ffe8a302042d99090c7 100644 --- a/src/mesh/snappyHexMesh/shellSurfaces/shellSurfaces.C +++ b/src/mesh/snappyHexMesh/shellSurfaces/shellSurfaces.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2015 OpenFOAM Foundation - Copyright (C) 2015-2022 OpenCFD Ltd. + Copyright (C) 2015-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -168,12 +168,7 @@ void Foam::shellSurfaces::orient() { const searchableSurface& s = allGeometry_[shells_[shellI]]; - if - ( - modes_[shellI] != DISTANCE - && isA<triSurfaceMesh>(s) - && !isA<distributedTriSurfaceMesh>(s) - ) + if (modes_[shellI] != DISTANCE && isA<triSurfaceMesh>(s)) { hasSurface = true; @@ -196,35 +191,39 @@ void Foam::shellSurfaces::orient() { const searchableSurface& s = allGeometry_[shells_[shellI]]; - if - ( - modes_[shellI] != DISTANCE - && isA<triSurfaceMesh>(s) - && !isA<distributedTriSurfaceMesh>(s) - ) + if (modes_[shellI] != DISTANCE && isA<triSurfaceMesh>(s)) { - triSurfaceMesh& shell = const_cast<triSurfaceMesh&> + List<pointIndexHit> info; + vectorField normal; + labelList region; + s.findNearest ( - refCast<const triSurfaceMesh>(s) + pointField(1, outsidePt), + scalarField(1, GREAT), + info, + normal, + region ); - // Flip surface so outsidePt is outside. - bool anyFlipped = orientedSurface::orient - ( - shell, - outsidePt, - true - ); + //Pout<< "outsidePt:" << outsidePt << endl; + //Pout<< "info :" << info[0] << endl; + //Pout<< "normal :" << normal[0] << endl; + //Pout<< "region :" << region[0] << endl; - if (anyFlipped && !dryRun_) + bool anyFlipped = false; + if ((normal[0] & (info[0].point()-outsidePt)) > 0) { - // orientedSurface will have done a clearOut of the surface. - // we could do a clearout of the triSurfaceMeshes::trees() - // but these aren't affected by orientation - // (except for cached - // sideness which should not be set at this point. - // !!Should check!) + triSurfaceMesh& shell = const_cast<triSurfaceMesh&> + ( + refCast<const triSurfaceMesh>(s) + ); + shell.flip(); + anyFlipped = true; + } + + if (anyFlipped && !dryRun_) + { Info<< "shellSurfaces : Flipped orientation of surface " << s.name() << " so point " << outsidePt << " is outside." << endl; diff --git a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriver.C b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriver.C index 94365fc3670a0a13d312ce33efedc8447a85ebcb..d362fabd2844cec1e975c46c466a6bd6de9f028f 100644 --- a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriver.C +++ b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriver.C @@ -1000,15 +1000,16 @@ void Foam::snappyLayerDriver::handleWarpedFaces void Foam::snappyLayerDriver::setNumLayers ( + meshRefinement& meshRefiner, const labelList& patchToNLayers, const labelList& patchIDs, const indirectPrimitivePatch& pp, labelList& patchNLayers, List<extrudeMode>& extrudeStatus, label& nAddedCells -) const +) { - const fvMesh& mesh = meshRefiner_.mesh(); + const fvMesh& mesh = meshRefiner.mesh(); Info<< nl << "Handling points with inconsistent layer specification ..." << endl; @@ -1181,7 +1182,7 @@ Foam::snappyLayerDriver::makeLayerDisplacementField "pointDisplacement", mesh.time().timeName(), mesh, - IOobject::NO_READ, + IOobject::NO_READ, IOobject::AUTO_WRITE ), pMesh, @@ -1284,6 +1285,7 @@ void Foam::snappyLayerDriver::growNoExtrusion void Foam::snappyLayerDriver::determineSidePatches ( + meshRefinement& meshRefiner, const globalIndex& globalFaces, const labelListList& edgeGlobalFaces, const indirectPrimitivePatch& pp, @@ -1300,7 +1302,7 @@ void Foam::snappyLayerDriver::determineSidePatches // mean that 2 procesors that were only edge-connected now suddenly need // to become face-connected i.e. have a processor patch between them. - fvMesh& mesh = meshRefiner_.mesh(); + fvMesh& mesh = meshRefiner.mesh(); // Determine edgePatchID. Any additional processor boundary gets added to // patchToNbrProc,nbrProcToPatch and nPatches gets set to the new number @@ -1361,7 +1363,7 @@ void Foam::snappyLayerDriver::determineSidePatches // << " between " << Pstream::myProcNo() // << " and " << nbrProci << endl; - label procPatchi = meshRefiner_.appendPatch + label procPatchi = meshRefiner.appendPatch ( mesh, mesh.boundaryMesh().size(), // new patch index @@ -1769,14 +1771,15 @@ void Foam::snappyLayerDriver::calculateLayerThickness // Synchronize displacement among coupled patches. void Foam::snappyLayerDriver::syncPatchDisplacement ( + const fvMesh& mesh, const indirectPrimitivePatch& pp, const scalarField& minThickness, pointField& patchDisp, labelList& patchNLayers, List<extrudeMode>& extrudeStatus -) const +) { - const fvMesh& mesh = meshRefiner_.mesh(); + //const fvMesh& mesh = meshRefiner.mesh(); const labelList& meshPoints = pp.meshPoints(); //label nChangedTotal = 0; @@ -2106,6 +2109,7 @@ void Foam::snappyLayerDriver::getPatchDisplacement // Make sure displacement is equal on both sides of coupled patches. syncPatchDisplacement ( + mesh, pp, minThickness, patchDisp, @@ -2300,6 +2304,7 @@ Foam::label Foam::snappyLayerDriver::truncateDisplacement { syncPatchDisplacement ( + mesh, pp, minThickness, patchDisp, @@ -3358,8 +3363,9 @@ bool Foam::snappyLayerDriver::writeLayerData } -void Foam::snappyLayerDriver::dupFaceZonePoints +Foam::autoPtr<Foam::mapPolyMesh> Foam::snappyLayerDriver::dupFaceZonePoints ( + meshRefinement& meshRefiner, const labelList& patchIDs, // patch indices const labelList& numLayers, // number of layers per patch List<labelPair> baffles, // pairs of baffles (input & updated) @@ -3367,7 +3373,7 @@ void Foam::snappyLayerDriver::dupFaceZonePoints // point) ) { - fvMesh& mesh = meshRefiner_.mesh(); + fvMesh& mesh = meshRefiner.mesh(); // Check outside of baffles for non-manifoldness @@ -3395,6 +3401,7 @@ void Foam::snappyLayerDriver::dupFaceZonePoints // Get number of layers per point from number of layers per patch setNumLayers ( + meshRefiner, numLayers, // per patch the num layers patchIDs, // patches that are being moved *pp, // indirectpatch for all faces moving @@ -3408,6 +3415,7 @@ void Foam::snappyLayerDriver::dupFaceZonePoints // of the patchDisp here. syncPatchDisplacement ( + mesh, *pp, scalarField(patchDisp.size(), Zero), //minThickness, patchDisp, @@ -3474,7 +3482,7 @@ void Foam::snappyLayerDriver::dupFaceZonePoints { label mpi, spi; surfaceZonesInfo::faceZoneType fzType; - bool hasInfo = meshRefiner_.getFaceZoneInfo + bool hasInfo = meshRefiner.getFaceZoneInfo ( mesh.faceZones()[zonei].name(), mpi, @@ -3497,7 +3505,7 @@ void Foam::snappyLayerDriver::dupFaceZonePoints const localPointRegion regionSide(mesh, nonDupBaffles, candidatePoints); - autoPtr<mapPolyMesh> map = meshRefiner_.dupNonManifoldPoints + autoPtr<mapPolyMesh> map = meshRefiner.dupNonManifoldPoints ( regionSide ); @@ -3539,9 +3547,9 @@ void Foam::snappyLayerDriver::dupFaceZonePoints { const_cast<Time&>(mesh.time())++; Info<< "Writing point-duplicate mesh to time " - << meshRefiner_.timeName() << endl; + << meshRefiner.timeName() << endl; - meshRefiner_.write + meshRefiner.write ( meshRefinement::debugType(debug), meshRefinement::writeType @@ -3549,14 +3557,14 @@ void Foam::snappyLayerDriver::dupFaceZonePoints meshRefinement::writeLevel() | meshRefinement::WRITEMESH ), - mesh.time().path()/meshRefiner_.timeName() + mesh.time().path()/meshRefiner.timeName() ); OBJstream str ( mesh.time().path() / "duplicatePoints_" - + meshRefiner_.timeName() + + meshRefiner.timeName() + ".obj" ); Info<< "Writing point-duplicates to " << str.name() << endl; @@ -3572,6 +3580,7 @@ void Foam::snappyLayerDriver::dupFaceZonePoints } } } + return map; } @@ -3721,6 +3730,7 @@ Foam::label Foam::snappyLayerDriver::setPointNumLayers setNumLayers ( + meshRefiner_, numLayers, // per patch the num layers patchIDs, // patches that are being moved pp, // indirectpatch for all faces moving @@ -4017,6 +4027,7 @@ void Foam::snappyLayerDriver::addLayers // that. syncPatchDisplacement ( + mesh, pp, minThickness, patchDisp, @@ -4410,12 +4421,13 @@ void Foam::snappyLayerDriver::addLayers void Foam::snappyLayerDriver::mapFaceZonePoints ( + meshRefinement& meshRefiner, const mapPolyMesh& map, labelPairList& baffles, labelList& pointToMaster -) const +) { - fvMesh& mesh = meshRefiner_.mesh(); + fvMesh& mesh = meshRefiner.mesh(); // Use geometric detection of points-to-be-merged // - detect any boundary face created from a duplicated face (=baffle) @@ -4517,7 +4529,7 @@ void Foam::snappyLayerDriver::mapFaceZonePoints label nNew = Foam::mergePoints ( UIndirectList<point>(mesh.points(), candidates), - meshRefiner_.mergeDistance(), + meshRefiner.mergeDistance(), false, oldToNew ); @@ -4623,7 +4635,7 @@ Foam::snappyLayerDriver::snappyLayerDriver // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // -void Foam::snappyLayerDriver::mergePatchFacesUndo +Foam::label Foam::snappyLayerDriver::mergePatchFacesUndo ( const layerParameters& layerParams, const dictionary& motionDict, @@ -4673,6 +4685,8 @@ void Foam::snappyLayerDriver::mergePatchFacesUndo ); nChanged += meshRefiner_.mergeEdgesUndo(minCos, motionDict); + + return nChanged; } @@ -4811,6 +4825,7 @@ void Foam::snappyLayerDriver::addLayers labelList pointToMaster; dupFaceZonePoints ( + meshRefiner_, patchIDs, // patch indices numLayers, // number of layers per patch baffles, @@ -4960,7 +4975,7 @@ void Foam::snappyLayerDriver::addLayers << "-------------------" << endl; if (debug) { - Info<< " Layers to add in current iteration : " << nToAdd << endl; + Info<< "Layers to add in current iteration : " << nToAdd << endl; } if (nToAdd == 0) { @@ -4977,6 +4992,7 @@ void Foam::snappyLayerDriver::addLayers labelList inflateFaceID; determineSidePatches ( + meshRefiner_, globalFaces, edgeGlobalFaces, *pp, @@ -5084,7 +5100,7 @@ void Foam::snappyLayerDriver::addLayers const label nTotalAdded = gSum(patchNLayers); if (debug) { - Info<< nl << " Added in current iteration : " << nTotalAdded + Info<< nl << "Added in current iteration : " << nTotalAdded << " out of : " << gSum(deltaNLayers) << endl; } if (nTotalAdded == 0) @@ -5225,7 +5241,7 @@ void Foam::snappyLayerDriver::addLayers // Map baffles, pointToMaster - mapFaceZonePoints(map, baffles, pointToMaster); + mapFaceZonePoints(meshRefiner_, map, baffles, pointToMaster); // Map patch and layer settings labelList newToOldPatchPoints; @@ -5325,6 +5341,7 @@ void Foam::snappyLayerDriver::addLayers ( false, false, + labelList::null(), scalarField(mesh.nCells(), 1.0), decomposer, distributor @@ -5607,6 +5624,7 @@ void Foam::snappyLayerDriver::doLayers ( true, // keepZoneFaces false, + labelList::null(), cellWeights, decomposer, distributor diff --git a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriver.H b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriver.H index 5a71785bfd85e500b88665d42d112d04f84208cd..933add9ea8e0ad7a5d9253948ffba098d7ce541a 100644 --- a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriver.H +++ b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriver.H @@ -248,8 +248,9 @@ private: //- Determine the number of layers per point from the number of // layers per surface. - void setNumLayers + static void setNumLayers ( + meshRefinement& meshRefiner, const labelList& patchToNLayers, const labelList& patchIDs, const indirectPrimitivePatch& pp, @@ -257,7 +258,7 @@ private: labelList& patchNLayers, List<extrudeMode>& extrudeStatus, label& nIdealAddedCells - ) const; + ); //- Determine number of layers per point; include static checks //- on invalid extrusion (e.g. non-manifold) @@ -282,12 +283,6 @@ private: const scalarIOField& minThickness, pointVectorField& displacement ) const; - void mapFaceZonePoints - ( - const mapPolyMesh& map, - labelPairList& baffles, - labelList& pointToMaster - ) const; void updatePatch ( const labelList& patchIDs, @@ -319,15 +314,6 @@ private: List<extrudeMode>& extrudeStatus ) const; - //- Duplicate points on faceZones with layers - void dupFaceZonePoints - ( - const labelList& patchIDs, // patch indices - const labelList& numLayers, // number of layers per patch - List<labelPair> baffles, - labelList& pointToMaster - ); - //- Re-merge points/faces on faceZones. Opposite of //- dupFaceZonePoints above void mergeFaceZonePoints @@ -338,19 +324,6 @@ private: scalarField& faceWantedThickness ); - //- See what zones and patches edges should be extruded into - void determineSidePatches - ( - const globalIndex& globalFaces, - const labelListList& edgeGlobalFaces, - const indirectPrimitivePatch& pp, - - labelList& edgePatchID, - labelList& edgeZoneID, - boolList& edgeFlip, - labelList& inflateFaceID - ); - //- Calculate pointwise wanted and minimum thickness. // thickness: wanted thickness // minthickness: when to give up and not extrude @@ -374,14 +347,15 @@ private: // Extrusion execution //- Synchronize displacement among coupled patches. - void syncPatchDisplacement + static void syncPatchDisplacement ( + const fvMesh& mesh, const indirectPrimitivePatch& pp, const scalarField& minThickness, pointField& patchDisp, labelList& patchNLayers, List<extrudeMode>& extrudeStatus - ) const; + ); //- Get nearest point on surface to snap to void getPatchDisplacement @@ -653,8 +627,9 @@ public: // Member Functions - //- Merge patch faces on same cell. - void mergePatchFacesUndo + //- Merge patch faces on same cell. Return total number of + //- faces/edges changed. + label mergePatchFacesUndo ( const layerParameters& layerParams, const dictionary& motionDict, @@ -727,6 +702,41 @@ public: decompositionMethod& decomposer, fvMeshDistribute& distributor ); + + //- Helper: see what zones and patches edges should be extruded into + static void determineSidePatches + ( + meshRefinement& meshRefiner, + const globalIndex& globalFaces, + const labelListList& edgeGlobalFaces, + const indirectPrimitivePatch& pp, + + labelList& edgePatchID, + labelList& edgeZoneID, + boolList& edgeFlip, + labelList& inflateFaceID + ); + + //- Duplicate points on faceZones with layers. Re-used when adding + //- buffer layers. Can be made private again once multi-side + //- layer addition working. + static autoPtr<mapPolyMesh> dupFaceZonePoints + ( + meshRefinement& meshRefiner, + const labelList& patchIDs, // patch indices + const labelList& numLayers, // number of layers per patch + List<labelPair> baffles, + labelList& pointToMaster + ); + + //- Map numbering after adding cell layers + static void mapFaceZonePoints + ( + meshRefinement& meshRefiner, + const mapPolyMesh& map, + labelPairList& baffles, + labelList& pointToMaster + ); }; diff --git a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriverSinglePass.C b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriverSinglePass.C index 0b8c4f977a43402edefa4a066d80e604619a4ebb..c886d777078ed34be7df07b173b6422714e44587 100644 --- a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriverSinglePass.C +++ b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyLayerDriverSinglePass.C @@ -179,6 +179,7 @@ void Foam::snappyLayerDriver::addLayersSinglePass labelList pointToMaster; dupFaceZonePoints ( + meshRefiner_, patchIDs, // patch indices numLayers, // number of layers per patch baffles, @@ -231,6 +232,7 @@ void Foam::snappyLayerDriver::addLayersSinglePass labelList inflateFaceID; determineSidePatches ( + meshRefiner_, globalFaces, edgeGlobalFaces, *pp, @@ -437,7 +439,7 @@ void Foam::snappyLayerDriver::addLayersSinglePass // Map baffles, pointToMaster - mapFaceZonePoints(map, baffles, pointToMaster); + mapFaceZonePoints(meshRefiner_, map, baffles, pointToMaster); } @@ -471,6 +473,7 @@ void Foam::snappyLayerDriver::addLayersSinglePass ( false, false, + labelList::null(), scalarField(mesh.nCells(), 1.0), decomposer, distributor diff --git a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyRefineDriver.C b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyRefineDriver.C index 8837ce88015c30cd04acb0e678731206460fb6bf..bdb55c6faf16afb367b58550a65a7741606c9d9c 100644 --- a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyRefineDriver.C +++ b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyRefineDriver.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2015 OpenFOAM Foundation - Copyright (C) 2015-2023 OpenCFD Ltd. + Copyright (C) 2015-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -49,6 +49,7 @@ License #include "snappyVoxelMeshDriver.H" #include "regionSplit.H" #include "removeCells.H" +#include "addPatchCellLayer.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // @@ -2805,8 +2806,23 @@ void Foam::snappyRefineDriver::baffleAndSplitMesh if (!handleSnapProblems) // merge free standing baffles? { + // By default only merge baffles if on same patch. However the patching + // of the castellated mesh is not very accurate. For backwards + // compatibility disable check for new mode only. + const auto mt = meshRefiner_.meshType(); + const bool mergeSameOnly + ( + ( + mt == meshRefinement::CASTELLATEDBUFFERLAYER + || mt == meshRefinement::CASTELLATEDBUFFERLAYER2 + ) + ? false + : true + ); + meshRefiner_.mergeFreeStandingBaffles ( + mergeSameOnly, // whether to merge baffles on different patches snapParams, refineParams.useTopologicalSnapDetection(), false, // perpendicular edge connected cells @@ -2942,9 +2958,24 @@ void Foam::snappyRefineDriver::splitAndMergeBaffles surfFormatter_ ); - // Merge free-standing baffles always + + // By default only merge baffles if on same patch. However the patching + // of the castellated mesh is not very accurate. For backwards + // compatibility disable check for new mode only. + const auto mt = meshRefiner_.meshType(); + const bool mergeSameOnly + ( + ( + mt == meshRefinement::CASTELLATEDBUFFERLAYER + || mt == meshRefinement::CASTELLATEDBUFFERLAYER2 + ) + ? false + : true + ); + meshRefiner_.mergeFreeStandingBaffles ( + mergeSameOnly, snapParams, refineParams.useTopologicalSnapDetection(), handleSnapProblems, @@ -3027,6 +3058,145 @@ void Foam::snappyRefineDriver::splitAndMergeBaffles } +void Foam::snappyRefineDriver::erodeNonManifoldZoneFaces +( + const refinementParameters& refineParams +) +{ + if (dryRun_) + { + return; + } + + addProfiling(merge, "snappyHexMesh::refine::erode"); + Info<< nl + << "Erode non-manifold zone faces" << nl + << "-----------------------------" << nl + << endl; + + auto& mesh = meshRefiner_.mesh(); + auto& fzs = mesh.faceZones(); + + // Detect a faceZone face that: + // - sits on the edge of the faceZone (i.e. has an open edge) + // - has a non-manifold edge + // + // Limitations: + // - analyses across all zones - does not support overlapping zones + // - requires zones to be consistent across processor patches + + bitSet isZoneFace(mesh.nFaces()); + for (const auto& fz : fzs) + { + isZoneFace.set(fz.addressing()); + } + // Unmark non-owner side of processor patches so they don't get double + // counted. + const auto& pbm = mesh.boundaryMesh(); + for (label patchi = pbm.nNonProcessor(); patchi < pbm.size(); patchi++) + { + if (!refCast<const processorPolyPatch>(pbm[patchi]).owner()) + { + isZoneFace.unset(pbm[patchi].range()); + } + } + + + // TBD: replace with mesh.globalData().globalMeshFaceAddr() + const globalIndex globalFaces(mesh.nFaces()); + + label nChanged = 0; + + while (true) + { + const labelList meshFaces(isZoneFace.sortedToc()); + + const indirectPrimitivePatch pp + ( + IndirectList<face> + ( + mesh.faces(), + meshFaces + ), + mesh.points() + ); + + const labelListList edgeGlobalFaces + ( + addPatchCellLayer::globalEdgeFaces + ( + mesh, + globalFaces, + pp + ) + ); + + const label nOldChanged = nChanged; + forAll(pp, patchFacei) + { + // Detect at least one open edge and one non-manifold edge + label nOpen = 0; + label nNonManif = 0; + for (const label edgei : pp.faceEdges()[patchFacei]) + { + if (edgeGlobalFaces[edgei].size() == 1) + { + nOpen++; + } + else if (edgeGlobalFaces[edgei].size() > 2) + { + nNonManif++; + } + } + if (nNonManif > 0 && nOpen > 0) + { + isZoneFace.unset(meshFaces[patchFacei]); + nChanged++; + } + } + + if (returnReduce((nChanged-nOldChanged), sumOp<label>()) == 0) + { + break; + } + } + + + reduce(nChanged, sumOp<label>()); + + if (nChanged) + { + // Filter out eroded faceZone faces + fzs.clearAddressing(); + + for (auto& fz : fzs) + { + DynamicList<label> addressing(fz.size()); + DynamicList<bool> flipMap(fz.size()); + + forAll(fz.addressing(), i) + { + if (isZoneFace[fz.addressing()[i]]) + { + addressing.append(fz.addressing()[i]); + flipMap.append(fz.flipMap()[i]); + } + } + + //Pout<< "** on faceZone:" << fz.name() + // << " from:" << fz.size() + // << " to:" << addressing.size() << endl; + + fz.resetAddressing(addressing, flipMap); + } + } + + Info<< "Eroded " << nChanged + << " free-standing zone faces in = " + << mesh.time().cpuTimeIncrement() << " s." << endl; +} + + void Foam::snappyRefineDriver::addFaceZones ( meshRefinement& meshRefiner, @@ -3555,9 +3725,23 @@ void Foam::snappyRefineDriver::doRefine motionDict ); + // Do something about cells with refined faces on the boundary if (prepareForSnapping) { + const auto mt = meshRefiner_.meshType(); + if + ( + meshRefiner_.mesh().faceZones().size() + && ( + mt == meshRefinement::CASTELLATEDBUFFERLAYER + || mt == meshRefinement::CASTELLATEDBUFFERLAYER2 + ) + ) + { + erodeNonManifoldZoneFaces(refineParams); + } + mergePatchFaces(mergeType, refineParams, motionDict); } @@ -3580,13 +3764,61 @@ void Foam::snappyRefineDriver::doRefine << "---------------------" << nl << endl; + + /* + const bool hasBufferLayer + ( + (meshRefiner_.meshType() == meshRefinement::CASTELLATEDBUFFERLAYER) + || (meshRefiner_.meshType() == meshRefinement::CASTELLATEDBUFFERLAYER2) + ); + */ + const bool hasBufferLayer = false; + + labelList singleProcPoints; + + /* + if (hasBufferLayer) + { + //- Needed since buffer layer addition did not handle + //- inter-processor extrusion. Fixed now. This code can be removed. + + // Pick up all points on surfaces with specified buffer layers + const labelList& surfIndex = meshRefiner_.surfaceIndex(); + const auto& addLayers = meshRefiner_.surfaces().addBufferLayers(); + + bitSet isSelected(mesh.nPoints()); + forAll(surfIndex, facei) + { + const label surfi = surfIndex[facei]; + if (surfIndex[facei] != -1) + { + const label globalRegioni = + meshRefiner_.surfaces().globalRegion(surfi, 0); + if (addLayers[globalRegioni]) + { + isSelected.set(mesh.faces()[facei]); + } + } + } + syncTools::syncPointList + ( + mesh, + isSelected, + orEqOp<unsigned int>(), + 0 + ); + singleProcPoints = isSelected.sortedToc(); + } + */ + // Do final balancing. Keep zoned faces on one processor since the // snap phase will convert them to baffles and this only works for // internal faces. meshRefiner_.balance ( true, // keepZoneFaces - false, // keepBaffles + hasBufferLayer, // keepBaffles + singleProcPoints, // keepZonePoints scalarField(mesh.nCells(), 1), // cellWeights decomposer_, distributor_ diff --git a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyRefineDriver.H b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyRefineDriver.H index 17b45f4b0fff3eee0baae6bf0ee824fe66946248..ed6a105956656372123153e58e47015c36105cd1 100644 --- a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyRefineDriver.H +++ b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappyRefineDriver.H @@ -243,6 +243,12 @@ class snappyRefineDriver const dictionary& motionDict ); + //- Erode sticking-out zone faces. Bit heuristic. + void erodeNonManifoldZoneFaces + ( + const refinementParameters& refineParams + ); + //- Merge refined boundary faces (from exposing coarser cell) void mergePatchFaces ( diff --git a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.C b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.C index b38620a13f0a1f24ce4097181558c9987567bc49..7d19b0aef50325bc8723a13ba445d8d5a0ec712b 100644 --- a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.C +++ b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2015 OpenFOAM Foundation - Copyright (C) 2015-2022 OpenCFD Ltd. + Copyright (C) 2015-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -50,6 +50,10 @@ Description #include "refinementFeatures.H" #include "weightedPosition.H" #include "profiling.H" +#include "addPatchCellLayer.H" +#include "displacementMotionSolver.H" +#include "snappyLayerDriver.H" +#include "IOmanip.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // @@ -1116,6 +1120,7 @@ void Foam::snappySnapDriver::detectNearSurfaces ( const scalar planarCos, const indirectPrimitivePatch& pp, + const pointField& localPoints, const pointField& nearestPoint, const vectorField& nearestNormal, @@ -1124,7 +1129,6 @@ void Foam::snappySnapDriver::detectNearSurfaces { Info<< "Detecting near surfaces ..." << endl; - const pointField& localPoints = pp.localPoints(); const labelList& meshPoints = pp.meshPoints(); const refinementSurfaces& surfaces = meshRefiner_.surfaces(); const fvMesh& mesh = meshRefiner_.mesh(); @@ -1796,8 +1800,9 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurface const meshRefinement& meshRefiner, const labelList& globalToMasterPatch, const labelList& globalToSlavePatch, - const scalarField& snapDist, const indirectPrimitivePatch& pp, + const pointField& localPoints, + const scalarField& snapDist, pointField& nearestPoint, vectorField& nearestNormal ) @@ -1822,7 +1827,6 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurface } - const pointField& localPoints = pp.localPoints(); const refinementSurfaces& surfaces = meshRefiner.surfaces(); const fvMesh& mesh = meshRefiner.mesh(); @@ -2575,6 +2579,22 @@ void Foam::snappySnapDriver::doSnap const snapParameters& snapParams ) { + if (meshRefiner_.meshType() == meshRefinement::CASTELLATEDBUFFERLAYER2) + { + // Buffer-layer replacement for this routine + + doSnapBufferLayers + ( + snapDict, + motionDict, + mergeType, + featureCos, + planarAngle, + snapParams + ); + return; + } + addProfiling(snap, "snappyHexMesh::snap"); fvMesh& mesh = meshRefiner_.mesh(); @@ -2616,6 +2636,48 @@ void Foam::snappySnapDriver::doSnap + // Get labels of patches where optional buffer layers are added + DynamicList<label> bufPatchIDs; + if (meshRefiner_.meshType() == meshRefinement::CASTELLATEDBUFFERLAYER) + { + bufPatchIDs.setCapacity(globalToMasterPatch_.size()); + + const auto& addLayers = + meshRefiner_.surfaces().addBufferLayers(); + + // Normal patches + forAll(globalToMasterPatch_, globalRegioni) + { + if (addLayers[globalRegioni]) + { + const label masterP = + globalToMasterPatch_[globalRegioni]; + const label slaveP = + globalToSlavePatch_[globalRegioni]; + + bufPatchIDs.append(masterP); + if (slaveP != masterP) + { + bufPatchIDs.append(slaveP); + } + } + } + + // Temporary patches from faceZones + for (const auto& fz : mesh.faceZones()) + { + label mpI, spI; + surfaceZonesInfo::faceZoneType type; + if (meshRefiner_.getFaceZoneInfo(fz.name(), mpI, spI, type)) + { + bufPatchIDs.appendUniq(mpI); + bufPatchIDs.appendUniq(spI); + } + } + } + + + // faceZones of type internal const labelList internalFaceZones ( @@ -2629,11 +2691,10 @@ void Foam::snappySnapDriver::doSnap ) ); - // Create baffles (pairs of faces that share the same points) // Baffles stored as owner and neighbour face that have been created. + List<labelPair> baffles; { - List<labelPair> baffles; labelList originatingFaceZone; meshRefiner_.createZoneBaffles ( @@ -2643,8 +2704,21 @@ void Foam::snappySnapDriver::doSnap ); } - // Duplicate points on faceZones of type boundary - meshRefiner_.dupNonManifoldBoundaryPoints(); + // Duplicate points on faceZones of type boundary. Renumber baffles + // (probably not necessary - faceIDs should not change) + { + autoPtr<mapPolyMesh> map = meshRefiner_.dupNonManifoldBoundaryPoints(); + if (map) + { + const labelList& reverseFaceMap = map->reverseFaceMap(); + forAll(baffles, i) + { + label f0 = reverseFaceMap[baffles[i].first()]; + label f1 = reverseFaceMap[baffles[i].second()]; + baffles[i] = labelPair(f0, f1); + } + } + } bool doFeatures = false; @@ -2667,7 +2741,7 @@ void Foam::snappySnapDriver::doSnap // Get the labels of added patches. - labelList adaptPatchIDs(meshRefiner_.meshedPatches()); + const labelList adaptPatchIDs(meshRefiner_.meshedPatches()); @@ -2681,7 +2755,6 @@ void Foam::snappySnapDriver::doSnap ) ); - // Distance to attract to nearest feature on surface scalarField snapDist(calcSnapDistance(mesh, snapParams, ppPtr())); @@ -2727,7 +2800,7 @@ void Foam::snappySnapDriver::doSnap << mesh.time().cpuTimeIncrement() << " s\n" << nl << endl; // Extract baffles across internal faceZones (for checking mesh quality - // across + // across) labelPairList internalBaffles ( meshRefiner_.subsetBaffles @@ -2750,7 +2823,462 @@ void Foam::snappySnapDriver::doSnap meshMoverPtr() ); - // TBD. Include re-patching? + // Reset moving flag in case we do any topo changes + mesh.moving(false); + + + // Optionally add buffer layers + if (meshRefiner_.meshType() == meshRefinement::CASTELLATEDBUFFERLAYER) + { + ////- merge zone baffles (since current buffer layer insertion + ////- does not handle non-manifold edges ... TBD + //autoPtr<mapPolyMesh> mapPtr = meshRefiner_.mergeZoneBaffles + //( + // true, // internal zones + // false // baffle zones + //); + // + //if (mapPtr) + //{ + // if (debug & meshRefinement::MESH) + // { + // const_cast<Time&>(mesh.time())++; + // Info<< "Writing baffle-merged mesh to time " + // << meshRefiner_.timeName() << endl; + // meshRefiner_.write + // ( + // meshRefinement::debugType(debug), + // meshRefinement::writeType + // ( + // meshRefinement::writeLevel() + // | meshRefinement::WRITEMESH + // ), + // meshRefiner_.timeName() + // ); + // } + //} + + ////- use bufferLayer insertion on internalFaceZones + //Info<< "Adding buffer layers ..." << endl; + // + //{ + // // Remove references to pp + // meshMoverPtr.clear(); + // + // const labelList meshFaces + // ( + // mesh.faceZones().selection + // ( + // internalFaceZones + // ).sortedToc() + // ); + // ppPtr.reset + // ( + // new indirectPrimitivePatch + // ( + // IndirectList<face> + // ( + // mesh.faces(), + // meshFaces + // ), + // mesh.points() + // ) + // ); + // const pointField thickness + // ( + // wantedThickness(ppPtr(), 1e-1) //cellSizeFraction + // * PatchTools::pointNormals(mesh, ppPtr()) + // ); + // + // // Layer mesh modifier + // // - use intrusion, not extrusion + // addPatchCellLayer addLayer(mesh, true, false); + // + // // Do mesh changes : introduce point, faces, cells + // autoPtr<mapPolyMesh> mapPtr = addBufferLayers + // ( + // ppPtr(), + // -thickness, //1e-3, //cellSizeFraction, + // addLayer + // ); + // + // // Update numbering on baffles, pointToMaster. Note: uses + // // geometric tolerance - could be avoided since now we have + // // addPatchCellLayer still intact. However would like to avoid + // // use of addPatchCellLayer altogether. + // if (mapPtr) + // { + // // Invalidate extrusion (face numbering might have changed) + // ppPtr.clear(); + // + // labelList dummyPointToMaster; + // snappyLayerDriver::mapFaceZonePoints + // ( + // meshRefiner_, + // mapPtr(), + // internalBaffles, + // dummyPointToMaster + // ); + // + // if (debug & meshRefinement::MESH) + // { + // const_cast<Time&>(mesh.time())++; + // Info<< "Writing INTERNAL ZONE buffer layer mesh" + // << " to time " << meshRefiner_.timeName() << endl; + // meshRefiner_.write + // ( + // meshRefinement::debugType(debug), + // meshRefinement::writeType + // ( + // meshRefinement::writeLevel() + // | meshRefinement::WRITEMESH + // ), + // meshRefiner_.timeName() + // ); + // } + // } + //} + + ////- re-split zone baffles + //{ + // labelList originatingFaceZone; + // meshRefiner_.createZoneBaffles + // ( + // internalFaceZones, + // baffles, + // originatingFaceZone + // ); + //} + + + Info<< "Adding buffer layers ..." << endl; + + // Remove references to pp + meshMoverPtr.clear(); + // Invalidate extrusion (face numbering might have changed) + ppPtr.clear(); + + // Note: all the way up to addBufferLayers can probably be replaced + // once addPatchCellLayer can add to both sides of faceZone ... + + // Duplicate points on faceZones that layers are added to + labelList pointToMaster; + { + labelList numLayers(mesh.boundaryMesh().size(), 0); + UIndirectList<label>(numLayers, bufPatchIDs) = 1; + + autoPtr<mapPolyMesh> mapPtr = + snappyLayerDriver::dupFaceZonePoints + ( + meshRefiner_, + bufPatchIDs, // patch indices + numLayers, // num layers per patch + baffles, + pointToMaster + ); + if (mapPtr) + { + // Update numbering on any baffles + meshRefinement::mapBaffles + ( + mesh, + mapPtr().faceMap(), + internalBaffles + ); + + + //// Shrink back mesh a bit to see if there are any + //// incorrect dupFaceZonePoints ... + //if (debug & meshRefinement::MESH) + //{ + // pointField newPoints(mesh.nPoints()); + // forAll(newPoints, pointi) + // { + // const auto& pCells = mesh.pointCells()[pointi]; + // + // point avg(Zero); + // for (const label celli : pCells) + // { + // avg += mesh.cellCentres()[celli]; + // } + // avg /= pCells.size(); + // + // newPoints[pointi] = + // 0.5*mesh.points()[pointi] + // + 0.5*avg; + // } + // mesh.movePoints(newPoints); + // + // const_cast<Time&>(mesh.time())++; + // Info<< "Writing DEBUG-shrunk layer mesh to time " + // << meshRefiner_.timeName() << endl; + // meshRefiner_.write + // ( + // meshRefinement::debugType(debug), + // meshRefinement::writeType + // ( + // meshRefinement::writeLevel() + // | meshRefinement::WRITEMESH + // ), + // meshRefiner_.timeName() + // ); + //} + } + } + + //- Not needed: shrinking of mesh since now using intrusion ... + // // Move mesh back with thickness. Two purposes: + // // - avoid mapFaceZonePoints below merging points extraneously + // // (does not use addPatchCellLayer structure; uses geometric + // // tolerance) + // // - see what is happening + // { + // pointField newPoints(mesh.points()); + // const auto& mp = ppPtr().meshPoints(); + // forAll(mp, i) + // { + // newPoints[mp[i]] -= thickness[i]; + // } + // mesh.movePoints(newPoints); + // ppPtr().movePoints(mesh.points()); + // + // if (debug & meshRefinement::MESH) + // { + // const_cast<Time&>(mesh.time())++; + // Info<< "Writing shrunk buffer layer mesh to time " + // << meshRefiner_.timeName() << endl; + // meshRefiner_.write + // ( + // meshRefinement::debugType(debug), + // meshRefinement::writeType + // ( + // meshRefinement::writeLevel() + // | meshRefinement::WRITEMESH + // ), + // meshRefiner_.timeName() + // ); + // } + // } + + + { + // Layer mesh modifier + // - use intrusion, not extrusion + addPatchCellLayer addLayer(mesh, true, false); + + // Redo pp + autoPtr<indirectPrimitivePatch> bufPatchPtr + ( + meshRefinement::makePatch(mesh, bufPatchIDs) + ); + + pointField thickness + ( + wantedThickness(bufPatchPtr(), 1e-1) //cellSizeFraction + * PatchTools::pointNormals(mesh, bufPatchPtr()) + ); + + // Make sure to adhere to constraints + { + + const pointMesh& pMesh = pointMesh::New(mesh); + const labelList& mp = bufPatchPtr().meshPoints(); + + tmp<pointVectorField> tdisp + ( + meshRefinement::makeDisplacementField + ( + pMesh, + adaptPatchIDs + ) + ); + // Set internal field + UIndirectList<point>(tdisp.ref(), mp) = thickness; + // Take over onto boundary field. Needed since constraint + // patch might be before the fixedValue patches so its + // value gets overwritten + for (auto& ppf : tdisp.ref().boundaryFieldRef()) + { + ppf == ppf.patchInternalField(); + } + + // Adhere to multi-point constraints + const pointConstraints& pcs = pointConstraints::New(pMesh); + pcs.constrainDisplacement(tdisp.ref(), false); + + thickness = UIndirectList<point>(tdisp(), mp); + } + + + + // Print a bit + { + // See snappyLayerDriver::calculateLayerThickness. + const auto& pbm = mesh.boundaryMesh(); + label maxLen = 0; + for (const label patchi : bufPatchIDs) + { + maxLen = max(maxLen, label(pbm[patchi].name().size())); + } + + const int oldPrecision = Info.stream().precision(); + + Info<< nl + << setf(ios_base::left) << setw(maxLen) << "patch" + << setw(0) << " faces layers thickness[m]" << nl + << setf(ios_base::left) << setw(maxLen) << "-----" + << setw(0) << " ----- ------ ------------" << endl; + + for (const label patchi : bufPatchIDs) + { + Info<< setf(ios_base::left) << setw(maxLen) + << pbm[patchi].name() << setprecision(3) + << " " << setw(8) + << returnReduce(pbm[patchi].size(), sumOp<scalar>()) + << " " << setw(6) << 1 + << " " << setw(8) << gAverage(mag(thickness)) + << endl; + } + Info<< setprecision(oldPrecision) << endl; + } + + + // Do mesh changes : introduce point, faces, cells + autoPtr<mapPolyMesh> mapPtr = addBufferLayers + ( + bufPatchPtr(), + -thickness, //1e-3, //cellSizeFraction, + addLayer + ); + + // Update numbering on baffles, pointToMaster. Note: uses + // geometric tolerance - could be avoided since now we have + // addPatchCellLayer still intact. However would like to avoid + // use of addPatchCellLayer altogether. + if (mapPtr) + { + // Invalidate extrusion (face numbering might have changed) + ppPtr.clear(); + + snappyLayerDriver::mapFaceZonePoints + ( + meshRefiner_, + mapPtr(), + internalBaffles, + pointToMaster + ); + } + } + + + + { + // Merge duplicated points (this creates illegal cells - + // hopefully they will be smoothed out) + autoPtr<mapPolyMesh> mapPtr = + meshRefiner_.mergePoints(pointToMaster); + if (mapPtr) + { + // Invalidate extrusion (point numbering might have changed) + ppPtr.clear(); + + // Update numbering on any baffles + meshRefinement::mapBaffles + ( + mesh, + mapPtr().faceMap(), + internalBaffles + ); + // Extract baffles across internal faceZones + internalBaffles = meshRefinement::subsetBaffles + ( + mesh, + internalFaceZones, + internalBaffles + ); + + if (debug & meshRefinement::MESH) + { + const_cast<Time&>(mesh.time())++; + Info<< "Writing merged points buffer layer mesh" + << " to time " << meshRefiner_.timeName() << endl; + meshRefiner_.write + ( + meshRefinement::debugType(debug), + meshRefinement::writeType + ( + meshRefinement::writeLevel() + | meshRefinement::WRITEMESH + ), + meshRefiner_.timeName() + ); + } + } + } + + + Info<< "Inflating buffer layers ..." << endl; + + const pointMesh& pMesh = pointMesh::New(mesh); + + { + autoPtr<displacementMotionSolver> motionPtr + ( + makeMotionSolver + ( + pMesh, + snapDict, + bufPatchIDs + //patchConstraints + ) + ); + + // Solve internal displacement + tmp<pointField> tnewPoints(motionPtr->newPoints()); + + // Move points + mesh.movePoints(tnewPoints); + + // Reset moving flag to avoid problems with topo changes + mesh.moving(false); + + if (debug & meshRefinement::MESH) + { + const_cast<Time&>(mesh.time())++; + Info<< "Writing smoothed buffer layer mesh to time " + << meshRefiner_.timeName() << endl; + meshRefiner_.write + ( + meshRefinement::debugType(debug), + meshRefinement::writeType + ( + meshRefinement::writeLevel() + | meshRefinement::WRITEMESH + ), + meshRefiner_.timeName() + ); + } + } + + // Update mesh mover + ppPtr = meshRefinement::makePatch(mesh, adaptPatchIDs); + meshMoverPtr.reset + ( + new motionSmoother + ( + mesh, + ppPtr(), + adaptPatchIDs, + meshRefinement::makeDisplacementField + ( + pointMesh::New(mesh), + adaptPatchIDs + ), + motionDict, + dryRun_ + ) + ); + } //- Only if in feature attraction mode: @@ -2764,6 +3292,8 @@ void Foam::snappySnapDriver::doSnap DynamicList<label> splitFaces; //- Indices in face to split across DynamicList<labelPair> splits; + //- Patch for both sides of the face + DynamicList<labelPair> splitPatches; for (label iter = 0; iter < nFeatIter; iter++) @@ -2811,8 +3341,9 @@ void Foam::snappySnapDriver::doSnap meshRefiner_, globalToMasterPatch_, // for if strictRegionSnap globalToSlavePatch_, // for if strictRegionSnap - snapDist, pp, + pp.localPoints(), + snapDist, nearestPoint, nearestNormal @@ -2826,6 +3357,7 @@ void Foam::snappySnapDriver::doSnap ( Foam::cos(degToRad(planarAngle)),// planar cos for gaps pp, + pp.localPoints(), nearestPoint, // surfacepoint from nearest test nearestNormal, // surfacenormal from nearest test @@ -2838,10 +3370,12 @@ void Foam::snappySnapDriver::doSnap { splitFaces.clear(); splits.clear(); + splitPatches.clear(); disp = calcNearestSurfaceFeature ( snapParams, !doSplit, // alignMeshEdges + false, // no special handling for >=3 patch points iter, featureCos, scalar(iter+1)/nFeatIter, @@ -2849,13 +3383,15 @@ void Foam::snappySnapDriver::doSnap snapDist, disp, nearestNormal, - meshMover, + pp, + pp.localPoints(), patchAttraction, patchConstraints, splitFaces, - splits + splits, + splitPatches ); } @@ -2952,12 +3488,14 @@ void Foam::snappySnapDriver::doSnap { labelList oldSplitFaces(std::move(splitFaces)); List<labelPair> oldSplits(std::move(splits)); + List<labelPair> oldSplitPatches(std::move(splitPatches)); forAll(oldSplitFaces, i) { if (duplicateFace[oldSplitFaces[i]] == -1) { splitFaces.append(oldSplitFaces[i]); splits.append(oldSplits[i]); + splitPatches.append(oldSplitPatches[i]); } } nTotalSplit = returnReduce @@ -2968,10 +3506,15 @@ void Foam::snappySnapDriver::doSnap } // Update mesh + + // Reset moving flag to avoid meshPhi problems with topo changes + mesh.moving(false); + meshRefiner_.splitFacesUndo ( splitFaces, splits, + splitPatches, motionDict, duplicateFace, @@ -3047,6 +3590,10 @@ void Foam::snappySnapDriver::doSnap } + // Reset moving flag to avoid any meshPhi mapping problems + mesh.moving(false); + + // Merge any introduced baffles (from faceZones of faceType 'internal') { autoPtr<mapPolyMesh> mapPtr = meshRefiner_.mergeZoneBaffles diff --git a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.H b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.H index 5f6ed8fc1bec95b5632319d67d6ca99d5090d1f6..0ed56c89a308ce036378b473831dbad12779132c 100644 --- a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.H +++ b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriver.H @@ -41,6 +41,7 @@ SourceFiles #include "meshRefinement.H" #include "DynamicField.H" +#include "pointConstraint.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -52,6 +53,9 @@ class motionSmoother; class refinementParameters; class snapParameters; class pointConstraint; +class layerParameters; +class displacementMotionSolver; +class addPatchCellLayer; /*---------------------------------------------------------------------------*\ Class snappySnapDriver Declaration @@ -79,6 +83,17 @@ class snappySnapDriver // Snapping + //- Top-level: snap onto surface & features and add buffer layer + void doSnapBufferLayers + ( + const dictionary& snapDict, + const dictionary& motionDict, + const meshRefinement::FaceMergeType mergeType, + const scalar featureCos, + const scalar planarAngle, + const snapParameters& snapParams + ); + //- Calculates (geometric) shared points // Requires bitSet to be sized and initialised static label getCollocatedPoints @@ -106,17 +121,60 @@ class snappySnapDriver static tmp<pointField> avg ( + const polyMesh& mesh, + const bitSet& isMasterPoint, const indirectPrimitivePatch&, const pointField& ); //- Calculate displacement per patch point. Wip. - static pointField smoothLambdaMuPatchDisplacement + static tmp<pointField> smoothLambdaMuPatchDisplacement ( - const motionSmoother& meshMover, + const polyMesh& mesh, + const indirectPrimitivePatch& pp, const List<labelPair>& baffles ); + tmp<scalarField> wantedThickness + ( + const indirectPrimitivePatch& pp, + const scalar cellSizeFraction + ) const; + + //- Create/update pointMesh + const pointMesh& makePointMesh + ( + const indirectPrimitivePatch& pp, + const pointConstraintList& pointConstraints, + const word& allEdgePatchName, + const word& allPointPatchName + ) const; + + autoPtr<displacementMotionSolver> makeMotionSolver + ( + const pointMesh& pMesh, + const dictionary& snapDict, + const labelList& adaptPatchIDs + ) const; + + void setDisplacement + ( + const indirectPrimitivePatch& pp, + const pointField& patchDisp, + const labelList& adaptPatchIDs, + const pointField& points0, + pointVectorField& fld + ); + + autoPtr<mapPolyMesh> addBufferLayers + ( + const indirectPrimitivePatch& pp, + + //const scalar cellSizeFraction, + const pointField& thickness, + // Layer mesh modifier + addPatchCellLayer& addLayer + ); //- Check that face zones are synced void checkCoupledFaceZones() const; @@ -245,6 +303,7 @@ class snappySnapDriver ( const label iter, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& faceSnapDist, vectorField& faceDisp, vectorField& faceSurfaceNormal, @@ -255,6 +314,7 @@ class snappySnapDriver ( const label iter, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const vectorField& faceDisp, const vectorField& faceSurfaceNormal, @@ -284,6 +344,7 @@ class snappySnapDriver const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& rawPatchAttraction, @@ -302,6 +363,7 @@ class snappySnapDriver const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const List<List<point>>& pointFaceCentres, @@ -376,6 +438,7 @@ class snappySnapDriver const scalar concaveCos, const scalar minAreaFraction, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const vectorField& patchAttraction, const List<pointConstraint>& patchConstraints, const vectorField& nearestAttraction, @@ -395,13 +458,16 @@ class snappySnapDriver const scalar minAreaFraction, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const vectorField& nearestAttraction, const vectorField& nearestNormal, + const List<labelList>& pointFacePatchID, vectorField& patchAttraction, List<pointConstraint>& patchConstraints, DynamicList<label>& splitFaces, - DynamicList<labelPair>& splits + DynamicList<labelPair>& splits, + DynamicList<labelPair>& splitPatches ) const; //- Avoid attraction across face diagonal since would @@ -411,6 +477,7 @@ class snappySnapDriver const label iter, const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, vectorField& patchAttraction, List<pointConstraint>& patchConstraints ) const; @@ -457,6 +524,7 @@ class snappySnapDriver const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& nearestDisp, const label pointi, @@ -481,6 +549,7 @@ class snappySnapDriver const label iter, const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& nearestDisp, @@ -500,8 +569,10 @@ class snappySnapDriver const label iter, const scalar featureCos, const bool multiRegionFeatureSnap, + const bool strictRegionFeatureSnap, // special feat-point const indirectPrimitivePatch&, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& nearestDisp, @@ -528,6 +599,7 @@ class snappySnapDriver const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, // Feature-point to pp point @@ -545,6 +617,7 @@ class snappySnapDriver const label iter, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, // Feature-point to pp point @@ -570,6 +643,7 @@ class snappySnapDriver const bool isRegionEdge, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const label pointi, const point& estimatedPt, @@ -591,6 +665,7 @@ class snappySnapDriver const bool isRegionEdge, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const label pointi, const point& estimatedPt, @@ -610,6 +685,7 @@ class snappySnapDriver ( const label iter, const bool multiRegionFeatureSnap, + const bool strictRegionFeatureSnap, const bool detectBaffles, const bool baffleFeaturePoints, @@ -620,6 +696,7 @@ class snappySnapDriver const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& nearestDisp, const vectorField& nearestNormal, @@ -638,6 +715,7 @@ class snappySnapDriver const label iter, const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& nearestAttraction, @@ -653,18 +731,21 @@ class snappySnapDriver ( const snapParameters& snapParams, const bool alignMeshEdges, + const bool strictRegionFeatureSnap, //points on >=3 patches const label iter, const scalar featureCos, const scalar featureAttract, const scalarField& snapDist, const vectorField& nearestDisp, const vectorField& nearestNormal, - motionSmoother& meshMover, + const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, vectorField& patchAttraction, List<pointConstraint>& patchConstraints, DynamicList<label>& splitFaces, - DynamicList<labelPair>& splits + DynamicList<labelPair>& splits, + DynamicList<labelPair>& splitPatches ) const; @@ -730,7 +811,8 @@ public: void detectNearSurfaces ( const scalar planarCos, - const indirectPrimitivePatch&, + const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const pointField& nearestPoint, const vectorField& nearestNormal, vectorField& disp @@ -745,8 +827,9 @@ public: const meshRefinement& meshRefiner, const labelList& globalToMasterPatch, const labelList& globalToSlavePatch, + const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, - const indirectPrimitivePatch&, pointField& nearestPoint, vectorField& nearestNormal ); @@ -790,6 +873,7 @@ public: const labelList& preserveFaces ); + //- Snap onto surface & features void doSnap ( const dictionary& snapDict, diff --git a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriverBufferLayers.C b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriverBufferLayers.C new file mode 100644 index 0000000000000000000000000000000000000000..e722909b518b042df9653d224d346616b52e0f99 --- /dev/null +++ b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriverBufferLayers.C @@ -0,0 +1,2019 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Description + All to do with snapping to the surface with buffer layer + +\*----------------------------------------------------------------------------*/ + +#include "snappySnapDriver.H" +#include "polyTopoChange.H" +#include "syncTools.H" +#include "fvMesh.H" +#include "Time.H" +#include "OBJstream.H" +#include "mapPolyMesh.H" +#include "snapParameters.H" +#include "unitConversion.H" +#include "PatchTools.H" +#include "profiling.H" +#include "addPatchCellLayer.H" +#include "snappyLayerDriver.H" +#include "weightedPosition.H" + +#include "localPointRegion.H" +#include "pointConstraints.H" +#include "displacementMotionSolver.H" +#include "meshPointPatch.H" +#include "processorPointPatch.H" +#include "dummyTransform.H" +#include "faceSet.H" +#include "motionSmoother.H" +#include "tetDecomposer.H" +#include "tetMatcher.H" + +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // + +Foam::tmp<Foam::pointField> Foam::snappySnapDriver::avg +( + const polyMesh& mesh, + const bitSet& isMasterPoint, + const indirectPrimitivePatch& pp, + const pointField& localPoints +) +{ + const labelListList& pointEdges = pp.pointEdges(); + const labelList& meshPoints = pp.meshPoints(); + const edgeList& edges = pp.edges(); + + Field<weightedPosition> wps + ( + pointEdges.size(), + pTraits<weightedPosition>::zero + ); + + // Calculate sum of all contributions (so not positions) + forAll(pointEdges, verti) + { + weightedPosition& wp = wps[verti]; + for (const label edgei : pointEdges[verti]) + { + const label otherVerti = edges[edgei].otherVertex(verti); + + if (isMasterPoint[meshPoints[otherVerti]]) + { + wp.first() += 1.0; + wp.second() += localPoints[otherVerti]; + } + } + } + + weightedPosition::syncPoints(mesh, meshPoints, wps); + + tmp<pointField> tavg(new pointField(wps.size())); + pointField& avg = tavg.ref(); + + forAll(wps, verti) + { + const weightedPosition& wp = wps[verti]; + + if (mag(wp.first()) < VSMALL) + { + // Set to zero? + avg[verti] = Zero; + } + else + { + avg[verti] = wp.second()/wp.first(); + } + } + + return tavg; +} + + +Foam::tmp<Foam::pointField> +Foam::snappySnapDriver::smoothLambdaMuPatchDisplacement +( + const polyMesh& mesh, + const indirectPrimitivePatch& pp, + const List<labelPair>& baffles +) +{ + const bitSet isMasterPoint(syncTools::getMasterPoints(mesh)); + + pointField newLocalPoints(pp.localPoints()); + + const label iters = 90; + const scalar lambda = 0.33; + const scalar mu = 0.34; + + for (label iter = 0; iter < iters; iter++) + { + // Lambda + newLocalPoints = + (1 - lambda)*newLocalPoints + + lambda*avg(mesh, isMasterPoint, pp, newLocalPoints); + + // Mu + newLocalPoints = + (1 + mu)*newLocalPoints + - mu*avg(mesh, isMasterPoint, pp, newLocalPoints); + } + return newLocalPoints-pp.localPoints(); +} + + +Foam::tmp<Foam::scalarField> +Foam::snappySnapDriver::wantedThickness +( + const indirectPrimitivePatch& pp, + const scalar cellSizeFraction +) const +{ + fvMesh& mesh = meshRefiner_.mesh(); + + const labelList& cellLevel = meshRefiner_.meshCutter().cellLevel(); + const labelList& owner = mesh.faceOwner(); + + // Undistorted edge length + const scalar edge0Len = + meshRefiner_.meshCutter().level0EdgeLength(); + + + tmp<scalarField> tthickness(tmp<scalarField>::New(pp.nPoints())); + scalarField& thickness = tthickness.ref(); + + labelList maxPointLevel(pp.nPoints(), labelMin); + + forAll(pp, i) + { + label ownLevel = cellLevel[owner[pp.addressing()[i]]]; + + const face& f = pp.localFaces()[i]; + + forAll(f, fp) + { + maxPointLevel[f[fp]] = max(maxPointLevel[f[fp]], ownLevel); + } + } + + syncTools::syncPointList + ( + mesh, + pp.meshPoints(), + maxPointLevel, + maxEqOp<label>(), + labelMin // null value + ); + + forAll(thickness, pointi) + { + const scalar edgeLen = edge0Len/(1<<maxPointLevel[pointi]); + thickness[pointi] = cellSizeFraction*edgeLen; + } + return tthickness; +} + + +//const Foam::pointMesh& Foam::snappySnapDriver::makePointMesh +//( +// const indirectPrimitivePatch& pp, +// const pointConstraintList& pointConstraints, +// const word& allEdgePatchName, +// const word& allPointPatchName +//) const +//{ +// fvMesh& mesh = meshRefiner_.mesh(); +// +// if (pointConstraints.size() != pp.nPoints()) +// { +// FatalErrorInFunction<< "pointConstraints:" << pointConstraints.size() +// << " pp:" << pp.nPoints() << exit(FatalError); +// } +// +// +// // Expand pointConstraints to all meshPoints +// pointConstraintList meshPointConstraints(mesh.nPoints()); +// UIndirectList<pointConstraint>(meshPointConstraints, pp.meshPoints()) = +// pointConstraints; +// +// const auto combineConstraints = [&] +// ( +// pointConstraint& x, +// const pointConstraint& y +// ) +// { +// x.combine(y); +// }; +// +// +// syncTools::syncPointList +// ( +// mesh, +// meshPointConstraints, +// combineConstraints, +// pointConstraint(), +// dummyTransform() +// ); +// +// +// // Sort point constraints: +// // - 0 : does not happen? +// // - 1 : attract to surface +// // - 2 : attract to feature edge +// // - 3 : attract to feature point +// +// DynamicList<label> featEdgeMeshPoints(pointConstraints.size()); +// DynamicList<label> featPointMeshPoints(pointConstraints.size()); +// forAll(meshPointConstraints, pointi) +// { +// if (meshPointConstraints[pointi].first() == 2) +// { +// featEdgeMeshPoints.append(pointi); +// } +// else if (meshPointConstraints[pointi].first() == 3) +// { +// featPointMeshPoints.append(pointi); +// } +// } +// +// // Lookup / construct (from polyPatches) the pointMesh +// auto& pMesh = pointMesh::New(meshRefiner_.mesh()); +// +// pointBoundaryMesh& pointBm = +// const_cast<pointBoundaryMesh&>(pMesh.boundary()); +// +// // Check if already has constraint patches +// label edgePatchi = pointBm.findPatchID(allEdgePatchName); +// if (edgePatchi != -1) +// { +// // Delete patch. TBD: clear patchGroup +// pointBm.set(edgePatchi, nullptr); +// } +// label pointPatchi = pointBm.findPatchID(allPointPatchName); +// if (pointPatchi != -1) +// { +// // Delete patch. TBD: clear patchGroup +// pointBm.set(pointPatchi, nullptr); +// } +// +// // Add additional point patches in order: +// // - polyPatch based +// // - featEdge-based constraints +// // - featPoint-based constraints (so can override edge-based constraints) +// // - processor boundaries (or should this be all constraint patches, e.g. +// // symmetry plane. Note: hopefully this is already handled in the +// // feature extraction ...) +// +// if (returnReduce(featEdgeMeshPoints.size(), sumOp<label>())) +// { +// if (edgePatchi != -1) +// { +// // Override patch +// const_cast<pointBoundaryMesh&>(pointBm).set +// ( +// edgePatchi, +// new meshPointPatch +// ( +// allEdgePatchName, +// featEdgeMeshPoints, +// List<pointConstraint> +// ( +// meshPointConstraints, +// featEdgeMeshPoints +// ), +// edgePatchi, +// pointBm, +// meshPointPatch::typeName +// ) +// ); +// } +// else +// { +// // Append +// const_cast<pointBoundaryMesh&>(pointBm).push_back +// ( +// new meshPointPatch +// ( +// allEdgePatchName, +// featEdgeMeshPoints, +// List<pointConstraint> +// ( +// meshPointConstraints, +// featEdgeMeshPoints +// ), +// pointBm.size(), +// pointBm, +// meshPointPatch::typeName +// ) +// ); +// } +// } +// if (returnReduce(featPointMeshPoints.size(), sumOp<label>())) +// { +// if (pointPatchi != -1) +// { +// // Override patch +// const_cast<pointBoundaryMesh&>(pointBm).set +// ( +// pointPatchi, +// new meshPointPatch +// ( +// allPointPatchName, +// featPointMeshPoints, +// List<pointConstraint> +// ( +// meshPointConstraints, +// featPointMeshPoints +// ), +// pointPatchi, +// pointBm, +// meshPointPatch::typeName +// ) +// ); +// } +// else +// { +// // Append +// const_cast<pointBoundaryMesh&>(pointBm).push_back +// ( +// new meshPointPatch +// ( +// allPointPatchName, +// featPointMeshPoints, +// List<pointConstraint> +// ( +// meshPointConstraints, +// featPointMeshPoints +// ), +// pointBm.size(), +// pointBm, +// meshPointPatch::typeName +// ) +// ); +// } +// } +// +// // Shuffle into order +// labelList oldToNew(pointBm.size()); +// label newPatchi = 0; +// forAll(pointBm, patchi) +// { +// if (!isA<processorPointPatch>(pointBm[patchi])) +// { +// oldToNew[patchi] = newPatchi++; +// } +// } +// forAll(pointBm, patchi) +// { +// if (isA<processorPointPatch>(pointBm[patchi])) +// { +// oldToNew[patchi] = newPatchi++; +// } +// } +// pointBm.reorder(oldToNew, true); +// +// return pMesh; +//} + + +Foam::autoPtr<Foam::displacementMotionSolver> +Foam::snappySnapDriver::makeMotionSolver +( + const pointMesh& pMesh, + const dictionary& snapDict, + const labelList& adaptPatchIDs +// const pointConstraintList& pointConstraints, +) const +{ + fvMesh& mesh = meshRefiner_.mesh(); + + tmp<pointVectorField> tallDisp + ( + meshRefinement::makeDisplacementField + ( + pMesh, + adaptPatchIDs + ) + ); + + // Make sure the pointDisplacement is not registered (since + // displacementMotionSolver itself holds it) + tallDisp.ref().checkOut(); + + autoPtr<displacementMotionSolver> motionPtr + ( + displacementMotionSolver::New + ( + snapDict.get<word>("solver"), + mesh, + IOdictionary + ( + IOobject + ( + "motionSolverDict", + pMesh.thisDb().time().constant(), + pMesh.thisDb(), + IOobject::NO_READ, + IOobject::NO_WRITE, + false + ), + snapDict + ), + tallDisp(), + pointIOField + ( + IOobject + ( + "points0", + pMesh.thisDb().time().constant(), + polyMesh::meshSubDir, + pMesh.thisDb(), + IOobject::NO_READ, + IOobject::NO_WRITE, + false + ), + mesh.points() + ) + ) + ); + return motionPtr; +} + + +void Foam::snappySnapDriver::setDisplacement +( + const indirectPrimitivePatch& pp, + const pointField& patchDisp, // displacement w.r.t. current mesh + const labelList& adaptPatchIDs, + const pointField& points0, + pointVectorField& fld // displacement w.r.t. points0 +) +{ + const pointMesh& pMesh = fld.mesh(); + const pointField& points = pMesh().points(); + const labelList& meshPoints = pp.meshPoints(); + + if + ( + (points0.size() != points.size()) + || (points0.size() != fld.size()) + || (points0.size() != pMesh.size()) + || (meshPoints.size() != patchDisp.size()) + ) + { + FatalErrorInFunction + << "Sizing :" + << " points0.size():" << points0.size() + << " points.size():" << points.size() + << " fld.size():" << fld.size() + << " patchDisp.size():" << patchDisp.size() + << " meshPoints.size():" << meshPoints.size() + << " mesh.nPoints():" << pMesh.size() + << exit(FatalError); + } + + + // Problem is that the patchDisp might not be consistent (parallel etc) + // across shared points so expand to mesh points + + pointField meshDisp(pMesh.size(), Zero); + + forAll(meshPoints, patchPointi) + { + const label meshPointi = meshPoints[patchPointi]; + + meshDisp[meshPointi] = + patchDisp[patchPointi]+points[meshPointi]-points0[meshPointi]; + } + + // Assign to bc + pointVectorField::Boundary& bfld = fld.boundaryFieldRef(); + for (const label patchi : adaptPatchIDs) + { + bfld[patchi] == pointField(meshDisp, bfld[patchi].patch().meshPoints()); + } + + // Apply multi-patch constraints. Problem: most patches originate from + // meshing so are type 'wall'. The pointConstraints are only on any points + // remaining from the starting mesh. + const pointConstraints& pcs = pointConstraints::New(pMesh); + pcs.constrainDisplacement(fld, true); +} + + +Foam::autoPtr<Foam::mapPolyMesh> Foam::snappySnapDriver::addBufferLayers +( + const indirectPrimitivePatch& pp, + const pointField& thickness, + // Layer mesh modifier + addPatchCellLayer& addLayer +) +{ + fvMesh& mesh = meshRefiner_.mesh(); + + // Introduce single layer of cells. Straight from snappyLayerDriver + + // Global face indices engine + const globalIndex globalFaces(mesh.nFaces()); + + // Determine extrudePatch.edgeFaces in global numbering (so across + // coupled patches). This is used only to string up edges + // between coupled + // faces (all edges between same (global)face indices get extruded). + labelListList edgeGlobalFaces + ( + addPatchCellLayer::globalEdgeFaces + ( + mesh, + globalFaces, + pp + ) + ); + + + + // Use global edge - face connectivity to + // - disable any non-manifold extrusions + // - boundary edges can be extruded - is handled by addPatchCellLayer + // - what about setting numLayers to 0 to disable layers? Should that + // affect buffer layer addition? Guess not since buffer layer is + // to aid snapping ... + labelList nFaceLayers(pp.size(), 1); + labelList nPointLayers(pp.nPoints(), 1); + forAll(edgeGlobalFaces, edgei) + { + if (edgeGlobalFaces[edgei].size() > 2) + { + const edge& e = pp.edges()[edgei]; + const edge meshE(pp.meshPoints()[e[0]], pp.meshPoints()[e[1]]); + + nPointLayers[e[0]] = 0; + nPointLayers[e[1]] = 0; + } + //else if (edgeGlobalFaces[edgei].size() == 1) + //{ + // const edge& e = pp.edges()[edgei]; + // const edge meshE(pp.meshPoints()[e[0]], pp.meshPoints()[e[1]]); + // + // nPointLayers[e[0]] = 0; + // nPointLayers[e[1]] = 0; + //} + else if (edgeGlobalFaces[edgei].size() == 0) + { + const edge& e = pp.edges()[edgei]; + const edge meshE(pp.meshPoints()[e[0]], pp.meshPoints()[e[1]]); + FatalErrorInFunction << "Edge:" << meshE + << " At:" << meshE.line(mesh.points()) + << " has no faces!" << exit(FatalError); + } + } + + syncTools::syncPointList + ( + mesh, + pp.meshPoints(), + nPointLayers, + minEqOp<label>(), + labelMax // null value + ); + + forAll(pp.localFaces(), facei) + { + const face& f = pp.localFaces()[facei]; + const UIndirectList<label> pLayers(nPointLayers, f); + if (!pLayers.found(label(1))) + { + nFaceLayers[facei] = 0; + } + } + + + + // Determine patches for extruded boundary edges. Adds any + // additional processor patches (since extruding coupled edge can cause + // additional connectivity) + + labelList edgePatchID; + labelList edgeZoneID; + boolList edgeFlip; + labelList inflateFaceID; + snappyLayerDriver::determineSidePatches + ( + meshRefiner_, + globalFaces, + edgeGlobalFaces, + pp, + + edgePatchID, + edgeZoneID, + edgeFlip, + inflateFaceID + ); + + + // Mesh topo change engine. Insert current mesh. + polyTopoChange meshMod(mesh); + + + // Add topo regardless of whether extrudeStatus is extruderemove. + // Not add layer if patchDisp is zero. + + addLayer.setRefinement + ( + globalFaces, + edgeGlobalFaces, + + scalarField(pp.nPoints(), 1), // expansion ratio + pp, + bitSet(pp.size()), // no flip + + edgePatchID, // boundary patch for extruded boundary edges + edgeZoneID, // zone for extruded edges + edgeFlip, + inflateFaceID, + + + labelList(0), // exposed patchIDs, not used for adding layers + nFaceLayers, + nPointLayers, + thickness, //patchAttraction, + + meshMod + ); + + // Apply the stored topo changes to the current mesh. + autoPtr<mapPolyMesh> mapPtr = meshMod.changeMesh(mesh, false); + mapPolyMesh& map = *mapPtr; + + // Update fields + mesh.updateMesh(map); + + // Move mesh (since morphing does not do this) + if (map.hasMotionPoints()) + { + mesh.movePoints(map.preMotionPoints()); + } + else + { + // Hack to remove meshPhi - mapped incorrectly. TBD. + mesh.clearOut(); + } + + // Reset the instance for if in overwrite mode + mesh.setInstance(meshRefiner_.timeName()); + + // Update numbering on layer + addLayer.updateMesh + ( + map, + identity(pp.size()), + identity(pp.nPoints()) + ); + + // Update intersections + const labelListList addedCells(addLayer.addedCells()); + bitSet isChangedFace(mesh.nFaces()); + for (const labelList& faceToCells : addedCells) + { + for (const label celli : faceToCells) + { + isChangedFace.set(mesh.cells()[celli]); + } + } + meshRefiner_.updateMesh(map, isChangedFace.toc()); + + if (debug & meshRefinement::MESH) + { + const_cast<Time&>(mesh.time())++; + Info<< "Writing mesh-with-layer to time " + << meshRefiner_.timeName() << endl; + meshRefiner_.write + ( + meshRefinement::debugType(debug), + meshRefinement::writeType + ( + meshRefinement::writeLevel() + | meshRefinement::WRITEMESH + ), + meshRefiner_.timeName() + ); + } + return mapPtr; +} + + +void Foam::snappySnapDriver::doSnapBufferLayers +( + const dictionary& snapDict, + const dictionary& motionDict, + const meshRefinement::FaceMergeType mergeType, + const scalar featureCos, + const scalar planarAngle, + const snapParameters& snapParams +) +{ + addProfiling(snap, "snappyHexMesh::snap"); + fvMesh& mesh = meshRefiner_.mesh(); + + Info<< nl + << "Morphing phase" << nl + << "--------------" << nl + << endl; + + + // Name of pointPatch for any points attracted to feature edges + //const word allEdgePatchName("boundaryEdges"); + // Name of pointPatch for any points attracted to feature points + //const word allPointPatchName("boundaryPoints"); + + + // faceZone handling + // ~~~~~~~~~~~~~~~~~ + // + // We convert all faceZones into baffles during snapping so we can use + // a standard mesh motion (except for the mesh checking which for baffles + // created from internal faces should check across the baffles). The state + // is stored in two variables: + // baffles : pairs of boundary faces + // duplicateFace : from mesh face to its baffle colleague (or -1 for + // normal faces) + // There are three types of faceZones according to the faceType property: + // + // internal + // -------- + // - baffles: need to be checked across + // - duplicateFace: from face to duplicate face. Contains + // all faces on faceZone to prevents merging patch faces. + // + // baffle + // ------ + // - baffles: no need to be checked across + // - duplicateFace: contains all faces on faceZone to prevent + // merging patch faces. + // + // boundary + // -------- + // - baffles: no need to be checked across. Also points get duplicated + // so will no longer be baffles + // - duplicateFace: contains no faces on faceZone since both sides can + // merge faces independently. + + + + // faceZones of type internal + const labelList internalFaceZones + ( + meshRefiner_.getZones + ( + List<surfaceZonesInfo::faceZoneType> + ( + 1, + surfaceZonesInfo::INTERNAL + ) + ) + ); + + + // Create baffles (pairs of faces that share the same points) + // Baffles stored as owner and neighbour face that have been created. + { + List<labelPair> baffles; + labelList originatingFaceZone; + meshRefiner_.createZoneBaffles + ( + identity(mesh.faceZones().size()), + baffles, + originatingFaceZone + ); + } + + + // Duplicate points on faceZones of type boundary + meshRefiner_.dupNonManifoldBoundaryPoints(); + + // Extract baffles across internal faceZones (for checking mesh quality + // across) + labelPairList internalBaffles + ( + meshRefiner_.subsetBaffles + ( + mesh, + internalFaceZones, + localPointRegion::findDuplicateFacePairs(mesh) + ) + ); + + + bool doFeatures = true; //false; + label nFeatIter = 1; + if (snapParams.nFeatureSnap() > 0) + { + doFeatures = true; + + if (!dryRun_) + { + nFeatIter = snapParams.nFeatureSnap(); + } + + Info<< "Snapping to features in " << nFeatIter + << " iterations ..." << endl; + } + + // Get the labels of added patches. + const labelList adaptPatchIDs(meshRefiner_.meshedPatches()); + + autoPtr<indirectPrimitivePatch> ppPtr + ( + meshRefinement::makePatch + ( + mesh, + adaptPatchIDs + ) + ); + + + if (debug) + { + const fileName dir(mesh.time().path()); + mkDir(dir); + OBJstream str + ( + dir + / "pp_initial_" + meshRefiner_.timeName() + ".obj" + ); + str.write + ( + ppPtr().localFaces(), + ppPtr().localPoints(), + false + ); + } + + + // Maximum distance to attract to nearest feature on surface + scalarField snapDist(calcSnapDistance(mesh, snapParams, ppPtr())); + + + // Smooth patch points. Equivalent of preSmoothPatch but using mesh + // motion solver. + vectorField patchDisp + ( + smoothLambdaMuPatchDisplacement + ( + mesh, + ppPtr(), + internalBaffles + ) + ); + pointField ppLocalPoints(ppPtr().localPoints()+patchDisp); + + const bool smoothInternal = true; + if (smoothInternal) + { + // Create pointMesh with the correct patches + //const pointMesh& pMesh = makePointMesh + //( + // ppPtr(), + // patchConstraints, + // allEdgePatchName, + // allPointPatchName + //); + const pointMesh& pMesh = pointMesh::New(mesh); + + autoPtr<displacementMotionSolver> motionPtr + ( + makeMotionSolver + ( + pMesh, + snapDict, + adaptPatchIDs + //patchConstraints + ) + ); + + // Insert as bc to motionSmoother. Note that this takes displacement + // relative to points0 + setDisplacement + ( + ppPtr(), + patchDisp, + adaptPatchIDs, + motionPtr().points0(), + motionPtr().pointDisplacement() + ); + // Solve internal displacement + tmp<pointField> tnewPoints(motionPtr->newPoints()); + + // Move points + mesh.movePoints(tnewPoints); + + // Update pp for new mesh points. Ok as long as we also update geometry + // and wanted displacement (usually zero if mesh motion has succeeded) + ppLocalPoints = pointField(mesh.points(), ppPtr().meshPoints()); + patchDisp -= (ppLocalPoints-ppPtr().localPoints()); + + if (debug & meshRefinement::MESH) + { + const_cast<Time&>(mesh.time())++; + Info<< "Writing smoothed mesh to time " + << meshRefiner_.timeName() << endl; + meshRefiner_.write + ( + meshRefinement::debugType(debug), + meshRefinement::writeType + ( + meshRefinement::writeLevel() + | meshRefinement::WRITEMESH + ), + meshRefiner_.timeName() + ); + } + } + + + // Construct iterative mesh mover. + Info<< "Constructing mesh displacer ..." << endl; + Info<< "Using mesh parameters " << motionDict << nl << endl; + + autoPtr<displacementMotionSolver> motionPtr + ( + makeMotionSolver + ( + pointMesh::New(mesh), + snapDict, + adaptPatchIDs + //patchConstraints + ) + ); + autoPtr<motionSmoother> meshMoverPtr + ( + new motionSmoother + ( + mesh, + ppPtr(), + adaptPatchIDs, + motionPtr().pointDisplacement(), + motionDict, + dryRun_ + ) + ); + + + // Check initial mesh + Info<< "Checking initial mesh ..." << endl; + labelHashSet wrongFaces(mesh.nFaces()/100); + motionSmoother::checkMesh(false, mesh, motionDict, wrongFaces, dryRun_); + const label nInitErrors = returnReduce + ( + wrongFaces.size(), + sumOp<label>() + ); + + Info<< "Detected " << nInitErrors << " illegal faces" + << " (concave, zero area or negative cell pyramid volume)" + << endl; + + + Info<< "Checked initial mesh in = " + << mesh.time().cpuTimeIncrement() << " s\n" << nl << endl; + + + + //- Only if in feature attraction mode: + // Point on nearest feature + vectorField patchFeaturePoint(ppPtr().nPoints(), Zero); + // Constraints at feature + List<pointConstraint> patchConstraints(ppPtr().nPoints()); + + for (label iter = 0; iter < nFeatIter; iter++) + { + Info<< nl + << "Morph iteration " << iter << nl + << "-----------------" << endl; + + + // Calculate displacement at every patch point if we need it: + // - if automatic near-surface detection + // - if face splitting active + pointField nearestPoint(ppPtr().nPoints(), vector::max); + vectorField nearestNormal(ppPtr().nPoints(), Zero); + + + const bool strictRegionSnap + ( + iter < nFeatIter/2 + ? snapParams.strictRegionSnap() + : Switch(true) + ); + + vectorField disp = calcNearestSurface + ( + strictRegionSnap, // attract points to region only + meshRefiner_, + globalToMasterPatch_, // for if strictRegionSnap + globalToSlavePatch_, // for if strictRegionSnap + ppPtr(), + ppLocalPoints, + snapDist, // max snap distance + + nearestPoint, + nearestNormal + ); + + // Override displacement at thin gaps + if (snapParams.detectNearSurfacesSnap()) + { + detectNearSurfaces + ( + Foam::cos(degToRad(planarAngle)),// planar cos for gaps + ppPtr(), + ppLocalPoints, + nearestPoint, // surfacepoint from nearest test + nearestNormal, // surfacenormal from nearest test + + disp + ); + } + + // Override displacement with feature edge attempt + if (doFeatures) + { + //- Any faces to split + DynamicList<label> splitFaces; + //- Indices in face to split across + DynamicList<labelPair> splits; + //- Patches for split face + DynamicList<labelPair> splitPatches; + + // Offset to project to nearest feature. Use in combination with + // patchConstraints. + vectorField patchAttraction; + + disp = calcNearestSurfaceFeature + ( + snapParams, + false, // no alignMeshEdges + true, // check >=3 patch points + + iter, + featureCos, + scalar(iter+1)/nFeatIter, + + snapDist, + disp, // nearest surface + nearestNormal, + ppPtr(), + ppLocalPoints, + + patchAttraction, // offset wrt ppLocalPoints to nearest + // feature edge/point + patchConstraints, // feature type + constraint + + splitFaces, + splits, + splitPatches + ); + + + // Freeze points on exposed points/faces + freezeExposedPoints + ( + meshRefiner_, + "frozenFaces", // faceZone name + "frozenPoints", // pointZone name + ppPtr(), + disp + ); + + patchFeaturePoint = ppLocalPoints+patchAttraction; + + if (debug) + { + OBJstream str + ( + mesh.time().path() + / "calcNearestSurfaceFeature" + + meshRefiner_.timeName() + + ".obj" + ); + forAll(ppLocalPoints, pointi) + { + const point& pt = ppLocalPoints[pointi]; + str.write(linePointRef(pt, pt+disp[pointi])); + } + } + + + + // Split any faces: + // - does not move/add any points + // - tries to move new faces to correct patch + + if (returnReduce(splitFaces.size(), sumOp<label>())) + { + polyTopoChange meshMod(mesh); + + // Insert the mesh changes + meshRefiner_.doSplitFaces + ( + splitFaces, + splits, + splitPatches, + meshMod + ); + + // Save old meshPoints before changing mesh + const Map<label> oldMeshPointMap(ppPtr->meshPointMap()); + Pout<< "old pp points:" << ppPtr->nPoints() + << " oldMeshPointMap:" << oldMeshPointMap.size() + << endl; + + // Remove any unnecessary fields + meshMoverPtr.clear(); + motionPtr.clear(); + ppPtr.clear(); + mesh.clearOut(); + mesh.moving(false); + + // Change the mesh (no inflation) + autoPtr<mapPolyMesh> mapPtr = meshMod.changeMesh(mesh, false); + mapPolyMesh& map = *mapPtr; + + // Update fields + mesh.updateMesh(map); + + // Move mesh (since morphing might not do this) + if (map.hasMotionPoints()) + { + mesh.movePoints(map.preMotionPoints()); + } + else + { + mesh.clearOut(); + } + + // Reset the instance for if in overwrite mode + mesh.setInstance(meshRefiner_.timeName()); + meshRefiner_.setInstance(mesh.facesInstance()); + + // Update intersections on split faces + { + DynamicList<label> changedFaces(splitFaces.size()); + Map<label> splitFacesMap(splitFaces.size()); + forAll(splitFaces, i) + { + splitFacesMap.insert(splitFaces[i], i); + } + forAll(map.faceMap(), facei) + { + if (splitFacesMap.find(map.faceMap()[facei])) + { + changedFaces.append(facei); + } + } + // Update intersections on changed faces + meshRefiner_.updateMesh + ( + map, + meshRefiner_.growFaceCellFace(changedFaces) + ); + } + + if (debug&meshRefinement::MESH) + { + const_cast<Time&>(mesh.time())++; + Info<< "Writing split-faces mesh to time " + << meshRefiner_.timeName() << endl; + meshRefiner_.write + ( + meshRefinement::debugType(debug), + meshRefinement::writeType + ( + meshRefinement::writeLevel() + | meshRefinement::WRITEMESH + ), + mesh.time().path()/meshRefiner_.timeName() + ); + } + + + + // Update local mesh data + // ~~~~~~~~~~~~~~~~~~~~~~ + + Info<< "Updating for face-splitting" << endl; + + // baffles + forAll(internalBaffles, i) + { + labelPair& baffle = internalBaffles[i]; + baffle.first() = map.reverseFaceMap()[baffle.first()]; + baffle.second() = map.reverseFaceMap()[baffle.second()]; + } + + // re-do patch (since faces might have been split) + ppPtr = meshRefinement::makePatch(mesh, adaptPatchIDs); + motionPtr = makeMotionSolver + ( + pointMesh::New(mesh), + snapDict, + adaptPatchIDs + //patchConstraints + ); + meshMoverPtr.reset + ( + new motionSmoother + ( + mesh, + ppPtr(), + adaptPatchIDs, + motionPtr().pointDisplacement(), + motionDict, + dryRun_ + ) + ); + + const auto& mp = ppPtr->meshPoints(); + // pointMap (new-to-old) for pp points. Note: no points changed + // but local point ordering might have changed since faces + // split. + labelList ppMap(mp.size()); + forAll(mp, i) + { + ppMap[i] = oldMeshPointMap[mp[i]]; + } + // patchDisp + meshRefinement::updateList(ppMap, vector::zero, patchDisp); + // snapDist + meshRefinement::updateList(ppMap, scalar(0), snapDist); + // patchFeaturePoint + meshRefinement::updateList + ( + ppMap, + vector::zero, + patchFeaturePoint + ); + // patchConstraints + meshRefinement::updateList + ( + ppMap, + pointConstraint(), + patchConstraints + ); +// // nearestPoint +// meshRefinement::updateList(ppMap, vector::zero, nearestPoint); +// // nearestNormal +// meshRefinement::updateList(ppMap, vector::zero, nearestNormal); + // disp + meshRefinement::updateList(ppMap, vector::zero, disp); + // ppLocalPoints + meshRefinement::updateList(ppMap, vector::zero, ppLocalPoints); + + Info<< "DONE Updating for face-splitting" << endl; + } + } + + + // Attract/slide the mesh a bit + { + //// Create pointMesh with the correct patches + //// - points on single polyPatches stay as is + //// - points on two polyPatches go to allEdgePatchName + //// - points on >two polyPatches go to allPointPatchName + //const pointMesh& pMesh = makePointMesh + //( + // ppPtr(), + // patchConstraints, + // allEdgePatchName, + // allPointPatchName + //); + //const pointMesh& pMesh = pointMesh::New(mesh); + // + //autoPtr<displacementMotionSolver> motionPtr + //( + // makeMotionSolver + // ( + // pMesh, + // snapDict, + // adaptPatchIDs + // //patchConstraints + // ) + //); + + // Insert as bc to motionSmoother. Note that this takes displacement + // relative to points0 + setDisplacement + ( + ppPtr(), + disp, + adaptPatchIDs, + motionPtr().points0(), + motionPtr().pointDisplacement() + ); + + // Solve internal displacement + tmp<pointField> tnewPoints(motionPtr->newPoints()); + + // Move points + if (false) + { + // 1. Directly move points + mesh.movePoints(tnewPoints); + // Optional? Only geometry used is ppLocalPoints which we keep + // and update 'by hand'. + //ppPtr().movePoints(tnewPoints); + } + else + { + // 2. Use motionSmoother + // Set initial distribution of displacement field (on patches) + // from patchDisp and make displacement consistent with b.c. + // on displacement pointVectorField. + const vectorField newDisp(tnewPoints()-meshMoverPtr().oldPoints()); + + meshMoverPtr().displacement().vectorField::operator=(newDisp); + meshMoverPtr().setDisplacement(disp); + + // Apply internal displacement to mesh. + const bool meshOk = scaleMesh + ( + snapParams, + nInitErrors, + internalBaffles, + meshMoverPtr() + ); + + if (!meshOk) + { + WarningInFunction + << "Did not successfully snap mesh." + << " Continuing to snap to resolve easy" << nl + << " surfaces but the" + << " resulting mesh will not satisfy your quality" + << " constraints" << nl << endl; + } + + // Use current mesh as base mesh + meshMoverPtr().correct(); + } + + // Update pp for new mesh points. Ok as long as we also update + // geometry and wanted displacement (usually zero if mesh motion + // has succeeded) + ppLocalPoints = pointField(mesh.points(), ppPtr().meshPoints()); + patchDisp -= (ppLocalPoints-ppPtr().localPoints()); + + if (debug & meshRefinement::MESH) + { + const_cast<Time&>(mesh.time())++; + Info<< "Writing partially moved mesh to time " + << meshRefiner_.timeName() << endl; + meshRefiner_.write + ( + meshRefinement::debugType(debug), + meshRefinement::writeType + ( + meshRefinement::writeLevel() + | meshRefinement::WRITEMESH + ), + meshRefiner_.timeName() + ); + } + } + + // Split problematic cells + { + Info<< nl << "Checking moved mesh ..." << endl; + faceSet wrongFaces(mesh, "wrongFaces", mesh.nFaces()/1000); + motionSmoother::checkMesh + ( + false, + mesh, + motionDict, + identity(mesh.nFaces()), + internalBaffles, + wrongFaces, + false // dryRun_ + ); + const label nWrong(returnReduce(wrongFaces.size(), sumOp<label>())); + Info<< "Detected " << nWrong + << " illegal faces" + << " (concave, zero area or negative cell pyramid volume)" + << endl; + + //if (nWrong) + if (false) + { + bitSet decomposeCell(mesh.nCells()); + for (const label facei : wrongFaces) + { + const label own = mesh.faceOwner()[facei]; + if (!tetMatcher::test(mesh, own)) + { + decomposeCell.set(own); + } + if (mesh.isInternalFace(facei)) + { + const label nei = mesh.faceNeighbour()[facei]; + if (!tetMatcher::test(mesh, nei)) + { + decomposeCell.set(nei); + } + } + } + Pout<< "spliyyinG :" << decomposeCell.count() << " cells" + << endl; + + tetDecomposer tetDecomp(mesh); + polyTopoChange meshMod(mesh); + tetDecomp.setRefinement + ( + tetDecomposer::FACE_CENTRE_TRIS, + decomposeCell, + meshMod + ); + + // Save old meshPoints before changing mesh + const Map<label> oldMeshPointMap(ppPtr->meshPointMap()); + + Pout<< "old pp points:" << ppPtr->nPoints() + << " oldMeshPointMap:" << oldMeshPointMap.size() + << endl; + + // Remove any unnecessary fields + meshMoverPtr.clear(); + motionPtr.clear(); + ppPtr.clear(); + mesh.clearOut(); + mesh.moving(false); + + // Change the mesh (no inflation) + autoPtr<mapPolyMesh> mapPtr = meshMod.changeMesh(mesh, false); + mapPolyMesh& map = *mapPtr; + + // Update fields + mesh.updateMesh(map); + + // Move mesh (since morphing does not do this) + if (map.hasMotionPoints()) + { + mesh.movePoints(map.preMotionPoints()); + } + else + { + mesh.clearOut(); + } + + // Reset the instance for if in overwrite mode + mesh.setInstance(meshRefiner_.timeName()); + meshRefiner_.setInstance(mesh.facesInstance()); + + //- Update numbering on tet-decomposition engine + tetDecomp.updateMesh(map); + + bitSet isChangedFace(mesh.nFaces()); + forAll(map.cellMap(), celli) + { + if (decomposeCell[map.cellMap()[celli]]) + { + isChangedFace.set(mesh.cells()[celli]); + } + } + syncTools::syncFaceList + ( + mesh, + isChangedFace, + orEqOp<unsigned int>() + ); + + Pout<< "isChangedFace :" << decomposeCell.count() << " faces" + << endl; + + + // Update intersection info + meshRefiner_.updateMesh(map, isChangedFace.toc()); + + + if (debug&meshRefinement::MESH) + { + const_cast<Time&>(mesh.time())++; + Info<< "Writing tet-decomp mesh to time " + << meshRefiner_.timeName() << endl; + meshRefiner_.write + ( + meshRefinement::debugType(debug), + meshRefinement::writeType + ( + meshRefinement::writeLevel() + | meshRefinement::WRITEMESH + ), + mesh.time().path()/meshRefiner_.timeName() + ); + } + + + // Update local mesh data + // ~~~~~~~~~~~~~~~~~~~~~~ + + Info<< "Updating for tet-decomp" << endl; + + // baffles + forAll(internalBaffles, i) + { + labelPair& baffle = internalBaffles[i]; + baffle.first() = map.reverseFaceMap()[baffle.first()]; + baffle.second() = map.reverseFaceMap()[baffle.second()]; + } + + // re-do patch (since faces might have been split) + ppPtr = meshRefinement::makePatch(mesh, adaptPatchIDs); + Pout<< "new pp points:" << ppPtr->nPoints() + << " new meshPointMap:" << ppPtr->meshPointMap().size() + << endl; + const auto& mp = ppPtr->meshPoints(); + // pointMap (new-to-old) for pp points. Might have new + // face-centre points - these get mapped from any point on + // the originating face. + labelList ppMap(mp.size(), -1); + forAll(mp, i) + { + const label oldMeshPointi = map.pointMap()[mp[i]]; + const auto mpFnd = oldMeshPointMap.find(oldMeshPointi); + if (mpFnd) + { + ppMap[i] = mpFnd(); + } + } + + // patchDisp + meshRefinement::updateList(ppMap, vector::zero, patchDisp); + // snapDist + meshRefinement::updateList(ppMap, scalar(0), snapDist); + // patchFeaturePoint + meshRefinement::updateList + ( + ppMap, + vector::zero, + patchFeaturePoint + ); + // patchConstraints + meshRefinement::updateList + ( + ppMap, + pointConstraint(), + patchConstraints + ); +// // nearestPoint +// meshRefinement::updateList(ppMap, vector::zero, nearestPoint); +// // nearestNormal +// meshRefinement::updateList(ppMap, vector::zero, nearestNormal); +// // disp +// meshRefinement::updateList(ppMap, vector::zero, disp); + + // Maximum distance to attract to nearest feature on surface + snapDist = calcSnapDistance(mesh, snapParams, ppPtr()); + ppLocalPoints = pointField(mesh.points(), ppPtr().meshPoints()); + + Info<< "DONE Updating for tet-decomp" << endl; + } + } + } + +//XXXXXX +/* + { + // Introduce single layer of cells. Straight from snappyLayerDriver + + // Global face indices engine + const globalIndex globalFaces(mesh.nFaces()); + + // Determine extrudePatch.edgeFaces in global numbering (so across + // coupled patches). This is used only to string up edges + // between coupled + // faces (all edges between same (global)face indices get extruded). + labelListList edgeGlobalFaces + ( + addPatchCellLayer::globalEdgeFaces + ( + mesh, + globalFaces, + ppPtr() + ) + ); + + // Determine patches for extruded boundary edges. Calculates if any + // additional processor patches need to be constructed. + + labelList edgePatchID; + labelList edgeZoneID; + boolList edgeFlip; + labelList inflateFaceID; + snappyLayerDriver::determineSidePatches + ( + meshRefiner_, + globalFaces, + edgeGlobalFaces, + ppPtr(), + + edgePatchID, + edgeZoneID, + edgeFlip, + inflateFaceID + ); + + + // Mesh topo change engine. Insert current mesh. + polyTopoChange meshMod(mesh); + + // Layer mesh modifier + addPatchCellLayer addLayer(mesh); + + // Extrude very thin layer of cells + pointField extrusion(PatchTools::pointNormals(mesh, ppPtr())); + const tmp<scalarField> thickness + ( + wantedThickness + ( + ppPtr(), + 1e-3 // cellSizeFraction + ) + ); + extrusion *= thickness; + + // Add topo regardless of whether extrudeStatus is extruderemove. + // Not add layer if patchDisp is zero. + + const label ppNFaces = ppPtr().size(); + const label ppNPoints = ppPtr().nPoints(); + + addLayer.setRefinement + ( + globalFaces, + edgeGlobalFaces, + + scalarField(ppNPoints, 1), // expansion ratio + ppPtr(), + bitSet(ppPtr().size()), // no flip + + edgePatchID, // boundary patch for extruded boundary edges + edgeZoneID, // zone for extruded edges + edgeFlip, + inflateFaceID, + + + labelList(0), // exposed patchIDs, not used for adding layers + labelList(ppNFaces, 1), + labelList(ppNPoints, 1), + extrusion, //patchAttraction, + + meshMod + ); + + // Save old meshPoints before changing mesh + const Map<label> oldMeshPointMap(ppPtr->meshPointMap()); + Pout<< "old pp points:" << ppPtr->nPoints() + << " oldMeshPointMap:" << oldMeshPointMap.size() + << endl; + + // Remove any unnecessary fields + meshMoverPtr.clear(); + motionPtr.clear(); + ppPtr.clear(); + mesh.clearOut(); + mesh.moving(false); + + // Apply the stored topo changes to the current mesh. + autoPtr<mapPolyMesh> mapPtr = meshMod.changeMesh(mesh, false); + mapPolyMesh& map = *mapPtr; + + // Update fields + mesh.updateMesh(map); + + // Move mesh (since morphing does not do this) + if (map.hasMotionPoints()) + { + mesh.movePoints(map.preMotionPoints()); + } + else + { + // Hack to remove meshPhi - mapped incorrectly. TBD. + mesh.clearOut(); + } + + // Reset the instance for if in overwrite mode + mesh.setInstance(meshRefiner_.timeName()); + + // Re-do the patch + ppPtr = meshRefinement::makePatch(mesh, adaptPatchIDs); + Pout<< "new pp points:" << ppPtr->nPoints() + << " new meshPointMap:" << ppPtr->meshPointMap().size() + << endl; + // Map the old-patch-point data to the new patch points + // pointMap (new-to-old) for new pp points + labelList ppMap(ppPtr->nPoints(), -1); + { + const labelListList& oldAddedPoints = addLayer.addedPoints(); + forAll(oldAddedPoints, oldPatchPointi) + { + const label oldPointi = oldAddedPoints[oldPatchPointi].last(); + const label newPointi = map.reversePointMap()[oldPointi]; + const label newPatchPointi = ppPtr().meshPointMap()[newPointi]; + + ppMap[newPatchPointi] = oldPatchPointi; + } + } + + // Update attraction + meshRefinement::updateList(ppMap, vector::zero, patchDisp); + // snapDist + meshRefinement::updateList(ppMap, scalar(0), snapDist); + // patchFeaturePoint + meshRefinement::updateList + ( + ppMap, + vector::zero, + patchFeaturePoint + ); + // patchConstraints + meshRefinement::updateList + ( + ppMap, + pointConstraint(), + patchConstraints + ); + // ppLocalPoints + //meshRefinement::updateList(ppMap, vector::zero, ppLocalPoints); + ppLocalPoints = pointField(mesh.points(), ppPtr().meshPoints()); + + + // Update numbering on layer + addLayer.updateMesh + ( + map, + identity(ppNFaces), + identity(ppNPoints) + ); + + // Update intersections + const labelListList addedCells(addLayer.addedCells()); + bitSet isChangedFace(mesh.nFaces()); + for (const labelList& faceToCells : addedCells) + { + for (const label celli : faceToCells) + { + isChangedFace.set(mesh.cells()[celli]); + } + } + meshRefiner_.updateMesh(map, isChangedFace.toc()); + + + if (debug & meshRefinement::MESH) + { + const_cast<Time&>(mesh.time())++; + Info<< "Writing mesh-with-layer to time " + << meshRefiner_.timeName() << endl; + meshRefiner_.write + ( + meshRefinement::debugType(debug), + meshRefinement::writeType + ( + meshRefinement::writeLevel() + | meshRefinement::WRITEMESH + ), + meshRefiner_.timeName() + ); + } + if (debug) + { + OBJstream str + ( + mesh.time().path() + / "new_projection" + + meshRefiner_.timeName() + + ".obj" + ); + forAll(ppLocalPoints, pointi) + { + const point& pt = ppLocalPoints[pointi]; + str.write(linePointRef(pt, patchFeaturePoint[pointi])); + } + Pout<< "** writing mapped attraction to " << str.name() << endl; + } + } +*/ +//XXXX + { + // Layer mesh modifier + addPatchCellLayer addLayer(mesh); + + // Save old mesh points (to construct the new-to-old local patch points) + const Map<label> oldMeshPointMap(ppPtr->meshPointMap()); + + meshMoverPtr.clear(); + motionPtr.clear(); + + const pointField thickness + ( + wantedThickness(ppPtr(), 1e-3) //cellSizeFraction + * PatchTools::pointNormals(mesh, ppPtr()) + ); + autoPtr<mapPolyMesh> mapPtr = addBufferLayers + ( + ppPtr(), + thickness, + addLayer + ); + + // Re-do the patch + ppPtr = meshRefinement::makePatch(mesh, adaptPatchIDs); + + // Map the old-patch-point data to the new patch points + // pointMap (new-to-old) for new pp points + labelList ppMap(ppPtr->nPoints(), -1); + { + const labelListList& addedPoints = addLayer.addedPoints(); + forAll(addedPoints, oldPatchPointi) + { + const label newPointi = addedPoints[oldPatchPointi].last(); + const label newPatchPointi = ppPtr().meshPointMap()[newPointi]; + ppMap[newPatchPointi] = oldPatchPointi; + } + } + + // Update attraction + meshRefinement::updateList(ppMap, vector::zero, patchDisp); + // snapDist + meshRefinement::updateList(ppMap, scalar(0), snapDist); + // patchFeaturePoint + meshRefinement::updateList + ( + ppMap, + vector::zero, + patchFeaturePoint + ); + // patchConstraints + meshRefinement::updateList + ( + ppMap, + pointConstraint(), + patchConstraints + ); + // ppLocalPoints + ppLocalPoints = pointField(mesh.points(), ppPtr().meshPoints()); + } +//XXXXXX + const bool snapToGeometry = true; + if (snapToGeometry) + { + // Create pointMesh with the correct patches + // - points on single polyPatches stay as is + // - points on two polyPatches go to allEdgePatchName + // - points on >two polyPatches go to allPointPatchName + //const pointMesh& pMesh = makePointMesh + //( + // ppPtr(), + // patchConstraints, + // allEdgePatchName, + // allPointPatchName + //); + const pointMesh& pMesh = pointMesh::New(mesh); + + autoPtr<displacementMotionSolver> motionPtr + ( + makeMotionSolver + ( + pMesh, + snapDict, + adaptPatchIDs + //patchConstraints + ) + ); + + // Insert as bc to motionSmoother. Note that this takes displacement + // relative to points0 + setDisplacement + ( + ppPtr(), + patchFeaturePoint-ppLocalPoints, + adaptPatchIDs, + motionPtr().points0(), + motionPtr().pointDisplacement() + ); + + + if (debug) + { + OBJstream str + ( + mesh.time().path() + / "buffer_layer_new_projection" + + meshRefiner_.timeName() + + ".obj" + ); + forAll(ppLocalPoints, pointi) + { + const point& pt = ppLocalPoints[pointi]; + str.write(linePointRef(pt, patchFeaturePoint[pointi])); + } + Pout<< "** writing mapped attraction to " << str.name() << endl; + } + + + // Solve internal displacement + tmp<pointField> tnewPoints(motionPtr->newPoints()); + + // Move points + mesh.movePoints(tnewPoints); + + // Update pp for new mesh points. Ok as long as we also update geometry + // and wanted displacement (usually zero if mesh motion has succeeded) + ppLocalPoints = pointField(mesh.points(), ppPtr().meshPoints()); + patchDisp -= (ppLocalPoints-ppPtr().localPoints()); + + if (debug & meshRefinement::MESH) + { + const_cast<Time&>(mesh.time())++; + Info<< "Writing smoothed LAYER mesh to time " + << meshRefiner_.timeName() << endl; + meshRefiner_.write + ( + meshRefinement::debugType(debug), + meshRefinement::writeType + ( + meshRefinement::writeLevel() + | meshRefinement::WRITEMESH + ), + meshRefiner_.timeName() + ); + } + } + + + // Merge any introduced baffles (from faceZones of faceType 'internal') + { + autoPtr<mapPolyMesh> mapPtr = meshRefiner_.mergeZoneBaffles + ( + true, // internal zones + false // baffle zones + ); + + if (mapPtr.valid()) + { + if (debug & meshRefinement::MESH) + { + const_cast<Time&>(mesh.time())++; + Info<< "Writing baffle-merged mesh to time " + << meshRefiner_.timeName() << endl; + meshRefiner_.write + ( + meshRefinement::debugType(debug), + meshRefinement::writeType + ( + meshRefinement::writeLevel() + | meshRefinement::WRITEMESH + ), + meshRefiner_.timeName() + ); + } + } + } + + // Repatch faces according to nearest. Do not repatch baffle faces. + { + labelList duplicateFace(getInternalOrBaffleDuplicateFace()); + + repatchToSurface(snapParams, adaptPatchIDs, duplicateFace); + } + + if (debug & meshRefinement::MESH) + { + const_cast<Time&>(mesh.time())++; + } +} + + +// ************************************************************************* // diff --git a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriverFeature.C b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriverFeature.C index e5e951c30dfcd99b6c033dfe02a69c1293197c1d..b4aaa38fa32860c24ab139052aec1c27ef7f54aa 100644 --- a/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriverFeature.C +++ b/src/mesh/snappyHexMesh/snappyHexMeshDriver/snappySnapDriverFeature.C @@ -68,65 +68,65 @@ namespace Foam // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // -bool Foam::snappySnapDriver::isFeaturePoint -( - const scalar featureCos, - const indirectPrimitivePatch& pp, - const bitSet& isFeatureEdge, - const label pointi -) const -{ - const pointField& points = pp.localPoints(); - const edgeList& edges = pp.edges(); - const labelList& pEdges = pp.pointEdges()[pointi]; - - label nFeatEdges = 0; - - forAll(pEdges, i) - { - if (isFeatureEdge[pEdges[i]]) - { - nFeatEdges++; - - for (label j = i+1; j < pEdges.size(); j++) - { - if (isFeatureEdge[pEdges[j]]) - { - const edge& ei = edges[pEdges[i]]; - const edge& ej = edges[pEdges[j]]; - - const point& p = points[pointi]; - const point& pi = points[ei.otherVertex(pointi)]; - const point& pj = points[ej.otherVertex(pointi)]; - - vector vi = p-pi; - scalar viMag = mag(vi); - - vector vj = pj-p; - scalar vjMag = mag(vj); - - if - ( - viMag > SMALL - && vjMag > SMALL - && ((vi/viMag & vj/vjMag) < featureCos) - ) - { - return true; - } - } - } - } - } - - if (nFeatEdges == 1) - { - // End of feature-edge string - return true; - } - - return false; -} +//bool Foam::snappySnapDriver::isFeaturePoint +//( +// const scalar featureCos, +// const indirectPrimitivePatch& pp, +// const bitSet& isFeatureEdge, +// const label pointi +//) const +//{ +// const pointField& points = ppLocalPoints; +// const edgeList& edges = pp.edges(); +// const labelList& pEdges = pp.pointEdges()[pointi]; +// +// label nFeatEdges = 0; +// +// forAll(pEdges, i) +// { +// if (isFeatureEdge[pEdges[i]]) +// { +// nFeatEdges++; +// +// for (label j = i+1; j < pEdges.size(); j++) +// { +// if (isFeatureEdge[pEdges[j]]) +// { +// const edge& ei = edges[pEdges[i]]; +// const edge& ej = edges[pEdges[j]]; +// +// const point& p = points[pointi]; +// const point& pi = points[ei.otherVertex(pointi)]; +// const point& pj = points[ej.otherVertex(pointi)]; +// +// vector vi = p-pi; +// scalar viMag = mag(vi); +// +// vector vj = pj-p; +// scalar vjMag = mag(vj); +// +// if +// ( +// viMag > SMALL +// && vjMag > SMALL +// && ((vi/viMag & vj/vjMag) < featureCos) +// ) +// { +// return true; +// } +// } +// } +// } +// } +// +// if (nFeatEdges == 1) +// { +// // End of feature-edge string +// return true; +// } +// +// return false; +//} void Foam::snappySnapDriver::smoothAndConstrain @@ -224,6 +224,8 @@ void Foam::snappySnapDriver::calcNearestFace ( const label iter, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, + const scalarField& faceSnapDist, vectorField& faceDisp, vectorField& faceSurfaceNormal, @@ -234,6 +236,16 @@ void Foam::snappySnapDriver::calcNearestFace const fvMesh& mesh = meshRefiner_.mesh(); const refinementSurfaces& surfaces = meshRefiner_.surfaces(); + const pointField ppFaceCentres + ( + primitivePatch + ( + SubList<face>(pp.localFaces()), + ppLocalPoints + ).faceCentres() + ); + + // Displacement and orientation per pp face. faceDisp.setSize(pp.size()); faceDisp = Zero; @@ -268,6 +280,7 @@ void Foam::snappySnapDriver::calcNearestFace // Get indices of faces on pp that are also in zone DynamicList<label> ppFaces; DynamicList<label> meshFaces; + DynamicField<point> fc; forAll(faceZoneNames, fzi) { const word& faceZoneName = faceZoneNames[fzi]; @@ -283,6 +296,7 @@ void Foam::snappySnapDriver::calcNearestFace ppFaces.reserve(ppFaces.capacity()+fZone.size()); meshFaces.reserve(meshFaces.capacity()+fZone.size()); + fc.reserve(meshFaces.capacity()+fZone.size()); forAll(pp.addressing(), i) { @@ -291,6 +305,7 @@ void Foam::snappySnapDriver::calcNearestFace snapSurf[i] = zoneSurfi; ppFaces.append(i); meshFaces.append(pp.addressing()[i]); + fc.append(ppFaceCentres[i]); } } @@ -299,15 +314,6 @@ void Foam::snappySnapDriver::calcNearestFace // << endl; } - pointField fc - ( - indirectPrimitivePatch - ( - IndirectList<face>(mesh.faces(), meshFaces), - mesh.points() - ).faceCentres() - ); - List<pointIndexHit> hitInfo; labelList hitSurface; labelList hitRegion; @@ -364,26 +370,19 @@ void Foam::snappySnapDriver::calcNearestFace DynamicList<label> ppFaces(pp.size()); DynamicList<label> meshFaces(pp.size()); + DynamicField<point> fc(pp.size()); forAll(pp.addressing(), i) { if (snapSurf[i] == -1) { ppFaces.append(i); meshFaces.append(pp.addressing()[i]); + fc.append(ppFaceCentres[i]); } } //Pout<< "Found " << ppFaces.size() << " unzoned faces out of " // << pp.size() << endl; - pointField fc - ( - indirectPrimitivePatch - ( - IndirectList<face>(mesh.faces(), meshFaces), - mesh.points() - ).faceCentres() - ); - List<pointIndexHit> hitInfo; labelList hitSurface; labelList hitRegion; @@ -478,6 +477,7 @@ void Foam::snappySnapDriver::calcNearestFacePointProperties ( const label iter, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const vectorField& faceDisp, const vectorField& faceSurfaceNormal, @@ -541,7 +541,7 @@ void Foam::snappySnapDriver::calcNearestFacePointProperties { pNormals[nFaces] = faceSurfaceNormal[facei]; pDisp[nFaces] = faceDisp[facei]; - pFc[nFaces] = pp.faceCentres()[facei]; + pFc[nFaces] = pp.localFaces()[facei].centre(ppLocalPoints); pFid[nFaces] = globalToMasterPatch_[globalRegioni]; nFaces++; } @@ -647,7 +647,13 @@ void Foam::snappySnapDriver::calcNearestFacePointProperties List<point>& pFc = pointFaceCentres[pointi]; labelList& pFid = pointFacePatchID[pointi]; - const point& pt = mesh.points()[f[fp]]; + + // Note: these are points which are on the patch but + // the face itself is not. Could recalculate the + // facearea with the modified point but hopefully + // not necessary. + //const point& pt = mesh.points()[f[fp]]; + const point& pt = ppLocalPoints[pointi]; vector fn = mesh.faceAreas()[facei]; pNormals.append(fn/mag(fn)); @@ -682,10 +688,11 @@ void Foam::snappySnapDriver::calcNearestFacePointProperties { // Make into displacement before synchronising to avoid any problems // with parallel cyclics - pointField localPoints(pp.points(), pp.meshPoints()); + //pointField localPoints(pp.points(), pp.meshPoints()); forAll(pointFaceCentres, pointi) { - const point& pt = pp.points()[pp.meshPoints()[pointi]]; + //const point& pt = pp.points()[pp.meshPoints()[pointi]]; + const point& pt = ppLocalPoints[pointi]; List<point>& pFc = pointFaceCentres[pointi]; for (point& p : pFc) @@ -704,7 +711,8 @@ void Foam::snappySnapDriver::calcNearestFacePointProperties ); forAll(pointFaceCentres, pointi) { - const point& pt = pp.points()[pp.meshPoints()[pointi]]; + //const point& pt = pp.points()[pp.meshPoints()[pointi]]; + const point& pt = ppLocalPoints[pointi]; List<point>& pFc = pointFaceCentres[pointi]; for (point& p : pFc) @@ -975,6 +983,7 @@ void Foam::snappySnapDriver::featureAttractionUsingReconstruction const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& nearestDisp, const label pointi, @@ -1092,7 +1101,8 @@ void Foam::snappySnapDriver::featureAttractionUsingReconstruction } - const point& pt = pp.localPoints()[pointi]; + //const point& pt = pp.localPoints()[pointi]; + const point& pt = ppLocalPoints[pointi]; // Check the number of directions if (surfaceNormals.size() == 1) @@ -1168,6 +1178,7 @@ void Foam::snappySnapDriver::featureAttractionUsingReconstruction const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& nearestDisp, @@ -1212,7 +1223,7 @@ void Foam::snappySnapDriver::featureAttractionUsingReconstruction DynamicList<vector> surfaceNormals(4); labelList faceToNormalBin; - forAll(pp.localPoints(), pointi) + forAll(ppLocalPoints, pointi) { vector attraction = Zero; pointConstraint constraint; @@ -1223,6 +1234,7 @@ void Foam::snappySnapDriver::featureAttractionUsingReconstruction featureCos, pp, + ppLocalPoints, snapDist, nearestDisp, @@ -1253,7 +1265,8 @@ void Foam::snappySnapDriver::featureAttractionUsingReconstruction patchAttraction[pointi] = attraction; patchConstraints[pointi] = constraint; - const point& pt = pp.localPoints()[pointi]; + //const point& pt = pp.localPoints()[pointi]; + const point& pt = ppLocalPoints[pointi]; if (feStr && patchConstraints[pointi].first() == 2) { @@ -1274,6 +1287,7 @@ void Foam::snappySnapDriver::stringFeatureEdges const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& rawPatchAttraction, @@ -1314,7 +1328,8 @@ void Foam::snappySnapDriver::stringFeatureEdges { if (patchConstraints[pointi].first() == 2) { - const point& pt = pp.localPoints()[pointi]; + //const point& pt = pp.localPoints()[pointi]; + const point& pt = ppLocalPoints[pointi]; const labelList& pEdges = pointEdges[pointi]; const vector& featVec = patchConstraints[pointi].second(); @@ -1330,7 +1345,8 @@ void Foam::snappySnapDriver::stringFeatureEdges if (patchConstraints[nbrPointi].first() > 1) { - const point& nbrPt = pp.localPoints()[nbrPointi]; + //const point& nbrPt = pp.localPoints()[nbrPointi]; + const point& nbrPt = ppLocalPoints[nbrPointi]; const point featPt = nbrPt + patchAttraction[nbrPointi]; const scalar cosAngle = (featVec & (featPt-pt)); @@ -1349,7 +1365,7 @@ void Foam::snappySnapDriver::stringFeatureEdges if (!hasPos || !hasNeg) { //Pout<< "**Detected feature string end at " - // << pp.localPoints()[pointi] << endl; + // << ppLocalPoints[pointi] << endl; // No string. Assign best choice on either side label bestPosPointi = -1; @@ -1382,7 +1398,8 @@ void Foam::snappySnapDriver::stringFeatureEdges ); const point featPt = - pp.localPoints()[nbrPointi] + //pp.localPoints()[nbrPointi] + ppLocalPoints[nbrPointi] + rawPatchAttraction[nbrPointi]; const scalar cosAngle = (featVec & (featPt-pt)); @@ -1412,7 +1429,7 @@ void Foam::snappySnapDriver::stringFeatureEdges // Use reconstructed-feature attraction. Use only // part of it since not sure... //const point& bestPt = - // pp.localPoints()[bestPosPointi]; + // ppLocalPoints[bestPosPointi]; //Pout<< "**Overriding point " << bestPt // << " on reconstructed feature edge at " // << rawPatchAttraction[bestPosPointi]+bestPt @@ -1429,7 +1446,7 @@ void Foam::snappySnapDriver::stringFeatureEdges // Use reconstructed-feature attraction. Use only // part of it since not sure... //const point& bestPt = - // pp.localPoints()[bestNegPointi]; + // ppLocalPoints[bestNegPointi]; //Pout<< "**Overriding point " << bestPt // << " on reconstructed feature edge at " // << rawPatchAttraction[bestNegPointi]+bestPt @@ -1463,6 +1480,7 @@ void Foam::snappySnapDriver::releasePointsNextToMultiPatch const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const List<List<point>>& pointFaceCentres, @@ -1499,7 +1517,7 @@ void Foam::snappySnapDriver::releasePointsNextToMultiPatch { pointIndexHit multiPatchPt = findMultiPatchPoint ( - pp.localPoints()[pointi], + ppLocalPoints[pointi], pointFacePatchID[pointi], pointFaceCentres[pointi] ); @@ -1523,7 +1541,7 @@ void Foam::snappySnapDriver::releasePointsNextToMultiPatch //if (multiPatchStr) //{ // Pout<< "Adding constraint on multiPatchPoint:" - // << pp.localPoints()[pointi] + // << ppLocalPoints[pointi] // << " constraint:" << patchConstraints[pointi] // << " attraction:" << patchAttraction[pointi] // << endl; @@ -1568,14 +1586,14 @@ void Foam::snappySnapDriver::releasePointsNextToMultiPatch { //Pout<< "Knocking out constraint" // << " on non-multiPatchPoint:" - // << pp.localPoints()[pointi] << endl; + // << ppLocalPoints[pointi] << endl; patchAttraction[pointi] = Zero; patchConstraints[pointi] = pointConstraint(); nChanged++; if (multiPatchStr) { - multiPatchStr().write(pp.localPoints()[pointi]); + multiPatchStr().write(ppLocalPoints[pointi]); } } } @@ -1727,6 +1745,7 @@ Foam::labelPair Foam::snappySnapDriver::findDiagonalAttraction const scalar concaveCos, const scalar minAreaRatio, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const vectorField& patchAttr, const List<pointConstraint>& patchConstraints, const vectorField& nearestAttr, @@ -1743,8 +1762,6 @@ Foam::labelPair Foam::snappySnapDriver::findDiagonalAttraction if (localF.size() >= 4) { - const pointField& localPts = pp.localPoints(); - //// Estimate cell centre taking patchAttraction into account //// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //// (is this necessary?) @@ -1805,8 +1822,10 @@ Foam::labelPair Foam::snappySnapDriver::findDiagonalAttraction // Check if // - sameish feature edge normal // - diagonal aligned with feature edge normal - point start = localPts[startPti]+patchAttr[startPti]; - point end = localPts[endPti]+patchAttr[endPti]; + point start = + ppLocalPoints[startPti]+patchAttr[startPti]; + point end = + ppLocalPoints[endPti]+patchAttr[endPti]; if ( @@ -1846,15 +1865,15 @@ Foam::labelPair Foam::snappySnapDriver::findDiagonalAttraction // Get compact face and points const face compact0(identity(f0.size())); points0.clear(); - points0.append(localPts[f0[0]] + patchAttr[f0[0]]); + points0.append(ppLocalPoints[f0[0]] + patchAttr[f0[0]]); for (label fp=1; fp < f0.size()-1; fp++) { label pi = f0[fp]; - points0.append(localPts[pi] + nearestAttr[pi]); + points0.append(ppLocalPoints[pi] + nearestAttr[pi]); } points0.append ( - localPts[f0.last()] + patchAttr[f0.last()] + ppLocalPoints[f0.last()] + patchAttr[f0.last()] ); @@ -1877,15 +1896,15 @@ Foam::labelPair Foam::snappySnapDriver::findDiagonalAttraction // Get compact face and points const face compact1(identity(f1.size())); points1.clear(); - points1.append(localPts[f1[0]] + patchAttr[f1[0]]); + points1.append(ppLocalPoints[f1[0]] + patchAttr[f1[0]]); for (label fp=1; fp < f1.size()-1; fp++) { label pi = f1[fp]; - points1.append(localPts[pi] + nearestAttr[pi]); + points1.append(ppLocalPoints[pi] + nearestAttr[pi]); } points1.append ( - localPts[f1.last()] + patchAttr[f1.last()] + ppLocalPoints[f1.last()] + patchAttr[f1.last()] ); @@ -1920,8 +1939,8 @@ Foam::labelPair Foam::snappySnapDriver::findDiagonalAttraction else { // Existing areas - const scalar area0 = f0.mag(localPts); - const scalar area1 = f1.mag(localPts); + const scalar area0 = f0.mag(ppLocalPoints); + const scalar area1 = f1.mag(ppLocalPoints); if ( @@ -1947,13 +1966,17 @@ void Foam::snappySnapDriver::splitDiagonals const scalar minAreaRatio, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const vectorField& nearestAttraction, const vectorField& nearestNormal, + const List<labelList>& pointFacePatchID, vectorField& patchAttraction, List<pointConstraint>& patchConstraints, + DynamicList<label>& splitFaces, - DynamicList<labelPair>& splits + DynamicList<labelPair>& splits, + DynamicList<labelPair>& splitPatches ) const { const labelList& bFaces = pp.addressing(); @@ -1962,11 +1985,13 @@ void Foam::snappySnapDriver::splitDiagonals splitFaces.setCapacity(bFaces.size()); splits.clear(); splits.setCapacity(bFaces.size()); - + splitPatches.clear(); + splitPatches.setCapacity(bFaces.size()); // Work arrays for storing points of face DynamicField<point> facePoints0; DynamicField<point> facePoints1; + face f0, f1; forAll(bFaces, facei) { @@ -1979,6 +2004,7 @@ void Foam::snappySnapDriver::splitDiagonals minAreaRatio, pp, + ppLocalPoints, patchAttraction, patchConstraints, @@ -1995,13 +2021,13 @@ void Foam::snappySnapDriver::splitDiagonals { splitFaces.append(bFaces[facei]); splits.append(split); + splitPatches.append(labelPair(-1, -1)); const face& f = pp.localFaces()[facei]; // Knock out other attractions on face forAll(f, fp) { - // Knock out any other constraints if ( fp != split[0] @@ -2020,6 +2046,105 @@ void Foam::snappySnapDriver::splitDiagonals patchAttraction[f[fp]] = nearestAttraction[f[fp]]; } } + + + // Detect any patches to give to the two faces + labelPair& twoPatches = splitPatches.last(); + + // Split into two faces: + // - face0 is from split[0] up to split[1] + // - face1 is from split[1] up to split[0] + meshRefinement::splitFace(f, split, f0, f1); + + // Bit heuristic: + // - find any inbetween vertex (i.e. not on diagonal) that + // has single patch only + // - if we find such a point on both sides we use these patches + // - if only found a point on one side check the other side + // for any other patch + + // Find single patch + for (label fp = 1; fp < f0.size()-1; fp++) + { + const auto& patches = pointFacePatchID[f0[fp]]; + if (patches.uniform()) + { + twoPatches[0] = patches[0]; + } + } + for (label fp = 1; fp < f1.size()-1; fp++) + { + const auto& patches = pointFacePatchID[f1[fp]]; + if (patches.uniform()) + { + twoPatches[1] = patches[0]; + } + } + + if (twoPatches[0] == -1) + { + // Find any patch on any point that differs from twoPatches[1] + // (can be -1 or a unform patch) + + for (label fp = 1; fp < f0.size()-1; fp++) + { + const auto& patches = pointFacePatchID[f0[fp]]; + + // Pick any patch which is not the unique patch of the + // other face. TBD: count occurences and choose most used? + for (const label patchi : patches) + { + if (patchi != twoPatches[1]) + { + twoPatches[0] = patchi; + break; + } + } + } + } + + if (twoPatches[1] == -1) + { + // Find any patch on any point that differs from twoPatches[0] + // (can be -1 or a unform patch) + + for (label fp = 1; fp < f1.size()-1; fp++) + { + const auto& patches = pointFacePatchID[f1[fp]]; + + // Pick any patch which is not the unique patch of the + // other face. TBD: count occurences and choose most used? + for (const label patchi : patches) + { + if (patchi != twoPatches[0]) + { + twoPatches[1] = patchi; + break; + } + } + } + } + + // Fall-back : choose any connected patch + if (twoPatches[0] == -1) + { + twoPatches[0] = pointFacePatchID[f0[1]][0]; + } + if (twoPatches[1] == -1) + { + twoPatches[1] = pointFacePatchID[f1[1]][0]; + } + + //if (twoPatches != labelPair(-1, -1)) + //{ + // Pout<< "Face:" << bFaces[facei] + // << " at:" << pp.faceCentres()[facei] + // << " split into f0:" << flatOutput(f0) + // << " patch:" << twoPatches[0] + // << " and f1:" << flatOutput(f1) + // << " patch:" << twoPatches[1] + // << endl; + //} } } } @@ -2031,6 +2156,7 @@ void Foam::snappySnapDriver::avoidDiagonalAttraction const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, vectorField& patchAttraction, List<pointConstraint>& patchConstraints @@ -2054,10 +2180,10 @@ void Foam::snappySnapDriver::avoidDiagonalAttraction // For now just attract my one to the average of those. const label i0 = f[diag[0]]; const point pt0 = - pp.localPoints()[i0]+patchAttraction[i0]; + ppLocalPoints[i0]+patchAttraction[i0]; const label i1 = f[diag[1]]; const point pt1 = - pp.localPoints()[i1]+patchAttraction[i1]; + ppLocalPoints[i1]+patchAttraction[i1]; const point mid = 0.5*(pt0+pt1); const scalar cosAngle = mag @@ -2084,7 +2210,7 @@ void Foam::snappySnapDriver::avoidDiagonalAttraction label pointi = f[fp]; if (patchConstraints[pointi].first() <= 1) { - scalar distSqr = mid.distSqr(pp.localPoints()[pointi]); + scalar distSqr = mid.distSqr(ppLocalPoints[pointi]); if (distSqr < minDistSqr) { minFp = fp; @@ -2095,7 +2221,7 @@ void Foam::snappySnapDriver::avoidDiagonalAttraction { label minPointi = f[minFp]; patchAttraction[minPointi] = - mid-pp.localPoints()[minPointi]; + mid-ppLocalPoints[minPointi]; patchConstraints[minPointi] = patchConstraints[f[diag[0]]]; } } @@ -2127,6 +2253,7 @@ Foam::snappySnapDriver::findNearFeatureEdge const bool isRegionEdge, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const label pointi, const point& estimatedPt, @@ -2178,7 +2305,7 @@ Foam::snappySnapDriver::findNearFeatureEdge edgeConstraints[feati][nearInfo.index()].append(c); // Store for later use - patchAttraction[pointi] = nearInfo.point()-pp.localPoints()[pointi]; + patchAttraction[pointi] = nearInfo.point()-ppLocalPoints[pointi]; patchConstraints[pointi] = c; } return Tuple2<label, pointIndexHit>(feati, nearInfo); @@ -2191,6 +2318,7 @@ Foam::snappySnapDriver::findNearFeaturePoint const bool isRegionPoint, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const label pointi, const point& estimatedPt, @@ -2224,7 +2352,7 @@ Foam::snappySnapDriver::findNearFeaturePoint if (feati != -1) { - const point& pt = pp.localPoints()[pointi]; + const point& pt = ppLocalPoints[pointi]; label featPointi = nearInfo[0].index(); const point& featPt = nearInfo[0].hitPoint(); @@ -2236,7 +2364,7 @@ Foam::snappySnapDriver::findNearFeaturePoint if (oldPointi != -1) { // Check distance - if (distSqr >= featPt.distSqr(pp.localPoints()[oldPointi])) + if (distSqr >= featPt.distSqr(ppLocalPoints[oldPointi])) { // oldPointi nearest. Keep. feati = -1; @@ -2262,9 +2390,10 @@ Foam::snappySnapDriver::findNearFeaturePoint isRegionPoint, // search region edges only pp, + ppLocalPoints, snapDist, oldPointi, - pp.localPoints()[oldPointi], + ppLocalPoints[oldPointi], edgeAttractors, edgeConstraints, @@ -2297,8 +2426,10 @@ void Foam::snappySnapDriver::determineFeatures const label iter, const scalar featureCos, const bool multiRegionFeatureSnap, + const bool strictRegionFeatureSnap, // special >=3 patch points handling const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& nearestDisp, @@ -2387,9 +2518,9 @@ void Foam::snappySnapDriver::determineFeatures DynamicList<vector> surfaceNormals(4); labelList faceToNormalBin; - forAll(pp.localPoints(), pointi) + forAll(ppLocalPoints, pointi) { - const point& pt = pp.localPoints()[pointi]; + const point& pt = ppLocalPoints[pointi]; // Determine the geometric planes the point is (approximately) on. @@ -2409,6 +2540,7 @@ void Foam::snappySnapDriver::determineFeatures featureCos, pp, + ppLocalPoints, snapDist, nearestDisp, @@ -2417,7 +2549,7 @@ void Foam::snappySnapDriver::determineFeatures pointFaceSurfNormals, pointFaceDisp, pointFaceCentres, - pointFacePatchID, + pointFacePatchID, // currently not used surfacePoints, surfaceNormals, @@ -2427,6 +2559,43 @@ void Foam::snappySnapDriver::determineFeatures constraint ); + + if (strictRegionFeatureSnap) + { + // Bit tricky: if a point is on more than 2 points and only + // attracted-to-surface upgrade it to attract-to-edge so it follows + // more complex logic below. This is easier than complicating + // the nearestFeatureEdge/Point below. + + if (constraint.first() == 1) + { + const auto& patches = pointFacePatchID[pointi]; + label patch1 = -1; + for (label i = 1; i < patches.size(); i++) + { + if (patches[i] != patches[0]) + { + if (patch1 == -1) + { + patch1 = patches[i]; + } + else if (patches[i] != patch1) + { + // >= on 2 patches. Upgrade to edge-attract + constraint.first() = 2; + //Pout<< "** 3 patch point:" << pointi + // << " at:" << pt + // << " patches:" << flatOutput(patches) + // << " upgraded to feature-edge" + // << " attracted to " << attraction << endl; + break; + } + } + } + } + } + + // Now combine the reconstruction with the current state of the // point. The logic is quite complicated: // - the new constraint (from reconstruction) will only win if @@ -2497,6 +2666,7 @@ void Foam::snappySnapDriver::determineFeatures ( true, // isRegionEdge pp, + ppLocalPoints, snapDist, pointi, multiPatchPt.point(), // estimatedPt @@ -2567,6 +2737,7 @@ void Foam::snappySnapDriver::determineFeatures ( true, // isRegionEdge pp, + ppLocalPoints, snapDist, pointi, estimatedPt, @@ -2597,6 +2768,7 @@ void Foam::snappySnapDriver::determineFeatures ( true, // isRegionPoint pp, + ppLocalPoints, snapDist, pointi, estimatedPt, @@ -2628,6 +2800,7 @@ void Foam::snappySnapDriver::determineFeatures ( true, // isRegionEdge pp, + ppLocalPoints, snapDist, pointi, estimatedPt, @@ -2660,6 +2833,7 @@ void Foam::snappySnapDriver::determineFeatures ( false, // isRegionPoint pp, + ppLocalPoints, snapDist, pointi, estimatedPt, @@ -2728,6 +2902,7 @@ void Foam::snappySnapDriver::determineFeatures ( true, // isRegionPoint pp, + ppLocalPoints, snapDist, pointi, estimatedPt, @@ -2749,6 +2924,7 @@ void Foam::snappySnapDriver::determineFeatures ( false, // isRegionPoint pp, + ppLocalPoints, snapDist, pointi, estimatedPt, @@ -2772,6 +2948,7 @@ void Foam::snappySnapDriver::determineFeatures ( false, // isRegionPoint pp, + ppLocalPoints, snapDist, pointi, estimatedPt, @@ -2817,6 +2994,7 @@ void Foam::snappySnapDriver::determineBaffleFeatures const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, // Feature-point to pp point @@ -2836,6 +3014,13 @@ void Foam::snappySnapDriver::determineBaffleFeatures // Calculate edge-faces List<List<point>> edgeFaceNormals(pp.nEdges()); + vectorField ppFaceNormals(pp.size()); + forAll(ppFaceNormals, facei) + { + ppFaceNormals[facei] = pp.localFaces()[facei].unitNormal(ppLocalPoints); + } + + // Fill local data forAll(pp.edgeFaces(), edgei) { @@ -2845,7 +3030,8 @@ void Foam::snappySnapDriver::determineBaffleFeatures forAll(eFaces, i) { label facei = eFaces[i]; - eFc[i] = pp.faceNormals()[facei]; + //eFc[i] = pp.faceNormals()[facei]; + eFc[i] = ppFaceNormals[facei]; } } @@ -2913,7 +3099,7 @@ void Foam::snappySnapDriver::determineBaffleFeatures if (baffleEdgeStr) { - baffleEdgeStr().write(e, pp.localPoints()); + baffleEdgeStr().write(e, ppLocalPoints); } } } @@ -2940,7 +3126,7 @@ void Foam::snappySnapDriver::determineBaffleFeatures // ) // ) // { - // //Pout<< "Detected feature point:" << pp.localPoints()[pointi] + // //Pout<< "Detected feature point:" << ppLocalPoints[pointi] // // << endl; // //-TEMPORARILY DISABLED: // //pointStatus[pointi] = 1; @@ -2964,7 +3150,7 @@ void Foam::snappySnapDriver::determineBaffleFeatures forAll(pointStatus, pointi) { - const point& pt = pp.localPoints()[pointi]; + const point& pt = ppLocalPoints[pointi]; if (pointStatus[pointi] == 0) // baffle edge { @@ -2974,6 +3160,7 @@ void Foam::snappySnapDriver::determineBaffleFeatures ( false, // isRegionPoint? pp, + ppLocalPoints, snapDist, pointi, pt, @@ -3000,6 +3187,7 @@ void Foam::snappySnapDriver::determineBaffleFeatures false, // isRegionPoint, pp, + ppLocalPoints, snapDist, pointi, pt, // estimatedPt, @@ -3053,7 +3241,7 @@ void Foam::snappySnapDriver::determineBaffleFeatures oldPointi == -1 || ( distSqr - < featPt.distSqr(pp.localPoints()[oldPointi]) + < featPt.distSqr(ppLocalPoints[oldPointi]) ) ) { @@ -3075,9 +3263,10 @@ void Foam::snappySnapDriver::determineBaffleFeatures ( false, // isRegionPoint pp, + ppLocalPoints, snapDist, oldPointi, - pp.localPoints()[oldPointi], + ppLocalPoints[oldPointi], edgeAttractors, edgeConstraints, @@ -3106,6 +3295,7 @@ void Foam::snappySnapDriver::determineBaffleFeatures ( false, // isRegionPoint pp, + ppLocalPoints, snapDist, pointi, pt, // starting point @@ -3142,6 +3332,7 @@ void Foam::snappySnapDriver::reverseAttractMeshPoints const label iter, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, // Feature-point to pp point @@ -3167,7 +3358,7 @@ void Foam::snappySnapDriver::reverseAttractMeshPoints // nearest point on pp // Get search domain and extend it a bit - treeBoundBox bb(pp.localPoints()); + treeBoundBox bb(ppLocalPoints); { // Random number generator. Bit dodgy since not exactly random ;-) Random rndGen(65431); @@ -3263,7 +3454,7 @@ void Foam::snappySnapDriver::reverseAttractMeshPoints indexedOctree<treeDataPoint> ppTree ( - treeDataPoint(pp.localPoints(), attractPoints), + treeDataPoint(ppLocalPoints, attractPoints), bb, // overall search domain 8, // maxLevel 10, // leafsize @@ -3360,10 +3551,7 @@ void Foam::snappySnapDriver::reverseAttractMeshPoints { if (pointAttr[featPointi] != -1) { - const point& featPt = features[feati].points() - [ - featPointi - ]; + const point& featPt = features[feati].points()[featPointi]; // Find nearest pp point pointIndexHit nearInfo = ppTree.findNearest @@ -3421,6 +3609,7 @@ void Foam::snappySnapDriver::featureAttractionUsingFeatureEdges ( const label iter, const bool multiRegionFeatureSnap, + const bool strictRegionFeatureSnap, // special >=3 patch points handling const bool detectBaffles, const bool baffleFeaturePoints, @@ -3432,6 +3621,7 @@ void Foam::snappySnapDriver::featureAttractionUsingFeatureEdges const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& nearestDisp, const vectorField& nearestNormal, @@ -3496,8 +3686,10 @@ void Foam::snappySnapDriver::featureAttractionUsingFeatureEdges iter, featureCos, multiRegionFeatureSnap, + strictRegionFeatureSnap, // extra logic for points on >=3 patches pp, + ppLocalPoints, snapDist, // per point max distance and nearest surface nearestDisp, @@ -3544,6 +3736,7 @@ void Foam::snappySnapDriver::featureAttractionUsingFeatureEdges featureCos, pp, + ppLocalPoints, snapDist, // Feature-point to pp point @@ -3575,6 +3768,7 @@ void Foam::snappySnapDriver::featureAttractionUsingFeatureEdges iter, pp, + ppLocalPoints, snapDist, // Feature-point to pp point @@ -3621,7 +3815,7 @@ void Foam::snappySnapDriver::featureAttractionUsingFeatureEdges forAll(patchConstraints, pointi) { - const point& pt = pp.localPoints()[pointi]; + const point& pt = ppLocalPoints[pointi]; const vector& attr = patchAttraction[pointi]; if (patchConstraints[pointi].first() == 2) @@ -3648,6 +3842,7 @@ void Foam::snappySnapDriver::featureAttractionUsingFeatureEdges featureCos, pp, + ppLocalPoints, snapDist, pointFaceCentres, @@ -3674,6 +3869,7 @@ void Foam::snappySnapDriver::featureAttractionUsingFeatureEdges featureCos, pp, + ppLocalPoints, snapDist, rawPatchAttraction, @@ -3695,6 +3891,7 @@ void Foam::snappySnapDriver::featureAttractionUsingFeatureEdges iter, featureCos, pp, + ppLocalPoints, patchAttraction, patchConstraints ); @@ -3707,8 +3904,8 @@ void Foam::snappySnapDriver::featureAttractionUsingFeatureEdges ( meshRefiner_.mesh().time().path() / "patchAttraction_" + name(iter) + ".obj", - pp.localPoints(), - pp.localPoints() + patchAttraction + ppLocalPoints, + ppLocalPoints + patchAttraction ); } } @@ -3721,6 +3918,7 @@ void Foam::snappySnapDriver::preventFaceSqueeze const scalar featureCos, const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, const scalarField& snapDist, const vectorField& nearestAttraction, @@ -3762,7 +3960,7 @@ void Foam::snappySnapDriver::preventFaceSqueeze forAll(f, fp) { label pointi = f[fp]; - const point& pt = pp.localPoints()[pointi]; + const point& pt = ppLocalPoints[pointi]; if (patchConstraints[pointi].first() > 1) { @@ -3786,8 +3984,8 @@ void Foam::snappySnapDriver::preventFaceSqueeze scalar maxS = -1; forAll(f, fp) { - const point& pt = pp.localPoints()[f[fp]]; - const point& nextPt = pp.localPoints()[f.nextLabel(fp)]; + const point& pt = ppLocalPoints[f[fp]]; + const point& nextPt = ppLocalPoints[f.nextLabel(fp)]; scalar s = pt.distSqr(nextPt); if (s > maxS) @@ -3802,7 +4000,7 @@ void Foam::snappySnapDriver::preventFaceSqueeze // Reset attraction on pointi to nearest - const point& pt = pp.localPoints()[pointi]; + const point& pt = ppLocalPoints[pointi]; //Pout<< "** on triangle " << pp.faceCentres()[facei] // << " knocking out attraction to " << pointi @@ -3819,7 +4017,7 @@ void Foam::snappySnapDriver::preventFaceSqueeze } else { - scalar oldArea = f.mag(pp.localPoints()); + scalar oldArea = f.mag(ppLocalPoints); scalar newArea = singleF.mag(points); if (newArea < 0.1*oldArea) { @@ -3852,19 +4050,21 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature ( const snapParameters& snapParams, const bool alignMeshEdges, + const bool strictRegionFeatureSnap, // use patches const label iter, const scalar featureCos, const scalar featureAttract, const scalarField& snapDist, const vectorField& nearestDisp, const vectorField& nearestNormal, - motionSmoother& meshMover, + const indirectPrimitivePatch& pp, + const pointField& ppLocalPoints, vectorField& patchAttraction, List<pointConstraint>& patchConstraints, DynamicList<label>& splitFaces, - DynamicList<labelPair>& splits - + DynamicList<labelPair>& splits, + DynamicList<labelPair>& splitPatches ) const { if (dryRun_) @@ -3883,8 +4083,6 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature << " multi-patch features : " << multiRegionFeatureSnap << nl << endl; - const indirectPrimitivePatch& pp = meshMover.patch(); - const pointField& localPoints = pp.localPoints(); const fvMesh& mesh = meshRefiner_.mesh(); @@ -3935,6 +4133,7 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature ( iter, pp, + ppLocalPoints, faceSnapDist, faceDisp, faceSurfaceNormal, @@ -3952,7 +4151,7 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature ( iter, pp, - + ppLocalPoints, faceDisp, faceSurfaceNormal, faceSurfaceGlobalRegion, @@ -3976,10 +4175,10 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature // here. // Nearest feature - patchAttraction.setSize(localPoints.size()); + patchAttraction.setSize(ppLocalPoints.size()); patchAttraction = Zero; // Constraints at feature - patchConstraints.setSize(localPoints.size()); + patchConstraints.setSize(ppLocalPoints.size()); patchConstraints = pointConstraint(); if (implicitFeatureAttraction) @@ -3993,6 +4192,7 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature featureCos, pp, + ppLocalPoints, snapDist, nearestDisp, @@ -4030,6 +4230,7 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature ( iter, multiRegionFeatureSnap, + strictRegionFeatureSnap, // special logic for >=3 patches points? snapParams.detectBaffles(), snapParams.baffleFeaturePoints(), // all points on baffle edges @@ -4042,6 +4243,7 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature featureCos, pp, + ppLocalPoints, snapDist, nearestDisp, nearestNormal, @@ -4064,7 +4266,7 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature ); const scalar minAreaRatio = snapParams.minAreaRatio(); - Info<< "Experimental: introducing face splits to avoid rotating" + Info<< "Introducing face splits to avoid rotating" << " mesh edges. Splitting faces when" << nl << indent << "- angle not concave by more than " << snapParams.concaveAngle() << " degrees" << nl @@ -4078,14 +4280,18 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature concaveCos, minAreaRatio, pp, + ppLocalPoints, nearestDisp, nearestNormal, - + pointFacePatchID, // per point the connected patches. Is used + // to re-patch newly split faces patchAttraction, patchConstraints, + splitFaces, - splits + splits, + splitPatches ); if (debug) @@ -4102,6 +4308,7 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature featureCos, pp, + ppLocalPoints, snapDist, nearestDisp, @@ -4227,8 +4434,8 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurfaceFeature ( mesh.time().path() / "tangPatchDispConstrained_" + name(iter) + ".obj", - pp.localPoints(), - pp.localPoints() + tangPatchDisp + ppLocalPoints, + ppLocalPoints + tangPatchDisp ); } diff --git a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolationTemplates.C b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolationTemplates.C index 535b35ca563f5a687cdb8136fa58fb4baa9245c5..bb76d2b4a3b80a42b21c2d76914aad55a430e5bb 100644 --- a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolationTemplates.C +++ b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolationTemplates.C @@ -145,7 +145,8 @@ void Foam::AMIInterpolation::interpolateToTarget if (distributed()) { const mapDistribute& map = srcMapPtr_(); - work = fld; // deep copy + work.resize_nocopy(map.constructSize()); + SubList<Type>(work, fld.size()) = fld; // deep copy map.distribute(work); } @@ -205,7 +206,8 @@ void Foam::AMIInterpolation::interpolateToSource if (distributed()) { const mapDistribute& map = tgtMapPtr_(); - work = fld; // deep copy + work.resize_nocopy(map.constructSize()); + SubList<Type>(work, fld.size()) = fld; // deep copy map.distribute(work); } diff --git a/src/meshTools/AMIInterpolation/AMIInterpolation/faceAreaWeightAMI/faceAreaWeightAMI.C b/src/meshTools/AMIInterpolation/AMIInterpolation/faceAreaWeightAMI/faceAreaWeightAMI.C index 0c29c9b0c2c8b494753e50c0ce559c2c4c4a2b55..38948dfeb68125f97d4064e6d85dbfa6f006a785 100644 --- a/src/meshTools/AMIInterpolation/AMIInterpolation/faceAreaWeightAMI/faceAreaWeightAMI.C +++ b/src/meshTools/AMIInterpolation/AMIInterpolation/faceAreaWeightAMI/faceAreaWeightAMI.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2013-2016 OpenFOAM Foundation - Copyright (C) 2018-2021 OpenCFD Ltd. + Copyright (C) 2018-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -714,6 +714,8 @@ bool Foam::faceAreaWeightAMI::calculate if (distributed()) { const label myRank = UPstream::myProcNo(comm_); + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); const primitivePatch& srcPatch0 = this->srcPatch0(); const primitivePatch& tgtPatch0 = this->tgtPatch0(); @@ -751,7 +753,7 @@ bool Foam::faceAreaWeightAMI::calculate labelList(), ListOps::appendEqOp<label>(), flipOp(), // flip operation - UPstream::msgType(), + UPstream::msgType()+77431, comm_ ); @@ -768,7 +770,7 @@ bool Foam::faceAreaWeightAMI::calculate scalarList(), ListOps::appendEqOp<scalar>(), flipOp(), - UPstream::msgType(), + UPstream::msgType()+77432, comm_ ); @@ -784,7 +786,7 @@ bool Foam::faceAreaWeightAMI::calculate globalSrcFaces, tgtAddress_, cMapSrc, - UPstream::msgType(), + UPstream::msgType()+77433, comm_ ) ); @@ -797,10 +799,13 @@ bool Foam::faceAreaWeightAMI::calculate globalTgtFaces, srcAddress_, cMapTgt, - UPstream::msgType(), + UPstream::msgType()+77434, comm_ ) ); + + // Reset tag + UPstream::msgType(oldTag); } // Convert the weights from areas to normalised values diff --git a/src/meshTools/AMIInterpolation/AMIInterpolation/faceAreaWeightAMI2D/faceAreaWeightAMI2D.C b/src/meshTools/AMIInterpolation/AMIInterpolation/faceAreaWeightAMI2D/faceAreaWeightAMI2D.C index dea7e4f032dd3769ccd47b7a31a4fac40f7a8df5..bd476f9633a8867682423cd1711355ac0b505b76 100644 --- a/src/meshTools/AMIInterpolation/AMIInterpolation/faceAreaWeightAMI2D/faceAreaWeightAMI2D.C +++ b/src/meshTools/AMIInterpolation/AMIInterpolation/faceAreaWeightAMI2D/faceAreaWeightAMI2D.C @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2020,2022 OpenCFD Ltd. + Copyright (C) 2020,2022,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -428,6 +428,8 @@ bool Foam::faceAreaWeightAMI2D::calculate if (distributed()) { const label myRank = UPstream::myProcNo(comm_); + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); const primitivePatch& srcPatch0 = this->srcPatch0(); const primitivePatch& tgtPatch0 = this->tgtPatch0(); @@ -465,7 +467,7 @@ bool Foam::faceAreaWeightAMI2D::calculate labelList(), ListOps::appendEqOp<label>(), flipOp(), // flip operation - UPstream::msgType(), + UPstream::msgType()+77431, comm_ ); @@ -482,7 +484,7 @@ bool Foam::faceAreaWeightAMI2D::calculate scalarList(), ListOps::appendEqOp<scalar>(), flipOp(), // flip operation - UPstream::msgType(), + UPstream::msgType()+77432, comm_ ); @@ -498,7 +500,7 @@ bool Foam::faceAreaWeightAMI2D::calculate globalSrcFaces, tgtAddress_, cMapSrc, - UPstream::msgType(), + UPstream::msgType()+77433, comm_ ) ); @@ -511,10 +513,13 @@ bool Foam::faceAreaWeightAMI2D::calculate globalTgtFaces, srcAddress_, cMapTgt, - UPstream::msgType(), + UPstream::msgType()+77434, comm_ ) ); + + // Reset tag + UPstream::msgType(oldTag); } // Convert the weights from areas to normalised values diff --git a/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicACMIGAMGInterfaceField/cyclicACMIGAMGInterfaceField.C b/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicACMIGAMGInterfaceField/cyclicACMIGAMGInterfaceField.C index 2d4491ca778b993c80e679823c80c144c4e4b6e7..1bc66d590b278efe14fbc191ce75eeca1553e938 100644 --- a/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicACMIGAMGInterfaceField/cyclicACMIGAMGInterfaceField.C +++ b/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicACMIGAMGInterfaceField/cyclicACMIGAMGInterfaceField.C @@ -238,10 +238,13 @@ void Foam::cyclicACMIGAMGInterfaceField::initInterfaceMatrixUpdate sendRequests_, scalarSendBufs_, recvRequests_, - scalarRecvBufs_ + scalarRecvBufs_, + 19462+cyclicACMIInterface_.index() // unique offset + patch index ); UPstream::commWarn(oldWarnComm); } + + this->updatedMatrix(false); } @@ -286,7 +289,13 @@ void Foam::cyclicACMIGAMGInterfaceField::updateInterfaceMatrix // Receive (= copy) data from buffers into work. TBD: receive directly // into slices of work. solveScalarField work; - map.receive(recvRequests_, scalarRecvBufs_, work); + map.receive + ( + recvRequests_, + scalarRecvBufs_, + work, + 19462+cyclicACMIInterface_.index() // unique offset + patch index + ); // Receive requests all handled by last function call recvRequests_.clear(); @@ -327,6 +336,8 @@ void Foam::cyclicACMIGAMGInterfaceField::updateInterfaceMatrix this->addToInternalField(result, !add, faceCells, coeffs, pnf); } + + this->updatedMatrix(true); } diff --git a/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicAMIGAMGInterfaceField/cyclicAMIGAMGInterfaceField.C b/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicAMIGAMGInterfaceField/cyclicAMIGAMGInterfaceField.C index 68d19e6c1d7c4a2c43be959dd0fe2b1c8c139cd4..f6bcc50d4e69f413c32a2c6c31c1a5865b634500 100644 --- a/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicAMIGAMGInterfaceField/cyclicAMIGAMGInterfaceField.C +++ b/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicAMIGAMGInterfaceField/cyclicAMIGAMGInterfaceField.C @@ -239,10 +239,13 @@ void Foam::cyclicAMIGAMGInterfaceField::initInterfaceMatrixUpdate sendRequests_, scalarSendBufs_, recvRequests_, - scalarRecvBufs_ + scalarRecvBufs_, + 19462+cyclicAMIInterface_.index() // unique offset + patch index ); UPstream::commWarn(oldWarnComm); } + + this->updatedMatrix(false); } @@ -300,7 +303,13 @@ void Foam::cyclicAMIGAMGInterfaceField::updateInterfaceMatrix // Receive (= copy) data from buffers into work. TBD: receive directly // into slices of work. solveScalarField work; - map.receive(recvRequests_, scalarRecvBufs_, work); + map.receive + ( + recvRequests_, + scalarRecvBufs_, + work, + 19462+cyclicAMIInterface_.index() // unique offset + patch index + ); // Receive requests all handled by last function call recvRequests_.clear(); @@ -340,6 +349,8 @@ void Foam::cyclicAMIGAMGInterfaceField::updateInterfaceMatrix // Add result using coefficients this->addToInternalField(result, !add, faceCells, coeffs, pnf); } + + this->updatedMatrix(true); } diff --git a/src/meshTools/AMIInterpolation/patches/cyclicAMI/cyclicAMIPolyPatch/cyclicAMIPolyPatchTemplates.C b/src/meshTools/AMIInterpolation/patches/cyclicAMI/cyclicAMIPolyPatch/cyclicAMIPolyPatchTemplates.C index 636c77f01aa9b934d706156d231dc70a4abf3ae9..036737e15c3082f3b418ab55de6fdf14fa3420aa 100644 --- a/src/meshTools/AMIInterpolation/patches/cyclicAMI/cyclicAMIPolyPatch/cyclicAMIPolyPatchTemplates.C +++ b/src/meshTools/AMIInterpolation/patches/cyclicAMI/cyclicAMIPolyPatch/cyclicAMIPolyPatchTemplates.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2021-2023 OpenCFD Ltd. + Copyright (C) 2021-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -175,7 +175,15 @@ void Foam::cyclicAMIPolyPatch::initInterpolateUntransformed const auto& map = (owner() ? AMI.tgtMap() : AMI.srcMap()); // Insert send/receive requests (non-blocking) - map.send(fld, sendRequests, sendBuffers, recvRequests, recvBuffers); + map.send + ( + fld, + sendRequests, + sendBuffers, + recvRequests, + recvBuffers, + 3894+this->index() // unique offset + patch index + ); } } @@ -256,7 +264,13 @@ Foam::tmp<Foam::Field<Type>> Foam::cyclicAMIPolyPatch::interpolate { // Receive (= copy) data from buffers into work. TBD: receive directly // into slices of work. - map.receive(requests, recvBuffers, work); + map.receive + ( + requests, + recvBuffers, + work, + 3894+this->index() // unique offset + patch index + ); } const Field<Type>& fld = (AMI.distributed() ? work : localFld); diff --git a/src/meshTools/Make/files b/src/meshTools/Make/files index acbb97b1f1450d9d049b405db23fa669546b5b29..f207200fabca45b1836e841a6a99cf70c771e626 100644 --- a/src/meshTools/Make/files +++ b/src/meshTools/Make/files @@ -217,6 +217,7 @@ $(pointSources)/searchableSurfaceToPoint/searchableSurfaceToPoint.C $(pointSources)/sphereToPoint/sphereToPoint.C $(pointSources)/surfaceToPoint/surfaceToPoint.C $(pointSources)/zoneToPoint/zoneToPoint.C +$(pointSources)/patchToPoint/patchToPoint.C faceZoneSources = topoSet/faceZoneSources $(faceZoneSources)/topoSetFaceZoneSource/topoSetFaceZoneSource.C diff --git a/src/meshTools/cellDist/cellDistFuncs.C b/src/meshTools/cellDist/cellDistFuncs.C index 9a3a1b00d60a92038e68264e576d569fa3f32ecc..2404e0d57cc7118885826109700e2cd964db7269 100644 --- a/src/meshTools/cellDist/cellDistFuncs.C +++ b/src/meshTools/cellDist/cellDistFuncs.C @@ -29,6 +29,8 @@ License #include "cellDistFuncs.H" #include "polyMesh.H" #include "polyBoundaryMesh.H" +#include "uindirectPrimitivePatch.H" +#include "registerSwitch.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // @@ -37,6 +39,16 @@ namespace Foam defineTypeNameAndDebug(cellDistFuncs, 0); } +bool Foam::cellDistFuncs::useCombinedWallPatch = true; + +registerOptSwitch +( + "useCombinedWallPatch", + bool, + Foam::cellDistFuncs::useCombinedWallPatch +); + + // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::cellDistFuncs::cellDistFuncs(const polyMesh& mesh) @@ -56,134 +68,6 @@ Foam::labelHashSet Foam::cellDistFuncs::getPatchIDs } -// Return smallest true distance from p to any of wallFaces. -// Note that even if normal hits face we still check other faces. -// Note that wallFaces is untruncated and we explicitly pass in size. -Foam::scalar Foam::cellDistFuncs::smallestDist -( - const point& p, - const polyPatch& patch, - const labelUList& wallFaces, - label& minFacei -) const -{ - const pointField& points = patch.points(); - - scalar minDist = GREAT; - minFacei = -1; - - for (const label patchFacei : wallFaces) - { - const pointHit curHit = patch[patchFacei].nearestPoint(p, points); - - if (curHit.distance() < minDist) - { - minDist = curHit.distance(); - minFacei = patch.start() + patchFacei; - } - } - - return minDist; -} - - -// Get point neighbours of facei (including facei). Returns number of faces. -// Note: does not allocate storage but does use linear search to determine -// uniqueness. For polygonal faces this might be quite inefficient. -void Foam::cellDistFuncs::getPointNeighbours -( - const primitivePatch& patch, - const label patchFacei, - DynamicList<label>& neighbours -) const -{ - neighbours.clear(); - - // Add myself - neighbours.append(patchFacei); - - // Add all face neighbours - const labelList& faceNeighbours = patch.faceFaces()[patchFacei]; - - for (const label nbr : faceNeighbours) - { - neighbours.push_uniq(nbr); - } - - // Add all point-only neighbours by linear searching in edge neighbours. - // Assumes that point-only neighbours are not using multiple points on - // face. - - const face& f = patch.localFaces()[patchFacei]; - - forAll(f, fp) - { - label pointi = f[fp]; - - const labelList& pointNbs = patch.pointFaces()[pointi]; - - for (const label facei : pointNbs) - { - // Check for facei in edge-neighbours part of neighbours - neighbours.push_uniq(facei); - } - } - - - if (debug) - { - // Check for duplicates - - // Use hashSet to determine nbs. - labelHashSet nbs(4*f.size()); - - forAll(f, fp) - { - const labelList& pointNbs = patch.pointFaces()[f[fp]]; - nbs.insert(pointNbs); - } - - // Subtract ours. - for (const label nb : neighbours) - { - if (!nbs.found(nb)) - { - SeriousErrorInFunction - << "getPointNeighbours : patchFacei:" << patchFacei - << " verts:" << f << endl; - - forAll(f, fp) - { - SeriousErrorInFunction - << "point:" << f[fp] << " pointFaces:" - << patch.pointFaces()[f[fp]] << endl; - } - - for (const label facei : neighbours) - { - SeriousErrorInFunction - << "fast nbr:" << facei - << endl; - } - - FatalErrorInFunction - << "Problem: fast pointNeighbours routine included " << nb - << " which is not in proper neighbour list " << nbs.toc() - << abort(FatalError); - } - nbs.erase(nb); - } - - if (nbs.size()) - { - FatalErrorInFunction - << "Problem: fast pointNeighbours routine did not find " - << nbs.toc() << abort(FatalError); - } - } -} - - // size of largest patch (out of supplied subset of patches) Foam::label Foam::cellDistFuncs::maxPatchSize ( @@ -275,7 +159,7 @@ void Foam::cellDistFuncs::correctBoundaryFaceCells ); // Store wallCell and its nearest neighbour - nearestFace.insert(celli, minFacei); + nearestFace.insert(celli, patch.start()+minFacei); } } } @@ -348,7 +232,7 @@ void Foam::cellDistFuncs::correctBoundaryPointCells ); // Store wallCell and its nearest neighbour - nearestFace.insert(celli, minFacei); + nearestFace.insert(celli, patch.start()+minFacei); } } } @@ -357,4 +241,142 @@ void Foam::cellDistFuncs::correctBoundaryPointCells } +void Foam::cellDistFuncs::correctBoundaryCells +( + const labelList& patchIDs, + const bool doPointCells, + scalarField& wallDistCorrected, + Map<label>& nearestFace +) const +{ + label nWalls = 0; + { + for (const label patchi : patchIDs) + { + nWalls += mesh().boundaryMesh()[patchi].size(); + } + } + + + DynamicList<label> faceLabels(nWalls); + { + for (const label patchi : patchIDs) + { + const auto& patch = mesh().boundaryMesh()[patchi]; + forAll(patch, i) + { + faceLabels.append(patch.start()+i); + } + } + } + + const uindirectPrimitivePatch wallPatch + ( + UIndirectList<face>(mesh().faces(), faceLabels), + mesh_.points() + ); + + + // Correct all cells with face on wall + const vectorField& cellCentres = mesh().cellCentres(); + + DynamicList<label> neighbours; + + nWalls = 0; + for (const label patchi : patchIDs) + { + const auto& patch = mesh().boundaryMesh()[patchi]; + const auto areaFraction(patch.areaFraction()); + const labelUList& faceCells = patch.faceCells(); + + // Check cells with face on wall + forAll(patch, patchFacei) + { + if (areaFraction && (areaFraction()[patchFacei] <= 0.5)) + { + // For cyclicACMI: more cyclic than wall + } + else + { + getPointNeighbours(wallPatch, nWalls, neighbours); + + const label celli = faceCells[patchFacei]; + + label minFacei = -1; + wallDistCorrected[celli] = smallestDist + ( + cellCentres[celli], + wallPatch, + neighbours, + minFacei + ); + + // Store wallCell and its nearest neighbour + nearestFace.insert(celli, nWalls+minFacei); + } + + nWalls++; + } + } + + // Correct all cells with a point on the wall + if (doPointCells) + { + const auto& meshPoints = wallPatch.meshPoints(); + const auto& localFaces = wallPatch.localFaces(); + + bitSet isWallPoint(meshPoints.size(), true); + + nWalls = 0; + for (const label patchi : patchIDs) + { + const auto& patch = mesh().boundaryMesh()[patchi]; + const auto areaFraction(patch.areaFraction()); + + // Check cells with face on wall + forAll(patch, patchFacei) + { + if (areaFraction && (areaFraction()[patchFacei] <= 0.5)) + { + // For cyclicACMI: more cyclic than wall + isWallPoint.unset(localFaces[nWalls]); + } + + nWalls++; + } + } + + const auto& pointFaces = wallPatch.pointFaces(); + + for (const label patchPointi : isWallPoint) + { + const label verti = meshPoints[patchPointi]; + + const labelList& neighbours = mesh().pointCells(verti); + + for (const label celli : neighbours) + { + if (!nearestFace.found(celli)) + { + const labelList& wallFaces = pointFaces[patchPointi]; + + label minFacei = -1; + + wallDistCorrected[celli] = smallestDist + ( + cellCentres[celli], + wallPatch, + wallFaces, + minFacei + ); + + // Store wallCell and its nearest neighbour + nearestFace.insert(celli, wallPatch.addressing()[minFacei]); + } + } + } + } +} + + // ************************************************************************* // diff --git a/src/meshTools/cellDist/cellDistFuncs.H b/src/meshTools/cellDist/cellDistFuncs.H index 6935a1c93d31dfd15e118ed3f1d7997b1c2b1572..19defde509fbdc3ad37715ecbb3af17477bac1a5 100644 --- a/src/meshTools/cellDist/cellDistFuncs.H +++ b/src/meshTools/cellDist/cellDistFuncs.H @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2020 OpenCFD Ltd. + Copyright (C) 2020,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -79,8 +79,16 @@ class cellDistFuncs public: + // Static Data Members + ClassName("cellDistFuncs"); + + //- Use combined-wall-patches wall distance v.s. v2406 per-patch + //- distance. Default is true + static bool useCombinedWallPatch; + + // Constructors //- Construct from mesh @@ -103,22 +111,22 @@ public: template<class Type> labelHashSet getPatchIDs() const; - //- Calculate smallest true distance (and face index) + //- Calculate smallest true distance (and patch face index) // from pt to faces wallFaces. - // For efficiency reasons we still pass in patch instead of extracting - // it from mesh_ + template<class PatchType> scalar smallestDist ( const point& p, - const polyPatch& patch, + const PatchType& patch, const labelUList& wallFaces, - label& meshFacei + label& patchFacei ) const; //- Get faces sharing point with face on patch + template<class PatchType> void getPointNeighbours ( - const primitivePatch&, + const PatchType&, const label patchFacei, DynamicList<label>& ) const; @@ -147,6 +155,17 @@ public: scalarField& wallDistCorrected, Map<label>& nearestFace ) const; + + //- Correct all cells connected to any of the patches in patchIDs. Sets + // - cell values in wallDistCorrected + // - (mesh) face that contains the nearest point + void correctBoundaryCells + ( + const labelList& patchIDs, + const bool doPointCells, + scalarField& wallDistCorrected, + Map<label>& nearestFace + ) const; }; diff --git a/src/meshTools/cellDist/cellDistFuncsTemplates.C b/src/meshTools/cellDist/cellDistFuncsTemplates.C index 1b74f101540becfcc4d6a69fd5f63ecd4efdce24..86e225077713f68032a5e075a90574f9f6fd13a0 100644 --- a/src/meshTools/cellDist/cellDistFuncsTemplates.C +++ b/src/meshTools/cellDist/cellDistFuncsTemplates.C @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2011-2016,2024 OpenFOAM Foundation ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -50,4 +50,135 @@ Foam::labelHashSet Foam::cellDistFuncs::getPatchIDs() const } +template<class PatchType> +Foam::scalar Foam::cellDistFuncs::smallestDist +( + const point& p, + const PatchType& patch, + const labelUList& wallFaces, + label& minFacei +) const +{ + // Return smallest true distance from p to any of wallFaces. + // Note that even if normal hits face we still check other faces. + + const pointField& points = patch.points(); + + scalar minDist = GREAT; + minFacei = -1; + + for (const label patchFacei : wallFaces) + { + const pointHit curHit = patch[patchFacei].nearestPoint(p, points); + + if (curHit.distance() < minDist) + { + minDist = curHit.distance(); + minFacei = patchFacei; + } + } + + return minDist; +} + + +template<class PatchType> +void Foam::cellDistFuncs::getPointNeighbours +( + const PatchType& patch, + const label patchFacei, + DynamicList<label>& neighbours +) const +{ + // Get point neighbours of facei (including facei). Returns number of faces. + // Note: does not allocate storage but does use linear search to determine + // uniqueness. For polygonal faces this might be quite inefficient. + + neighbours.clear(); + + // Add myself + neighbours.append(patchFacei); + + // Add all face neighbours + const labelList& faceNeighbours = patch.faceFaces()[patchFacei]; + + for (const label nbr : faceNeighbours) + { + neighbours.push_uniq(nbr); + } + + // Add all point-only neighbours by linear searching in edge neighbours. + // Assumes that point-only neighbours are not using multiple points on + // face. + + const face& f = patch.localFaces()[patchFacei]; + + forAll(f, fp) + { + label pointi = f[fp]; + + const labelList& pointNbs = patch.pointFaces()[pointi]; + + for (const label facei : pointNbs) + { + // Check for facei in edge-neighbours part of neighbours + neighbours.push_uniq(facei); + } + } + + + if (debug) + { + // Check for duplicates + + // Use hashSet to determine nbs. + labelHashSet nbs(4*f.size()); + + forAll(f, fp) + { + const labelList& pointNbs = patch.pointFaces()[f[fp]]; + nbs.insert(pointNbs); + } + + // Subtract ours. + for (const label nb : neighbours) + { + if (!nbs.found(nb)) + { + SeriousErrorInFunction + << "getPointNeighbours : patchFacei:" << patchFacei + << " verts:" << f << endl; + + forAll(f, fp) + { + SeriousErrorInFunction + << "point:" << f[fp] << " pointFaces:" + << patch.pointFaces()[f[fp]] << endl; + } + + for (const label facei : neighbours) + { + SeriousErrorInFunction + << "fast nbr:" << facei + << endl; + } + + FatalErrorInFunction + << "Problem: fast pointNeighbours routine included " << nb + << " which is not in proper neighbour list " << nbs.toc() + << abort(FatalError); + } + nbs.erase(nb); + } + + if (nbs.size()) + { + FatalErrorInFunction + << "Problem: fast pointNeighbours routine did not find " + << nbs.toc() << abort(FatalError); + } + } +} + + // ************************************************************************* // diff --git a/src/meshTools/cellDist/patchWave/patchDataWave.C b/src/meshTools/cellDist/patchWave/patchDataWave.C index 9f943225c3e90476870f2db550b9813bca889549..3e33b3ae7fad8d6ad907f8232b18b371694e5e42 100644 --- a/src/meshTools/cellDist/patchWave/patchDataWave.C +++ b/src/meshTools/cellDist/patchWave/patchDataWave.C @@ -263,20 +263,35 @@ void Foam::patchDataWave<TransferType, TrackingData>::correct() { Map<label> nearestFace(2 * nWalls); - // Get distance and indices of nearest face - correctBoundaryFaceCells - ( - patchIDs_, - distance_, - nearestFace - ); - - correctBoundaryPointCells - ( - patchIDs_, - distance_, - nearestFace - ); + if (cellDistFuncs::useCombinedWallPatch) + { + // Correct across multiple patches + correctBoundaryCells + ( + patchIDs_.sortedToc(), + true, // do point-connected cells as well + distance_, + nearestFace + ); + } + else + { + // Get distance and indices of nearest face + correctBoundaryFaceCells + ( + patchIDs_, + distance_, + nearestFace + ); + + correctBoundaryPointCells + ( + patchIDs_, + distance_, + nearestFace + ); + } + // Transfer data from nearest face to cell const List<TransferType>& faceInfo = waveInfo.allFaceInfo(); diff --git a/src/meshTools/cellDist/patchWave/patchWave.C b/src/meshTools/cellDist/patchWave/patchWave.C index deeb062d40757a08fa4876427a7411017b68c8db..3adcc15da07b52f4cad624225980b048feb6babe 100644 --- a/src/meshTools/cellDist/patchWave/patchWave.C +++ b/src/meshTools/cellDist/patchWave/patchWave.C @@ -204,19 +204,34 @@ void Foam::patchWave::correct() { Map<label> nearestFace(2*nPatch); - correctBoundaryFaceCells - ( - patchIDs_, - distance_, - nearestFace - ); + if (cellDistFuncs::useCombinedWallPatch) + { + // Correct across multiple patches + correctBoundaryCells + ( + patchIDs_.sortedToc(), + true, // do point-connected cells as well + distance_, + nearestFace + ); + } + else + { + // Backwards compatible + correctBoundaryFaceCells + ( + patchIDs_, + distance_, + nearestFace + ); - correctBoundaryPointCells - ( - patchIDs_, - distance_, - nearestFace - ); + correctBoundaryPointCells + ( + patchIDs_, + distance_, + nearestFace + ); + } } } diff --git a/src/meshTools/coordSet/writers/nastran/nastranCoordSetWriter.C b/src/meshTools/coordSet/writers/nastran/nastranCoordSetWriter.C index 14dbfc8cb1dc08a81ec3cb46c36c07fdcfb255f8..a25cba89b2127f1b38d1d27e71fc8b6acef4a6a7 100644 --- a/src/meshTools/coordSet/writers/nastran/nastranCoordSetWriter.C +++ b/src/meshTools/coordSet/writers/nastran/nastranCoordSetWriter.C @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2018-2022 OpenCFD Ltd. + Copyright (C) 2018-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -250,12 +250,12 @@ Foam::fileName Foam::coordSetWriters::nastranWriter::writeTemplate Info<< "Writing nastran geometry to " << outputFile << endl; } - if (!isDir(outputFile.path())) + if (!Foam::isDir(outputFile.path())) { - mkDir(outputFile.path()); + Foam::mkDir(outputFile.path()); } - OFstream os(outputFile); + OFstream os(IOstreamOption::ATOMIC, outputFile); fileFormats::NASCore::setPrecision(os, writeFormat_); os << "TITLE=OpenFOAM " << outputFile.stem() @@ -293,12 +293,12 @@ Foam::fileName Foam::coordSetWriters::nastranWriter::writeTemplate Info<< "Writing nastran geometry to " << outputFile << endl; } - if (!isDir(outputFile.path())) + if (!Foam::isDir(outputFile.path())) { - mkDir(outputFile.path()); + Foam::mkDir(outputFile.path()); } - OFstream os(outputFile); + OFstream os(IOstreamOption::ATOMIC, outputFile); fileFormats::NASCore::setPrecision(os, writeFormat_); os << "TITLE=OpenFOAM " << outputFile.stem() diff --git a/src/meshTools/fields/pointPatchFields/uniformFixedValue/uniformFixedValuePointPatchField.C b/src/meshTools/fields/pointPatchFields/uniformFixedValue/uniformFixedValuePointPatchField.C index 8ff95a4c48ad93a1fb538572e1ba26e28baef00e..0e35e0275d63abe759897e924a98bbe01b69c41d 100644 --- a/src/meshTools/fields/pointPatchFields/uniformFixedValue/uniformFixedValuePointPatchField.C +++ b/src/meshTools/fields/pointPatchFields/uniformFixedValue/uniformFixedValuePointPatchField.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation - Copyright (C) 2019-2023 OpenCFD Ltd. + Copyright (C) 2019-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -36,7 +36,7 @@ License // refCast<const facePointPatch>(p).patch() template<class Type> -const Foam::polyPatch& +const Foam::polyPatch* Foam::uniformFixedValuePointPatchField<Type>::getPatch(const pointPatch& p) { const polyMesh& mesh = p.boundaryMesh().mesh()(); @@ -44,11 +44,12 @@ Foam::uniformFixedValuePointPatchField<Type>::getPatch(const pointPatch& p) if (patchi == -1) { - FatalErrorInFunction - << "Cannot use uniformFixedValue on patch " << p.name() - << " since there is no underlying mesh patch" << exit(FatalError); + return nullptr; + } + else + { + return &mesh.boundaryMesh()[patchi]; } - return mesh.boundaryMesh()[patchi]; } @@ -63,7 +64,8 @@ uniformFixedValuePointPatchField ) : fixedValuePointPatchField<Type>(p, iF), - refValueFunc_(nullptr) + refValueFunc_(nullptr), + refPointValueFunc_(nullptr) {} @@ -79,13 +81,26 @@ uniformFixedValuePointPatchField fixedValuePointPatchField<Type>(p, iF, dict, IOobjectOption::NO_READ), refValueFunc_ ( - PatchFunction1<Type>::New + this->getPatch(p) + ? PatchFunction1<Type>::New ( - this->getPatch(p), + *(this->getPatch(p)), "uniformValue", dict, false // generate point values ) + : nullptr + ), + refPointValueFunc_ + ( + this->getPatch(p) + ? nullptr + : Function1<Type>::New + ( + "uniformValue", + dict, + &this->internalField().db() + ) ) { if (!this->readValueEntry(dict)) @@ -110,7 +125,8 @@ uniformFixedValuePointPatchField ) : fixedValuePointPatchField<Type>(ptf, p, iF, mapper), - refValueFunc_(ptf.refValueFunc_.clone(this->getPatch(p))) + refValueFunc_(ptf.refValueFunc_.clone(*(this->getPatch(p)))), + refPointValueFunc_(ptf.refPointValueFunc_.clone()) { if (mapper.direct() && !mapper.hasUnmapped()) { @@ -133,7 +149,8 @@ uniformFixedValuePointPatchField ) : fixedValuePointPatchField<Type>(ptf), - refValueFunc_(ptf.refValueFunc_.clone(this->getPatch(this->patch()))) + refValueFunc_(ptf.refValueFunc_.clone(*(this->getPatch(this->patch())))), + refPointValueFunc_(ptf.refPointValueFunc_.clone()) {} @@ -146,7 +163,8 @@ uniformFixedValuePointPatchField ) : fixedValuePointPatchField<Type>(ptf, iF), - refValueFunc_(ptf.refValueFunc_.clone(this->getPatch(this->patch()))) + refValueFunc_(ptf.refValueFunc_.clone(*(this->getPatch(this->patch())))), + refPointValueFunc_(ptf.refPointValueFunc_.clone()) {} @@ -170,6 +188,14 @@ void Foam::uniformFixedValuePointPatchField<Type>::autoMap this->evaluate(); } } + if (refPointValueFunc_) + { + if (refPointValueFunc_().constant()) + { + // If mapper is not dependent on time we're ok to evaluate + this->evaluate(); + } + } } @@ -201,7 +227,14 @@ void Foam::uniformFixedValuePointPatchField<Type>::updateCoeffs() } const scalar t = this->db().time().timeOutputValue(); - valuePointPatchField<Type>::operator=(refValueFunc_->value(t)); + if (refValueFunc_) + { + valuePointPatchField<Type>::operator=(refValueFunc_->value(t)); + } + else + { + valuePointPatchField<Type>::operator=(refPointValueFunc_->value(t)); + } fixedValuePointPatchField<Type>::updateCoeffs(); } @@ -216,6 +249,10 @@ write(Ostream& os) const { refValueFunc_->writeData(os); } + if (refPointValueFunc_) + { + refPointValueFunc_->writeData(os); + } } diff --git a/src/meshTools/fields/pointPatchFields/uniformFixedValue/uniformFixedValuePointPatchField.H b/src/meshTools/fields/pointPatchFields/uniformFixedValue/uniformFixedValuePointPatchField.H index 9cf2a5c27efc5136ceb572db716db072ce76cf78..3312fb063c86dfcb71fa7a5cb8da8c67ec524e42 100644 --- a/src/meshTools/fields/pointPatchFields/uniformFixedValue/uniformFixedValuePointPatchField.H +++ b/src/meshTools/fields/pointPatchFields/uniformFixedValue/uniformFixedValuePointPatchField.H @@ -86,10 +86,13 @@ class uniformFixedValuePointPatchField //- Function providing the value autoPtr<PatchFunction1<Type>> refValueFunc_; + //- Function providing the value (if not on polyPatch) + autoPtr<Function1<Type>> refPointValueFunc_; + // Private Member Functions - static const polyPatch& getPatch(const pointPatch&); + static const polyPatch* getPatch(const pointPatch&); public: diff --git a/src/meshTools/polyTopoChange/polyTopoChange.C b/src/meshTools/polyTopoChange/polyTopoChange.C index ff2cc6f9846b25a5a110387f32550bf64c8f65fb..a749722f0efc787dec44155d658d42a78e0bc560 100644 --- a/src/meshTools/polyTopoChange/polyTopoChange.C +++ b/src/meshTools/polyTopoChange/polyTopoChange.C @@ -2026,6 +2026,9 @@ void Foam::polyTopoChange::reorderCoupledFaces // Rotation on new faces. labelList rotation(faces_.size(), Zero); + // Allocate unique tag for all comms + const int oldTag = UPstream::incrMsgType(); + PstreamBuffers pBufs; // Send ordering @@ -2131,6 +2134,9 @@ void Foam::polyTopoChange::reorderCoupledFaces } } } + + // Reset tag + UPstream::msgType(oldTag); } diff --git a/src/meshTools/searchableSurfaces/triSurfaceMesh/triSurfaceMesh.C b/src/meshTools/searchableSurfaces/triSurfaceMesh/triSurfaceMesh.C index 8976887905924d6c8f0fe559955959f44af87b7a..4d13ca4deb75bfa8ff9db1b22e93045bb79a2a45 100644 --- a/src/meshTools/searchableSurfaces/triSurfaceMesh/triSurfaceMesh.C +++ b/src/meshTools/searchableSurfaces/triSurfaceMesh/triSurfaceMesh.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation - Copyright (C) 2015-2020,2022 OpenCFD Ltd. + Copyright (C) 2015-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -101,6 +101,7 @@ bool Foam::triSurfaceMesh::isSurfaceClosed() const if (debug) { Pout<< "triSurfaceMesh::isSurfaceClosed:" + << " surface:" << searchableSurface::name() << " determining closedness for surface with " << triSurface::size() << " triangles" << endl; } @@ -223,6 +224,7 @@ bool Foam::triSurfaceMesh::isSurfaceClosed() const if (debug) { Pout<< "triSurfaceMesh::isSurfaceClosed :" + << " surface:" << searchableSurface::name() << " surface is non-manifold" << endl; } return false; @@ -240,6 +242,7 @@ bool Foam::triSurfaceMesh::isSurfaceClosed() const if (debug) { Pout<< "triSurfaceMesh::isSurfaceClosed :" + << " surface:" << searchableSurface::name() << " surface is open" << endl; } return false; @@ -274,6 +277,7 @@ bool Foam::triSurfaceMesh::isSurfaceClosed() const if (debug) { Pout<< "triSurfaceMesh::isSurfaceClosed :" + << " surface:" << searchableSurface::name() << " surface is closed" << endl; } return true; @@ -738,6 +742,7 @@ void Foam::triSurfaceMesh::movePoints(const pointField& newPoints) if (debug) { Pout<< "triSurfaceMesh::movePoints :" + << " surface:" << searchableSurface::name() << " moving at time " << objectRegistry::time().timeName() << endl; } @@ -773,6 +778,7 @@ Foam::triSurfaceMesh::edgeTree() const if (debug) { Pout<< "triSurfaceMesh::edgeTree :" + << " surface:" << searchableSurface::name() << " constructing tree for " << nEdges() - nInternalEdges() << " boundary edges" << endl; } @@ -882,6 +888,7 @@ Foam::volumeType Foam::triSurfaceMesh::outsideVolumeType() const if (debug) { Pout<< "triSurfaceMesh::outsideVolumeType :" + << " surface:" << searchableSurface::name() << " triggering outsidePoint:" << outsidePt << " orientation" << endl; } @@ -906,6 +913,49 @@ Foam::volumeType Foam::triSurfaceMesh::outsideVolumeType() const } +void Foam::triSurfaceMesh::flip() +{ + if (debug) + { + Pout<< "triSurfaceMesh::flip :" + << " surface:" << searchableSurface::name() + << " with current orientation " + << volumeType::names[outsideVolType_] + << endl; + } + + // Don't bother getting nearest etc. Just flip the triangles. + + // triSurface + { + triSurface& s = *this; + s.clearOut(); + for (auto& tri : s) + { + tri.flip(); + } + } + + // triSurfaceRegionSearch (if cached volume type) + triSurfaceRegionSearch::flip(); + + // edge tree not relevant + + if (hasVolumeType()) + { + // outsideVolType_ + if (outsideVolType_ == volumeType::INSIDE) + { + outsideVolType_ = volumeType::OUTSIDE; + } + else if (outsideVolType_ == volumeType::OUTSIDE) + { + outsideVolType_ = volumeType::INSIDE; + } + } +} + + void Foam::triSurfaceMesh::findNearest ( const pointField& samples, @@ -916,6 +966,7 @@ void Foam::triSurfaceMesh::findNearest if (debug) { Pout<< "triSurfaceMesh::findNearest :" + << " surface:" << searchableSurface::name() << " trying to find nearest for " << samples.size() << " samples with max sphere " << (samples.size() ? Foam::sqrt(max(nearestDistSqr)) : Zero) @@ -942,6 +993,7 @@ void Foam::triSurfaceMesh::findNearest if (debug) { Pout<< "triSurfaceMesh::findNearest :" + << " surface:" << searchableSurface::name() << " trying to find nearest and region for " << samples.size() << " samples with max sphere " << (samples.size() ? Foam::sqrt(max(nearestDistSqr)) : Zero) @@ -973,6 +1025,7 @@ void Foam::triSurfaceMesh::findLine if (debug) { Pout<< "triSurfaceMesh::findLine :" + << " surface:" << searchableSurface::name() << " intersecting with " << start.size() << " rays" << endl; } @@ -996,6 +1049,7 @@ void Foam::triSurfaceMesh::findLineAny if (debug) { Pout<< "triSurfaceMesh::findLineAny :" + << " surface:" << searchableSurface::name() << " intersecting with " << start.size() << " rays" << endl; } @@ -1019,6 +1073,7 @@ void Foam::triSurfaceMesh::findLineAll if (debug) { Pout<< "triSurfaceMesh::findLineAll :" + << " surface:" << searchableSurface::name() << " intersecting with " << start.size() << " rays" << endl; } @@ -1041,6 +1096,7 @@ void Foam::triSurfaceMesh::getRegion if (debug) { Pout<< "triSurfaceMesh::getRegion :" + << " surface:" << searchableSurface::name() << " getting region for " << info.size() << " triangles" << endl; } @@ -1074,6 +1130,7 @@ void Foam::triSurfaceMesh::getNormal if (debug) { Pout<< "triSurfaceMesh::getNormal :" + << " surface:" << searchableSurface::name() << " getting normal for " << info.size() << " triangles" << endl; } @@ -1182,6 +1239,7 @@ void Foam::triSurfaceMesh::setField(const labelList& values) if (debug) { Pout<< "triSurfaceMesh::setField :" + << " surface:" << searchableSurface::name() << " finished setting field for " << values.size() << " triangles" << endl; } @@ -1213,6 +1271,7 @@ void Foam::triSurfaceMesh::getField if (debug) { Pout<< "triSurfaceMesh::setField :" + << " surface:" << searchableSurface::name() << " finished getting field for " << info.size() << " triangles" << endl; } @@ -1231,6 +1290,7 @@ void Foam::triSurfaceMesh::getVolumeType if (debug) { Pout<< "triSurfaceMesh::getVolumeType :" + << " surface:" << searchableSurface::name() << " finding orientation for " << points.size() << " samples" << endl; } diff --git a/src/meshTools/searchableSurfaces/triSurfaceMesh/triSurfaceMesh.H b/src/meshTools/searchableSurfaces/triSurfaceMesh/triSurfaceMesh.H index e5a18bdeb4bbc417cb1c817a79c28dfb58b64cd8..c833e24d2b5b70cc4cd0362140d4ab6a6fe73abf 100644 --- a/src/meshTools/searchableSurfaces/triSurfaceMesh/triSurfaceMesh.H +++ b/src/meshTools/searchableSurfaces/triSurfaceMesh/triSurfaceMesh.H @@ -216,6 +216,9 @@ public: return triSurface::size(); } + //- Flip triangles, outsideVolumeType and all cached inside/outside. + virtual void flip(); + //- Get representative set of element coordinates // Usually the element centres (should be of length size()). virtual tmp<pointField> coordinates() const; diff --git a/src/meshTools/solidBodyMotionFunctions/tabulated6DoFMotion/tabulated6DoFMotion.C b/src/meshTools/solidBodyMotionFunctions/tabulated6DoFMotion/tabulated6DoFMotion.C index e9668c80447b6a1461e71871f7d4c90b0759ae1b..5e880c5be116ee46cbc240f2f6a0d46439b5bab4 100644 --- a/src/meshTools/solidBodyMotionFunctions/tabulated6DoFMotion/tabulated6DoFMotion.C +++ b/src/meshTools/solidBodyMotionFunctions/tabulated6DoFMotion/tabulated6DoFMotion.C @@ -31,6 +31,7 @@ License #include "Tuple2.H" #include "IFstream.H" #include "interpolateSplineXY.H" +#include "interpolateXY.H" #include "unitConversion.H" @@ -51,6 +52,17 @@ namespace solidBodyMotionFunctions } +const Foam::Enum +< + Foam::solidBodyMotionFunctions::tabulated6DoFMotion::interpolationType +> +Foam::solidBodyMotionFunctions::tabulated6DoFMotion::interpolationTypeNames +({ + { interpolationType::SPLINE, "spline" }, + { interpolationType::LINEAR, "linear" } +}); + + // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::solidBodyMotionFunctions::tabulated6DoFMotion::tabulated6DoFMotion @@ -90,12 +102,28 @@ Foam::solidBodyMotionFunctions::tabulated6DoFMotion::transformation() const << exit(FatalError); } - translationRotationVectors TRV = interpolateSplineXY - ( - t, - times_, - values_ - ); + translationRotationVectors TRV; + switch (interpolator_) + { + case interpolationType::SPLINE: + { + TRV = interpolateSplineXY(t, times_, values_); + break; + } + case interpolationType::LINEAR: + { + TRV = interpolateXY(t, times_, values_); + break; + } + default: + { + FatalErrorInFunction + << "Unrecognised 'interpolationScheme' option: " + << interpolationTypeNames[interpolator_] + << exit(FatalError); + break; + } + } // Convert the rotational motion from deg to rad TRV[1] *= degToRad(); @@ -155,6 +183,14 @@ bool Foam::solidBodyMotionFunctions::tabulated6DoFMotion::read SBMFCoeffs_.readEntry("CofG", CofG_); + interpolator_ = + interpolationTypeNames.getOrDefault + ( + "interpolationScheme", + SBMFCoeffs_, + interpolationType::SPLINE + ); + return true; } diff --git a/src/meshTools/solidBodyMotionFunctions/tabulated6DoFMotion/tabulated6DoFMotion.H b/src/meshTools/solidBodyMotionFunctions/tabulated6DoFMotion/tabulated6DoFMotion.H index cd583521a1b149f86ce0d8b8563f6590be20aff1..50fbe81de0f2198434b85bc9c865a738fda097eb 100644 --- a/src/meshTools/solidBodyMotionFunctions/tabulated6DoFMotion/tabulated6DoFMotion.H +++ b/src/meshTools/solidBodyMotionFunctions/tabulated6DoFMotion/tabulated6DoFMotion.H @@ -61,7 +61,23 @@ class tabulated6DoFMotion : public solidBodyMotionFunction { - // Private data + // Private Enumerations + + //- Options for the interpolation algorithm + enum class interpolationType : char + { + SPLINE = 0, //!< "Spline interpolation method" + LINEAR //!< "Linear interpolation method" + }; + + //- Names for interpolationType + static const Enum<interpolationType> interpolationTypeNames; + + + // Private Data + + //- Interpolation algorithm + interpolationType interpolator_; //- Time data file name read from dictionary fileName timeDataFileName_; diff --git a/src/meshTools/topoSet/pointSources/patchToPoint/patchToPoint.C b/src/meshTools/topoSet/pointSources/patchToPoint/patchToPoint.C new file mode 100644 index 0000000000000000000000000000000000000000..ed7198f14940c6fd4e7c7c4b6237d341bf9041fc --- /dev/null +++ b/src/meshTools/topoSet/pointSources/patchToPoint/patchToPoint.C @@ -0,0 +1,185 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "patchToPoint.H" +#include "pointMesh.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ + defineTypeNameAndDebug(patchToPoint, 0); + addToRunTimeSelectionTable(topoSetSource, patchToPoint, word); + addToRunTimeSelectionTable(topoSetSource, patchToPoint, istream); + addToRunTimeSelectionTable(topoSetPointSource, patchToPoint, word); + addToRunTimeSelectionTable(topoSetPointSource, patchToPoint, istream); + addNamedToRunTimeSelectionTable + ( + topoSetPointSource, + patchToPoint, + word, + patch + ); + addNamedToRunTimeSelectionTable + ( + topoSetPointSource, + patchToPoint, + istream, + patch + ); +} + + +Foam::topoSetSource::addToUsageTable Foam::patchToPoint::usage_ +( + patchToPoint::typeName, + "\n Usage: patchToPoint patch\n\n" + " Select all points in the pointPatch." + " Note:accepts wildcards for patch.\n\n" +); + + +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // + +void Foam::patchToPoint::combine(topoSet& set, const bool add) const +{ + const pointMesh& pMesh = pointMesh::New(mesh_, IOobject::READ_IF_PRESENT); + const pointBoundaryMesh& pbm = pMesh.boundary(); + + labelList patchIDs + ( + pbm.indices + ( + selectedPatches_, + true // useGroups + ) + ); + + + for (const label patchi : patchIDs) + { + const pointPatch& pp = pbm[patchi]; + + if (verbose_) + { + Info<< " Found matching patch " << pp.name() << " with " + << returnReduce(pp.size(), sumOp<label>()) << " points" << endl; + } + + for (const label pointi : pp.meshPoints()) + { + addOrDelete(set, pointi, add); + } + } + + if (patchIDs.empty()) + { + WarningInFunction + << "Cannot find any patches matching " + << flatOutput(selectedPatches_) << nl + //<< "Valid names: " << flatOutput(mesh_.boundaryMesh().names()) + << endl; + } +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::patchToPoint::patchToPoint +( + const polyMesh& mesh, + const wordRe& patchName +) +: + topoSetPointSource(mesh), + selectedPatches_(one{}, patchName) +{} + + +Foam::patchToPoint::patchToPoint +( + const polyMesh& mesh, + const dictionary& dict +) +: + topoSetPointSource(mesh), + selectedPatches_() +{ + // Look for 'patches' and 'patch', but accept 'name' as well + if (!dict.readIfPresent("patches", selectedPatches_)) + { + selectedPatches_.resize(1); + selectedPatches_.front() = + dict.getCompat<wordRe>("patch", {{"name", 1806}}); + } +} + + +Foam::patchToPoint::patchToPoint +( + const polyMesh& mesh, + Istream& is +) +: + topoSetPointSource(mesh), + selectedPatches_(one{}, wordRe(checkIs(is))) +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +void Foam::patchToPoint::applyToSet +( + const topoSetSource::setAction action, + topoSet& set +) const +{ + if (action == topoSetSource::ADD || action == topoSetSource::NEW) + { + if (verbose_) + { + Info<< " Adding all points of patches: " + << flatOutput(selectedPatches_) << " ..." << endl; + } + + combine(set, true); + } + else if (action == topoSetSource::SUBTRACT) + { + if (verbose_) + { + Info<< " Removing all points of patches: " + << flatOutput(selectedPatches_) << " ..." << endl; + } + + combine(set, false); + } +} + + +// ************************************************************************* // diff --git a/src/meshTools/topoSet/pointSources/patchToPoint/patchToPoint.H b/src/meshTools/topoSet/pointSources/patchToPoint/patchToPoint.H new file mode 100644 index 0000000000000000000000000000000000000000..b1ed3913775fdc6b1e238a3b038b60d0c95e62e0 --- /dev/null +++ b/src/meshTools/topoSet/pointSources/patchToPoint/patchToPoint.H @@ -0,0 +1,174 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::patchToPoint + +Description + A \c topoSetPointSource to select points associated with given patch(es). + + Operands: + \table + Operand | Type | Location + output | pointSet | $FOAM_CASE/constant/polyMesh/sets/\<set\> + \endtable + +Usage + Minimal example by using \c system/topoSetDict.actions: + \verbatim + { + // Mandatory (inherited) entries + name <name>; + type pointSet; + action <action>; + + // Mandatory entries + source patchToPoint; + + // Conditional mandatory entries + // Select either of the below + + // Option-1 + patches + ( + <patchName1> + <patchName2> + ... + ); + + // Option-2 + patch <patchName>; + } + \endverbatim + + where the entries mean: + \table + Property | Description | Type | Req'd | Dflt + name | Name of pointSet | word | yes | - + type | Type name: pointSet | word | yes | - + action | Action applied on points - see below | word | yes | - + source | Source name: patchToPoint | word | yes | - + \endtable + + Options for the \c action entry: + \verbatim + new | Create a new pointSet from selected points + add | Add selected points into this pointSet + subtract | Remove selected points from this pointSet + \endverbatim + + Options for the conditional mandatory entries: + \verbatim + Entry | Description | Type | Req'd | Dflt + patches | Names of patches | wordList | cond'l | - + patch | Name of patch | word | cond'l | - + \endverbatim + +Note + The order of precedence among the conditional mandatory entries from the + highest to the lowest is \c patches, and \c patch. + +See also + - Foam::patchToFace + +SourceFiles + patchToPoint.C + +\*---------------------------------------------------------------------------*/ + +#ifndef patchToPoint_H +#define patchToPoint_H + +#include "topoSetPointSource.H" +#include "wordRes.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class patchToPoint Declaration +\*---------------------------------------------------------------------------*/ + +class patchToPoint +: + public topoSetPointSource +{ + // Private Data + + //- Add usage string + static addToUsageTable usage_; + + //- Matcher for patches + wordRes selectedPatches_; + + + // Private Member Functions + + void combine(topoSet& set, const bool add) const; + + +public: + + //- Runtime type information + TypeName("patchToPoint"); + + + // Constructors + + //- Construct from components + patchToPoint(const polyMesh& mesh, const wordRe& patchName); + + //- Construct from dictionary + patchToPoint(const polyMesh& mesh, const dictionary& dict); + + //- Construct from Istream + patchToPoint(const polyMesh& mesh, Istream& is); + + + //- Destructor + virtual ~patchToPoint() = default; + + + // Member Functions + + virtual void applyToSet + ( + const topoSetSource::setAction action, + topoSet& set + ) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.C b/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.C index 2b99b2443a72ae869c52c7c2a3223c6496aa27c1..9242d8c7d4397c225a537d9e398d20f66af94ca4 100644 --- a/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.C +++ b/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2017-2022 OpenCFD Ltd. + Copyright (C) 2017-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -482,7 +482,8 @@ Foam::surfaceFeatures::surfaceFeatures::checkFlatRegionEdge ( const scalar tol, const scalar includedAngle, - const label edgeI + const label edgeI, + const point& leftPoint ) const { const triSurface& surf = surf_; @@ -643,6 +644,250 @@ Foam::surfaceFeatures::surfaceFeatures::checkFlatRegionEdge return surfaceFeatures::NONE; } +/* + +// TBD. Big problem for duplicate triangles with opposing normals: we +// don't know which one of the duplicates gets found on either side so +// the normal might be + or -. Hence on e.g. motorBike.obj we see feature +// lines where there shouldn't be +Foam::surfaceFeatures::edgeStatus +Foam::surfaceFeatures::surfaceFeatures::checkBinRegion +( + const label edgei, + const labelList& bin0, + const labelList& bin1 +) const +{ + const triSurface& surf = surf_; + const labelList& eFaces = surf.edgeFaces()[edgei]; + const edge& e = surf.edges()[edgei]; + + // 1. store + or - region number depending + // on orientation of triangle in bins[0] + labelList regionAndNormal(bin0.size()); + forAll(bin0, i) + { + const labelledTri& t = surf.localFaces()[eFaces[bin0[i]]]; + const auto dir = t.edgeDirection(e); + + if (dir > 0) + { + regionAndNormal[i] = t.region()+1; + } + else if (dir == 0) + { + FatalErrorInFunction + << exit(FatalError); + } + else + { + regionAndNormal[i] = -(t.region()+1); + } + } + + // 2. check against bin1 + labelList regionAndNormal1(bin1.size()); + forAll(bin1, i) + { + const labelledTri& t = surf.localFaces()[eFaces[bin1[i]]]; + const auto dir = t.edgeDirection(e); + + label myRegionAndNormal; + if (dir > 0) + { + myRegionAndNormal = t.region()+1; + } + else if (dir == 0) + { + myRegionAndNormal = 0; + FatalErrorInFunction + << exit(FatalError); + } + else + { + myRegionAndNormal = -(t.region()+1); + } + + regionAndNormal1[i] = myRegionAndNormal; + + label index = regionAndNormal.find(-myRegionAndNormal); + if (index == -1) + { + // Not found. + //Pout<< "cannot find region " << myRegionAndNormal + // << " in regions " << regionAndNormal << endl; + + return surfaceFeatures::REGION; + } + } + return surfaceFeatures::NONE; +} + + +Foam::surfaceFeatures::edgeStatus +Foam::surfaceFeatures::surfaceFeatures::checkFlatRegionEdge +( + const scalar tol, + const scalar includedAngle, + const label edgei, + const point& leftPoint +) const +{ + const triSurface& surf = surf_; + const edge& e = surf.edges()[edgei]; + const auto& mp = surf.meshPoints(); + const point eMid(edge(mp[e[0]], mp[e[1]]).centre(surf.points())); + const labelList& eFaces = surf.edgeFaces()[edgei]; + + vector leftVec(leftPoint-eMid); + leftVec.normalise(); + + // Bin according to normal and location w.r.t. first face + plane pl(eMid, leftVec); + + + DynamicList<labelList> leftBins(2); + DynamicList<labelList> rightBins(2); + DynamicList<vector> leftNormals(2); + DynamicList<vector> rightNormals(2); + + // Append first face since this is what leftPoint was created from in the + // first place + leftNormals.append(surf.faceNormals()[eFaces[0]]); + leftBins.append(labelList(1, 0)); + + for (label eFacei = 1; eFacei < eFaces.size(); ++eFacei) + { + const label facei = eFaces[eFacei]; + + const bool isLeft(pl.signedDistance(surf.faceCentres()[facei]) > 0); + + DynamicList<labelList>& bins = (isLeft ? leftBins : rightBins); + DynamicList<vector>& normals = (isLeft ? leftNormals : rightNormals); + + const vector& n = surf.faceNormals()[facei]; + + // Find the normal in normals + label index = -1; + forAll(normals, normalI) + { + if (mag(n & normals[normalI]) > (1-tol)) + { + index = normalI; + break; + } + } + + if (index != -1) + { + bins[index].append(eFacei); +// Pout<< "edge:" << edgei << " verts:" << e +// << " found existing normal bin:" << index +// << " after:" << flatOutput(bins[index]) +// << endl; + } + else if ((leftNormals.size()+rightNormals.size()) >= 2) + { + // Would be third normal. Mark as feature. + //Pout<< "** at edge:" << surf.localPoints()[e[0]] + // << surf.localPoints()[e[1]] + // << " have normals:" << normals + // << " and " << n << endl; + return surfaceFeatures::REGION; + } + else + { + normals.append(n); + bins.append(labelList(1, eFacei)); + } + } + + // Check resulting number of bins + if ((leftBins.size()+rightBins.size()) == 1) + { + // Note: should check here whether they are two sets of faces + // that are planar or indeed 4 faces al coming together at an edge. + //Pout<< "** at edge:" + // << surf.localPoints()[e[0]] + // << surf.localPoints()[e[1]] + // << " have single normal:" << normals[0] + // << endl; + return surfaceFeatures::NONE; + } + else + { + // Two bins. Check if normals make an angle + + //Pout<< "** at edge:" + // << surf.localPoints()[e[0]] + // << surf.localPoints()[e[1]] << nl + // << " normals:" << normals << nl + // << " bins :" << bins << nl + // << endl; + + if (includedAngle >= 0) + { + scalar minCos = Foam::cos(degToRad(180.0 - includedAngle)); + + forAll(eFaces, i) + { + const vector& ni = surf.faceNormals()[eFaces[i]]; + for (label j=i+1; j<eFaces.size(); j++) + { + const vector& nj = surf.faceNormals()[eFaces[j]]; + if (mag(ni & nj) < minCos) + { + //Pout<< "have sharp feature between normal:" << ni + // << " and " << nj << endl; + + // Is feature. Keep as region or convert to + // feature angle? For now keep as region. + return surfaceFeatures::REGION; + } + } + } + } + + // So now we have two normals bins but need to make sure both + // bins have the same regions in it. + + if (leftBins.size() == 2) + { + return checkBinRegion + ( + edgei, + leftBins[0], + leftBins[1] + ); + } + else if (leftBins.size() == 1 && rightBins.size() == 1) + { + return checkBinRegion + ( + edgei, + leftBins[0], + rightBins[0] + ); + } + else if (rightBins.size() == 2) + { + return checkBinRegion + ( + edgei, + rightBins[0], + rightBins[1] + ); + } + else + { + FatalErrorInFunction << "leftBins:" << leftBins + << " rightBins:" << rightBins << exit(FatalError); + } + } + + return surfaceFeatures::NONE; +} +*/ // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // @@ -1119,6 +1364,21 @@ void Foam::surfaceFeatures::excludeOpen } +void Foam::surfaceFeatures::excludeNonManifold +( + List<edgeStatus>& edgeStat +) const +{ + forAll(edgeStat, edgei) + { + if (surf_.edgeFaces()[edgei].size() > 2) + { + edgeStat[edgei] = surfaceFeatures::NONE; + } + } +} + + //- Divide into multiple normal bins // - return REGION if != 2 normals // - return REGION if 2 normals that make feature angle @@ -1138,11 +1398,14 @@ void Foam::surfaceFeatures::checkFlatRegionEdge if (eFaces.size() > 2 && (eFaces.size() % 2) == 0) { + const point& leftPoint = surf_.faceCentres()[eFaces[0]]; + edgeStat[edgei] = checkFlatRegionEdge ( tol, includedAngle, - edgei + edgei, + leftPoint ); } } diff --git a/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.H b/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.H index 387072396cbbbc9db6bdfd0bc444476d87ff7880..cf7b2222b7cceab23ac34bd543140c0a0be1ad0b 100644 --- a/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.H +++ b/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.H @@ -174,6 +174,15 @@ private: labelList& featVisited ); + ////- Given two valid bins check if the regions differ. If so return + ////- REGION, otherwise return NONE + //edgeStatus checkBinRegion + //( + // const label edgei, + // const labelList& bin0, + // const labelList& bin1 + //) const; + //- Divide into multiple normal bins // - set REGION if != 2 normals // - set REGION if 2 normals that make feature angle @@ -182,7 +191,8 @@ private: ( const scalar tol, const scalar includedAngle, - const label edgeI + const label edgeI, + const point& leftPoint ) const; public: @@ -347,6 +357,9 @@ public: //- Mark edges with a single connected face as 'NONE' void excludeOpen(List<edgeStatus>& edgeStat) const; + //- Mark edges with >2 connected faces as 'NONE' + void excludeNonManifold(List<edgeStatus>& edgeStat) const; + //- Divide into multiple normal bins // - set REGION if != 2 normals // - set REGION if 2 normals that make feature angle diff --git a/src/meshTools/triSurface/triSurfaceSearch/triSurfaceRegionSearch.C b/src/meshTools/triSurface/triSurfaceSearch/triSurfaceRegionSearch.C index cb8a67db5cc6ae0f4c5970f5a3a56a020b559b3b..eae21fb06e97b34b8b04ec50e7f136d9e5ec8c23 100644 --- a/src/meshTools/triSurface/triSurfaceSearch/triSurfaceRegionSearch.C +++ b/src/meshTools/triSurface/triSurfaceSearch/triSurfaceRegionSearch.C @@ -251,4 +251,26 @@ void Foam::triSurfaceRegionSearch::findNearest } +void Foam::triSurfaceRegionSearch::flip() +{ + triSurfaceSearch::flip(); + + for (auto& tree : treeByRegion_) + { + PackedList<2>& nodeTypes = tree.nodeTypes(); + forAll(nodeTypes, i) + { + if (nodeTypes[i] == volumeType::INSIDE) + { + nodeTypes[i] = volumeType::OUTSIDE; + } + else if (nodeTypes[i] == volumeType::OUTSIDE) + { + nodeTypes[i] = volumeType::INSIDE; + } + } + } +} + + // ************************************************************************* // diff --git a/src/meshTools/triSurface/triSurfaceSearch/triSurfaceRegionSearch.H b/src/meshTools/triSurface/triSurfaceSearch/triSurfaceRegionSearch.H index 724617d1321275ddc266ca0f305fc89170da2e6e..54143930eb55c1f451714210884f6ce5e59d7b99 100644 --- a/src/meshTools/triSurface/triSurfaceSearch/triSurfaceRegionSearch.H +++ b/src/meshTools/triSurface/triSurfaceSearch/triSurfaceRegionSearch.H @@ -128,6 +128,11 @@ public: const labelList& regionIndices, List<pointIndexHit>& info ) const; + + // Edit + + //- Flip orientation + void flip(); }; diff --git a/src/meshTools/triSurface/triSurfaceSearch/triSurfaceSearch.C b/src/meshTools/triSurface/triSurfaceSearch/triSurfaceSearch.C index 33fa142a6149cdb8b53c7d8d097a4e7dbe654ea6..b80944a4910ecf014befa9464c2f0c1bcb2889ca 100644 --- a/src/meshTools/triSurface/triSurfaceSearch/triSurfaceSearch.C +++ b/src/meshTools/triSurface/triSurfaceSearch/triSurfaceSearch.C @@ -255,6 +255,26 @@ Foam::triSurfaceSearch::tree() const } +void Foam::triSurfaceSearch::flip() +{ + if (treePtr_) + { + PackedList<2>& nodeTypes = treePtr_->nodeTypes(); + forAll(nodeTypes, i) + { + if (nodeTypes[i] == volumeType::INSIDE) + { + nodeTypes[i] = volumeType::OUTSIDE; + } + else if (nodeTypes[i] == volumeType::OUTSIDE) + { + nodeTypes[i] = volumeType::INSIDE; + } + } + } +} + + // Determine inside/outside for samples Foam::boolList Foam::triSurfaceSearch::calcInside ( diff --git a/src/meshTools/triSurface/triSurfaceSearch/triSurfaceSearch.H b/src/meshTools/triSurface/triSurfaceSearch/triSurfaceSearch.H index a4ce7c8c986b716d38b1878f7b76dab7eb27470d..2deb9abf9e2ad5e2a0469a8acf18f8279dfc0222 100644 --- a/src/meshTools/triSurface/triSurfaceSearch/triSurfaceSearch.H +++ b/src/meshTools/triSurface/triSurfaceSearch/triSurfaceSearch.H @@ -126,6 +126,9 @@ public: //- Demand driven construction of the octree const indexedOctree<treeDataTriSurface>& tree() const; + //- Flip orientation (if cached on octree) + void flip(); + //- Return reference to the surface. const triSurface& surface() const { diff --git a/src/optimisation/adjointOptimisation/adjoint/objectives/objective/objective.C b/src/optimisation/adjointOptimisation/adjoint/objectives/objective/objective.C index fafdf44dcbb5d5738534ef0769dc715c0b020939..04d8f96e2f60ccc6c513137b03966358cf47c6ba 100644 --- a/src/optimisation/adjointOptimisation/adjoint/objectives/objective/objective.C +++ b/src/optimisation/adjointOptimisation/adjoint/objectives/objective/objective.C @@ -134,7 +134,13 @@ objective::objective objectiveName_(dict.dictName()), computeMeanFields_(false), // is reset in derived classes nullified_(false), - normalize_(dict.getOrDefault<bool>("normalize", false)), + normalize_ + ( + dict.getOrDefaultCompat<bool> + ( + "normalise", {{"normalize", 2406}}, false + ) + ), shouldWrite_(true), J_(Zero), diff --git a/src/optimisation/adjointOptimisation/adjoint/optimisation/designVariables/topODesignVariables/topODesignVariables.C b/src/optimisation/adjointOptimisation/adjoint/optimisation/designVariables/topODesignVariables/topODesignVariables.C index 5aa934df68d82bdf1446a0842f9265afcdffd3fa..6af1794f14ef561e20e15373d5f4be97453fd271 100644 --- a/src/optimisation/adjointOptimisation/adjoint/optimisation/designVariables/topODesignVariables/topODesignVariables.C +++ b/src/optimisation/adjointOptimisation/adjoint/optimisation/designVariables/topODesignVariables/topODesignVariables.C @@ -223,26 +223,32 @@ void Foam::topODesignVariables::readField { SubField<scalar>(*this, mesh_.nCells(), offset) = scalarField(name, *this, mesh_.nCells()); - - /* - // Set values next to IO boundaries if needed - if (setIOValues) + } + else + { + IOobject header + ( + name, + mesh_.time().timeName(), + mesh_, + IOobject::MUST_READ, + IOobject::AUTO_WRITE + ); + if (header.typeHeaderOk<volScalarField>()) { - forAll(mesh_.boundary(), patchI) + Info<< "Setting design variables based on the alpha field " + << nl << endl; + volScalarField volField + ( + header, + mesh_ + ); + const scalarField& field = volField.primitiveField(); + forAll(field, cI) { - const fvPatch& patch = mesh_.boundary()[patchI]; - if (patch.type() == "patch") - { - const labelList& faceCells = patch.faceCells(); - const scalarField& pf = volField.boundaryField()[patchI]; - forAll(faceCells, fI) - { - scalarField::operator[](offset + faceCells[fI]) = pf[fI]; - } - } + scalarField::operator[](offset + cI) = field[cI]; } } - */ } } diff --git a/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/ISQP/ISQP.C b/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/ISQP/ISQP.C index 08893cbc4989c2049b189b25f2110621faa2f69c..21c79c691b9e157250fd4622a820cd3cd737dbad 100644 --- a/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/ISQP/ISQP.C +++ b/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/ISQP/ISQP.C @@ -28,6 +28,7 @@ License #include "ISQP.H" #include "IOmanip.H" +#include "Constant.H" #include "addToRunTimeSelectionTable.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // @@ -128,7 +129,8 @@ void Foam::ISQP::allocateLagrangeMultipliers() if (includeExtraVars_) { extraVars_.reset(autoPtr<scalarField>::New(m, 1)); - z_.reset(autoPtr<scalarField>::New(m, max(1, 0.5*c_))); + const scalar t = mesh_.time().timeOutputValue(); + z_.reset(autoPtr<scalarField>::New(m, max(1, 0.5*c_->value(t)))); deltaExtraVars_.reset(autoPtr<scalarField>::New(m, Zero)); deltaZ_.reset(autoPtr<scalarField>::New(m, Zero)); @@ -185,7 +187,9 @@ void Foam::ISQP::initialize() if (includeExtraVars_) { extraVars_() = scalar(1); - z_() = max(1, 0.5*c_); + const scalar c = c_->value(mesh_.time().timeOutputValue()); + z_() = max(1, 0.5*c); + Info<< "Penalty multiplier (c):: " << c << endl; } // Reset eps @@ -868,7 +872,7 @@ Foam::tmp<Foam::scalarField> Foam::ISQP::resFExtraVars() { if (includeExtraVars_) { - return (c_ - lamdas_ - z_()); + return (c_->value(mesh_.time().timeOutputValue()) - lamdas_ - z_()); } return nullptr; } @@ -950,6 +954,12 @@ void Foam::ISQP::solveSubproblem() Info<< "Max of extraVars*z " << gMax(extraVars_()*z_()) << endl; } } + if (includeExtraVars_) + { + DebugInfo + << "Constraint penalization variables (y) " << extraVars_() + << endl; + } } else { @@ -1036,7 +1046,7 @@ Foam::ISQP::ISQP us_(nullptr), extraVars_(nullptr), z_(nullptr), - c_(coeffsDict(type).getOrDefault<scalar>("c", 100)), + c_(nullptr), deltaP_(activeDesignVars_.size(), Zero), deltaLamda_(nConstraints_, Zero), deltaGs_(nConstraints_, Zero), @@ -1064,14 +1074,34 @@ Foam::ISQP::ISQP ), cRed_ (coeffsDict(type).getOrDefault<scalar>("targetConstraintReduction", 1)), + disableDamping_ + (coeffsDict(type).getOrDefault<bool>("disableDamping", false)), meritFunctionFile_(nullptr) { Info<< "Preconditioner type of the SQP subproblem is ::" << preconditionerNames.names()[preconType_] << endl; - // Always apply damping of s in ISQP - useYDamping_ = true; - useSDamping_ = false; + if (!disableDamping_) + { + // Always apply damping of y in ISQP + useYDamping_ = true; + useSDamping_ = false; + } + + // Determine c if necessary + if (includeExtraVars_) + { + if (coeffsDict(type).found("c")) + { + Info<< "Reading constraint penalty function type from dict" << endl; + c_.reset(Function1<scalar>::New("c", coeffsDict(type))); + } + else + { + Info<< "Setting constant penalty factor" << endl; + c_.reset(new Function1Types::Constant<scalar>("c", 100)); + } + } // Allocate multipliers and slack variables for the bound constraints allocateBoundMultipliers(); diff --git a/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/ISQP/ISQP.H b/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/ISQP/ISQP.H index 537e0b43a012a6f8c511085ac587e64bb68dc99d..adc9da7924b78d3313f627ff9b1900fa1021b1f8 100644 --- a/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/ISQP/ISQP.H +++ b/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/ISQP/ISQP.H @@ -131,7 +131,7 @@ protected: //- Multiplier of the additional variables y in the Lagrangian, to //- make them 'expensive' - scalar c_; + autoPtr<Function1<scalar>> c_; // Fields holding updates of the design, Lagrange and slack variables @@ -175,6 +175,11 @@ protected: // Can be used to relax QP problems with no feasible points scalar cRed_; + //- Disable damping + // Generally discouraged but could be useful in cases with no + // constraints or only bound ones + bool disableDamping_; + //- File including the l1 merit function autoPtr<OFstream> meritFunctionFile_; diff --git a/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/MMA/MMA.C b/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/MMA/MMA.C index ac70704f6a8149e35acf790d3951153c4303f31e..4c29943d2d3c7d9712714a7871ecbea187e81800 100644 --- a/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/MMA/MMA.C +++ b/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/MMA/MMA.C @@ -223,16 +223,27 @@ void Foam::MMA::initialize() { const label m(cValues_.size()); // Allocate correct sizes for array depending on the number of constraints - if (c_.empty()) + if (!c_.good()) { alpha_.setSize(m, Zero); - c_.setSize(m, coeffsDict(typeName).getOrDefault<scalar>("c", 100)); + if (coeffsDict(typeName).found("c")) + { + Info<< "Reading constraint penalty function type from dict" << endl; + c_.reset(Function1<scalar>::New("c", coeffsDict(typeName))); + } + else + { + Info<< "Setting constant penalty factor" << endl; + c_.reset(new Function1Types::Constant<scalar>("c", 100)); + } d_.setSize(m, coeffsDict(typeName).getOrDefault<scalar>("d", 1)); deltaLamda_.setSize(m, Zero); deltaY_.setSize(m, Zero); deltaS_.setSize(m, Zero); deltaMu_.setSize(m, Zero); } + const scalar t = mesh_.time().timeOutputValue(); + Info<< "Penalty multiplier (c):: " << c_->value(t) << endl; // Scalar quantities eps_ = 1.; @@ -249,7 +260,7 @@ void Foam::MMA::initialize() lamda_.setSize(m, scalar(1)); s_.setSize(m, scalar(1)); mu_.setSize(m, Zero); - mu_ = max(scalar(1), 0.5*c_); + mu_ = max(scalar(1), 0.5*c_->value(t)); } @@ -536,9 +547,10 @@ void Foam::MMA::computeNewtonDirection() - eps_/(xNew_ - a_) + eps_/(b_ - xNew_) ); + const scalar t = mesh_.time().timeOutputValue(); scalarField deltaYTilda ( - c_ + d_*y_ - lamda_ - eps_/y_ + c_->value(t) + d_*y_ - lamda_ - eps_/y_ ); scalar deltaZTilda = alpha0_ - sum(lamda_*alpha_) - eps_/z_; scalarField deltaLamdaYTilda @@ -779,9 +791,10 @@ Foam::tmp<Foam::scalarField> Foam::MMA::computeResiduals() } // dLdy + const scalar t = mesh_.time().timeOutputValue(); for (label i = 0; i < m; ++i) { - res[iRes++] = c_[i] + d_[i]*y_[i] - lamda_[i] - mu_[i]; + res[iRes++] = c_->value(t) + d_[i]*y_[i] - lamda_[i] - mu_[i]; } // dLdz @@ -888,7 +901,7 @@ Foam::MMA::MMA alpha0_(coeffsDict(type).getOrDefault<scalar>("alpha0", 1.)), alpha_(0), y_(0), - c_(0), + c_(nullptr), d_(0), lower_(xNew_.size(), -GREAT), upper_(xNew_.size(), GREAT), @@ -1041,6 +1054,9 @@ void Foam::MMA::solveSubproblem() Info<< "Solved the MMA Newton problem in " << iter << " iterations " << nl << endl; + DebugInfo + << "Constraint penalization variables (y) " << y_ << endl; + // Pass update to correction field const scalarField& oldVars = designVars_().getVars(); forAll(activeDesignVars_, avI) diff --git a/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/MMA/MMA.H b/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/MMA/MMA.H index aef6d936bb9b213f05c152202166a1ec4494f43e..353349bb303a8fb16495b4aafb6a5bbe974300bc 100644 --- a/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/MMA/MMA.H +++ b/src/optimisation/adjointOptimisation/adjoint/optimisation/updateMethod/MMA/MMA.H @@ -108,7 +108,7 @@ protected: scalarField y_; //- y multipliers in the objective function - scalarField c_; + autoPtr<Function1<scalar>> c_; //- y^2 multipliers in the objective function scalarField d_; diff --git a/src/overset/cellCellStencil/cellCellStencil/cellCellStencilObject.C b/src/overset/cellCellStencil/cellCellStencil/cellCellStencilObject.C index 4212d9ba4d3809dcba4cff32bb1fd88d813db5af..66baddc75133b55185c96e18b66d694d487dce72 100644 --- a/src/overset/cellCellStencil/cellCellStencil/cellCellStencilObject.C +++ b/src/overset/cellCellStencil/cellCellStencil/cellCellStencilObject.C @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2017 OpenCFD Ltd. + Copyright (C) 2017,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -26,7 +26,7 @@ License \*---------------------------------------------------------------------------*/ #include "cellCellStencilObject.H" - +#include "dynamicOversetFvMesh.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // @@ -36,4 +36,25 @@ namespace Foam } +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +bool Foam::cellCellStencilObject::movePoints() +{ + // Update (if needed) underlying stencil + const bool changed = stencilPtr_().update(); + + if (changed) + { + const auto* oversetMeshPtr = isA<oversetFvMeshBase>(mesh()); + if (oversetMeshPtr) + { + // Clear out any additional (ldu)addressing + const_cast<oversetFvMeshBase&>(*oversetMeshPtr).clearOut(); + } + } + + return changed; +} + + // ************************************************************************* // diff --git a/src/overset/cellCellStencil/cellCellStencil/cellCellStencilObject.H b/src/overset/cellCellStencil/cellCellStencil/cellCellStencilObject.H index 911cb661021bd61ea150b8f33cba15b4c1509be9..201985b9bdd95da89a3732b6b83c645732d35190 100644 --- a/src/overset/cellCellStencil/cellCellStencil/cellCellStencilObject.H +++ b/src/overset/cellCellStencil/cellCellStencil/cellCellStencilObject.H @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2017-2019 OpenCFD Ltd. + Copyright (C) 2017-2019,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -54,19 +54,9 @@ typedef MeshObject<fvMesh, MoveableMeshObject, cellCellStencilObject> Stencil; class cellCellStencilObject : - public MeshObject<fvMesh, MoveableMeshObject, cellCellStencilObject>, + public Stencil, public cellCellStencil { - // Private Typedefs - - typedef MeshObject - < - fvMesh, - MoveableMeshObject, - cellCellStencilObject - > MeshObject_type; - - // Private Data autoPtr<cellCellStencil> stencilPtr_; @@ -86,8 +76,7 @@ public: const bool update = true ) : - MeshObject_type(mesh), - + Stencil(mesh), cellCellStencil(mesh), stencilPtr_ ( @@ -111,10 +100,7 @@ public: // Member Functions //- Callback for geometry motion - virtual bool movePoints() - { - return stencilPtr_().update(); - } + virtual bool movePoints(); //- Update stencils. Return false if nothing changed. virtual bool update() diff --git a/src/overset/oversetFvMesh/dynamicOversetFvMesh/dynamicOversetFvMesh.C b/src/overset/oversetFvMesh/dynamicOversetFvMesh/dynamicOversetFvMesh.C index 172d974eeef6f4640466d633cd0be198444ed0a6..28801f07ae736fe295585909a491f69b13f3925d 100644 --- a/src/overset/oversetFvMesh/dynamicOversetFvMesh/dynamicOversetFvMesh.C +++ b/src/overset/oversetFvMesh/dynamicOversetFvMesh/dynamicOversetFvMesh.C @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2022 OpenCFD Ltd. + Copyright (C) 2022,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -65,6 +65,10 @@ bool Foam::dynamicOversetFvMesh::update() return false; } + //Note: too late to do oversetFvMeshBase::clearOut() to get it + // consistent with any new cell-cell stencil since + // dynamicMotionSolverListFvMesh already triggers + // meshObject::movePoints on cellCellStencilObject oversetFvMeshBase::update(); return true; diff --git a/src/overset/oversetFvMesh/oversetFvMeshBase.C b/src/overset/oversetFvMesh/oversetFvMeshBase.C index b5a95780282a6e8520486190bc52da75866cf164..9d8571dc4370c042a5bdf30a01a655a222ef3851 100644 --- a/src/overset/oversetFvMesh/oversetFvMeshBase.C +++ b/src/overset/oversetFvMesh/oversetFvMeshBase.C @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2014-2022 OpenCFD Ltd. + Copyright (C) 2014-2022,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -578,6 +578,14 @@ Foam::oversetFvMeshBase::primitiveLduAddr() const } +void Foam::oversetFvMeshBase::clearOut() +{ + // Cell-cell stencil is already mesh object. Clear out local + // addressing to force rebuilding addressing + lduPtr_.clear(); +} + + bool Foam::oversetFvMeshBase::update() { { diff --git a/src/overset/oversetFvMesh/oversetFvMeshBase.H b/src/overset/oversetFvMesh/oversetFvMeshBase.H index b0678b1a24b4ec27483d9d39b2c049b6487be18a..04530c4da50b818b822fcbaf310514cab401ded7 100644 --- a/src/overset/oversetFvMesh/oversetFvMeshBase.H +++ b/src/overset/oversetFvMesh/oversetFvMeshBase.H @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2015-2022 OpenCFD Ltd. + Copyright (C) 2015-2022,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -37,7 +37,6 @@ SourceFiles #ifndef oversetFvMeshBase_H #define oversetFvMeshBase_H -#include "fvMeshPrimitiveLduAddressing.H" #include "fvMeshPrimitiveLduAddressing.H" #include "lduInterfaceFieldPtrsList.H" #include "volFieldsFwd.H" @@ -238,6 +237,9 @@ public: ) const; + //- Clear out local storage + void clearOut(); + //- Update the mesh for both mesh motion and topology change virtual bool update(); diff --git a/src/parallel/decompose/faDecompose/faFieldDecomposer.C b/src/parallel/decompose/faDecompose/faFieldDecomposer.C index 59e7663f869b3b4c4fd7b95b418dfab8544dd61c..3f7df059d8fc853c6670e7b0019a0f6b28a4f4cb 100644 --- a/src/parallel/decompose/faDecompose/faFieldDecomposer.C +++ b/src/parallel/decompose/faDecompose/faFieldDecomposer.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2016-2017 Wikki Ltd - Copyright (C) 2021-2022 OpenCFD Ltd. + Copyright (C) 2021-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -57,14 +57,13 @@ processorAreaPatchFieldDecomposer const labelUList& owner, // == mesh.edgeOwner() const labelUList& neigh, // == mesh.edgeNeighbour() const labelUList& addressingSlice, - const scalarField& weights + const bitSet& flip ) : sizeBeforeMapping_(nTotalFaces), - addressing_(addressingSlice.size()), - weights_(addressingSlice.size()) + directAddressing_(addressingSlice.size()) { - forAll(addressing_, i) + forAll(directAddressing_, i) { // Subtract one to align addressing. label ai = addressingSlice[i]; @@ -75,23 +74,16 @@ processorAreaPatchFieldDecomposer // This is a regular edge. it has been an internal edge // of the original mesh and now it has become a edge // on the parallel boundary - addressing_[i].resize(2); - weights_[i].resize(2); - addressing_[i][0] = owner[ai]; - addressing_[i][1] = neigh[ai]; - - if (ai < weights.size()) + if (flip[i]) { - // Edge weights exist/are usable - weights_[i][0] = weights[ai]; - weights_[i][1] = 1.0 - weights[ai]; + // We are the neighbour side so use the owner value + directAddressing_[i] = owner[ai]; } else { - // No edge weights. use equal weighting - weights_[i][0] = 0.5; - weights_[i][1] = 0.5; + // We are the owner side so use the neighbour value + directAddressing_[i] = neigh[ai]; } } else @@ -102,39 +94,12 @@ processorAreaPatchFieldDecomposer // up the different (edge) list of data), so I will // just grab the value from the owner face - addressing_[i].resize(1); - weights_[i].resize(1); - - addressing_[i][0] = owner[ai]; - - weights_[i][0] = 1.0; + directAddressing_[i] = owner[ai]; } } } -Foam::faFieldDecomposer::processorAreaPatchFieldDecomposer:: -processorAreaPatchFieldDecomposer -( - const faMesh& mesh, - const labelUList& addressingSlice -) -: - processorAreaPatchFieldDecomposer - ( - mesh.nFaces(), - mesh.edgeOwner(), - mesh.edgeNeighbour(), - addressingSlice, - ( - mesh.hasWeights() - ? mesh.weights().primitiveField() - : scalarField::null() - ) - ) -{} - - Foam::faFieldDecomposer::processorEdgePatchFieldDecomposer:: processorEdgePatchFieldDecomposer ( @@ -253,7 +218,6 @@ void Foam::faFieldDecomposer::reset { clear(); const label nMappers = procMesh_.boundary().size(); - patchFieldDecomposerPtrs_.resize(nMappers); processorAreaPatchFieldDecomposerPtrs_.resize(nMappers); processorEdgePatchFieldDecomposerPtrs_.resize(nMappers); @@ -279,6 +243,16 @@ void Foam::faFieldDecomposer::reset } else { + // No oldPatch - is processor patch. edgeAddressing_ does + // not have 'flip' sign so use the face map to see which side + // we've got. + bitSet flipMap(localPatchSlice.size()); + forAll(flipMap, i) + { + const label ownFacei = faceAddressing_[fap.edgeFaces()[i]]; + flipMap[i] = (edgeOwner[localPatchSlice[i]] != ownFacei); + } + processorAreaPatchFieldDecomposerPtrs_.set ( patchi, @@ -287,7 +261,8 @@ void Foam::faFieldDecomposer::reset nTotalFaces, edgeOwner, edgeNeigbour, - localPatchSlice + localPatchSlice, + flipMap ) ); @@ -345,13 +320,29 @@ void Foam::faFieldDecomposer::reset(const faMesh& completeMesh) } else { + const auto& edgeOwner = completeMesh.edgeOwner(); + const auto& edgeNeighbour = completeMesh.edgeNeighbour(); + + // No oldPatch - is processor patch. edgeAddressing_ does + // not have 'flip' sign so use the face map to see which side + // we've got. + bitSet flipMap(localPatchSlice.size()); + forAll(flipMap, i) + { + const label ownFacei = faceAddressing_[fap.edgeFaces()[i]]; + flipMap[i] = (edgeOwner[localPatchSlice[i]] != ownFacei); + } + processorAreaPatchFieldDecomposerPtrs_.set ( patchi, new processorAreaPatchFieldDecomposer ( - completeMesh, - localPatchSlice + completeMesh.nFaces(), + edgeOwner, + edgeNeighbour, + localPatchSlice, + flipMap ) ); diff --git a/src/parallel/decompose/faDecompose/faFieldDecomposer.H b/src/parallel/decompose/faDecompose/faFieldDecomposer.H index dfadb54f41609ddc2ee6cde93e761c6504e92201..442a7f62b44231d842b16bcfb964a238c596775c 100644 --- a/src/parallel/decompose/faDecompose/faFieldDecomposer.H +++ b/src/parallel/decompose/faDecompose/faFieldDecomposer.H @@ -127,8 +127,7 @@ public: // Private Data label sizeBeforeMapping_; - labelListList addressing_; - scalarListList weights_; + labelList directAddressing_; public: @@ -139,14 +138,7 @@ public: const labelUList& edgeOwner, const labelUList& edgeNeigbour, const labelUList& addressingSlice, - const scalarField& edgeWeights = scalarField::null() - ); - - //- Construct given addressing from complete mesh - processorAreaPatchFieldDecomposer - ( - const faMesh& mesh, - const labelUList& addressingSlice + const bitSet& flip ); @@ -154,7 +146,7 @@ public: label size() const { - return addressing_.size(); + return directAddressing_.size(); } virtual label sizeBeforeMapping() const @@ -164,7 +156,7 @@ public: bool direct() const { - return false; + return true; } virtual bool hasUnmapped() const @@ -172,14 +164,9 @@ public: return false; } - const labelListList& addressing() const - { - return addressing_; - } - - const scalarListList& weights() const + const labelUList& directAddressing() const { - return weights_; + return directAddressing_; } }; diff --git a/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.C b/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.C index 8c32aface9d13a59d0e1510d601f641950f01d5e..bdb63f152e13184d6d624babf7be5be013612aa8 100644 --- a/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.C +++ b/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.C @@ -110,6 +110,7 @@ namespace Foam }; + ////- Same as above but with some more debugging //typedef Tuple2<Pair<point>, volumeType> NearType; // ////- Combine operator for volume types @@ -337,73 +338,145 @@ Foam::word Foam::distributedTriSurfaceMesh::findLocalInstance } -// Read my additional data from the dictionary -bool Foam::distributedTriSurfaceMesh::read() +bool Foam::distributedTriSurfaceMesh::readSettings(const bool undecomposed) { // Get bb of all domains. procBb_.resize_nocopy(Pstream::nProcs()); - if (dict_.empty()) + if (!dict_.readIfPresent("bounds", procBb_[Pstream::myProcNo()])) { - // Did not find the distributed version; assume master has loaded the - // triSurfaceMesh version. Make up some settings. - + // Not found. Use local triangles' bounding box const boundBox& localBb = triSurfaceMesh::bounds(); procBb_[Pstream::myProcNo()] = treeBoundBoxList(1, treeBoundBox(localBb)); dict_.add("bounds", procBb_[Pstream::myProcNo()]); + } + - // Wanted distribution type + decomposeUsingBbs_ = dict_.getOrDefault<bool>("decomposeUsingBbs", true); + + // Wanted distribution type + if + ( + !distributionTypeNames_.readIfPresent + ( + "distributionType", + dict_, + distType_ + ) + ) + { + // Not found. Make up most sensible data distType_ = DISTRIBUTED; //INDEPENDENT; dict_.add("distributionType", distributionTypeNames_[distType_]); + } - // Merge distance + // Merge distance + if (!dict_.readIfPresent("mergeDistance", mergeDist_)) + { mergeDist_ = SMALL; dict_.add("mergeDistance", mergeDist_); + } - // Force underlying triSurfaceMesh to calculate volume type - // (is topological walk; does not construct tree) - surfaceClosed_ = triSurfaceMesh::hasVolumeType(); - Pstream::broadcast(surfaceClosed_); + // Is closed? + if (!dict_.readIfPresent<label>("closed", surfaceClosed_)) + { + if (undecomposed) + { + surfaceClosed_ = triSurfaceMesh::hasVolumeType(); + Pstream::broadcast(surfaceClosed_); + } + else + { + surfaceClosed_ = false; + } dict_.add("closed", surfaceClosed_); + } - // Delay calculating outside vol type since constructs tree. Is ok - // after distributing since then local surfaces much smaller - //outsideVolType_ = volumeType::UNKNOWN; - //if (surfaceClosed_) - //{ - // point outsidePt(localBb.max()+localBb.centre()); - // List<volumeType> outsideVolTypes; - // triSurfaceMesh::getVolumeType - // ( - // pointField(1, outsidePt), - // outsideVolTypes - // ); - // outsideVolType_ = outsideVolTypes[0]; - //} - //dict_.add("outsideVolumeType", volumeType::names[outsideVolType_]); + // Do we know volume inside/outside? + volumeType::type vt; + if + ( + volumeType::names.readIfPresent + ( + "outsideVolumeType", + dict_, + vt + ) + ) + { + outsideVolType_ = vt; } else { - dict_.readEntry("bounds", procBb_[Pstream::myProcNo()]); + if (undecomposed && surfaceClosed_) + { + if (UPstream::master()) + { + // Determine nearest to do inside/outside testing. + // Do linear search to avoid building tree on this large + // undecomposed surface. See e.g. triSurfaceTools::surfaceSide + + const triSurface& surf = *this; + const pointField& points = surf.points(); + const boundBox& localBb = triSurfaceMesh::bounds(); + const point outsidePt(localBb.max()+localBb.centre()); + + label nearTrii = -1; + pointHit nearInfo; // distance=GREAT + forAll(surf, trii) + { + pointHit info = surf[trii].nearestPoint(outsidePt, points); - // Wanted distribution type - distType_ = distributionTypeNames_.get("distributionType", dict_); + if (info.distance() < nearInfo.distance()) + { + nearTrii = trii; + nearInfo = info; + } + } - // Merge distance - dict_.readEntry("mergeDistance", mergeDist_); + if (nearTrii != -1) + { + const triSurfaceTools::sideType t = + triSurfaceTools::surfaceSide + ( + surf, + outsidePt, + nearTrii + ); - // Distribution type - surfaceClosed_ = dict_.getOrDefault<bool>("closed", false); + if (t == triSurfaceTools::UNKNOWN) + { + outsideVolType_ = volumeType::UNKNOWN; + } + else if (t == triSurfaceTools::INSIDE) + { + outsideVolType_ = volumeType::INSIDE; + } + else if (t == triSurfaceTools::OUTSIDE) + { + outsideVolType_ = volumeType::OUTSIDE; + } + else + { + FatalErrorInFunction << "problem" << abort(FatalError); + } + } + } + // Scatter master + label volType = outsideVolType_; + Pstream::broadcast(volType); + outsideVolType_ = volumeType(volType); + } + else + { + // Mark as to-be-done + outsideVolType_ = volumeType::UNKNOWN; + } - outsideVolType_ = volumeType::names.getOrDefault - ( - "outsideVolumeType", - dict_, - volumeType::UNKNOWN - ); + dict_.add("outsideVolumeType", volumeType::names[outsideVolType_]); } Pstream::allGatherList(procBb_); @@ -412,6 +485,41 @@ bool Foam::distributedTriSurfaceMesh::read() } +void Foam::distributedTriSurfaceMesh::calcVertexNormals +( + const triSurface& surf, + List<FixedList<vector, 3>>& vn +) const +{ + // For now don't do features so just use the point normals + vectorField pointNormals(surf.points().size(), vector::zero); + forAll(surf, facei) + { + const triSurface::face_type& f = surf[facei]; + const vector n = f.unitNormal(surf.points()); + forAll(f, fp) + { + const label pointi = f[fp]; + pointNormals[pointi] += n; + } + } + pointNormals.normalise(); + + + vn.resize_nocopy(surf.size()); + vn = Zero; + + forAll(surf, facei) + { + const triSurface::face_type& f = surf[facei]; + forAll(f, fp) + { + vn[facei][fp] = pointNormals[f[fp]]; + } + } +} + + // Is segment fully local? bool Foam::distributedTriSurfaceMesh::isLocal ( @@ -504,28 +612,31 @@ void Foam::distributedTriSurfaceMesh::distributeSegment List<DynamicList<label>>& sendMap ) const { - // 1. Fully local already handled outside. Note: retest is cheap. - if (isLocal(procBb_[Pstream::myProcNo()], start, end)) + if (decomposeUsingBbs_) { - return; - } + // 1. Fully local already handled outside. Note: retest is cheap. + if (isLocal(procBb_[Pstream::myProcNo()], start, end)) + { + return; + } - // 2. If fully inside one other processor, then only need to send - // to that one processor even if it intersects another. Rare occurrence - // but cheap to test. - forAll(procBb_, proci) - { - if (proci != Pstream::myProcNo()) + // 2. If fully inside one other processor, then only need to send + // to that one processor even if it intersects another. Rare occurrence + // but cheap to test. + forAll(procBb_, proci) { - const List<treeBoundBox>& bbs = procBb_[proci]; - - if (isLocal(bbs, start, end)) + if (proci != Pstream::myProcNo()) { - sendMap[proci].append(allSegments.size()); - allSegmentMap.append(segmenti); - allSegments.append(segment(start, end)); - return; + const List<treeBoundBox>& bbs = procBb_[proci]; + + if (isLocal(bbs, start, end)) + { + sendMap[proci].append(allSegments.size()); + allSegmentMap.append(segmenti); + allSegments.append(segment(start, end)); + return; + } } } } @@ -644,7 +755,7 @@ void Foam::distributedTriSurfaceMesh::findLine ( const bool nearestIntersection, const pointField& start, - const pointField& end, + const pointField& initialEnd, List<pointIndexHit>& info ) const { @@ -659,6 +770,9 @@ void Foam::distributedTriSurfaceMesh::findLine const indexedOctree<treeDataTriSurface>& octree = tree(); + // end-point - updated with local hits + pointField end(initialEnd); + // Initialise info.setSize(start.size()); forAll(info, i) @@ -691,6 +805,8 @@ void Foam::distributedTriSurfaceMesh::findLine if (info[i].hit()) { info[i].setIndex(triIndexer.toGlobal(info[i].index())); + // Update endpoint + end[i] = info[i].hitPoint(); } nLocal++; } @@ -699,113 +815,121 @@ void Foam::distributedTriSurfaceMesh::findLine if ( - returnReduce(nLocal, sumOp<label>()) - < returnReduce(start.size(), sumOp<label>()) + decomposeUsingBbs_ + && ( + returnReduce(nLocal, sumOp<label>()) + == returnReduce(start.size(), sumOp<label>()) + ) ) { - // Not all can be resolved locally. Build segments and map, - // send over segments, do intersections, send back and merge. + // In decomposeUsingBbs_ mode we're guaranteed to have all the geometry + // inside the local bb. Since we've done all tests we're done. + return; + } - // Construct queries (segments) - // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Not all can be resolved locally. Build segments and map, + // send over segments, do intersections, send back and merge. - // Segments to test - List<segment> allSegments(start.size()); - // Original index of segment - labelList allSegmentMap(start.size()); - const autoPtr<mapDistribute> mapPtr + // Construct queries (segments) + // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + // Segments to test + List<segment> allSegments(start.size()); + // Original index of segment + labelList allSegmentMap(start.size()); + + const autoPtr<mapDistribute> mapPtr + ( + distributeSegments ( - distributeSegments - ( - start, - end, - allSegments, - allSegmentMap - ) - ); - const mapDistribute& map = mapPtr(); + start, + end, + allSegments, + allSegmentMap + ) + ); + const mapDistribute& map = mapPtr(); - label nOldAllSegments = allSegments.size(); + label nOldAllSegments = allSegments.size(); - // Exchange the segments - // ~~~~~~~~~~~~~~~~~~~~~ + // Exchange the segments + // ~~~~~~~~~~~~~~~~~~~~~ - map.distribute(allSegments); + map.distribute(allSegments); - // Do tests i need to do - // ~~~~~~~~~~~~~~~~~~~~~ + // Do tests i need to do + // ~~~~~~~~~~~~~~~~~~~~~ - // Intersections - List<pointIndexHit> intersections(allSegments.size()); + // Intersections + List<pointIndexHit> intersections(allSegments.size()); - forAll(allSegments, i) + forAll(allSegments, i) + { + if (nearestIntersection) { - if (nearestIntersection) - { - intersections[i] = octree.findLine - ( - allSegments[i].first(), - allSegments[i].second() - ); - } - else - { - intersections[i] = octree.findLineAny - ( - allSegments[i].first(), - allSegments[i].second() - ); - } + intersections[i] = octree.findLine + ( + allSegments[i].first(), + allSegments[i].second() + ); + } + else + { + intersections[i] = octree.findLineAny + ( + allSegments[i].first(), + allSegments[i].second() + ); + } - // Convert triangle index to global numbering - if (intersections[i].hit()) - { - intersections[i].setIndex - ( - triIndexer.toGlobal(intersections[i].index()) - ); - } + // Convert triangle index to global numbering + if (intersections[i].hit()) + { + intersections[i].setIndex + ( + triIndexer.toGlobal(intersections[i].index()) + ); } + } - // Exchange the intersections (opposite to segments) - // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Exchange the intersections (opposite to segments) + // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - map.reverseDistribute(nOldAllSegments, intersections); + map.reverseDistribute(nOldAllSegments, intersections); - // Extract the hits - // ~~~~~~~~~~~~~~~~ + // Extract the hits + // ~~~~~~~~~~~~~~~~ - forAll(intersections, i) - { - const pointIndexHit& allInfo = intersections[i]; - label segmenti = allSegmentMap[i]; - pointIndexHit& hitInfo = info[segmenti]; + forAll(intersections, i) + { + const pointIndexHit& allInfo = intersections[i]; + label segmenti = allSegmentMap[i]; + pointIndexHit& hitInfo = info[segmenti]; - if (allInfo.hit()) + if (allInfo.hit()) + { + if (!hitInfo.hit()) { - if (!hitInfo.hit()) + // No intersection yet so take this one + hitInfo = allInfo; + } + else if (nearestIntersection) + { + // Nearest intersection + if + ( + start[segmenti].distSqr(allInfo.point()) + < start[segmenti].distSqr(hitInfo.point()) + ) { - // No intersection yet so take this one hitInfo = allInfo; } - else if (nearestIntersection) - { - // Nearest intersection - if - ( - start[segmenti].distSqr(allInfo.point()) - < start[segmenti].distSqr(hitInfo.point()) - ) - { - hitInfo = allInfo; - } - } } } } @@ -1154,7 +1278,7 @@ Foam::volumeType Foam::distributedTriSurfaceMesh::edgeSide const label face1 ) const { - const triSurface& surf = static_cast<const triSurface&>(*this); + const triSurface& surf = *this; const pointField& points = surf.points(); // Compare to bisector. This is actually correct since edge is @@ -1182,7 +1306,7 @@ Foam::label Foam::distributedTriSurfaceMesh::findOtherFace const label nearLabel ) const { - const triSurface& surf = static_cast<const triSurface&>(*this); + const triSurface& surf = *this; const triSurface::face_type& nearF = surf[nearFacei]; const edge e(nearF[nearLabel], nearF[nearF.fcIndex(nearLabel)]); @@ -1255,7 +1379,8 @@ void Foam::distributedTriSurfaceMesh::surfaceSide Pout<< "distributedTriSurfaceMesh::surfaceSide :" << " on surface " << searchableSurface::name() << " finding surface side given points on surface for " - << samples.size() << " samples" << endl; + << samples.size() << " samples" + << " cached vertexnormals " << vertexNormals_.valid() << endl; } // Use global index to send local tri and nearest back to originating @@ -1276,6 +1401,10 @@ void Foam::distributedTriSurfaceMesh::surfaceSide pointField localSamples(samples); map.distribute(localSamples); + // Send over nearest point since we have it anyway + List<pointIndexHit> localNearestInfo(nearestInfo); + map.distribute(localNearestInfo); + // Do my tests // ~~~~~~~~~~~ @@ -1283,8 +1412,43 @@ void Foam::distributedTriSurfaceMesh::surfaceSide volType.setSize(triangleIndex.size()); volType = volumeType::UNKNOWN; - const triSurface& surf = static_cast<const triSurface&>(*this); + const triSurface& surf = *this; const pointField& points = surf.points(); + + + if (vertexNormals_) + { + // Use smooth interpolation for the normal + + forAll(triangleIndex, i) + { + const label facei = triangleIndex[i]; + const triSurface::face_type& f = surf[facei]; + const auto& vn = vertexNormals_()[facei]; + + const point& sample = localSamples[i]; + + const point& nearest = localNearestInfo[i].point(); + + const vector sampleNearestVec(sample - nearest); + + const barycentric2D w(f.tri(points).pointToBarycentric(nearest)); + + const vector n = w[0]*vn[0]+w[1]*vn[1]+w[2]*vn[2]; + + const scalar c = (sampleNearestVec & n); + + if (c > 0) + { + volType[i] = volumeType::OUTSIDE; + } + else + { + volType[i] = volumeType::INSIDE; + } + } + } + else { //const labelListList& pointFaces = surf.pointFaces(); // Construct pointFaces. Let's hope surface has compact point @@ -1313,7 +1477,7 @@ void Foam::distributedTriSurfaceMesh::surfaceSide // Nearest to face interior. Use faceNormal to determine side //scalar c = sampleNearestVec & surf.faceNormals()[facei]; - scalar c = sampleNearestVec & surf[facei].areaNormal(points); + const scalar c = (sampleNearestVec & f.areaNormal(points)); if (c > 0) { @@ -1451,13 +1615,45 @@ void Foam::distributedTriSurfaceMesh::surfaceSide // send the volume-query to a single processor) - //forAll(localSamples, i) //{ - // Pout<< "surfaceSide : for localSample:" << localSamples[i] - // << " found volType:" << volumeType::names[volType[i]] - // << endl; + //- Alternative which also sends over source sample so we get better + //- debug messages. + // // Pack sample, nearest and volType so we get nicer error messages + // typedef Tuple2<Pair<point>, volumeType> NearType; + // List<NearType> nearTypes(volType.size()); + // forAll(localSamples, i) + // { + // const point& sample = localSamples[i]; + // const point& near = localNearestInfo[i].point(); + // nearTypes[i] = NearType(Pair<point>(sample, near), volType[i]); + // } + // + // + // const NearType zero(Pair<point>(Zero, Zero), volumeType::UNKNOWN); + // mapDistributeBase::distribute + // ( + // Pstream::commsTypes::nonBlocking, + // List<labelPair>::null(), + // nearestInfo.size(), + // map.constructMap(), + // map.constructHasFlip(), + // map.subMap(), + // map.subHasFlip(), + // nearTypes, + // zero, + // NearTypeCombineOp(), + // noOp(), // no flipping + // UPstream::msgType(), + // map.comm() + // ); + // volType.setSize(nearTypes.size()); + // forAll(nearTypes, i) + // { + // volType[i] = nearTypes[i].second(); + // } //} + const volumeType zero(volumeType::UNKNOWN); mapDistributeBase::distribute ( @@ -1476,44 +1672,10 @@ void Foam::distributedTriSurfaceMesh::surfaceSide map.comm() ); - //// Pack sample, nearest and volType so we get nicer error messages - ////typedef Tuple2<Pair<point>, volumeType>> NearType; - //List<NearType> nearTypes(volType.size()); - //forAll(localSamples, i) - //{ - // const point& sample = localSamples[i]; - // const point& near = nearest[i]; - // nearTypes[i] = NearType(Pair<point>(sample, near), volType[i]); - //} - // - // - //const NearType zero(Pair<point>(Zero, Zero), volumeType::UNKNOWN); - //mapDistributeBase::distribute - //( - // Pstream::commsTypes::nonBlocking, - // List<labelPair>::null(), - // nearestInfo.size(), - // map.constructMap(), - // map.constructHasFlip(), - // map.subMap(), - // map.subHasFlip(), - // nearTypes, - // zero, - // NearTypeCombineOp(), - // noOp(), // no flipping - // UPstream::msgType(), - // map.comm() - //); - //volType.setSize(nearTypes.size()); - //forAll(nearTypes, i) - //{ - // volType[i] = nearTypes[i].second(); - //} - if (debug) { Pout<< "distributedTriSurfaceMesh::surfaceSide :" - << " finished finding surface" << searchableSurface::name() + << " finished finding surface " << searchableSurface::name() << " given points on surface " << searchableSurface::name() << " for " << samples.size() << " samples" << endl; @@ -1521,6 +1683,196 @@ void Foam::distributedTriSurfaceMesh::surfaceSide } +Foam::volumeType Foam::distributedTriSurfaceMesh::markMixed +( + const indexedOctree<treeDataTriSurface>& tree, + const label nodei, + const triPointRef& tri, + PackedList<2>& nodeTypes +) const +{ + const auto& nod = tree.nodes()[nodei]; + //const auto& contents = tree.contents(); + + //Pout<< indent + // << "Entering node:" << nodei + // << " with bb:" << nod.bb_ << endl; + //Pout<< incrIndent; + + volumeType myType = volumeType::UNKNOWN; + + for (direction octant = 0; octant < nod.subNodes_.size(); octant++) + { + const labelBits index = nod.subNodes_[octant]; + const treeBoundBox subBb(nod.bb_.subBbox(octant)); + + if (subBb.intersects(tri)) + { + volumeType subType; + + if (indexedOctree<treeDataTriSurface>::isNode(index)) + { + //Pout<< indent + // << "Testing node octant:" << octant << " with node:" + // << indexedOctree<treeDataTriSurface>::getNode(index) + // << " subBb:" << subBb << endl; + + // tree node. Recurse. + subType = markMixed + ( + tree, + indexedOctree<treeDataTriSurface>::getNode(index), + tri, + nodeTypes + ); + } + else if (indexedOctree<treeDataTriSurface>::isContent(index)) + { + // Content inside so we cannot pre-determine whether + // whole node box is inside or outside + + //const label contenti = + // indexedOctree<treeDataTriSurface>::getContent(index); + //Pout<< indent + // << "Testing content octant:" << octant + // << " with contenti:" << contenti << " subBb:" << subBb + // << " holding shapes:" << flatOutput(contents[contenti]) + // << endl; + + // Store octant type + subType = volumeType::MIXED; + } + else + { + // Nothing in it but intersects triangle. Can't cache + + //Pout<< indent + // << "Testing empty octant:" << octant + // << " subBb:" << subBb << endl; + + // Store octant type + subType = volumeType::MIXED; + } + + // Store octant type + nodeTypes.set(labelBits::pack(nodei, octant), subType); + + // Combine sub node types into type for treeNode. Result is + // 'mixed' if types differ among subnodes. + if (myType == volumeType::UNKNOWN) + { + myType = subType; + } + else if (subType != myType) + { + //Pout<< indent + // << "for octant:" << octant + // << " siwtched from myType:" << myType + // << " and subType:" << subType + // << " switched to MIXED" << endl; + myType = volumeType::MIXED; + } + } + } + + //Pout<< indent + // << "Result for node:" << nodei << " myType:" << myType << endl; + //Pout<< decrIndent; + + return myType; +} + + +void Foam::distributedTriSurfaceMesh::markMixedOverlap +( + const indexedOctree<treeDataTriSurface>& tree, + PackedList<2>& nodeTypes +) const +{ + // At this point each triangle is on a unique processor so we can just + // go and + // check what additional triangles would be sent over based on the + // bounding boxes. Note that the surface at this point is already + // uniquely distributed (every triangle is on a single processor + // only) and the tree is only for those. + + PstreamBuffers pBufs; + + // Test & send + forAll(procBb_, proci) + { + if (proci != UPstream::myProcNo()) + { + labelList pointMap; + labelList faceMap; + overlappingSurface + ( + *this, + procBb_[proci], + pointMap, // not used + faceMap + ); + if (!faceMap.empty()) + { + const triSurface subSurface + ( + subsetMesh + ( + *this, + faceMap, + pointMap + ) + ); + UOPstream os(proci, pBufs); + os << subSurface; + } + } + } + + pBufs.finishedSends(); + + // Receive + for (const int proci : pBufs.allProcs()) + { + if (proci != Pstream::myProcNo() && pBufs.recvDataCount(proci)) + { + UIPstream is(proci, pBufs); + + // Receive + const triSurface subSurface(is); + + //Pout<< "** from proc:" << proci + // << " received:" << subSurface.size() + // << " compared to local:" << this->size() << endl; + //const fileName fName + //( + // searchableSurface::time().path() + // /searchableSurface::name() + // + "_from_proc" + Foam::name(proci) + ".obj" + //); + //Pout<< "fName:" << fName << endl; + //subSurface.write(fName); + + + // Set all tree nodes overlapping buffer triangles to + // mixed. This state will be preserved when caching the + // volume type (see below). This uses the actual local + // triangles. + for (const auto& tri : subSurface) + { + markMixed + ( + tree, + 0, //nodei, + tri.tri(subSurface.points()), + nodeTypes + ); + } + } + } +} + + void Foam::distributedTriSurfaceMesh::collectLeafMids ( const label nodeI, @@ -1616,10 +1968,100 @@ Foam::volumeType Foam::distributedTriSurfaceMesh::calcVolumeType } else if (subType != myType) { - myType = volumeType::MIXED; + myType = volumeType::MIXED; + } + } + return myType; +} + + +void Foam::distributedTriSurfaceMesh::cacheVolumeType(PackedList<2>& nt) const +{ + // Get local tree + const indexedOctree<treeDataTriSurface>& t = tree(); + const auto& nodes = t.nodes(); + + // Collect midpoints + DynamicField<point> midPoints(label(0.5*nodes.size())); + if (nodes.size()) + { + collectLeafMids(0, midPoints); + } + + if (debug) + { + Pout<< "distributedTriSurfaceMesh::cacheVolumeType :" + << " surface " << searchableSurface::name() + << " triggering orientation caching for " + << midPoints.size() << " leaf mids" << endl; + } + + // Get volume type of mid points + List<volumeType> midVolTypes; + + // Note: could recurse here (since now outsideVolType_ is set) + // but this would use the cached mid point data which we're trying + // to calculate. Instead bypass caching and do a full search + { + List<pointIndexHit> nearestInfo; + findNearest + ( + midPoints, + scalarField(midPoints.size(), Foam::sqr(GREAT)), + nearestInfo + ); + surfaceSide(midPoints, nearestInfo, midVolTypes); + + if (debug & 2) + { + OBJstream insideStr + ( + searchableSurface::time().path() + /searchableSurface::name() + "_cacheVolumeType_inside.obj" + ); + OBJstream outsideStr + ( + searchableSurface::time().path() + /searchableSurface::name() + "_cacheVolumeType_outside.obj" + ); + forAll(midVolTypes, i) + { + const linePointRef ln(midPoints[i], nearestInfo[i].hitPoint()); + if (midVolTypes[i] == volumeType::INSIDE) + { + insideStr.write(ln); + } + else if (midVolTypes[i] == volumeType::OUTSIDE) + { + outsideStr.write(ln); + } + } + Pout<< "Whilst caching " << searchableSurface::name() + << " have inside:" << insideStr.nVertices() + << " have outside:" << outsideStr.nVertices() + << endl; } } - return myType; + + // Cache on local tree + if (nodes.size()) + { + label index = 0; + calcVolumeType + ( + midVolTypes, + index, + nt, + 0 // nodeI + ); + } + if (debug) + { + Pout<< "distributedTriSurfaceMesh::cacheVolumeType :" + << " surface " << searchableSurface::name() + << " done orientation caching for " + << midPoints.size() << " leaf mids" << endl; + } } @@ -1698,72 +2140,106 @@ Foam::volumeType Foam::distributedTriSurfaceMesh::cachedVolumeType } -// Find bounding boxes that guarantee a more or less uniform distribution -// of triangles. Decomposition in here is only used to get the bounding -// boxes, actual decomposition is done later on. -// Returns a per processor a list of bounding boxes that most accurately -// describe the shape. For now just a single bounding box per processor but -// optimisation might be to determine a better fitting shape. -Foam::List<Foam::List<Foam::treeBoundBox>> -Foam::distributedTriSurfaceMesh::independentlyDistributedBbs -( - const triSurface& s -) +const Foam::decompositionMethod& +Foam::distributedTriSurfaceMesh::decomposer() const { - addProfiling - ( - distribute, - "distributedTriSurfaceMesh::independentlyDistributedBbs" - ); - if (!decomposer_) { - // Use singleton decomposeParDict. Cannot use decompositionModel - // here since we've only got Time and not a mesh. - - const auto* dictPtr = - searchableSurface::time().findObject<IOdictionary> - ( - // == decompositionModel::canonicalName - "decomposeParDict" - ); - - if (dictPtr) + // Check if local dictionary contains decomposition entries + if (dict_.found("method")) { - decomposer_ = decompositionMethod::New(*dictPtr); + if (debug) + { + Pout<< "distributedTriSurfaceMesh::decomposer() :" + << " constructing decomposer from provided dictionary " + << dict_ << endl; + } + + decomposer_ = decompositionMethod::New(dict_); } else { - if (!decomposeParDict_) - { - decomposeParDict_.reset + // Use singleton decomposeParDict. Cannot use decompositionModel + // here since we've only got Time and not a mesh. + + const auto* dictPtr = + searchableSurface::time().findObject<IOdictionary> ( - new IOdictionary + // == decompositionModel::canonicalName + "decomposeParDict" + ); + + if (dictPtr) + { + if (debug) + { + Pout<< "distributedTriSurfaceMesh::decomposer() :" + << " constructing decomposer from registered" + << " dictionary " << *dictPtr << endl; + } + + decomposer_ = decompositionMethod::New(*dictPtr); + } + else + { + if (!decomposeParDict_) + { + decomposeParDict_.reset ( - IOobject + new IOdictionary ( - // == decompositionModel::canonicalName - "decomposeParDict", - searchableSurface::time().system(), - searchableSurface::time(), - IOobject::MUST_READ, - IOobject::NO_WRITE + IOobject + ( + // == decompositionModel::canonicalName + "decomposeParDict", + searchableSurface::time().system(), + searchableSurface::time(), + IOobject::MUST_READ, + IOobject::NO_WRITE + ) ) - ) - ); + ); + + if (debug) + { + Pout<< "distributedTriSurfaceMesh::decomposer() :" + << " reading " + << decomposeParDict_().objectRelPath() + << endl; + } + } + decomposer_ = decompositionMethod::New(*decomposeParDict_); } - decomposer_ = decompositionMethod::New(*decomposeParDict_); } } + return decomposer_(); +} + - // Initialise to inverted box - List<List<treeBoundBox>> bbs +// Find bounding boxes that guarantee a more or less uniform distribution +// of triangles. Decomposition in here is only used to get the bounding +// boxes, actual decomposition is done later on. +// Returns a per processor a list of bounding boxes that most accurately +// describe the shape. For now just a single bounding box per processor but +// optimisation might be to determine a better fitting shape. +void Foam::distributedTriSurfaceMesh::independentlyDistributedBbs +( + const triSurface& s, + labelList& distribution, // per local triangle the destination processor + List<List<treeBoundBox>>& bbs +) const +{ + addProfiling ( - Pstream::nProcs(), - List<treeBoundBox>(1, treeBoundBox::null()) + distribute, + "distributedTriSurfaceMesh::independentlyDistributedBbs" ); + // Initialise to inverted box + bbs.resize_nocopy(Pstream::nProcs()); + bbs = List<treeBoundBox>(1, treeBoundBox::null()); + const globalIndex& triIndexer = globalTris(); bool masterOnly; @@ -1795,8 +2271,7 @@ Foam::distributedTriSurfaceMesh::independentlyDistributedBbs triCentres[trii] = s[trii].centre(s.points()); } - labelList distribution; - if (!isA<geomDecomp>(decomposer_())) + if (!isA<geomDecomp>(decomposer())) { // Use connectivity labelListList pointFaces; @@ -1806,19 +2281,19 @@ Foam::distributedTriSurfaceMesh::independentlyDistributedBbs // Do the actual decomposition const bool oldParRun = UPstream::parRun(false); - distribution = decomposer_().decompose(faceFaces, triCentres); + distribution = decomposer().decompose(faceFaces, triCentres); UPstream::parRun(oldParRun); // Restore parallel state } else { // Do the actual decomposition - distribution = decomposer_().decompose(triCentres); + distribution = decomposer().decompose(triCentres); } if (debug) { Pout<< "distributedTriSurfaceMesh::independentlyDistributedBbs :" - << " determining processor bounding boxes for surface" + << " determining processor bounding boxes for surface " << searchableSurface::name() << endl; } @@ -1845,10 +2320,10 @@ Foam::distributedTriSurfaceMesh::independentlyDistributedBbs { // Fully distributed decomposition. Does not filter duplicate // triangles. - if (!decomposer_().parallelAware()) + if (!decomposer().parallelAware()) { FatalErrorInFunction - << "The decomposition method " << decomposer_().typeName + << "The decomposition method " << decomposer().typeName << " does not decompose in parallel." << " Please choose one that does." << exit(FatalError); } @@ -1868,7 +2343,7 @@ Foam::distributedTriSurfaceMesh::independentlyDistributedBbs triCentres[trii] = s[trii].centre(s.points()); } - labelList distribution = decomposer_().decompose(triCentres); + distribution = decomposer().decompose(triCentres); if (debug) { @@ -1901,10 +2376,10 @@ Foam::distributedTriSurfaceMesh::independentlyDistributedBbs // { // // Fully distributed decomposition. Does not filter duplicate // // triangles. -// if (!decomposer_().parallelAware()) +// if (!decomposer().parallelAware()) // { // FatalErrorInFunction -// << "The decomposition method " << decomposer_().typeName +// << "The decomposition method " << decomposer().typeName // << " does not decompose in parallel." // << " Please choose one that does." << exit(FatalError); // } @@ -2060,7 +2535,7 @@ Foam::distributedTriSurfaceMesh::independentlyDistributedBbs // pointField masterCentres(allCentres, triMap); // // // Do the actual decomposition -// labelList masterDistribution(decomposer_().decompose(masterCentres)); +// labelList masterDistribution(decomposer().decompose(masterCentres)); // // // Make map to get the decomposition from the master of each border // labelList borderGlobalMaster(borderTris.size()); @@ -2120,7 +2595,6 @@ Foam::distributedTriSurfaceMesh::independentlyDistributedBbs } // Determine local decomposition - labelList distribution(s.size()); { labelList allDistribution; if (Pstream::master()) @@ -2149,7 +2623,7 @@ Foam::distributedTriSurfaceMesh::independentlyDistributedBbs // Decompose merged centres const bool oldParRun = UPstream::parRun(false); - labelList mergedDist(decomposer_().decompose(mergedPoints)); + labelList mergedDist(decomposer().decompose(mergedPoints)); UPstream::parRun(oldParRun); // Restore parallel state // Convert to all @@ -2202,7 +2676,6 @@ Foam::distributedTriSurfaceMesh::independentlyDistributedBbs } Pstream::broadcast(bbs); } - return bbs; } @@ -2576,8 +3049,10 @@ Foam::distributedTriSurfaceMesh::distributedTriSurfaceMesh ), currentDistType_(FROZEN) // only used to trigger re-distribution { - // Read from the provided dictionary - read(); + // Construct from components. If empty dictionary get all the info from the + // supplied (undecomposed) triSurface. + + readSettings(dict_.empty()); bounds().reduce(); @@ -2639,21 +3114,34 @@ Foam::distributedTriSurfaceMesh::distributedTriSurfaceMesh(const IOobject& io) ), currentDistType_(FROZEN) // only used to trigger re-distribution { - // Read from the local, decomposed dictionary - read(); - - bounds().reduce(); - // Try and find out where the triSurface was loaded from. On slave this // might give empty filename. const fileName actualFile(triSurfaceMesh::findFile(io, true)); + // Was it read undecomposed? + const bool readFromMaster = + ( + actualFile.empty() + || actualFile != io.localFilePath(triSurfaceMesh::typeName) + ); + + readSettings(readFromMaster); + + bounds().reduce(); + + if (readFromMaster && !decomposeUsingBbs_) + { + // No fill-in so store normals + DebugInFunction + << "Determining vertex based normals since undecomposed" << endl; + const triSurface& surf = *this; + vertexNormals_ = autoPtr<List<FixedList<vector, 3>>>::New(); + calcVertexNormals(surf, vertexNormals_()); + } + if ( - ( - actualFile.empty() - || actualFile != io.localFilePath(triSurfaceMesh::typeName) - ) + readFromMaster && (distType_ == INDEPENDENT || distType_ == DISTRIBUTED) ) { @@ -2748,50 +3236,37 @@ Foam::distributedTriSurfaceMesh::distributedTriSurfaceMesh ), currentDistType_(FROZEN) // only used to trigger re-distribution { - // Read from the local, decomposed dictionary - read(); - - // Optionally override settings from provided dictionary - { - // Wanted distribution type - distributionTypeNames_.readIfPresent - ( - "distributionType", - dict, - distType_ - ); - - // Merge distance - dict.readIfPresent("mergeDistance", mergeDist_); + // Try and find out where the triSurface was loaded from. On slave this + // might give empty filename. + const fileName actualFile(triSurfaceMesh::findFile(io, dict, true)); - // Distribution type - bool closed; - if (dict.readIfPresent<bool>("closed", closed)) - { - surfaceClosed_ = closed; - } + // Was it read undecomposed? + const bool readFromMaster = + ( + actualFile.empty() + || actualFile != io.localFilePath(triSurfaceMesh::typeName) + ); - outsideVolType_ = volumeType::names.getOrDefault - ( - "outsideVolumeType", - dict, - outsideVolType_ - ); - } + // Add supplied dictionary entries (override existing) + dict_ <<= dict; + readSettings(readFromMaster); bounds().reduce(); - // Try and find out where the triSurface was loaded from. On slave this - // might give empty filename. - const fileName actualFile(triSurfaceMesh::findFile(io, dict, true)); + if (readFromMaster && !decomposeUsingBbs_) + { + // No fill-in so store enough normals to calculate + DebugInFunction + << "Determining vertex based normals since undecomposed" << endl; + const triSurface& surf = *this; + vertexNormals_ = autoPtr<List<FixedList<vector, 3>>>::New(); + calcVertexNormals(surf, vertexNormals_()); + } if ( - ( - actualFile.empty() - || actualFile != io.localFilePath(triSurfaceMesh::typeName) - ) + readFromMaster && (distType_ == INDEPENDENT || distType_ == DISTRIBUTED) ) { @@ -2878,6 +3353,35 @@ const Foam::globalIndex& Foam::distributedTriSurfaceMesh::globalTris() const } +void Foam::distributedTriSurfaceMesh::flip() +{ + if (debug) + { + Pout<< "distributedTriSurfaceMesh::flip :" + << " surface " << searchableSurface::name() + << " with current orientation " + << volumeType::names[outsideVolType_] + << " vertexNormals_ " << vertexNormals_.good() + << endl; + } + + triSurfaceMesh::flip(); + + if (vertexNormals_) + { + List<FixedList<vector, 3>>& vn = vertexNormals_(); + + for (auto& normals : vn) + { + for (auto& n : normals) + { + n = -n; + } + } + } +} + + //void Foam::distributedTriSurfaceMesh::findNearest //( // const pointField& samples, @@ -3902,7 +4406,7 @@ void Foam::distributedTriSurfaceMesh::getRegion // Do my tests // ~~~~~~~~~~~ - const triSurface& s = static_cast<const triSurface&>(*this); + const triSurface& s = *this; region.setSize(triangleIndex.size()); @@ -3969,14 +4473,36 @@ void Foam::distributedTriSurfaceMesh::getNormal // Do my tests // ~~~~~~~~~~~ - const triSurface& s = static_cast<const triSurface&>(*this); + const triSurface& s = *this; normal.setSize(triangleIndex.size()); - forAll(triangleIndex, i) + if (vertexNormals_) { - label trii = triangleIndex[i]; - normal[i] = s[trii].unitNormal(s.points()); + // Use smooth interpolation for the normal + + // Send over nearest point since we have it anyway + List<pointIndexHit> localNearestInfo(info); + map.distribute(localNearestInfo); + + forAll(triangleIndex, i) + { + const point& nearest = localNearestInfo[i].point(); + + const label trii = triangleIndex[i]; + const triPointRef tri(s[trii].tri(s.points())); + const auto& vn = vertexNormals_()[trii]; + const barycentric2D w(tri.pointToBarycentric(nearest)); + normal[i] = w[0]*vn[0]+w[1]*vn[1]+w[2]*vn[2]; + } + } + else + { + forAll(triangleIndex, i) + { + const label trii = triangleIndex[i]; + normal[i] = s[trii].unitNormal(s.points()); + } } @@ -4138,64 +4664,18 @@ void Foam::distributedTriSurfaceMesh::getVolumeType || outsideVolType_ == volumeType::OUTSIDE ) { - // Get local tree const indexedOctree<treeDataTriSurface>& t = tree(); const auto& nodes = t.nodes(); PackedList<2>& nt = t.nodeTypes(); nt.resize(nodes.size()); nt = volumeType::UNKNOWN; - // Collect midpoints - DynamicField<point> midPoints(label(0.5*nodes.size())); - if (nodes.size()) - { - collectLeafMids(0, midPoints); - } - - if (debug) - { - Pout<< "distributedTriSurfaceMesh::getVolumeType :" - << " surface " << searchableSurface::name() - << " triggering orientation caching for " - << midPoints.size() << " leaf mids" << endl; - } - - // Get volume type of mid points - List<volumeType> midVolTypes; - - // Note: could recurse here (since now outsideVolType_ is set) - // but this would use the cached mid point data which we're trying - // to calculate. Instead bypass caching and do a full search + if (!decomposeUsingBbs_) { - List<pointIndexHit> nearestInfo; - findNearest - ( - midPoints, - scalarField(midPoints.size(), Foam::sqr(GREAT)), - nearestInfo - ); - surfaceSide(midPoints, nearestInfo, midVolTypes); + markMixedOverlap(t, nt); } - // Cache on local tree - if (nodes.size()) - { - label index = 0; - calcVolumeType - ( - midVolTypes, - index, - nt, - 0 // nodeI - ); - } - if (debug) - { - Pout<< "distributedTriSurfaceMesh::getVolumeType :" - << " surface " << searchableSurface::name() - << " done orientation caching for " - << midPoints.size() << " leaf mids" << endl; - } + cacheVolumeType(nt); } } @@ -4282,9 +4762,18 @@ void Foam::distributedTriSurfaceMesh::getVolumeType // those I need to search the nearest for DynamicField<point> fullSearchPoints(localPoints.size()); DynamicList<label> fullSearchMap(localPoints.size()); + forAll(localPoints, i) { - if (tree().nodes().size()) + // If no-fill in: + // - tree nodes on the outside will not include fill-in triangles + // - so might decide the wrong state (might be 'mixed' with fill-in + // triangles) + // - for now do not cache + // - TBD. Note that the cached volume types already include remote + // fill-in triangles. There is still a problem there though. TBD. + + if (decomposeUsingBbs_ && tree().nodes().size()) { volType[i] = cachedVolumeType(0, localPoints[i]); } @@ -4322,9 +4811,68 @@ void Foam::distributedTriSurfaceMesh::getVolumeType // Combine forAll(fullSearchMap, i) { - volType[fullSearchMap[i]] = fullSearchType[i]; + volumeType& vt = volType[fullSearchMap[i]]; + if (vt == volumeType::UNKNOWN) + { + vt = fullSearchType[i]; + } + else if (vt != fullSearchType[i]) + { + Pout<< "At point:" << fullSearchPoints[i] + << " or point:" << localPoints[fullSearchMap[i]] + << " have cached status:" << vt + << " have full-search status:" << fullSearchType[i] + << endl; + } + //volType[fullSearchMap[i]] = fullSearchType[i]; } + //{ + // //- Variant of below that produces better error messages + // typedef Tuple2<Pair<point>, volumeType> NearType; + // const NearType zero(Pair<point>(Zero, Zero), volumeType::UNKNOWN); + // + // // Combine nearest and volType so we can give nicer error messages + // List<NearType> nearTypes(volType.size(), zero); + // + // NearTypeCombineOp cop; + // + // // For all volType we do have the originating point but not the + // // nearest + // forAll(localPoints, i) + // { + // nearTypes[i] = + // NearType(Pair<point>(localPoints[i], Zero), volType[i]); + // } + // // But for all full-search we also have the nearest + // forAll(fullSearchMap, i) + // { + // const NearType nt + // ( + // Pair<point>(fullSearchPoints[i], nearestInfo[i].hitPoint()), + // fullSearchType[i] + // ); + // + // cop(nearTypes[fullSearchMap[i]], nt); + // } + // mapDistributeBase::distribute + // ( + // Pstream::commsTypes::nonBlocking, + // List<labelPair>::null(), + // samples.size(), + // map.constructMap(), + // map.constructHasFlip(), + // map.subMap(), + // map.subHasFlip(), + // nearTypes, + // zero, + // cop, //NearTypeCombineOp(), + // noOp(), // no flipping + // UPstream::msgType(), + // map.comm() + // ); + //} + // Send back to originator. In case of multiple answers choose inside or // outside const volumeType zero(volumeType::UNKNOWN); @@ -4345,47 +4893,6 @@ void Foam::distributedTriSurfaceMesh::getVolumeType map.comm() ); - - //// Combine nearest and volType so we can give nicer error messages - //List<NearType> nearTypes(volType.size()); - //// For all volType we do have the originating point but not the nearest - //forAll(localPoints, i) - //{ - // nearTypes[i] = - // NearType(Pair<point>(localPoints[i], Zero), volType[i]); - //} - //// But for all full-search we also have the nearest - //forAll(fullSearchMap, i) - //{ - // nearTypes[fullSearchMap[i]] = NearType - // ( - // Pair<point>(fullSearchPoints[i], nearestInfo[i].hitPoint()), - // fullSearchType[i] - // ); - //} - //const NearType zero(Pair<point>(Zero, Zero), volumeType::UNKNOWN); - //mapDistributeBase::distribute - //( - // Pstream::commsTypes::nonBlocking, - // List<labelPair>::null(), - // samples.size(), - // map.constructMap(), - // map.constructHasFlip(), - // map.subMap(), - // map.subHasFlip(), - // nearTypes, - // zero, - // NearTypeCombineOp(), - // noOp(), // no flipping - // UPstream::msgType(), - // map.comm() - //); - //volType.setSize(nearTypes.size()); - //forAll(nearTypes, i) - //{ - // volType[i] = nearTypes[i].second(); - //} - // Add the points outside the bounding box for (label samplei : outsideSamples) { @@ -4613,6 +5120,7 @@ void Foam::distributedTriSurfaceMesh::distribute << " surface " << searchableSurface::name() << " distributing surface according to method:" << distributionTypeNames_[distType_] + << " fill-in:" << decomposeUsingBbs_ << " follow bbs:" << flatOutput(bbs) << endl; } @@ -4622,7 +5130,10 @@ void Foam::distributedTriSurfaceMesh::distribute // Get bbs of all domains // ~~~~~~~~~~~~~~~~~~~~~~ + // Per triangle the destination processor + labelList distribution; { + // Per processor the bounding box of all (destination) triangles List<List<treeBoundBox>> newProcBb(Pstream::nProcs()); switch (distType_) @@ -4638,7 +5149,7 @@ void Foam::distributedTriSurfaceMesh::distribute { return; } - newProcBb = independentlyDistributedBbs(*this); + independentlyDistributedBbs(*this, distribution, newProcBb); break; case FROZEN: @@ -4691,15 +5202,37 @@ void Foam::distributedTriSurfaceMesh::distribute labelListList faceSendMap(Pstream::nProcs()); labelListList pointSendMap(Pstream::nProcs()); - forAll(procBb_, proci) + if (decomposeUsingBbs_) { - overlappingSurface - ( - *this, - procBb_[proci], - pointSendMap[proci], - faceSendMap[proci] - ); + forAll(procBb_, proci) + { + overlappingSurface + ( + *this, + procBb_[proci], + pointSendMap[proci], + faceSendMap[proci] + ); + } + } + else + { + const triSurface& s = *this; + forAll(procBb_, proci) + { + boolList includedFace(s.size(), false); + forAll(s, trii) + { + includedFace[trii] = (distribution[trii] == proci); + } + subsetMesh + ( + s, + includedFace, + pointSendMap[proci], + faceSendMap[proci] + ); + } } if (keepNonLocal) @@ -4707,7 +5240,7 @@ void Foam::distributedTriSurfaceMesh::distribute // Include in faceSendMap/pointSendMap the triangles that are // not mapped to any processor so they stay local. - const triSurface& s = static_cast<const triSurface&>(*this); + const triSurface& s = *this; boolList includedFace(s.size(), true); @@ -4819,7 +5352,7 @@ void Foam::distributedTriSurfaceMesh::distribute UIPstream is(proci, pBufs); // Receive - triSurface subSurface(is); + const triSurface subSurface(is); // Merge into allSurf merge @@ -4876,6 +5409,63 @@ void Foam::distributedTriSurfaceMesh::distribute distributeFields<sphericalTensor>(faceMap()); distributeFields<symmTensor>(faceMap()); distributeFields<tensor>(faceMap()); + if (vertexNormals_) + { + List<FixedList<vector, 3>>& vn = vertexNormals_(); + faceMap().distribute(vn); + + if (debug & 2) + { + OBJstream str + ( + searchableSurface::time().path() + /searchableSurface::name() + "_vertex_normals.obj" + ); + const triSurface& s = *this; + forAll(s, trii) + { + const auto& f = s[trii]; + const scalar l = Foam::sqrt(f.mag(s.points())); + forAll(f, fp) + { + const point& pt = s.points()[f[fp]]; + const vector& n = vn[trii][fp]; + str.write(linePointRef(pt, pt+l*n)); + } + } + Pout<< "Dumped local vertex normals to " << str.name() << endl; + } + } + + + if + ( + outsideVolType_ == volumeType::INSIDE + || outsideVolType_ == volumeType::OUTSIDE + ) + { + // Re-build tree & inside/outside for closed surfaces + + const indexedOctree<treeDataTriSurface>& t = tree(); + const auto& nodes = t.nodes(); + PackedList<2>& nt = t.nodeTypes(); + nt.resize(nodes.size()); + nt = volumeType::UNKNOWN; + + // Send over any overlapping but not included triangles + if (!decomposeUsingBbs_) + { + // We do not backfill the bounding box so the local tree might + // not have all the triangles to cache inside/outside correctly. + // Do a pre-pass to mark 'mixed' the tree leaves that intersect + // the triangles of the (would be) fill-in triangles. + markMixedOverlap(t, nt); + } + + cacheVolumeType(nt); + } + + if (debug) { @@ -4995,16 +5585,17 @@ void Foam::distributedTriSurfaceMesh::writeStats(Ostream& os) const { boundBox bb; label nPoints; - PatchTools::calcBounds(static_cast<const triSurface&>(*this), bb, nPoints); + PatchTools::calcBounds(*this, bb, nPoints); bb.reduce(); - os << "Triangles : " << returnReduce(triSurface::size(), sumOp<label>()) - << endl - << "Vertices : " << returnReduce(nPoints, sumOp<label>()) << endl - << "Bounding Box : " << bb << endl - << "Closed : " << surfaceClosed_ << endl - << "Outside point: " << volumeType::names[outsideVolType_] << endl - << "Distribution : " << distributionTypeNames_[distType_] << endl; + os << "Triangles : " + << returnReduce(triSurface::size(), sumOp<label>()) << endl + << "Vertices : " << returnReduce(nPoints, sumOp<label>()) << endl + << "Vertex normals : " << vertexNormals_.valid() << endl + << "Bounding Box : " << bb << endl + << "Closed : " << surfaceClosed_ << endl + << "Outside type : " << volumeType::names[outsideVolType_] << endl + << "Distribution : " << distributionTypeNames_[distType_] << endl; } diff --git a/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.H b/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.H index 05adb82d5c8d08746b7a500b339c410b6cfa4af4..5c4498994b535a82275a2d6dfb16d35242db3f41 100644 --- a/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.H +++ b/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.H @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation - Copyright (C) 2015-2022 OpenCFD Ltd. + Copyright (C) 2015-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -109,20 +109,28 @@ private: //- Merging distance scalar mergeDist_; - autoPtr<IOdictionary> decomposeParDict_; + mutable autoPtr<IOdictionary> decomposeParDict_; //- Decomposition used when independently decomposing surface. - autoPtr<decompositionMethod> decomposer_; + mutable autoPtr<decompositionMethod> decomposer_; //- Bounding box settings localIOdictionary dict_; + //- Use bounding boxes (default) or unique decomposition of triangles + //- (i.e. do not duplicate triangles) + bool decomposeUsingBbs_; + //- Bounding boxes of all processors List<List<treeBoundBox>> procBb_; //- Global triangle numbering mutable autoPtr<globalIndex> globalTris_; + //- Optional per-vertex normals. TBD: move to triSurface? or have + //- per-triangle 3 normals so we can interpolate and have features + mutable autoPtr<List<FixedList<vector, 3>>> vertexNormals_; + //- The (wanted) distribution type. distributionType distType_; @@ -139,8 +147,17 @@ private: // directory or in parent directory static word findLocalInstance(const IOobject& io); - //- Read my additional data - bool read(); + //- Read my additional data from dictionary. Additional flag to + //- say whether we can use master-only geometric tests. + bool readSettings(const bool isUndecomposed); + + //- Construction helper: generate vertex normals upon reading + //- undecomposed surface + void calcVertexNormals + ( + const triSurface& surf, + List<FixedList<vector, 3>>& vn + ) const; // Line intersection @@ -287,6 +304,23 @@ private: // Caching of volume type (based on indexedOctree) + //- Set node type on any node containing the triangle + volumeType markMixed + ( + const indexedOctree<treeDataTriSurface>& tree, + const label nodei, + const triPointRef& tri, + PackedList<2>& nodeTypes + ) const; + + //- Set node type on any node overlapping any remote triangles. + //- Only valid if using unique decomposition. + void markMixedOverlap + ( + const indexedOctree<treeDataTriSurface>& tree, + PackedList<2>& nodeTypes + ) const; + //- Collect mid points of tree boxes void collectLeafMids ( @@ -303,6 +337,9 @@ private: const label nodeI ) const; + //- Calculate inside/outside of midpoint of tree nodes + void cacheVolumeType(PackedList<2>& nt) const; + //- Look up any cached data. Return unknown if cannot be determined. volumeType cachedVolumeType ( @@ -321,11 +358,16 @@ private: labelListList& faceFaces ); + //- Helper: get decompositionMethod + const decompositionMethod& decomposer() const; + //- Finds new bounds based on an independent decomposition. - List<List<treeBoundBox>> independentlyDistributedBbs + void independentlyDistributedBbs ( - const triSurface& - ); + const triSurface& s, + labelList& distribution, + List<List<treeBoundBox>>& bbs + ) const; //- Does any part of triangle overlap bb. static bool overlaps @@ -413,7 +455,8 @@ public: // Constructors - //- Construct from triSurface + //- Construct from components. Assumes triSurface is already decomposed + //- and dictionary contains corresponding information distributedTriSurfaceMesh ( const IOobject&, @@ -421,11 +464,17 @@ public: const dictionary& dict ); - //- Construct read. Does findInstance to find io.local(). + //- Construct read. Does findInstance to find io.local() + //- - if found local : assume distributed + //- - if found in parent : assume undistributed. Can e.g. check for + //- closedness. distributedTriSurfaceMesh(const IOobject& io); //- Construct from dictionary (used by searchableSurface). // Does read. Does findInstance to find io.local(). + //- - if found local : assume distributed + //- - if found in parent : assume undistributed. Can e.g. check for + //- closedness. distributedTriSurfaceMesh ( const IOobject& io, @@ -454,6 +503,9 @@ public: return globalTris().totalSize(); } + //- Flip triangles, outsideVolumeType and all cached inside/outside. + virtual void flip(); + virtual void findNearest ( const pointField& sample, diff --git a/src/parallel/distributed/patchDistMethods/exact/exactPatchDistMethod.C b/src/parallel/distributed/patchDistMethods/exact/exactPatchDistMethod.C index 73fe2e15fe4d2750c286255c0922fe4d31ff62eb..2fce36be064a19bbf7782dcab39539732edacee0 100644 --- a/src/parallel/distributed/patchDistMethods/exact/exactPatchDistMethod.C +++ b/src/parallel/distributed/patchDistMethods/exact/exactPatchDistMethod.C @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2018-2022 OpenCFD Ltd. + Copyright (C) 2018-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -61,10 +61,9 @@ Foam::patchDistMethods::exact::patchSurface() const localBb.extend(rndGen, 1E-3) ); - // Dummy bounds dictionary - dictionary dict; - dict.add("bounds", meshBb); - dict.add + // Add any missing properties (but not override existing ones) + dict_.add("bounds", meshBb); + dict_.add ( "distributionType", distributedTriSurfaceMesh::distributionTypeNames_ @@ -74,8 +73,7 @@ Foam::patchDistMethods::exact::patchSurface() const distributedTriSurfaceMesh::DISTRIBUTED // parallel decomp ] ); - dict.add("mergeDistance", 1e-6*localBb.mag()); - + dict_.add("mergeDistance", 1e-6*localBb.mag()); Info<< "Triangulating local patch faces" << nl << endl; @@ -100,7 +98,7 @@ Foam::patchDistMethods::exact::patchSurface() const patchIDs_, mapTriToGlobal ), - dict + dict_ ) ); @@ -131,7 +129,8 @@ Foam::patchDistMethods::exact::exact const labelHashSet& patchIDs ) : - patchDistMethod(mesh, patchIDs) + patchDistMethod(mesh, patchIDs), + dict_(dict.subOrEmptyDict(typeName + "Coeffs")) {} diff --git a/src/parallel/distributed/patchDistMethods/exact/exactPatchDistMethod.H b/src/parallel/distributed/patchDistMethods/exact/exactPatchDistMethod.H index 4fd1f82fb1ac3a1fc3f18a3f56a4565b411a3cfb..3ac84561ce1cbeb27d14b4f14f234bbe5db098a2 100644 --- a/src/parallel/distributed/patchDistMethods/exact/exactPatchDistMethod.H +++ b/src/parallel/distributed/patchDistMethods/exact/exactPatchDistMethod.H @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2018-2019 OpenCFD Ltd. + Copyright (C) 2018-2019,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -30,9 +30,32 @@ Description Calculation of exact distance to nearest patch for all cells and boundary by constructing a search tree for all patch faces. +Usage + + \begin{verbatim} + wallDist + { + method exactDistance; + + // Optional entries (currently for distributedTriSurfaceMesh) + exactDistanceCoeffs + { + // Optional decomposition method. If not supplied will use the + // system/decomposeParDict. + method hierarchical; + numberOfSubdomains 8; + n (2 2 2); + + // (not)add fill-in triangles + decomposeUsingBbs false; + } + } + \end{verbatim} + See also Foam::patchDistMethod::meshWave Foam::wallDist + Foam::distributedTriSurfaceMesh SourceFiles exactPatchDistMethod.C @@ -55,7 +78,7 @@ namespace patchDistMethods { /*---------------------------------------------------------------------------*\ - Class exact Declaration + Class exact Declaration \*---------------------------------------------------------------------------*/ class exact @@ -64,6 +87,9 @@ class exact { // Private Member Data + //- Dictionary contents from the dictionary constructor + mutable dictionary dict_; + //- Cache surface+searching of patch mutable autoPtr<distributedTriSurfaceMesh> patchSurfPtr_; diff --git a/src/parallel/reconstruct/faReconstruct/faMeshReconstructor.C b/src/parallel/reconstruct/faReconstruct/faMeshReconstructor.C index 71b7584fb4ea33384785dee018ad3c2c164c12ae..4f6002839daaa65b878d04f1c45097cf39da0a39 100644 --- a/src/parallel/reconstruct/faReconstruct/faMeshReconstructor.C +++ b/src/parallel/reconstruct/faReconstruct/faMeshReconstructor.C @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2021-2023 OpenCFD Ltd. + Copyright (C) 2021-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -678,36 +678,60 @@ void Foam::faMeshReconstructor::writeAddressing() const } -void Foam::faMeshReconstructor::writeAddressing(const word& timeName) const +void Foam::faMeshReconstructor::writeAddressing +( + const IOobject& io, + const labelList& faBoundaryProcAddr, + const labelList& faFaceProcAddr, + const labelList& faPointProcAddr, + const labelList& faEdgeProcAddr +) { // Write copies - IOobject ioAddr - ( - "procAddressing", - timeName, - faMesh::meshSubDir, - procMesh_.thisDb(), - IOobject::NO_READ, - IOobject::NO_WRITE, - IOobject::NO_REGISTER - ); + IOobject ioAddr(io); // boundaryProcAddressing ioAddr.rename("boundaryProcAddressing"); - IOListRef<label>(ioAddr, faBoundaryProcAddr_).write(); + IOListRef<label>(ioAddr, faBoundaryProcAddr).write(); // faceProcAddressing ioAddr.rename("faceProcAddressing"); - IOListRef<label>(ioAddr, faFaceProcAddr_).write(); + IOListRef<label>(ioAddr, faFaceProcAddr).write(); // pointProcAddressing ioAddr.rename("pointProcAddressing"); - IOListRef<label>(ioAddr, faPointProcAddr_).write(); + IOListRef<label>(ioAddr, faPointProcAddr).write(); // edgeProcAddressing ioAddr.rename("edgeProcAddressing"); - IOListRef<label>(ioAddr, faEdgeProcAddr_).write(); + IOListRef<label>(ioAddr, faEdgeProcAddr).write(); +} + + +void Foam::faMeshReconstructor::writeAddressing(const word& timeName) const +{ + // Write copies + + IOobject ioAddr + ( + "procAddressing", + timeName, + faMesh::meshSubDir, + procMesh_.thisDb(), + IOobject::NO_READ, + IOobject::NO_WRITE, + IOobject::NO_REGISTER + ); + + writeAddressing + ( + ioAddr, + faBoundaryProcAddr_, + faFaceProcAddr_, + faPointProcAddr_, + faEdgeProcAddr_ + ); } @@ -717,10 +741,13 @@ void Foam::faMeshReconstructor::writeMesh() const } -void Foam::faMeshReconstructor::writeMesh(const word& timeName) const +void Foam::faMeshReconstructor::writeMesh +( + const word& timeName, + const faMesh& fullMesh, + const labelUList& singlePatchFaceLabels +) { - const faMesh& fullMesh = this->mesh(); - refPtr<fileOperation> writeHandler(fileOperation::NewUncollated()); auto oldHandler = fileOperation::fileHandler(writeHandler); @@ -733,7 +760,7 @@ void Foam::faMeshReconstructor::writeMesh(const word& timeName) const IOobject io(fullMesh.boundary()); io.rename("faceLabels"); - IOListRef<label>(io, singlePatchFaceLabels_).write(); + IOListRef<label>(io, singlePatchFaceLabels).write(); fullMesh.boundary().write(); @@ -746,4 +773,10 @@ void Foam::faMeshReconstructor::writeMesh(const word& timeName) const } +void Foam::faMeshReconstructor::writeMesh(const word& timeName) const +{ + writeMesh(timeName, this->mesh(), singlePatchFaceLabels_); +} + + // ************************************************************************* // diff --git a/src/parallel/reconstruct/faReconstruct/faMeshReconstructor.H b/src/parallel/reconstruct/faReconstruct/faMeshReconstructor.H index 9ffc7400033229dffa29043c31e68c2dc0839fbf..02253daa179afae10ec50d740399fd4e4ece6702 100644 --- a/src/parallel/reconstruct/faReconstruct/faMeshReconstructor.H +++ b/src/parallel/reconstruct/faReconstruct/faMeshReconstructor.H @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2021-2022 OpenCFD Ltd. + Copyright (C) 2021-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -210,12 +210,30 @@ public: // Write + //- Write proc addressing + static void writeAddressing + ( + const IOobject& io, + const labelList& faBoundaryProcAddr, + const labelList& faFaceProcAddr, + const labelList& faPointProcAddr, + const labelList& faEdgeProcAddr + ); + //- Write proc addressing at the polyMesh faceInstances time void writeAddressing() const; //- Write proc addressing at the given time void writeAddressing(const word& timeName) const; + //- Write mesh information + static void writeMesh + ( + const word& timeName, + const faMesh& fullMesh, + const labelUList& singlePatchFaceLabels + ); + //- Write equivalent mesh information at the polyMesh faceInstances time void writeMesh() const; diff --git a/src/parallel/reconstruct/reconstruct/processorMeshes.C b/src/parallel/reconstruct/reconstruct/processorMeshes.C index beaa2ea85888f3cb82e634f93328bf12881275e5..22c07913b261d0ca55db20b4ef6890de7ed27eee 100644 --- a/src/parallel/reconstruct/reconstruct/processorMeshes.C +++ b/src/parallel/reconstruct/reconstruct/processorMeshes.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2016-2023 OpenCFD Ltd. + Copyright (C) 2016-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -31,6 +31,7 @@ License #include "IndirectList.H" #include "primitiveMesh.H" #include "OSspecific.H" +#include "pointMesh.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // @@ -46,6 +47,9 @@ void Foam::processorMeshes::read() { // Make sure to clear (and hence unregister) any previously loaded meshes // and fields + pBoundaryProcAddressing_.free(); + pMeshes_.free(); + boundaryProcAddressing_.free(); cellProcAddressing_.free(); faceProcAddressing_.free(); @@ -92,6 +96,39 @@ void Foam::processorMeshes::read() // boundaryProcAddressing (polyMesh) ioAddr.rename("boundaryProcAddressing"); boundaryProcAddressing_.emplace_set(proci, ioAddr); + + + // pointMesh + // ~~~~~~~~~ + + pMeshes_.set + ( + proci, + new pointMesh + ( + meshes_[proci], + IOobject::READ_IF_PRESENT + ) + ); + + pBoundaryProcAddressing_.set + ( + proci, + autoPtr<labelIOList>::New + ( + IOobject + ( + "boundaryProcAddressing", + meshes_[proci].facesInstance(), + polyMesh::meshSubDir/pointMesh::meshSubDir, + pMeshes_[proci].thisDb(), + IOobject::READ_IF_PRESENT, + IOobject::NO_WRITE, + IOobject::NO_REGISTER + ), + boundaryProcAddressing_[proci] + ) + ); } } @@ -110,7 +147,9 @@ Foam::processorMeshes::processorMeshes pointProcAddressing_(databases.size()), faceProcAddressing_(databases.size()), cellProcAddressing_(databases.size()), - boundaryProcAddressing_(databases.size()) + boundaryProcAddressing_(databases.size()), + pMeshes_(databases.size()), + pBoundaryProcAddressing_(databases.size()) { read(); } @@ -250,6 +289,26 @@ void Foam::processorMeshes::removeFiles(const polyMesh& mesh) // boundaryProcAddressing io.rename("boundaryProcAddressing"); fileHandler().rm(fileHandler().filePath(io.objectPath())); + + + + // pointMesh + // ~~~~~~~~~ + + IOobject pointIO + ( + "boundary", + mesh.facesInstance(), + polyMesh::meshSubDir/pointMesh::meshSubDir, + mesh.thisDb() + ); + + // pointMesh/boundary + fileHandler().rm(fileHandler().filePath(pointIO.objectPath())); + + // boundaryProcAddressing + io.rename("boundaryProcAddressing"); + fileHandler().rm(fileHandler().filePath(pointIO.objectPath())); } diff --git a/src/parallel/reconstruct/reconstruct/processorMeshes.H b/src/parallel/reconstruct/reconstruct/processorMeshes.H index 9272681ba1ba625ea1110f29205f2352cc700b4c..d8da977c737976b9a105d5e5aeb33e67c66a5e1e 100644 --- a/src/parallel/reconstruct/reconstruct/processorMeshes.H +++ b/src/parallel/reconstruct/reconstruct/processorMeshes.H @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2014 OpenFOAM Foundation - Copyright (C) 2016 OpenCFD Ltd. + Copyright (C) 2016,2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -77,6 +77,15 @@ class processorMeshes PtrList<labelIOList> boundaryProcAddressing_; + // pointMesh + + //- List of processor meshes + PtrList<pointMesh> pMeshes_; + + //- List of processor boundary addressing lists for pointMeshes + PtrList<labelIOList> pBoundaryProcAddressing_; + + // Private Member Functions //- Read all meshes @@ -140,6 +149,20 @@ public: } + // pointMesh + + const PtrList<pointMesh>& pointMeshes() const noexcept + { + return pMeshes_; + } + + const PtrList<labelIOList>& pointMeshBoundaryProcAddressing() + const noexcept + { + return pBoundaryProcAddressing_; + } + + //- Helper: remove all procAddressing files from mesh instance static void removeFiles(const polyMesh& mesh); }; diff --git a/src/phaseSystemModels/multiphaseInter/phasesSystem/phaseModel/phaseModel/phaseModels.C b/src/phaseSystemModels/multiphaseInter/phasesSystem/phaseModel/phaseModel/phaseModels.C index 25eae2d892fd8ae7e8a3bb2cb64995acda2ea39e..ec3b92645e89a2395e121f64dcd5f5cd031408c7 100644 --- a/src/phaseSystemModels/multiphaseInter/phasesSystem/phaseModel/phaseModel/phaseModels.C +++ b/src/phaseSystemModels/multiphaseInter/phasesSystem/phaseModel/phaseModel/phaseModels.C @@ -65,6 +65,15 @@ makePhaseTypes pureStaticSolidPhaseModel ); +makePhaseTypes +( + MovingPhaseModel, + PurePhaseModel, + multiphaseInter::phaseModel, + solidThermo, + pureMovingSolidPhaseModel +); + makePhaseTypes ( MovingPhaseModel, diff --git a/src/regionFaModels/Make/files b/src/regionFaModels/Make/files index cd0717dbd83b2fc4ffd6e125939af84db33f3251..a8875dd6ed0677f7a9ae26758f6ba0454e0d0855 100644 --- a/src/regionFaModels/Make/files +++ b/src/regionFaModels/Make/files @@ -15,22 +15,29 @@ derivedFvPatchFields/vibrationShell/vibrationShellFvPatchScalarField.C /* Sub-Model */ -liquidFilm/subModels/kinematic/filmTurbulenceModel/filmTurbulenceModel/filmTurbulenceModel.C -liquidFilm/subModels/kinematic/filmTurbulenceModel/filmTurbulenceModel/filmTurbulenceModelNew.C -liquidFilm/subModels/kinematic/filmTurbulenceModel/laminar/laminar.C +kinematic = liquidFilm/subModels/kinematic -liquidFilm/subModels/kinematic/injectionModel/injectionModelList/injectionModelList.C -liquidFilm/subModels/kinematic/injectionModel/injectionModel/injectionModel.C -liquidFilm/subModels/kinematic/injectionModel/injectionModel/injectionModelNew.C +$(kinematic)/filmTurbulenceModel/filmTurbulenceModel/filmTurbulenceModel.C +$(kinematic)/filmTurbulenceModel/filmTurbulenceModel/filmTurbulenceModelNew.C +$(kinematic)/filmTurbulenceModel/laminar/laminar.C -liquidFilm/subModels/kinematic/injectionModel/curvatureSeparation/curvatureSeparation.C -liquidFilm/subModels/kinematic/injectionModel/BrunDrippingInjection/BrunDrippingInjection.C +$(kinematic)/injectionModel/injectionModelList/injectionModelList.C +$(kinematic)/injectionModel/injectionModel/injectionModel.C +$(kinematic)/injectionModel/injectionModel/injectionModelNew.C -liquidFilm/subModels/kinematic/force/forceList/forceList.C -liquidFilm/subModels/kinematic/force/force/force.C -liquidFilm/subModels/kinematic/force/force/forceNew.C -liquidFilm/subModels/kinematic/force/contactAngleForces/contactAngleForce/contactAngleForce.C -liquidFilm/subModels/kinematic/force/contactAngleForces/dynamicContactAngleForce/dynamicContactAngleForce.C +$(kinematic)/injectionModel/filmSeparation/filmSeparation.C +$(kinematic)/injectionModel/filmSeparation/filmSeparationModels/filmSeparationModel/filmSeparationModel.C +$(kinematic)/injectionModel/filmSeparation/filmSeparationModels/filmSeparationModel/filmSeparationModelNew.C +$(kinematic)/injectionModel/filmSeparation/filmSeparationModels/OwenRyleyModel/OwenRyleyModel.C +$(kinematic)/injectionModel/filmSeparation/filmSeparationModels/FriedrichModel/FriedrichModel.C + +$(kinematic)/injectionModel/BrunDrippingInjection/BrunDrippingInjection.C + +$(kinematic)/force/forceList/forceList.C +$(kinematic)/force/force/force.C +$(kinematic)/force/force/forceNew.C +$(kinematic)/force/contactAngleForces/contactAngleForce/contactAngleForce.C +$(kinematic)/force/contactAngleForces/dynamicContactAngleForce/dynamicContactAngleForce.C liquidFilm/subModels/filmSubModelBase.C @@ -42,5 +49,6 @@ liquidFilm/kinematicThinFilm/kinematicThinFilm.C derivedFvPatchFields/filmShell/velocityFilmShellFvPatchVectorField.C functionObjects/setTimeStep/setTimeStepFaRegionsFunctionObject.C +functionObjects/surfaceCourantNumber/surfaceCourantNumber.C LIB = $(FOAM_LIBBIN)/libregionFaModels diff --git a/src/regionFaModels/functionObjects/surfaceCourantNumber/surfaceCourantNumber.C b/src/regionFaModels/functionObjects/surfaceCourantNumber/surfaceCourantNumber.C new file mode 100644 index 0000000000000000000000000000000000000000..49c7dc76c485b5b79409755a88af6d688856595f --- /dev/null +++ b/src/regionFaModels/functionObjects/surfaceCourantNumber/surfaceCourantNumber.C @@ -0,0 +1,227 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "surfaceCourantNumber.H" +#include "fvMesh.H" +#include "faMesh.H" +#include "areaFields.H" +#include "edgeFields.H" +#include "facEdgeIntegrate.H" +#include "zeroGradientFaPatchFields.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace functionObjects +{ + defineTypeNameAndDebug(surfaceCourantNumber, 0); + addToRunTimeSelectionTable(functionObject, surfaceCourantNumber, dictionary); +} +} + + +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // + +void Foam::functionObjects::surfaceCourantNumber::writeFileHeader(Ostream& os) +{ + writeHeader(os, "Surface Courant Number"); + + writeCommented(os, "Time"); + writeTabbed(os, "min"); + writeTabbed(os, "max"); + writeTabbed(os, "mean"); + os << endl; + + writtenHeader_ = true; +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::functionObjects::surfaceCourantNumber::surfaceCourantNumber +( + const word& name, + const Time& runTime, + const dictionary& dict +) +: + fvMeshFunctionObject(name, runTime, dict), + writeFile(mesh_, name, typeName, dict), + resultName_("surfaceCo"), + phisName_("phis"), + rhoName_("rho") +{ + read(dict); +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +bool Foam::functionObjects::surfaceCourantNumber::read(const dictionary& dict) +{ + if (!fvMeshFunctionObject::read(dict) || !writeFile::read(dict)) + { + return false; + } + + dict.readIfPresent("result", resultName_); + dict.readIfPresent("phis", phisName_); + dict.readIfPresent("rho", rhoName_); + + // Registry containing all finite-area meshes on the polyMesh + const auto* faRegistryPtr = faMesh::registry(mesh_); + + if (!faRegistryPtr) + { + FatalIOErrorInFunction(dict) + << "No finite-area object registry is available." + << abort(FatalIOError); + } + + word areaName; + + if (!dict.readIfPresent("area", areaName)) + { + wordList available = faRegistryPtr->sortedNames<faMesh>(); + if (!available.empty()) + { + areaName = available.front(); + } + } + + if (areaName.empty()) + { + FatalIOErrorInFunction(dict) + << "No name for finite-area mesh is available." + << abort(FatalIOError); + } + + faMeshPtr_ = std::shared_ptr<const faMesh> + ( + faRegistryPtr->cfindObject<faMesh>(areaName), + [](const faMesh*) { /* no-op deleter to avoid double deletion */ } + ); + + return true; +} + + +bool Foam::functionObjects::surfaceCourantNumber::execute() +{ + if (!faMeshPtr_->foundObject<edgeScalarField>(phisName_)) + { + WarningInFunction + << "No edge flux field is available. " + << "Name of provided edge flux field (phi): " << phisName_ + << endl; + + return false; + } + + const auto& phis = faMeshPtr_->lookupObject<edgeScalarField>(phisName_); + + tmp<areaScalarField::Internal> tCo = + (0.5*faMeshPtr_->time().deltaT()) + *fac::edgeSum(mag(phis))()() + /faMeshPtr_->S(); + + areaScalarField::Internal Co = tCo.ref(); + + if (Co.dimensions() == dimDensity) + { + Co /= faMeshPtr_->lookupObject<areaScalarField>(rhoName_); + } + + auto* resultPtr = faMeshPtr_->getObjectPtr<areaScalarField>(resultName_); + + if (!resultPtr) + { + resultPtr = new areaScalarField + ( + IOobject + ( + resultName_, + faMeshPtr_->time().timeName(), + *faMeshPtr_, + IOobjectOption() + ), + *faMeshPtr_, + dimensionedScalar(dimless, Zero), + faPatchFieldBase::zeroGradientType() + ); + regIOobject::store(resultPtr); + } + auto& result = *resultPtr; + + result.internalFieldRef() = tCo; + result.correctBoundaryConditions(); + + + const scalarMinMax limits(gMinMax(result)); + const scalar mean = gAverage(result); + + Log << "Surface Courant number: " + << "mean: " << mean + << " max: " << limits.max() + << endl; + + if (writeToFile()) + { + if (!writtenHeader_) writeFileHeader(file()); + + writeCurrentTime(file()); + file() + << token::TAB << limits.min() + << token::TAB << limits.max() + << token::TAB << mean + << endl; + } + + return true; +} + + +bool Foam::functionObjects::surfaceCourantNumber::write() +{ + const auto* result = faMeshPtr_->cfindObject<areaScalarField>(resultName_); + + if (!result) + { + return false; + } + + Log << type() << " " << name() << " write: " << result->name() << endl; + + result->write(); + + return true; +} + + +// ************************************************************************* // diff --git a/src/regionFaModels/functionObjects/surfaceCourantNumber/surfaceCourantNumber.H b/src/regionFaModels/functionObjects/surfaceCourantNumber/surfaceCourantNumber.H new file mode 100644 index 0000000000000000000000000000000000000000..8c64a01b627b1684ecb21fb6a55b65705d14b1c5 --- /dev/null +++ b/src/regionFaModels/functionObjects/surfaceCourantNumber/surfaceCourantNumber.H @@ -0,0 +1,175 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::functionObjects::surfaceCourantNumber + +Description + Computes the surface Courant number field at finite-area face centres. + + Operands: + \table + Operand | Type | Location + input | - | - + output file | dat <!-- + --> | postProcessing/\<FO\>/\<time\>/\<file\> + output field | areaScalarField | \<time\>/\<outField\> + \endtable + +Usage + Minimal example by using \c system/controlDict.functions: + \verbatim + surfaceCourantNumber1 + { + // Mandatory entries + type surfaceCourantNumber; + libs (regionFaModels); + + // Optional entries + area <word>; + result <word>; + phis <word>; + rho <word>; + + // Inherited entries + ... + } + \endverbatim + + where the entries mean: + \table + Property | Description | Type | Reqd | Deflt + type | Type name: surfaceCourantNumber | word | yes | - + libs | Library name: regionFaModels | word | yes | - + area | Name of finite-area region | word | no | region0 + result | Name of result field | word | no | surfaceCo + phis | Name of edge flux field | word | no | phis + rho | Name of density field | word | no | rho + \endtable + + The inherited entries are elaborated in: + - \link fvMeshFunctionObject.H \endlink + - \link writeFile.H \endlink + +Note + - The \c surfaceCourantNumber calculates the Courant number at face centers, + rather than at edge centers. + +SourceFiles + surfaceCourantNumber.C + +\*---------------------------------------------------------------------------*/ + +#ifndef functionObjects_surfaceCourantNumber_H +#define functionObjects_surfaceCourantNumber_H + +#include "fvMeshFunctionObject.H" +#include "writeFile.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// Forward Declarations +class faMesh; + +namespace functionObjects +{ + +/*---------------------------------------------------------------------------*\ + Class surfaceCourantNumber Declaration +\*---------------------------------------------------------------------------*/ + +class surfaceCourantNumber +: + public fvMeshFunctionObject, + public writeFile +{ + // Private Data + + //- Name of result field + word resultName_; + + //- Name of edge flux field + word phisName_; + + //- Name of density field + word rhoName_; + + //- Reference to finite-area object registry + std::shared_ptr<const faMesh> faMeshPtr_; + + + // Private Member Functions + + //- Output file header information + virtual void writeFileHeader(Ostream& os); + + +public: + + //- Runtime type information + TypeName("surfaceCourantNumber"); + + + // Constructors + + //- Construct from Time and dictionary + surfaceCourantNumber + ( + const word& name, + const Time& runTime, + const dictionary& dict + ); + + + //- Destructor + virtual ~surfaceCourantNumber() = default; + + + // Member Functions + + //- Read the surfaceCourantNumber data + virtual bool read(const dictionary&); + + //- Calculate the Courant number field and return true if successful + virtual bool execute(); + + //- Write the result field + virtual bool write(); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace functionObjects +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/curvatureSeparation/curvatureSeparation.H b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/curvatureSeparation/curvatureSeparation.H deleted file mode 100644 index 07dbef9e18a2f8129b333a44fdb066a03ac5cefa..0000000000000000000000000000000000000000 --- a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/curvatureSeparation/curvatureSeparation.H +++ /dev/null @@ -1,201 +0,0 @@ -/*---------------------------------------------------------------------------*\ - ========= | - \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | - \\ / A nd | www.openfoam.com - \\/ M anipulation | -------------------------------------------------------------------------------- - Copyright (C) 2011-2017 OpenFOAM Foundation - Copyright (C) 2021 OpenCFD Ltd. -------------------------------------------------------------------------------- -License - This file is part of OpenFOAM. - - OpenFOAM is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - OpenFOAM is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - for more details. - - You should have received a copy of the GNU General Public License - along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. - -Class - Foam::regionModels::areaSurfaceFilmModels::curvatureSeparation - -Description - Curvature film separation model - - Assesses film curvature via the mesh geometry and calculates a force - balance of the form: - - F_sum = F_inertial + F_body + F_surface - - If F_sum < 0, the film separates. Similarly, if F_sum > 0 the film will - remain attached. - - Reference: - \verbatim - Owen, I., & Ryley, D. J. (1985). - The flow of thin liquid films around corners. - International journal of multiphase flow, 11(1), 51-62. - \endverbatim - -Usage - Example of the model specification: - \verbatim - injectionModels - ( - curvatureSeparation - ); - - curvatureSeparationCoeffs - { - // Optional entries - deltaByR1Min <scalar>; - definedPatchRadii <scalar>; - fThreshold <scalar>; - minInvR1 <scalar>; - - // Inherited entries - ... - } - \endverbatim - - where the entries mean: - \table - Property | Description | Type | Reqd | Deflt - deltaByR1Min | Minimum gravity driven film thickness | scalar | no | 0 - definedPatchRadii | Patch radius i | scalar | no | 0 - fThreshold | Threshold force for separation | scalar | no | 1e-8 - minInvR1 | Minimum inv R1 for separation | scalar | no | 5 - \endtable - - The inherited entries are elaborated in: - - \link injectionModel.H \endlink - -SourceFiles - curvatureSeparation.C - -\*---------------------------------------------------------------------------*/ - -#ifndef curvatureSeparation_H -#define curvatureSeparation_H - -#include "injectionModel.H" - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -namespace Foam -{ -namespace regionModels -{ -namespace areaSurfaceFilmModels -{ - -/*---------------------------------------------------------------------------*\ - Class curvatureSeparation Declaration -\*---------------------------------------------------------------------------*/ - -class curvatureSeparation -: - public injectionModel -{ - // Private Member Functions - - //- No copy construct - curvatureSeparation(const curvatureSeparation&) = delete; - - //- No copy assignment - void operator=(const curvatureSeparation&) = delete; - - -protected: - - // Protected Data - - //- Gradient of surface normals - areaTensorField gradNHat_; - - //- Minimum gravity driven film thickness (non-dimensionalised delta/R1) - scalar deltaByR1Min_; - - //- Patch radius - scalar definedPatchRadii_; - - //- Magnitude of gravity vector - scalar magG_; - - //- Direction of gravity vector - vector gHat_; - - //- Threshold force for separation - scalar fThreshold_; - - //- Minimum inv R1 for separation - scalar minInvR1_; - - - // Protected Member Functions - - //- Calculate local (inverse) radius of curvature - tmp<areaScalarField> calcInvR1 - ( - const areaVectorField& U, - const scalarField& calcCosAngle - ) const; - - //- Calculate the cosine of the angle between gravity vector and - //- cell out flow direction - tmp<scalarField> calcCosAngle(const edgeScalarField& phi) const; - - -public: - - //- Runtime type information - TypeName("curvatureSeparation"); - - - // Constructors - - //- Construct from surface film model - curvatureSeparation - ( - liquidFilmBase& film, - const dictionary& dict - ); - - - //- Destructor - virtual ~curvatureSeparation() = default; - - - // Member Functions - - // Evolution - - //- Correct - virtual void correct - ( - scalarField& availableMass, - scalarField& massToInject, - scalarField& diameterToInject - ); -}; - - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -} // End namespace areaSurfaceFilmModels -} // End namespace regionModels -} // End namespace Foam - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -#endif - -// ************************************************************************* // diff --git a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparation.C b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparation.C new file mode 100644 index 0000000000000000000000000000000000000000..105092d9644e528a8703fe0ce277c262c3a629d4 --- /dev/null +++ b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparation.C @@ -0,0 +1,127 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2017 OpenFOAM Foundation + Copyright (C) 2020-2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "filmSeparation.H" +#include "filmSeparationModel.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ +namespace regionModels +{ +namespace areaSurfaceFilmModels +{ + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +defineTypeNameAndDebug(filmSeparation, 0); +addToRunTimeSelectionTable +( + injectionModel, + filmSeparation, + dictionary +); +} +} +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::regionModels::areaSurfaceFilmModels::filmSeparation::filmSeparation +( + liquidFilmBase& film, + const dictionary& dict +) +: + injectionModel(type(), film, dict), + filmSeparationModelPtr_(filmSeparationModel::New(film, coeffDict_)) +{} + + +// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // + +Foam::regionModels::areaSurfaceFilmModels::filmSeparation::~filmSeparation() +{} // filmSeparationModel was forward declared + + +// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // + +void Foam::regionModels::areaSurfaceFilmModels::filmSeparation::correct +( + scalarField& availableMass, + scalarField& massToInject, + scalarField& diameterToInject +) +{ + const faMesh& mesh = film().regionMesh(); + + // Calculate the mass ratio of film separation + tmp<scalarField> tmassRatio = filmSeparationModelPtr_->separatedMassRatio(); + const auto& massRatio = tmassRatio.cref(); + + // Update various film properties based on the mass ratio + massToInject = massRatio*availableMass; + diameterToInject = massRatio*film().h(); + availableMass -= massRatio*availableMass; + + addToInjectedMass(sum(massToInject)); + + injectionModel::correct(); + + + if (debug && mesh.time().writeTime()) + { + { + areaScalarField areaSeparated + ( + mesh.newIOobject("separated"), + mesh, + dimensionedScalar(dimMass, Zero) + ); + areaSeparated.primitiveFieldRef() = massRatio; + areaSeparated.write(); + } + + { + areaScalarField areaMassToInject + ( + mesh.newIOobject("massToInject"), + mesh, + dimensionedScalar(dimMass, Zero) + ); + areaMassToInject.primitiveFieldRef() = massToInject; + areaMassToInject.write(); + } + } +} + + +// ************************************************************************* // diff --git a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparation.H b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparation.H new file mode 100644 index 0000000000000000000000000000000000000000..178a70558d6b8bebc39ad41a90b8fec35740270a --- /dev/null +++ b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparation.H @@ -0,0 +1,153 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2017 OpenFOAM Foundation + Copyright (C) 2021-2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::regionModels::areaSurfaceFilmModels::filmSeparation + +Description + The \c filmSeparation is a collection of curvature thin-film separation + models designed to predict the onset of film separation and mass separation + in geometries featuring sharp and/or rounded corners. + +Usage + Minimal example by using boundary-condition files: + \verbatim + injectionModels + { + // Mandatory entries + filmSeparation + } + + filmSeparationCoeffs + { + model <word>; + + // Conditional entries + + // Option-1: when model == OwenRyley + + // Option-2: when model == Friedrich + + // Inherited entries + ... + } + \endverbatim + + where the entries mean: + \table + Property | Description | Type | Reqd | Deflt + model | Name of the filmSeparation model | word | yes | - + \endtable + + Options for the \c model entry: + \verbatim + OwenRyley | Model proposed by Owen-Ryley (1985) + Friedrich | Model proposed by Friedrich et al. (2008) + \endverbatim + + The inherited entries are elaborated in: + - \link injectionModel.H \endlink + +SourceFiles + filmSeparation.C + +\*---------------------------------------------------------------------------*/ + +#ifndef Foam_filmSeparation_H +#define Foam_filmSeparation_H + +#include "injectionModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// Forward Declarations +class filmSeparationModel; + +namespace regionModels +{ +namespace areaSurfaceFilmModels +{ + +/*---------------------------------------------------------------------------*\ + Class filmSeparation Declaration +\*---------------------------------------------------------------------------*/ + +class filmSeparation +: + public injectionModel +{ + // Private Data + + //- Film-separation model + autoPtr<filmSeparationModel> filmSeparationModelPtr_; + + +public: + + //- Runtime type information + TypeName("filmSeparation"); + + + // Constructors + + //- Construct from base film model and dictionary + filmSeparation + ( + liquidFilmBase& film, + const dictionary& dict + ); + + + //- Destructor + virtual ~filmSeparation(); + + + // Member Functions + + //- Correct film properties due to the film separation + virtual void correct + ( + scalarField& availableMass, + scalarField& massToInject, + scalarField& diameterToInject + ); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace areaSurfaceFilmModels +} // End namespace regionModels +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/FriedrichModel/FriedrichModel.C b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/FriedrichModel/FriedrichModel.C new file mode 100644 index 0000000000000000000000000000000000000000..b9490ebc672677458c13ea84000510d17865e4dc --- /dev/null +++ b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/FriedrichModel/FriedrichModel.C @@ -0,0 +1,593 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "FriedrichModel.H" +#include "processorFaPatch.H" +#include "unitConversion.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace filmSeparationModels +{ + defineTypeNameAndDebug(FriedrichModel, 0); + addToRunTimeSelectionTable(filmSeparationModel, FriedrichModel, dictionary); + + +const Foam::Enum +< + FriedrichModel::separationType +> +FriedrichModel::separationTypeNames +({ + { separationType::FULL, "full" }, + { separationType::PARTIAL , "partial" }, +}); + + +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // + +bitSet FriedrichModel::calcCornerEdges() const +{ + bitSet cornerEdges(mesh().nEdges(), false); + + const areaVectorField& faceCentres = mesh().areaCentres(); + const areaVectorField& faceNormals = mesh().faceAreaNormals(); + + const labelUList& own = mesh().edgeOwner(); + const labelUList& nbr = mesh().edgeNeighbour(); + + // Check if internal face-normal vectors diverge (no separation) + // or converge (separation may occur) + forAll(nbr, edgei) + { + const label faceO = own[edgei]; + const label faceN = nbr[edgei]; + + cornerEdges[edgei] = isCornerEdgeSharp + ( + faceCentres[faceO], + faceCentres[faceN], + faceNormals[faceO], + faceNormals[faceN] + ); + } + + + // Skip the rest of the routine if the simulation is a serial run + if (!Pstream::parRun()) return cornerEdges; + + // Check if processor face-normal vectors diverge (no separation) + // or converge (separation may occur) + const faBoundaryMesh& patches = mesh().boundary(); + + for (const faPatch& fap : patches) + { + if (isA<processorFaPatch>(fap)) + { + const label patchi = fap.index(); + const auto& edgeFaces = fap.edgeFaces(); + const label internalEdgei = fap.start(); + + const auto& faceCentresp = faceCentres.boundaryField()[patchi]; + const auto& faceNormalsp = faceNormals.boundaryField()[patchi]; + + forAll(faceNormalsp, bndEdgei) + { + const label faceO = edgeFaces[bndEdgei]; + const label meshEdgei = internalEdgei + bndEdgei; + + cornerEdges[meshEdgei] = isCornerEdgeSharp + ( + faceCentres[faceO], + faceCentresp[bndEdgei], + faceNormals[faceO], + faceNormalsp[bndEdgei] + ); + } + } + } + + return cornerEdges; +} + + +bool FriedrichModel::isCornerEdgeSharp +( + const vector& faceCentreO, + const vector& faceCentreN, + const vector& faceNormalO, + const vector& faceNormalN +) const +{ + // Calculate the relative position of centres of faces sharing an edge + const vector relativePosition(faceCentreN - faceCentreO); + + // Calculate the relative normal of faces sharing an edge + const vector relativeNormal(faceNormalN - faceNormalO); + + // Return true if the face normals converge, meaning that the edge is sharp + return ((relativeNormal & relativePosition) < -1e-8); +} + + +scalarList FriedrichModel::calcCornerAngles() const +{ + scalarList cornerAngles(mesh().nEdges(), Zero); + + const areaVectorField& faceNormals = mesh().faceAreaNormals(); + + const labelUList& own = mesh().edgeOwner(); + const labelUList& nbr = mesh().edgeNeighbour(); + + // Process internal edges + forAll(nbr, edgei) + { + if (!cornerEdges_[edgei]) continue; + + const label faceO = own[edgei]; + const label faceN = nbr[edgei]; + + cornerAngles[edgei] = calcCornerAngle + ( + faceNormals[faceO], + faceNormals[faceN] + ); + } + + + // Skip the rest of the routine if the simulation is a serial run + if (!Pstream::parRun()) return cornerAngles; + + // Process processor edges + const faBoundaryMesh& patches = mesh().boundary(); + + for (const faPatch& fap : patches) + { + if (isA<processorFaPatch>(fap)) + { + const label patchi = fap.index(); + const auto& edgeFaces = fap.edgeFaces(); + const label internalEdgei = fap.start(); + + const auto& faceNormalsp = faceNormals.boundaryField()[patchi]; + + forAll(faceNormalsp, bndEdgei) + { + const label faceO = edgeFaces[bndEdgei]; + const label meshEdgei = internalEdgei + bndEdgei; + + if (!cornerEdges_[meshEdgei]) continue; + + cornerAngles[meshEdgei] = calcCornerAngle + ( + faceNormals[faceO], + faceNormalsp[bndEdgei] + ); + } + } + } + + return cornerAngles; +} + + +scalar FriedrichModel::calcCornerAngle +( + const vector& faceNormalO, + const vector& faceNormalN +) const +{ + const scalar magFaceNormal = mag(faceNormalO)*mag(faceNormalN); + + // Avoid any potential exceptions during the cosine calculations + if (magFaceNormal < SMALL) return 0; + + scalar cosAngle = (faceNormalO & faceNormalN)/magFaceNormal; + cosAngle = clamp(cosAngle, -1, 1); + + return std::acos(cosAngle); +} + + +bitSet FriedrichModel::calcSeparationFaces() const +{ + bitSet separationFaces(mesh().faces().size(), false); + + const edgeScalarField& phis = film().phi2s(); + + const labelUList& own = mesh().edgeOwner(); + const labelUList& nbr = mesh().edgeNeighbour(); + + // Process internal faces + forAll(nbr, edgei) + { + if (!cornerEdges_[edgei]) continue; + + const label faceO = own[edgei]; + const label faceN = nbr[edgei]; + + isSeparationFace + ( + separationFaces, + phis[edgei], + faceO, + faceN + ); + } + + + // Skip the rest of the routine if the simulation is a serial run + if (!Pstream::parRun()) return separationFaces; + + // Process processor faces + const faBoundaryMesh& patches = mesh().boundary(); + + for (const faPatch& fap : patches) + { + if (isA<processorFaPatch>(fap)) + { + const label patchi = fap.index(); + const auto& edgeFaces = fap.edgeFaces(); + const label internalEdgei = fap.start(); + + const auto& phisp = phis.boundaryField()[patchi]; + + forAll(phisp, bndEdgei) + { + const label faceO = edgeFaces[bndEdgei]; + const label meshEdgei(internalEdgei + bndEdgei); + + if (!cornerEdges_[meshEdgei]) continue; + + isSeparationFace + ( + separationFaces, + phisp[bndEdgei], + faceO + ); + } + } + } + + return separationFaces; +} + + +void FriedrichModel::isSeparationFace +( + bitSet& separationFaces, + const scalar phiEdge, + const label faceO, + const label faceN +) const +{ + const scalar tol = 1e-8; + + // Assuming there are no sources/sinks at the edge + if (phiEdge > tol) // From owner to neighbour + { + separationFaces[faceO] = true; + } + else if ((phiEdge < -tol) && (faceN != -1)) // From neighbour to owner + { + separationFaces[faceN] = true; + } +} + + +scalarList FriedrichModel::calcSeparationAngles +( + const bitSet& separationFaces +) const +{ + scalarList separationAngles(mesh().faces().size(), Zero); + + const labelUList& own = mesh().edgeOwner(); + const labelUList& nbr = mesh().edgeNeighbour(); + + // Process internal faces + forAll(nbr, edgei) + { + if (!cornerEdges_[edgei]) continue; + + const label faceO = own[edgei]; + const label faceN = nbr[edgei]; + + if (separationFaces[faceO]) + { + separationAngles[faceO] = cornerAngles_[edgei]; + } + + if (separationFaces[faceN]) + { + separationAngles[faceN] = cornerAngles_[edgei]; + } + } + + + // Skip the rest of the routine if the simulation is a serial run + if (!Pstream::parRun()) return separationAngles; + + // Process processor faces + const edgeScalarField& phis = film().phi2s(); + const faBoundaryMesh& patches = mesh().boundary(); + + for (const faPatch& fap : patches) + { + if (isA<processorFaPatch>(fap)) + { + const label patchi = fap.index(); + const auto& edgeFaces = fap.edgeFaces(); + const label internalEdgei = fap.start(); + + const auto& phisp = phis.boundaryField()[patchi]; + + forAll(phisp, bndEdgei) + { + const label faceO = edgeFaces[bndEdgei]; + const label meshEdgei(internalEdgei + bndEdgei); + + if (!cornerEdges_[meshEdgei]) continue; + + if (separationFaces[faceO]) + { + separationAngles[faceO] = cornerAngles_[meshEdgei]; + } + } + } + } + + return separationAngles; +} + + +tmp<scalarField> FriedrichModel::Fratio() const +{ + const areaVectorField Up(film().Up()); + const areaVectorField& Uf = film().Uf(); + const areaScalarField& h = film().h(); + const areaScalarField& rho = film().rho(); + const areaScalarField& mu = film().mu(); + const areaScalarField& sigma = film().sigma(); + + // Identify the faces where separation may occur + const bitSet separationFaces(calcSeparationFaces()); + + // Calculate the corner angles corresponding to the separation faces + const scalarList separationAngles(calcSeparationAngles(separationFaces)); + + // Initialize the force ratio + auto tFratio = tmp<scalarField>::New(mesh().faces().size(), Zero); + auto& Fratio = tFratio.ref(); + + // Process internal faces + forAll(separationFaces, i) + { + // Skip the routine if the face is not a candidate for separation + if (!separationFaces[i]) continue; + + // Calculate the corner-angle trigonometric values + const scalar sinAngle = std::sin(separationAngles[i]); + const scalar cosAngle = std::cos(separationAngles[i]); + + // Reynolds number (FLW:Eq. 16) + const scalar Re = h[i]*mag(Uf[i])*rho[i]/mu[i]; + + // Weber number (FLW:Eq. 17) + const scalar We = + h[i]*rhop_*sqr(mag(Up[i]) - mag(Uf[i]))/(2.0*sigma[i]); + + // Characteristic breakup length (FLW:Eq. 15) + const scalar Lb = + 0.0388*Foam::sqrt(h[i])*Foam::pow(Re, 0.6)*Foam::pow(We, -0.5); + + // Force ratio - denominator (FLW:Eq. 20) + const scalar den = + sigma[i]*(sinAngle + 1.0) + rho[i]*magG_*h[i]*Lb*cosAngle; + + if (mag(den) > 0) + { + // Force ratio (FLW:Eq. 20) + Fratio[i] = rho[i]*sqr(mag(Uf[i]))*h[i]*sinAngle/den; + } + } + + + // Skip the rest of the routine if the simulation is a serial run + if (!Pstream::parRun()) return tFratio; + + // Process processor faces + const faBoundaryMesh& patches = mesh().boundary(); + + for (const faPatch& fap : patches) + { + if (isA<processorFaPatch>(fap)) + { + const label patchi = fap.index(); + const label internalEdgei = fap.start(); + + const auto& hp = h.boundaryField()[patchi]; + const auto& Ufp = Uf.boundaryField()[patchi]; + const auto& Upp = Up.boundaryField()[patchi]; + const auto& rhop = rho.boundaryField()[patchi]; + const auto& sigmap = sigma.boundaryField()[patchi]; + const auto& mup = mu.boundaryField()[patchi]; + + forAll(hp, i) + { + // Skip the routine if the face is not a candidate for separation + if (!separationFaces[i]) continue; + + const label meshEdgei = internalEdgei + i; + + // Calculate the corner-angle trigonometric values + const scalar sinAngle = std::sin(cornerAngles_[meshEdgei]); + const scalar cosAngle = std::cos(cornerAngles_[meshEdgei]); + + // Reynolds number (FLW:Eq. 16) + const scalar Re = hp[i]*mag(Ufp[i])*rhop[i]/mup[i]; + + // Weber number (FLW:Eq. 17) + const scalar We = + hp[i]*rhop_*sqr(mag(Upp[i]) - mag(Ufp[i]))/(2.0*sigmap[i]); + + // Characteristic breakup length (FLW:Eq. 15) + const scalar Lb = + 0.0388*Foam::sqrt(hp[i]) + *Foam::pow(Re, 0.6)*Foam::pow(We, -0.5); + + // Force ratio - denominator (FLW:Eq. 20) + const scalar den = + sigmap[i]*(sinAngle + 1.0) + + rhop[i]*magG_*hp[i]*Lb*cosAngle; + + if (mag(den) > 0) + { + // Force ratio (FLW:Eq. 20) + Fratio[i] = rhop[i]*sqr(mag(Ufp[i]))*hp[i]*sinAngle/den; + } + } + } + } + + return tFratio; +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +FriedrichModel::FriedrichModel +( + const regionModels::areaSurfaceFilmModels::liquidFilmBase& film, + const dictionary& dict +) +: + filmSeparationModel(film, dict), + separation_ + ( + separationTypeNames.getOrDefault + ( + "separationType", + dict, + separationType::FULL + ) + ), + rhop_(dict.getScalar("rhop")), + magG_(mag(film.g().value())), + C0_(dict.getOrDefault<scalar>("C0", 0.882)), + C1_(dict.getOrDefault<scalar>("C1", -1.908)), + C2_(dict.getOrDefault<scalar>("C2", 1.264)), + cornerEdges_(calcCornerEdges()), + cornerAngles_(calcCornerAngles()) +{ + if (rhop_ < VSMALL) + { + FatalIOErrorInFunction(dict) + << "Primary-phase density, rhop: " << rhop_ << " must be non-zero." + << abort(FatalIOError); + } + + if (mag(C2_) < VSMALL) + { + FatalIOErrorInFunction(dict) + << "Empirical constant, C2 = " << C2_ << "cannot be zero." + << abort(FatalIOError); + } +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +tmp<scalarField> FriedrichModel::separatedMassRatio() const +{ + tmp<scalarField> tFratio = Fratio(); + const auto& Fratio = tFratio.cref(); + + // Initialize the mass ratio of film separation + auto tseparated = tmp<scalarField>::New(mesh().faces().size(), Zero); + auto& separated = tseparated.ref(); + + + switch (separation_) + { + case separationType::FULL: + { + forAll(Fratio, i) + { + if (Fratio[i] > 1) + { + separated[i] = 1; + } + } + break; + } + case separationType::PARTIAL: + { + forAll(Fratio, i) + { + if (Fratio[i] > 1) + { + // (ZJD:Eq. 16) + separated[i] = C0_ + C1_*Foam::exp(-Fratio[i]/C2_); + } + } + break; + } + default: + break; // This should not happen. + } + + if (debug && mesh().time().writeTime()) + { + { + areaScalarField areaFratio + ( + mesh().newIOobject("Fratio"), + mesh(), + dimensionedScalar(dimForce, Zero) + ); + areaFratio.primitiveFieldRef() = Fratio; + areaFratio.write(); + } + } + + + return tseparated; +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace filmSeparationModels +} // End namespace Foam + + +// ************************************************************************* // + diff --git a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/FriedrichModel/FriedrichModel.H b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/FriedrichModel/FriedrichModel.H new file mode 100644 index 0000000000000000000000000000000000000000..23c2375e7ca5033b11d61db9915616cac45548b2 --- /dev/null +++ b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/FriedrichModel/FriedrichModel.H @@ -0,0 +1,288 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::filmSeparationModels::FriedrichModel + +Description + Computes film-separation properties from sharp edges for full separation + (Friedrich et al., 2008) and partial separation (Zhang et al., 2018). + + The governing equations for full separation (Friedrich et al., 2008): + + \f[ + F_{ratio} = + \frac{\rho \, |\vec{u}|^2 \, h \, sin(\theta)} + {\sigma (1 + sin(\theta)) + \rho \, \mathbf{g}\, h\,L_b cos(\theta)} + \f] + + with: + + \f[ + L_b = 0.0388 h^{0.5} \mathrm{Re}^{0.6} \mathrm{We}^{-0.5} + \f] + + \f[ + \mathrm{Re} = \frac{h \, |\vec{u}| \, \rho}{\mu} + \f] + + \f[ + \mathrm{We} = \frac{h \, \rho_p (\vec{u}_p - \vec{u})^2}{2 \sigma} + \f] + + where: + + \vartable + F_{ratio} | Force ratio + h | Film thickness + \rho | Film density + \rho_p | Primary-phase (gas) density + \sigma | Film surface tension + \mu | Film dynamic viscosity + \mathbf{u} | Film velocity + \mathbf{g} | Gravitational acceleration + \theta | Sharp-corner angle + L_b | Characteristic breakup length + \endvartable + + The onset of film separation is triggered and the film is assumed + fully separated when \f$F_{ratio}>1\f$; otherwise, it remains attached. + + + The governing equations for partial separation (Zhang et al., 2018): + + \f[ + m_{ratio} = C_0 + C_1 \, exp\left(-\frac{F_{ratio}}{C_2}\right) + \f] + + where: + + \vartable + m_{ratio} | Mass fraction of separated film mass + C_0 | Empirical constant (0.882) + C_1 | Empirical constant (-1.908) + C_2 | Empirical constant (1.264) + \endvartable + + With the above model modification, the film separation begins when + \f$F_{ratio}>1\f$; however, only the portion with \f$m_{ratio}\f$ + separates while the rest stays attached. + + + Reference: + \verbatim + Governing equations for the full film-separation model (tag:FLW): + Friedrich, M. A., Lan, H., Wegener, J. L., + Drallmeier, J. A., & Armaly, B. F. (2008). + A separation criterion with experimental + validation for shear-driven films in separated flows. + J. Fluids Eng. May 2008, 130(5): 051301. + DOI:10.1115/1.2907405 + + Governing equations for the partial film-separation model (tag:ZJD): + Zhang, Y., Jia, M., Duan, H., Wang, P., + Wang, J., Liu, H., & Xie, M. (2018). + Numerical and experimental study of spray impingement and liquid + film separation during the spray/wall interaction at expanding corners. + International Journal of Multiphase Flow, 107, 67-81. + DOI:10.1016/j.ijmultiphaseflow.2018.05.016 + \endverbatim + +Usage + Minimal example in boundary-condition files: + \verbatim + filmSeparationCoeffs + { + // Mandatory entries + model Friedrich; + rhop <scalar>; + + // Optional entries + separationType <word>; + } + \endverbatim + + where the entries mean: + \table + Property | Description | Type | Reqd | Deflt + model | Model name: Friedrich | word | yes | - + rhop | Primary-phase density | scalar | yes | - + separationType | Film separation type | word | no | full + \endtable + + Options for the \c separationType entry: + \verbatim + full | Full film separation (Friedrich et al., 2008) + partial | Partial film separation (Zhang et al., 2018) + \endverbatim + +SourceFiles + FriedrichModel.C + +\*---------------------------------------------------------------------------*/ + +#ifndef Foam_filmSeparationModels_FriedrichModel_H +#define Foam_filmSeparationModels_FriedrichModel_H + +#include "filmSeparationModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ +namespace filmSeparationModels +{ + +/*---------------------------------------------------------------------------*\ + Class FriedrichModel Declaration +\*---------------------------------------------------------------------------*/ + +class FriedrichModel +: + public filmSeparationModel +{ + // Private Enumerations + + //- Options for the film separation type + enum separationType : char + { + FULL = 0, //!< "Full film separation" + PARTIAL //!< "Partial film separation" + }; + + //- Names for separationType + static const Enum<separationType> separationTypeNames; + + + // Private Data + + //- Film separation type + enum separationType separation_; + + //- Approximate uniform mass density of primary phase + scalar rhop_; + + //- Magnitude of the gravitational acceleration + scalar magG_; + + //- Empirical constant for the partial separation model + scalar C0_; + + //- Empirical constant for the partial separation model + scalar C1_; + + //- Empirical constant for the partial separation model + scalar C2_; + + //- List of flags identifying sharp-corner edges where separation + //- may occur + bitSet cornerEdges_; + + //- Corner angles of sharp-corner edges where separation may occur + scalarList cornerAngles_; + + + // Private Member Functions + + //- Return Boolean list of identified sharp-corner edges + bitSet calcCornerEdges() const; + + //- Return true if the given edge is identified as sharp + bool isCornerEdgeSharp + ( + const vector& faceCentreO, + const vector& faceCentreN, + const vector& faceNormalO, + const vector& faceNormalN + ) const; + + //- Return the list of sharp-corner angles for each edge + scalarList calcCornerAngles() const; + + //- Return the sharp-corner angle for a given edge + scalar calcCornerAngle + ( + const vector& faceNormalO, + const vector& faceNormalN + ) const; + + //- Return Boolean list of identified separation faces + bitSet calcSeparationFaces() const; + + //- Return true if the given face is identified as a separation face + void isSeparationFace + ( + bitSet& separationFaces, + const scalar phiEdge, + const label faceO, + const label faceN = -1 + ) const; + + //- Return the list of sharp-corner angles for each face + scalarList calcSeparationAngles(const bitSet& separationFaces) const; + + //- Return the film-separation force ratio per face + tmp<scalarField> Fratio() const; + + +public: + + //- Runtime type information + TypeName("Friedrich"); + + + // Constructors + + //- Construct from the base film model and dictionary + FriedrichModel + ( + const regionModels::areaSurfaceFilmModels::liquidFilmBase& film, + const dictionary& dict + ); + + + // Destructor + virtual ~FriedrichModel() = default; + + + // Member Functions + + // Evaluation + + //- Calculate the mass ratio of film separation + virtual tmp<scalarField> separatedMassRatio() const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace filmSeparationModels +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/curvatureSeparation/curvatureSeparation.C b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/OwenRyleyModel/OwenRyleyModel.C similarity index 50% rename from src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/curvatureSeparation/curvatureSeparation.C rename to src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/OwenRyleyModel/OwenRyleyModel.C index dd3f931c23a8a0ead04fa5215e434c305cff7dbf..3db260f1b8293f5b748257430186d602e434b25c 100644 --- a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/curvatureSeparation/curvatureSeparation.C +++ b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/OwenRyleyModel/OwenRyleyModel.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation - Copyright (C) 2020-2024 OpenCFD Ltd. + Copyright (C) 2021-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -26,63 +26,50 @@ License \*---------------------------------------------------------------------------*/ -#include "curvatureSeparation.H" +#include "OwenRyleyModel.H" +#include "processorFaPatch.H" #include "addToRunTimeSelectionTable.H" -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // namespace Foam { -namespace regionModels -{ -namespace areaSurfaceFilmModels +namespace filmSeparationModels { + defineTypeNameAndDebug(OwenRyleyModel, 0); + addToRunTimeSelectionTable(filmSeparationModel, OwenRyleyModel, dictionary); -// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // -defineTypeNameAndDebug(curvatureSeparation, 0); -addToRunTimeSelectionTable -( - injectionModel, - curvatureSeparation, - dictionary -); - -// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * // +// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // -tmp<areaScalarField> curvatureSeparation::calcInvR1 +tmp<areaScalarField> OwenRyleyModel::calcInvR1 ( - const areaVectorField& U, - const scalarField& calcCosAngle + const areaVectorField& U ) const { const dimensionedScalar smallU(dimVelocity, ROOTVSMALL); const areaVectorField UHat(U/(mag(U) + smallU)); + auto tinvR1 = areaScalarField::New ( "invR1", IOobjectOption::NO_REGISTER, (UHat & (UHat & -gradNHat_)) ); - scalarField& invR1 = tinvR1.ref().primitiveFieldRef(); - // apply defined patch radii - const scalar rMin = 1e-6; - const scalar definedInvR1 = 1.0/max(rMin, definedPatchRadii_); - + // Apply defined patch radii if (definedPatchRadii_ > 0) { - invR1 = definedInvR1; + invR1 = 1.0/max(1e-6, definedPatchRadii_); } - // filter out large radii - const scalar rMax = 1e6; - forAll(invR1, i) + // Filter out large radii + for (auto& x : invR1) { - if ((mag(invR1[i]) < 1/rMax)) + if (mag(x) < 1e-6) { - invR1[i] = -1.0; + x = -1; } } @@ -90,15 +77,18 @@ tmp<areaScalarField> curvatureSeparation::calcInvR1 } -tmp<scalarField> curvatureSeparation::calcCosAngle +tmp<scalarField> OwenRyleyModel::calcCosAngle ( - const edgeScalarField& phi + const edgeScalarField& phi, + const scalarField& invR1 ) const { const areaVectorField& U = film().Uf(); const dimensionedScalar smallU(dimVelocity, ROOTVSMALL); const areaVectorField UHat(U/(mag(U) + smallU)); + const vector gHat(normalised(film().g().value())); + const faMesh& mesh = film().regionMesh(); const labelUList& own = mesh.edgeOwner(); const labelUList& nbr = mesh.edgeNeighbour(); @@ -106,40 +96,70 @@ tmp<scalarField> curvatureSeparation::calcCosAngle scalarField phiMax(mesh.nFaces(), -GREAT); scalarField cosAngle(UHat.size(), Zero); - const scalarField invR1(calcInvR1(U, cosAngle)); - + // Internal edges forAll(nbr, edgei) { const label cellO = own[edgei]; const label cellN = nbr[edgei]; + const scalar phiEdge = phi[edgei]; - if (phi[edgei] > phiMax[cellO]) + if (phiEdge > phiMax[cellO]) { - phiMax[cellO] = phi[edgei]; - cosAngle[cellO] = -gHat_ & UHat[cellN]; + phiMax[cellO] = phiEdge; + cosAngle[cellO] = -gHat & UHat[cellN]; } - if (-phi[edgei] > phiMax[cellN]) + if (-phiEdge > phiMax[cellN]) { - phiMax[cellN] = -phi[edgei]; - cosAngle[cellN] = -gHat_ & UHat[cellO]; + phiMax[cellN] = -phiEdge; + cosAngle[cellN] = -gHat & UHat[cellO]; + } + } + + // Processor edges + for (const auto& phip : phi.boundaryField()) + { + if (isA<processorFaPatch>(phip.patch())) + { + const auto& edgeFaces = phip.patch().edgeFaces(); + const auto& UHatp = UHat.boundaryField()[phip.patch().index()]; + forAll(phip, edgei) + { + const label cellO = edgeFaces[edgei]; + if (phip[edgei] > phiMax[cellO]) + { + phiMax[cellO] = phip[edgei]; + cosAngle[cellO] = -gHat & UHatp[edgei]; + } + } } } cosAngle *= pos(invR1); - // checks + if (debug && mesh.time().writeTime()) { { - areaScalarField volCosAngle + areaScalarField areaCosAngle ( mesh.newIOobject("cosAngle"), mesh, dimensionedScalar(dimless, Zero) ); - volCosAngle.primitiveFieldRef() = cosAngle; - volCosAngle.correctBoundaryConditions(); - volCosAngle.write(); + areaCosAngle.primitiveFieldRef() = cosAngle; + areaCosAngle.correctBoundaryConditions(); + areaCosAngle.write(); + } + + { + areaScalarField areaInvR1 + ( + mesh.newIOobject("InvR1"), + mesh, + dimensionedScalar(inv(dimLength), Zero) + ); + areaInvR1.primitiveFieldRef() = invR1; + areaInvR1.write(); } } @@ -147,157 +167,119 @@ tmp<scalarField> curvatureSeparation::calcCosAngle } -// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // - -curvatureSeparation::curvatureSeparation -( - liquidFilmBase& film, - const dictionary& dict -) -: - injectionModel(type(), film, dict), - gradNHat_(fac::grad(film.regionMesh().faceAreaNormals())), - deltaByR1Min_(coeffDict_.getOrDefault<scalar>("deltaByR1Min", 0)), - definedPatchRadii_ - ( - coeffDict_.getOrDefault<scalar>("definedPatchRadii", 0) - ), - magG_(mag(film.g().value())), - gHat_(Zero), - fThreshold_ - ( - coeffDict_.getOrDefault<scalar>("fThreshold", 1e-8) - ), - minInvR1_ - ( - coeffDict_.getOrDefault<scalar>("minInvR1", 5) - ) -{ - if (magG_ < ROOTVSMALL) - { - FatalErrorInFunction - << "Acceleration due to gravity must be non-zero" - << exit(FatalError); - } - - gHat_ = film.g().value()/magG_; -} - - -// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // - -void curvatureSeparation::correct -( - scalarField& availableMass, - scalarField& massToInject, - scalarField& diameterToInject -) +tmp<scalarField> OwenRyleyModel::netForce() const { const faMesh& mesh = film().regionMesh(); - const areaScalarField& delta = film().h(); + const areaScalarField& h = film().h(); const areaVectorField& U = film().Uf(); const edgeScalarField& phi = film().phi2s(); const areaScalarField& rho = film().rho(); - const scalarField magSqrU(magSqr(film().Uf())); const areaScalarField& sigma = film().sigma(); - const scalarField cosAngle(calcCosAngle(phi)); - const scalarField invR1(calcInvR1(U, cosAngle)); + const scalarField magSqrU(magSqr(U)); + const scalarField invR1(calcInvR1(U)); + const scalarField cosAngle(calcCosAngle(phi, invR1)); + const scalar magG = mag(film().g().value()); - // calculate force balance - scalarField Fnet(mesh.nFaces(), Zero); - scalarField separated(mesh.nFaces(), Zero); + // Initialize the net-force magnitude + auto tFnet = tmp<scalarField>::New(mesh.nFaces(), Zero); + auto& Fnet = tFnet.ref(); - forAll(invR1, i) + forAll(Fnet, i) { - if ((invR1[i] > minInvR1_) && (delta[i]*invR1[i] > deltaByR1Min_)) + if ((invR1[i] > minInvR1()) && (h[i]*invR1[i] > minHbyR1())) { const scalar R1 = 1.0/(invR1[i] + ROOTVSMALL); - const scalar R2 = R1 + delta[i]; + const scalar R2 = R1 + h[i]; - // inertial force - const scalar Fi = -delta[i]*rho[i]*magSqrU[i]*72.0/60.0*invR1[i]; + // Inertial force (OR:Eq. 11; '2' is an exponent in the Eq.) + const scalar Fi = -4.0/3.0*h[i]*rho[i]*magSqrU[i]*invR1[i]; - // body force + // Body force (OR:Eq. 11) const scalar Fb = - - 0.5*rho[i]*magG_*invR1[i]*(sqr(R1) - sqr(R2))*cosAngle[i]; + -0.5*rho[i]*magG*invR1[i]*(sqr(R1) - sqr(R2))*cosAngle[i]; - // surface force + // Surface force (OR:Eq. 11) const scalar Fs = sigma[i]/R2; Fnet[i] = Fi + Fb + Fs; - - if (Fnet[i] + fThreshold_ < 0) - { - separated[i] = 1.0; - } } } - // inject all available mass - massToInject = separated*availableMass; - diameterToInject = separated*delta; - availableMass -= separated*availableMass; - - addToInjectedMass(sum(massToInject)); - if (debug && mesh.time().writeTime()) { { - areaScalarField volFnet + areaScalarField areaFnet ( mesh.newIOobject("Fnet"), mesh, dimensionedScalar(dimForce, Zero) ); - volFnet.primitiveFieldRef() = Fnet; - volFnet.write(); + areaFnet.primitiveFieldRef() = Fnet; + areaFnet.write(); } + } - { - areaScalarField areaSeparated - ( - mesh.newIOobject("separated"), - mesh, - dimensionedScalar(dimMass, Zero) - ); - areaSeparated.primitiveFieldRef() = separated; - areaSeparated.write(); - } + return tFnet; +} - { - areaScalarField areaMassToInject - ( - mesh.newIOobject("massToInject"), - mesh, - dimensionedScalar(dimMass, Zero) - ); - areaMassToInject.primitiveFieldRef() = massToInject; - areaMassToInject.write(); - } +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +OwenRyleyModel::OwenRyleyModel +( + const regionModels::areaSurfaceFilmModels::liquidFilmBase& film, + const dictionary& dict +) +: + filmSeparationModel(film, dict), + fThreshold_(dict.getOrDefault<scalar>("fThreshold", 1e-8)), + definedPatchRadii_(dict.getOrDefault<scalar>("definedPatchRadii", 0)), + minHbyR1_(dict.getOrDefault<scalar>("deltaByR1Min", 0)), + minInvR1_(dict.getOrDefault<scalar>("minInvR1", 5)), + gradNHat_(fac::grad(film.regionMesh().faceAreaNormals())) +{ + if (mag(film.g().value()) < ROOTVSMALL) + { + FatalErrorInFunction + << "Gravitational acceleration must be non-zero." + << exit(FatalError); + } +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +tmp<scalarField> OwenRyleyModel::separatedMassRatio() const +{ + const faMesh& mesh = film().regionMesh(); + + tmp<scalarField> tFnet = netForce(); + const auto& Fnet = tFnet.cref(); + + // Initialize the mass ratio of film separation + auto tseparated = tmp<scalarField>::New(mesh.nFaces(), Zero); + auto& separated = tseparated.ref(); + + forAll(Fnet, i) + { + if ((Fnet[i] + fThreshold_) < 0) { - areaScalarField areaInvR1 - ( - mesh.newIOobject("InvR1"), - mesh, - dimensionedScalar(inv(dimLength), Zero) - ); - areaInvR1.primitiveFieldRef() = invR1; - areaInvR1.write(); + separated[i] = 1; } } - injectionModel::correct(); + return tseparated; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -} // End namespace areaSurfaceFilmModels -} // End namespace regionModels +} // End namespace filmSeparationModels } // End namespace Foam + // ************************************************************************* // + diff --git a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/OwenRyleyModel/OwenRyleyModel.H b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/OwenRyleyModel/OwenRyleyModel.H new file mode 100644 index 0000000000000000000000000000000000000000..0dcedb5d27bacede97dbf42ee3eb507b4aaae239 --- /dev/null +++ b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/OwenRyleyModel/OwenRyleyModel.H @@ -0,0 +1,221 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2011-2017 OpenFOAM Foundation + Copyright (C) 2021-2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Class + Foam::filmSeparationModels::OwenRyleyModel + +Description + Computes film-separation properties from round edges for full separation + (Owen & Ryley, 1983). The model assesses the film curvature based on the + mesh geometry and flow field, and then calculates a force balance of the + following form: + + \f[ + F_{net} = F_{inertial} + F_{body} + F_{surface} + \f] + + with: + + \f[ + F_{inertial} = -\frac{4}{3} \frac{h \, \rho \, |\mathbf{u}|^2}{R_1} + \f] + + \f[ + F_{body} = + -\frac{\rho |\mathbf{g}| (R_1^2 - R_2^2) cos(\theta)}{2 \, R_1} + \f] + + \f[ + F_{surface} = \frac{\sigma}{R_2} + \f] + + where: + + \vartable + F_{net} | Magnitude of net force on the film + F_{inertial} | Magnitude of inertial forces on the film + F_{body} | Magnitude of body forces on the film + F_{surface} | Magnitude of surface forces on the film + h | Film thickness + \rho | Film density + \sigma | Film surface tension + \mathbf{u} | Film velocity + \mathbf{g} | Gravitational accelaration + \theta | Approximate angle between gravity vector and outflow direction + R_1 | Radius of curvature + R_2 | Sum of the radius of curvature and film thickness + \endvartable + + The film is considered separated when \f$F_{net}<0\f$; otherwise, it + remains attached. + + Reference: + \verbatim + Governing equations (tag:OR): + Owen, I., & Ryley, D. J. (1983). + The flow of thin liquid films around corners. + International journal of multiphase flow, 11(1), 51-62. + DOI:10.1016/0301-9322(85)90005-9 + \endverbatim + +Usage + Minimal example in boundary-condition files: + \verbatim + filmSeparationCoeffs + { + // Mandatory entries + model OwenRyley; + + // Optional entries + fThreshold <scalar>; + definedPatchRadii <scalar>; + deltaByR1Min <scalar>; + minInvR1 <scalar>; + } + \endverbatim + + where the entries mean: + \table + Property | Description | Type | Reqd | Deflt + model | Model name: OwenRyley | word | yes | - + fThreshold | Threshold force for separation | scalar | no | 1e-8 + definedPatchRadii | Patch radius | scalar | no | 0 + deltaByR1Min | Minimum gravity driven film thickness | scalar | no | 0 + minInvR1 | Minimum inv R1 for separation | scalar | no | 5 + \endtable + +Note + - The assumptions underlying the derivation of the model indicate that + the model is better suited for round corners than for sharp corners. + +SourceFiles + OwenRyleyModel.C + +\*---------------------------------------------------------------------------*/ + +#ifndef Foam_filmSeparationModels_OwenRyleyModel_H +#define Foam_filmSeparationModels_OwenRyleyModel_H + +#include "filmSeparationModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ +namespace filmSeparationModels +{ + +/*---------------------------------------------------------------------------*\ + Class OwenRyleyModel Declaration +\*---------------------------------------------------------------------------*/ + +class OwenRyleyModel +: + public filmSeparationModel +{ + // Private Data + + //- Threshold force for separation + scalar fThreshold_; + + //- Patch radius + scalar definedPatchRadii_; + + //- Minimum gravity driven film thickness (non-dimensionalised h/R1) + scalar minHbyR1_; + + //- Minimum inv R1 of film velocity for film separation + scalar minInvR1_; + + //- Gradient of surface normals + areaTensorField gradNHat_; + + + // Private Member Functions + + //- Calculate inverse of (local) radius of curvature of film velocity + tmp<areaScalarField> calcInvR1(const areaVectorField& U) const; + + //- Calculate the cosine of the angle between gravity vector and + //- cell-out flow direction + tmp<scalarField> calcCosAngle + ( + const edgeScalarField& phi, + const scalarField& invR1 + ) const; + + //- Calculate the magnitude of net force on the film + tmp<scalarField> netForce() const; + + +public: + + //- Runtime type information + TypeName("OwenRyley"); + + + // Constructors + + //- Construct from the base film model and dictionary + OwenRyleyModel + ( + const regionModels::areaSurfaceFilmModels::liquidFilmBase& film, + const dictionary& dict + ); + + + // Destructor + virtual ~OwenRyleyModel() = default; + + + // Member Functions + + // Access + + // Return access to minimum dimensionless gravity driven film thickness + scalar minHbyR1() const noexcept { return minHbyR1_; } + + // Return access to minimum inv R1 for film separation + scalar minInvR1() const noexcept { return minInvR1_; } + + + // Evaluation + + //- Calculate the mass ratio of film separation + virtual tmp<scalarField> separatedMassRatio() const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace filmSeparationModels +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/filmSeparationModel/filmSeparationModel.C b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/filmSeparationModel/filmSeparationModel.C new file mode 100644 index 0000000000000000000000000000000000000000..ac27612dc8b47681947d98e224a524ef8144c0a6 --- /dev/null +++ b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/filmSeparationModel/filmSeparationModel.C @@ -0,0 +1,51 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "filmSeparationModel.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ + defineTypeNameAndDebug(filmSeparationModel, 0); + defineRunTimeSelectionTable(filmSeparationModel, dictionary); +} + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +Foam::filmSeparationModel::filmSeparationModel +( + const regionModels::areaSurfaceFilmModels::liquidFilmBase& film, + const dictionary& dict +) +: + film_(film) +{} + + +// ************************************************************************* // diff --git a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/filmSeparationModel/filmSeparationModel.H b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/filmSeparationModel/filmSeparationModel.H new file mode 100644 index 0000000000000000000000000000000000000000..18d402ff64db3e459296bae565697f8473a995fc --- /dev/null +++ b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/filmSeparationModel/filmSeparationModel.H @@ -0,0 +1,149 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +Namespace + Foam::filmSeparationModels + +Description + A namespace for various \c filmSeparation model implementations. + +Class + Foam::filmSeparationModel + +Description + A base class for \c filmSeparation models. + +SourceFiles + filmSeparationModel.C + filmSeparationModelNew.C + +\*---------------------------------------------------------------------------*/ + +#ifndef Foam_filmSeparationModel_H +#define Foam_filmSeparationModel_H + +#include "liquidFilmBase.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class filmSeparationModel Declaration +\*---------------------------------------------------------------------------*/ + +class filmSeparationModel +{ + // Private Data + + //- Const reference to the film properties + const regionModels::areaSurfaceFilmModels::liquidFilmBase& film_; + + +public: + + //- Runtime type information + TypeName("filmSeparationModel"); + + + // Declare runtime constructor selection table + + declareRunTimeSelectionTable + ( + autoPtr, + filmSeparationModel, + dictionary, + ( + const regionModels::areaSurfaceFilmModels::liquidFilmBase& film, + const dictionary& dict + ), + (film, dict) + ); + + + // Selectors + + //- Return a reference to the selected filmSeparation model + static autoPtr<filmSeparationModel> New + ( + const regionModels::areaSurfaceFilmModels::liquidFilmBase& film, + const dictionary& dict + ); + + + // Generated Methods + + //- No copy construct + filmSeparationModel(const filmSeparationModel&) = delete; + + //- No copy assignment + void operator=(const filmSeparationModel&) = delete; + + + // Constructors + + //- Construct from the base film model and dictionary + filmSeparationModel + ( + const regionModels::areaSurfaceFilmModels::liquidFilmBase& film, + const dictionary& dict + ); + + + //- Destructor + virtual ~filmSeparationModel() = default; + + + // Member Functions + + // Access + + //- Return const access to the film properties + const regionModels::areaSurfaceFilmModels::liquidFilmBase& film() const + { + return film_; + } + + //- Return const access to the finite-area mesh + const faMesh& mesh() const noexcept { return film_.regionMesh(); } + + + // Evaluation + + //- Calculate the mass ratio of film separation + virtual tmp<scalarField> separatedMassRatio() const = 0; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/filmSeparationModel/filmSeparationModelNew.C b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/filmSeparationModel/filmSeparationModelNew.C new file mode 100644 index 0000000000000000000000000000000000000000..2dcff7fb2224073705d122286ccbea29a99096be --- /dev/null +++ b/src/regionFaModels/liquidFilm/subModels/kinematic/injectionModel/filmSeparation/filmSeparationModels/filmSeparationModel/filmSeparationModelNew.C @@ -0,0 +1,60 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | www.openfoam.com + \\/ M anipulation | +------------------------------------------------------------------------------- + Copyright (C) 2024 OpenCFD Ltd. +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "filmSeparationModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +Foam::autoPtr<Foam::filmSeparationModel> Foam::filmSeparationModel::New +( + const regionModels::areaSurfaceFilmModels::liquidFilmBase& film, + const dictionary& dict +) +{ + const word modelType(dict.getWord("model")); + + Info<< " Selecting film-separation model: " + << modelType << nl << endl; + + auto* ctorPtr = dictionaryConstructorTable(modelType); + + if (!ctorPtr) + { + FatalIOErrorInLookup + ( + dict, + "filmSeparationModel", + modelType, + *dictionaryConstructorTablePtr_ + ) << exit(FatalIOError); + } + + return autoPtr<filmSeparationModel>(ctorPtr(film, dict)); +} + + +// ************************************************************************* // diff --git a/src/regionModels/thermalBaffleModels/derivedFvPatchFields/thermalBaffle/thermalBaffleFvPatchScalarField.C b/src/regionModels/thermalBaffleModels/derivedFvPatchFields/thermalBaffle/thermalBaffleFvPatchScalarField.C index be475dc138122bd67ac69aabd237289fefde4aac..408f3ddadc43f2bb5d1cb2d12976cd302e866a37 100644 --- a/src/regionModels/thermalBaffleModels/derivedFvPatchFields/thermalBaffle/thermalBaffleFvPatchScalarField.C +++ b/src/regionModels/thermalBaffleModels/derivedFvPatchFields/thermalBaffle/thermalBaffleFvPatchScalarField.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2020-2022 OpenCFD Ltd + Copyright (C) 2020-2024 OpenCFD Ltd ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -230,6 +230,70 @@ void thermalBaffleFvPatchScalarField::createPatchMesh() regionPatches ) ); + + // Adjust top patch for the thickness - it needs to subtract the offset + // distance when trying to do the mapping. + const auto& extrPbm = extrudeMeshPtr_().boundaryMesh(); + const auto* topPtr = isA<const mappedPatchBase>(extrPbm[topPatchID]); + + if (topPtr) + { + const auto& top = extrPbm[topPatchID]; + const auto& bottom = extrPbm[bottomPatchID]; + + if (top.size() != bottom.size()) + { + WarningInFunction<< "Top patch " << top.name() + << " size " << top.size() + << " has different size from bottom patch " << bottom.name() + << " size " << bottom.size() << endl + << " Disabling mapping offset calculation." << endl; + } + else + { + // Adjust top patch offsets + const vectorField offsets(bottom.faceCentres()-top.faceCentres()); + const_cast<mappedPatchBase&>(*topPtr).setOffset(offsets); + + DebugPoutInFunction + << "Adjusting patch " << top.name() + << " offsets to " << flatOutput(offsets) + << endl; + + if (internal_) + { + // Find other side of the baffle using its group + const auto& thisPbm = thisMesh.boundaryMesh(); + const auto& groupPatchLookup = thisPbm.groupPatchIDs(); + const auto& group = topPtr->coupleGroup(); + const labelList patchIDs(groupPatchLookup[group]); + + if (patchIDs.size() != 1) + { + FatalErrorInFunction<< "Group " << group + << " on region " << thisMesh.name() + << " contains more than one patch : " + << patchIDs + << exit(FatalError); + } + + const auto* thisPp = + isA<const mappedPatchBase>(thisPbm[patchIDs[0]]); + if (thisPp) + { + const_cast<mappedPatchBase&>(*thisPp).setOffset(-offsets); + + DebugPoutInFunction + << "Adjusting patch " << thisPbm[patchIDs[0]].name() + << " offsets to " << thisPp->offsets() + << endl; + } + } + + // Enforce re-writing so baffleType::New reads updated mesh + extrudeMeshPtr_->write(); + } + } } diff --git a/src/rigidBodyDynamics/rigidBodySolvers/symplectic/symplectic.C b/src/rigidBodyDynamics/rigidBodySolvers/symplectic/symplectic.C index 2b2a6c0de4fa20f7c2bb373708c21b64852f1940..5dfa7acb49a691492dbb57a637aca66cf79e6947 100644 --- a/src/rigidBodyDynamics/rigidBodySolvers/symplectic/symplectic.C +++ b/src/rigidBodyDynamics/rigidBodySolvers/symplectic/symplectic.C @@ -75,6 +75,7 @@ void Foam::RBD::rigidBodySolvers::symplectic::solve qDot() = qDot0() + 0.5*deltaT0()*qDdot(); q() = q0() + deltaT()*qDot(); + // Update joints from new locations (q, q0) correctQuaternionJoints(); // Update the body-state prior to the evaluation of the restraints diff --git a/src/sampling/probes/probesDict b/src/sampling/probes/probesDict index 1c6a9d36bf1adb9eb0db736491f093ee1d9b81fb..0c016a45b9b494346e3a62f30e7525913361e55a 100644 --- a/src/sampling/probes/probesDict +++ b/src/sampling/probes/probesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/src/surfMesh/writers/nastran/nastranSurfaceWriter.C b/src/surfMesh/writers/nastran/nastranSurfaceWriter.C index b818af6f04de3ce82517a0263faf7b11df26107f..dc4d7a3363bd4fe901257410aa80ea291309b286 100644 --- a/src/surfMesh/writers/nastran/nastranSurfaceWriter.C +++ b/src/surfMesh/writers/nastran/nastranSurfaceWriter.C @@ -335,17 +335,30 @@ Foam::surfaceWriters::nastranWriter::nastranWriter separator_ = ","; } + // Explicit PLOAD2, PLOAD4 field specification + options.readIfPresent("PLOAD2", pload2_); + options.readIfPresent("PLOAD4", pload4_); + + // Compatibility: + // Optional pairs of (field name => load format) + // Could make conditional on (pload2_.empty() && pload4_.empty()) + List<Pair<word>> fieldPairs; - options.readEntry("fields", fieldPairs); + options.readIfPresent("fields", fieldPairs); for (const Pair<word>& item : fieldPairs) { - // (field name => load format) - fieldMap_.insert - ( - item.first(), - fileFormats::NASCore::loadFormatNames[item.second()] - ); + const loadFormat format = + fileFormats::NASCore::loadFormatNames[item.second()]; + + if (format == loadFormat::PLOAD2) + { + pload2_.push_back(item.first()); + } + else if (format == loadFormat::PLOAD4) + { + pload4_.push_back(item.first()); + } } } @@ -406,12 +419,12 @@ Foam::fileName Foam::surfaceWriters::nastranWriter::write() if (UPstream::master() || !parallel_) { - if (!isDir(outputFile.path())) + if (!Foam::isDir(outputFile.path())) { - mkDir(outputFile.path()); + Foam::mkDir(outputFile.path()); } - OFstream os(outputFile); + OFstream os(IOstreamOption::ATOMIC, outputFile); fileFormats::NASCore::setPrecision(os, writeFormat_); os << "TITLE=OpenFOAM " << outputPath_.name() << " geometry" << nl diff --git a/src/surfMesh/writers/nastran/nastranSurfaceWriter.H b/src/surfMesh/writers/nastran/nastranSurfaceWriter.H index 8f8aeba8c139ef933e53db4caf0d31796c22465c..be653a5dac6dff387b3f0a8c70a3bc1759eb3a4e 100644 --- a/src/surfMesh/writers/nastran/nastranSurfaceWriter.H +++ b/src/surfMesh/writers/nastran/nastranSurfaceWriter.H @@ -39,7 +39,9 @@ Description fieldLevel | Subtract field level before scaling | no | empty dict fieldScale | Output field scaling | no | empty dict commonGeometry | use separate geometry files | no | false - fields | Field pairs for PLOAD2/PLOAD4 | yes | + PLOAD2 | Field selection (words/regex) for PLOAD2 | no | + PLOAD4 | Field selection (words/regex) for PLOAD4 | no | + fields | Compat: Field pairs for PLOAD2/PLOAD4 | no | \endtable For example, @@ -56,7 +58,11 @@ Description "p.*" 0.01; // [Pa] -> [mbar] } - // OpenFOAM field name to NASTRAN load types + // Specific NASTRAN load types + PLOAD2 ( pMean ); + PLOAD4 ( "p.*" ); + + // old style specification fields ( (pMean PLOAD2) @@ -66,6 +72,12 @@ Description } \endverbatim + Unless otherwise specified, all fields will be treated as PLOAD2 + output. Can optionally specify PLOAD4 output using a combination + of \c PLOAD4 (accept) and \c PLOAD2 (deny) entries. The older \c fields + specification is also accepted and will be transcribed to + corresponding PLOAD4, PLOAD2 entries. + \section Output file locations The \c rootdir normally corresponds to something like @@ -105,7 +117,7 @@ SourceFiles #include "surfaceWriter.H" #include "NASCore.H" -#include "HashTable.H" +#include "wordRes.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -138,15 +150,18 @@ private: //- Field format (width and separator) fieldFormat writeFormat_; - //- Mapping from field name to data format enumeration - HashTable<loadFormat> fieldMap_; - //- Use common geometry file bool commonGeometry_; //- Separator (used for free format) word separator_; + //- Explicit selection for PLOAD2 output (deselects for PLOAD4) + wordRes pload2_; + + //- Explicit selection for PLOAD4 output + wordRes pload4_; + // Private Member Functions diff --git a/src/surfMesh/writers/nastran/nastranSurfaceWriterImpl.C b/src/surfMesh/writers/nastran/nastranSurfaceWriterImpl.C index 543b7c97fe48ed1fd091ab2b6c20daa0f162f637..f534d915c7f14433477d7193c43628b4a45b26c4 100644 --- a/src/surfMesh/writers/nastran/nastranSurfaceWriterImpl.C +++ b/src/surfMesh/writers/nastran/nastranSurfaceWriterImpl.C @@ -103,13 +103,13 @@ Foam::Ostream& Foam::surfaceWriters::nastranWriter::writeFaceValue { case loadFormat::PLOAD2 : { - if (pTraits<Type>::nComponents == 1) + if (pTraits<Type>::nComponents > 1) { - writeValue(os, value); + writeValue(os, Foam::mag(value)); } else { - writeValue(os, mag(value)); + writeValue(os, value); } os << separator_; @@ -121,6 +121,9 @@ Foam::Ostream& Foam::surfaceWriters::nastranWriter::writeFaceValue { writeValue(os, elemId); + // NOTE: these should actually be vertex values, + // but misused here to provide vector quantities! + for (direction d = 0; d < pTraits<Type>::nComponents; ++d) { os << separator_; @@ -156,43 +159,23 @@ Foam::fileName Foam::surfaceWriters::nastranWriter::writeTemplate checkOpen(); - const loadFormat format - ( - fieldMap_.lookup - ( - fieldName, - // Default format - ( - pTraits<Type>::nComponents == 1 - ? loadFormat::PLOAD2 - : loadFormat::PLOAD4 - ) - ) - ); + // Default is PLOAD2 + loadFormat format = loadFormat::PLOAD2; if ( !std::is_integral<Type>::value // Handle 'Ids' etc silently - && !fieldMap_.empty() - && !fieldMap_.found(fieldName) + && !pload4_.empty() ) { - WarningInFunction - << "No mapping found between field " << fieldName - << " and corresponding Nastran field. Available types:" - << fieldMap_ << nl; - } + const wordRes::filter matcher(pload4_, pload2_); - // Emit any common warnings - if (format == loadFormat::PLOAD2 && pTraits<Type>::nComponents != 1) - { - WarningInFunction - << fileFormats::NASCore::loadFormatNames[format] - << " cannot be used for higher rank values" - << " - reverting to mag()" << endl; + if (matcher(fieldName)) + { + format = loadFormat::PLOAD4; + } } - // Common geometry // Field: rootdir/<TIME>/<field>_surfaceName.bdf @@ -239,9 +222,9 @@ Foam::fileName Foam::surfaceWriters::nastranWriter::writeTemplate { const auto& values = tfield(); - if (!isDir(outputFile.path())) + if (!Foam::isDir(outputFile.path())) { - mkDir(outputFile.path()); + Foam::mkDir(outputFile.path()); } const scalar timeValue(0); @@ -251,7 +234,7 @@ Foam::fileName Foam::surfaceWriters::nastranWriter::writeTemplate DynamicList<face> decompFaces; - OFstream os(outputFile); + OFstream os(IOstreamOption::ATOMIC, outputFile); fileFormats::NASCore::setPrecision(os, writeFormat_); os << "TITLE=OpenFOAM " << outputFile.name() diff --git a/src/thermoTools/derivedFvPatchFields/outletMappedUniformInletHeatAddition/outletMappedUniformInletHeatAdditionFvPatchField.C b/src/thermoTools/derivedFvPatchFields/outletMappedUniformInletHeatAddition/outletMappedUniformInletHeatAdditionFvPatchField.C index 900c93ad250c87330cc5d930ea801034ad2f0513..05d0f08b1193769522eeea63e26fe803e8787015 100644 --- a/src/thermoTools/derivedFvPatchFields/outletMappedUniformInletHeatAddition/outletMappedUniformInletHeatAdditionFvPatchField.C +++ b/src/thermoTools/derivedFvPatchFields/outletMappedUniformInletHeatAddition/outletMappedUniformInletHeatAdditionFvPatchField.C @@ -41,9 +41,9 @@ outletMappedUniformInletHeatAdditionFvPatchField ) : fixedValueFvPatchScalarField(p, iF), + Qptr_(nullptr), outletPatchName_(), phiName_("phi"), - Q_(0), TMin_(0), TMax_(5000) {} @@ -59,9 +59,9 @@ outletMappedUniformInletHeatAdditionFvPatchField ) : fixedValueFvPatchScalarField(ptf, p, iF, mapper), + Qptr_(ptf.Qptr_.clone()), outletPatchName_(ptf.outletPatchName_), phiName_(ptf.phiName_), - Q_(ptf.Q_), TMin_(ptf.TMin_), TMax_(ptf.TMax_) {} @@ -76,9 +76,9 @@ outletMappedUniformInletHeatAdditionFvPatchField ) : fixedValueFvPatchScalarField(p, iF, dict), + Qptr_(Function1<scalar>::New("Q", dict, &db())), outletPatchName_(dict.get<word>("outletPatch")), phiName_(dict.getOrDefault<word>("phi", "phi")), - Q_(dict.get<scalar>("Q")), TMin_(dict.getOrDefault<scalar>("TMin", 0)), TMax_(dict.getOrDefault<scalar>("TMax", 5000)) {} @@ -92,9 +92,9 @@ outletMappedUniformInletHeatAdditionFvPatchField ) : fixedValueFvPatchScalarField(ptf), + Qptr_(ptf.Qptr_.clone()), outletPatchName_(ptf.outletPatchName_), phiName_(ptf.phiName_), - Q_(ptf.Q_), TMin_(ptf.TMin_), TMax_(ptf.TMax_) {} @@ -109,9 +109,9 @@ outletMappedUniformInletHeatAdditionFvPatchField ) : fixedValueFvPatchScalarField(ptf, iF), + Qptr_(ptf.Qptr_.clone()), outletPatchName_(ptf.outletPatchName_), phiName_(ptf.phiName_), - Q_(ptf.Q_), TMin_(ptf.TMin_), TMax_(ptf.TMax_) {} @@ -166,11 +166,14 @@ void Foam::outletMappedUniformInletHeatAdditionFvPatchField::updateCoeffs() scalar averageOutletField = gSum(outletPatchPhi*outletPatchField)/sumOutletPatchPhi; + // Calculate Q as a function of average outlet temperature + const scalar Q = Qptr_->value(averageOutletField); + const scalarField Cpf(thermo.Cp(pp, pT, outletPatchID)); scalar totalPhiCp = gSum(outletPatchPhi)*gAverage(Cpf); - operator==(clamp(averageOutletField + Q_/totalPhiCp, TMin_, TMax_)); + operator==(clamp(averageOutletField + Q/totalPhiCp, TMin_, TMax_)); } else { @@ -193,7 +196,9 @@ void Foam::outletMappedUniformInletHeatAdditionFvPatchField::write fvPatchField<scalar>::write(os); os.writeEntry("outletPatch", outletPatchName_); os.writeEntryIfDifferent<word>("phi", "phi", phiName_); - os.writeEntry("Q", Q_); + + Qptr_->writeData(os); + os.writeEntry("TMin", TMin_); os.writeEntry("TMax", TMax_); diff --git a/src/thermoTools/derivedFvPatchFields/outletMappedUniformInletHeatAddition/outletMappedUniformInletHeatAdditionFvPatchField.H b/src/thermoTools/derivedFvPatchFields/outletMappedUniformInletHeatAddition/outletMappedUniformInletHeatAdditionFvPatchField.H index 844000f90497ed6d9e9497bcf502abe0716e3572..d0e9e15e83c592bfd5b977b250ac4338efcb9d56 100644 --- a/src/thermoTools/derivedFvPatchFields/outletMappedUniformInletHeatAddition/outletMappedUniformInletHeatAdditionFvPatchField.H +++ b/src/thermoTools/derivedFvPatchFields/outletMappedUniformInletHeatAddition/outletMappedUniformInletHeatAdditionFvPatchField.H @@ -72,6 +72,7 @@ SourceFiles #include "fixedValueFvPatchFields.H" #include "fvPatchFields.H" +#include "Function1.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -88,15 +89,15 @@ class outletMappedUniformInletHeatAdditionFvPatchField { // Private data + //- Input energy + autoPtr<Function1<scalar>> Qptr_; + //- Name of the outlet patch to be mapped word outletPatchName_; //- Name of the flux transporting the field word phiName_; - //- Input energy - scalar Q_; - //- Minimum Temperature Limit scalar TMin_; diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/BasicChemistryModel/BasicChemistryModels.C b/src/thermophysicalModels/chemistryModel/chemistryModel/BasicChemistryModel/BasicChemistryModels.C index 3490df6d9608a0e06d8c728bc687584aaa017b5b..145fb9f174b34667a2384f0acfd39791d151c245 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/BasicChemistryModel/BasicChemistryModels.C +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/BasicChemistryModel/BasicChemistryModels.C @@ -63,6 +63,13 @@ namespace Foam gasHThermoPhysics ); + makeChemistryModelType + ( + StandardChemistryModel, + psiReactionThermo, + PengRobinsonGasHThermoPhysics + ); + makeChemistryModelType ( StandardChemistryModel, @@ -120,6 +127,13 @@ namespace Foam gasHThermoPhysics ); + makeChemistryModelType + ( + StandardChemistryModel, + rhoReactionThermo, + PengRobinsonGasHThermoPhysics + ); + makeChemistryModelType ( StandardChemistryModel, @@ -177,6 +191,13 @@ namespace Foam gasHThermoPhysics ); + makeChemistryModelType + ( + TDACChemistryModel, + psiReactionThermo, + PengRobinsonGasHThermoPhysics + ); + makeChemistryModelType ( TDACChemistryModel, @@ -234,6 +255,13 @@ namespace Foam gasHThermoPhysics ); + makeChemistryModelType + ( + TDACChemistryModel, + rhoReactionThermo, + PengRobinsonGasHThermoPhysics + ); + makeChemistryModelType ( TDACChemistryModel, @@ -292,6 +320,13 @@ namespace Foam gasEThermoPhysics ); + makeChemistryModelType + ( + StandardChemistryModel, + psiReactionThermo, + PengRobinsonGasEThermoPhysics + ); + makeChemistryModelType ( StandardChemistryModel, @@ -350,6 +385,13 @@ namespace Foam gasEThermoPhysics ); + makeChemistryModelType + ( + StandardChemistryModel, + rhoReactionThermo, + PengRobinsonGasEThermoPhysics + ); + makeChemistryModelType ( StandardChemistryModel, @@ -407,6 +449,13 @@ namespace Foam gasEThermoPhysics ); + makeChemistryModelType + ( + TDACChemistryModel, + psiReactionThermo, + PengRobinsonGasEThermoPhysics + ); + makeChemistryModelType ( TDACChemistryModel, @@ -464,6 +513,13 @@ namespace Foam gasEThermoPhysics ); + makeChemistryModelType + ( + TDACChemistryModel, + rhoReactionThermo, + PengRobinsonGasEThermoPhysics + ); + makeChemistryModelType ( TDACChemistryModel, diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/reduction/makeChemistryReductionMethods.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/reduction/makeChemistryReductionMethods.C index 41ba970eba15d00881805d1f863ee80f68c6ad4e..ef04fb80d941c43c3bc1f1b08ffe24a088e8c2a6 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/reduction/makeChemistryReductionMethods.C +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/reduction/makeChemistryReductionMethods.C @@ -40,6 +40,11 @@ namespace Foam makeChemistryReductionMethods(psiReactionThermo, constGasHThermoPhysics); makeChemistryReductionMethods(psiReactionThermo, gasHThermoPhysics); makeChemistryReductionMethods + ( + psiReactionThermo, + PengRobinsonGasHThermoPhysics + ); + makeChemistryReductionMethods ( psiReactionThermo, constIncompressibleGasHThermoPhysics @@ -62,6 +67,11 @@ namespace Foam makeChemistryReductionMethods(rhoReactionThermo, constGasHThermoPhysics); makeChemistryReductionMethods(rhoReactionThermo, gasHThermoPhysics); makeChemistryReductionMethods + ( + rhoReactionThermo, + PengRobinsonGasHThermoPhysics + ); + makeChemistryReductionMethods ( rhoReactionThermo, constIncompressibleGasHThermoPhysics @@ -86,6 +96,11 @@ namespace Foam makeChemistryReductionMethods(psiReactionThermo, constGasEThermoPhysics); makeChemistryReductionMethods(psiReactionThermo, gasEThermoPhysics); makeChemistryReductionMethods + ( + psiReactionThermo, + PengRobinsonGasEThermoPhysics + ); + makeChemistryReductionMethods ( psiReactionThermo, constIncompressibleGasEThermoPhysics @@ -108,6 +123,11 @@ namespace Foam makeChemistryReductionMethods(rhoReactionThermo, constGasEThermoPhysics); makeChemistryReductionMethods(rhoReactionThermo, gasEThermoPhysics); makeChemistryReductionMethods + ( + rhoReactionThermo, + PengRobinsonGasEThermoPhysics + ); + makeChemistryReductionMethods ( rhoReactionThermo, constIncompressibleGasEThermoPhysics diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/tabulation/makeChemistryTabulationMethods.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/tabulation/makeChemistryTabulationMethods.C index 56023c4cc3400da06dfc749cba856917e00739b2..60b12fea488d2217b3896670c2c51ef1f2be84d2 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/tabulation/makeChemistryTabulationMethods.C +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/tabulation/makeChemistryTabulationMethods.C @@ -39,6 +39,7 @@ namespace Foam // Chemistry solvers based on sensibleEnthalpy makeChemistryTabulationMethods(psiReactionThermo, constGasHThermoPhysics); makeChemistryTabulationMethods(psiReactionThermo, gasHThermoPhysics); + makeChemistryTabulationMethods(psiReactionThermo, PengRobinsonGasHThermoPhysics); makeChemistryTabulationMethods ( psiReactionThermo, @@ -62,6 +63,7 @@ namespace Foam makeChemistryTabulationMethods(rhoReactionThermo, constGasHThermoPhysics); makeChemistryTabulationMethods(rhoReactionThermo, gasHThermoPhysics); + makeChemistryTabulationMethods(rhoReactionThermo, PengRobinsonGasHThermoPhysics); makeChemistryTabulationMethods ( rhoReactionThermo, @@ -87,6 +89,7 @@ namespace Foam makeChemistryTabulationMethods(psiReactionThermo, constGasEThermoPhysics); makeChemistryTabulationMethods(psiReactionThermo, gasEThermoPhysics); + makeChemistryTabulationMethods(psiReactionThermo, PengRobinsonGasEThermoPhysics); makeChemistryTabulationMethods ( psiReactionThermo, @@ -110,6 +113,7 @@ namespace Foam makeChemistryTabulationMethods(rhoReactionThermo, constGasEThermoPhysics); makeChemistryTabulationMethods(rhoReactionThermo, gasEThermoPhysics); + makeChemistryTabulationMethods(rhoReactionThermo, PengRobinsonGasEThermoPhysics); makeChemistryTabulationMethods ( rhoReactionThermo, diff --git a/src/thermophysicalModels/chemistryModel/chemistrySolver/chemistrySolver/makeChemistrySolvers.C b/src/thermophysicalModels/chemistryModel/chemistrySolver/chemistrySolver/makeChemistrySolvers.C index 40e3873a989242e9b9168e29577b2cdcaca88ab3..3c3d01b8694e9c6fc5a8916d5761d9d9346a6c91 100644 --- a/src/thermophysicalModels/chemistryModel/chemistrySolver/chemistrySolver/makeChemistrySolvers.C +++ b/src/thermophysicalModels/chemistryModel/chemistrySolver/chemistrySolver/makeChemistrySolvers.C @@ -38,6 +38,7 @@ namespace Foam // Chemistry solvers based on sensibleEnthalpy makeChemistrySolverTypes(psiReactionThermo, constGasHThermoPhysics); makeChemistrySolverTypes(psiReactionThermo, gasHThermoPhysics); + makeChemistrySolverTypes(psiReactionThermo, PengRobinsonGasHThermoPhysics); makeChemistrySolverTypes ( psiReactionThermo, @@ -61,6 +62,7 @@ namespace Foam makeChemistrySolverTypes(rhoReactionThermo, constGasHThermoPhysics); makeChemistrySolverTypes(rhoReactionThermo, gasHThermoPhysics); + makeChemistrySolverTypes(rhoReactionThermo, PengRobinsonGasHThermoPhysics); makeChemistrySolverTypes ( rhoReactionThermo, @@ -84,6 +86,7 @@ namespace Foam // Chemistry solvers based on sensibleInternalEnergy makeChemistrySolverTypes(psiReactionThermo, constGasEThermoPhysics); makeChemistrySolverTypes(psiReactionThermo, gasEThermoPhysics); + makeChemistrySolverTypes(psiReactionThermo, PengRobinsonGasEThermoPhysics); makeChemistrySolverTypes ( psiReactionThermo, @@ -105,6 +108,7 @@ namespace Foam makeChemistrySolverTypes(rhoReactionThermo, constGasEThermoPhysics); makeChemistrySolverTypes(rhoReactionThermo, gasEThermoPhysics); + makeChemistrySolverTypes(rhoReactionThermo, PengRobinsonGasEThermoPhysics); makeChemistrySolverTypes ( rhoReactionThermo, diff --git a/src/thermophysicalModels/radiation/submodels/solarCalculator/solarCalculator.C b/src/thermophysicalModels/radiation/submodels/solarCalculator/solarCalculator.C index 9cf0a65f6ba2bfaa81e393224db32facad4fe0de..dbe83f7abd97168429bf614f6d1966a525c0ae34 100644 --- a/src/thermophysicalModels/radiation/submodels/solarCalculator/solarCalculator.C +++ b/src/thermophysicalModels/radiation/submodels/solarCalculator/solarCalculator.C @@ -5,7 +5,7 @@ \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- - Copyright (C) 2015-2022 OpenCFD Ltd. + Copyright (C) 2015-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -95,7 +95,7 @@ void Foam::solarCalculator::calculateBetaTheta() dict_.readEntry("startTime", startTime_); - const scalar LST = startTime_ + runTime/3600.0; + const scalar LST = startTime_ + std::fmod(runTime/3600.0, 24); const scalar LON = dict_.get<scalar>("longitude"); diff --git a/src/thermophysicalModels/reactionThermo/chemistryReaders/chemistryReader/makeChemistryReaders.C b/src/thermophysicalModels/reactionThermo/chemistryReaders/chemistryReader/makeChemistryReaders.C index 8af12d74e1ebb482b1ab1ea95ea7ce549c576673..8bbf316fe758626c9eeb3a421474df0f31bf710b 100644 --- a/src/thermophysicalModels/reactionThermo/chemistryReaders/chemistryReader/makeChemistryReaders.C +++ b/src/thermophysicalModels/reactionThermo/chemistryReaders/chemistryReader/makeChemistryReaders.C @@ -6,6 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2015 OpenFOAM Foundation + Copyright (C) 2023 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -43,6 +44,7 @@ namespace Foam makeChemistryReader(constGasHThermoPhysics); makeChemistryReader(gasHThermoPhysics); +makeChemistryReader(PengRobinsonGasHThermoPhysics); makeChemistryReader(constIncompressibleGasHThermoPhysics); makeChemistryReader(incompressibleGasHThermoPhysics); makeChemistryReader(icoPoly8HThermoPhysics); @@ -53,6 +55,7 @@ makeChemistryReader(constHThermoPhysics); makeChemistryReaderType(foamChemistryReader, constGasHThermoPhysics); makeChemistryReaderType(foamChemistryReader, gasHThermoPhysics); +makeChemistryReaderType(foamChemistryReader, PengRobinsonGasHThermoPhysics); makeChemistryReaderType ( foamChemistryReader, @@ -70,6 +73,7 @@ makeChemistryReaderType(foamChemistryReader, constHThermoPhysics); makeChemistryReader(constGasEThermoPhysics); makeChemistryReader(gasEThermoPhysics); +makeChemistryReader(PengRobinsonGasEThermoPhysics); makeChemistryReader(constIncompressibleGasEThermoPhysics); makeChemistryReader(incompressibleGasEThermoPhysics); makeChemistryReader(icoPoly8EThermoPhysics); @@ -80,6 +84,7 @@ makeChemistryReader(constEThermoPhysics); makeChemistryReaderType(foamChemistryReader, constGasEThermoPhysics); makeChemistryReaderType(foamChemistryReader, gasEThermoPhysics); +makeChemistryReaderType(foamChemistryReader, PengRobinsonGasEThermoPhysics); makeChemistryReaderType ( foamChemistryReader, diff --git a/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermos.C b/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermos.C index 0c941d16c90f1e4fa358be5d6187c6b7847ef619..b2c15db65245698e58d7398ebe10b4c8b0d6254c 100644 --- a/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermos.C +++ b/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermos.C @@ -6,6 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation + Copyright (C) 2023 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -32,6 +33,7 @@ License #include "specie.H" #include "perfectGas.H" +#include "PengRobinsonGas.H" #include "hConstThermo.H" #include "janafThermo.H" #include "sensibleEnthalpy.H" @@ -181,6 +183,131 @@ makeReactionThermos specie ); + +// Peng Robinson +makeReactionThermos +( + psiThermo, + psiReactionThermo, + hePsiThermo, + homogeneousMixture, + constTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + psiThermo, + psiReactionThermo, + hePsiThermo, + inhomogeneousMixture, + constTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + psiThermo, + psiReactionThermo, + hePsiThermo, + veryInhomogeneousMixture, + constTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + + +// sutherlandTransport, hConstThermo + +makeReactionThermos +( + psiThermo, + psiReactionThermo, + hePsiThermo, + homogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + psiThermo, + psiReactionThermo, + hePsiThermo, + inhomogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + psiThermo, + psiReactionThermo, + hePsiThermo, + veryInhomogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + + +// sutherlandTransport, janafThermo + +makeReactionThermos +( + psiThermo, + psiReactionThermo, + hePsiThermo, + homogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + janafThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + psiThermo, + psiReactionThermo, + hePsiThermo, + inhomogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + janafThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + psiThermo, + psiReactionThermo, + hePsiThermo, + veryInhomogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + janafThermo, + PengRobinsonGas, + specie +); + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // Multi-component thermo for sensible enthalpy @@ -245,6 +372,15 @@ makeThermoPhysicsReactionThermos gasHThermoPhysics ); +makeThermoPhysicsReactionThermos +( + psiThermo, + psiReactionThermo, + hePsiThermo, + reactingMixture, + PengRobinsonGasHThermoPhysics +); + // Single-step reaction thermo for sensible enthalpy @@ -278,6 +414,15 @@ makeThermoPhysicsReactionThermos gasEThermoPhysics ); +makeThermoPhysicsReactionThermos +( + psiThermo, + psiReactionThermo, + hePsiThermo, + reactingMixture, + PengRobinsonGasEThermoPhysics +); + // Single-step reaction thermo for internal energy diff --git a/src/thermophysicalModels/reactionThermo/rhoReactionThermo/rhoReactionThermos.C b/src/thermophysicalModels/reactionThermo/rhoReactionThermo/rhoReactionThermos.C index 1f09cb42729f17c1ef74e7bda539076ef5ed7ed0..9979c00eed58de7be62f144e04d93f765b8d727d 100644 --- a/src/thermophysicalModels/reactionThermo/rhoReactionThermo/rhoReactionThermos.C +++ b/src/thermophysicalModels/reactionThermo/rhoReactionThermo/rhoReactionThermos.C @@ -33,6 +33,7 @@ License #include "specie.H" #include "perfectGas.H" +#include "PengRobinsonGas.H" #include "incompressiblePerfectGas.H" #include "hConstThermo.H" #include "janafThermo.H" @@ -222,6 +223,130 @@ makeReactionThermos specie ); +// Peng Robinson +makeReactionThermos +( + rhoThermo, + rhoReactionThermo, + heRhoThermo, + homogeneousMixture, + constTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + rhoThermo, + rhoReactionThermo, + heRhoThermo, + inhomogeneousMixture, + constTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + rhoThermo, + rhoReactionThermo, + heRhoThermo, + veryInhomogeneousMixture, + constTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + + +// sutherlandTransport, hConstThermo + +makeReactionThermos +( + rhoThermo, + rhoReactionThermo, + heRhoThermo, + homogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + rhoThermo, + rhoReactionThermo, + heRhoThermo, + inhomogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + rhoThermo, + rhoReactionThermo, + heRhoThermo, + veryInhomogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + hConstThermo, + PengRobinsonGas, + specie +); + + +// sutherlandTransport, janafThermo + +makeReactionThermos +( + rhoThermo, + rhoReactionThermo, + heRhoThermo, + homogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + janafThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + rhoThermo, + rhoReactionThermo, + heRhoThermo, + inhomogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + janafThermo, + PengRobinsonGas, + specie +); + +makeReactionThermos +( + rhoThermo, + rhoReactionThermo, + heRhoThermo, + veryInhomogeneousMixture, + sutherlandTransport, + sensibleEnthalpy, + janafThermo, + PengRobinsonGas, + specie +); + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // Multi-component thermo for internal energy @@ -382,6 +507,14 @@ makeThermoPhysicsReactionThermos constEThermoPhysics ); +makeThermoPhysicsReactionThermos +( + rhoThermo, + rhoReactionThermo, + heRhoThermo, + reactingMixture, + PengRobinsonGasEThermoPhysics +); // Single-step reaction thermo for internal energy @@ -394,7 +527,6 @@ makeThermoPhysicsReactionThermos gasEThermoPhysics ); - // Single-component thermo for internal energy makeThermoPhysicsReactionThermo @@ -581,6 +713,15 @@ makeThermoPhysicsReactionThermos constHThermoPhysics ); +makeThermoPhysicsReactionThermos +( + rhoThermo, + rhoReactionThermo, + heRhoThermo, + reactingMixture, + PengRobinsonGasHThermoPhysics +); + // Reaction thermo for sensible enthalpy makeThermoPhysicsReactionThermos diff --git a/src/thermophysicalModels/specie/include/reactionTypes.H b/src/thermophysicalModels/specie/include/reactionTypes.H index 9f6ba4812e6e33e0a0a3fb2ff23150cbd1d79a0b..ef3a50a82c3f6e2fc31c314d5aa13be92cb5248a 100644 --- a/src/thermophysicalModels/specie/include/reactionTypes.H +++ b/src/thermophysicalModels/specie/include/reactionTypes.H @@ -6,6 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2013 OpenFOAM Foundation + Copyright (C) 2023 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -50,6 +51,8 @@ namespace Foam typedef Reaction<gasHThermoPhysics> gasHReaction; + typedef Reaction<PengRobinsonGasHThermoPhysics> PengRobinsonGasHReaction; + typedef Reaction<constIncompressibleGasHThermoPhysics> constIncompressibleGasHReaction; @@ -71,6 +74,8 @@ namespace Foam typedef Reaction<gasEThermoPhysics> gasEReaction; + typedef Reaction<PengRobinsonGasEThermoPhysics> PengRobinsonGasEReaction; + typedef Reaction<constIncompressibleGasEThermoPhysics> constIncompressibleGasEReaction; diff --git a/src/thermophysicalModels/specie/include/thermoPhysicsTypes.H b/src/thermophysicalModels/specie/include/thermoPhysicsTypes.H index 7177d2f8d85580705cb52a5f6a37b33d8b7f7bb3..91b0f5b665cec90582b5d9d61e3734bcba6ed7d6 100644 --- a/src/thermophysicalModels/specie/include/thermoPhysicsTypes.H +++ b/src/thermophysicalModels/specie/include/thermoPhysicsTypes.H @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation - Copyright (C) 2018 OpenCFD Ltd. + Copyright (C) 2018-2023 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -37,6 +37,7 @@ Description #include "specie.H" #include "perfectGas.H" +#include "PengRobinsonGas.H" #include "incompressiblePerfectGas.H" #include "rPolynomial.H" #include "perfectFluid.H" @@ -91,6 +92,19 @@ namespace Foam > > gasHThermoPhysics; + typedef + sutherlandTransport + < + species::thermo + < + janafThermo + < + PengRobinsonGas<specie> + >, + sensibleEnthalpy + > + > PengRobinsonGasHThermoPhysics; + typedef constTransport < @@ -244,6 +258,19 @@ namespace Foam > > gasEThermoPhysics; + typedef + sutherlandTransport + < + species::thermo + < + janafThermo + < + PengRobinsonGas<specie> + >, + sensibleInternalEnergy + > + > PengRobinsonGasEThermoPhysics; + typedef constTransport < diff --git a/src/thermophysicalModels/specie/reaction/reactions/makeReactions.C b/src/thermophysicalModels/specie/reaction/reactions/makeReactions.C index f94ccfb4919c8d5966d1f91e2190f79ba1e38e15..0364766d6ae5a5ee69fed4f946a35c30f423faaa 100644 --- a/src/thermophysicalModels/specie/reaction/reactions/makeReactions.C +++ b/src/thermophysicalModels/specie/reaction/reactions/makeReactions.C @@ -87,6 +87,7 @@ namespace Foam // sensible enthalpy based reactions makeReactions(constGasHThermoPhysics, constGasHReaction) makeReactions(gasHThermoPhysics, gasHReaction) + makeReactions(PengRobinsonGasHThermoPhysics, PengRobinsonGasHReaction) makeReactions ( constIncompressibleGasHThermoPhysics, @@ -105,6 +106,7 @@ namespace Foam makeReactions(constGasEThermoPhysics, constGasEReaction) makeReactions(gasEThermoPhysics, gasEReaction) + makeReactions(PengRobinsonGasEThermoPhysics, PengRobinsonGasEReaction) makeReactions ( constIncompressibleGasEThermoPhysics, diff --git a/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMesh.C b/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMesh.C index 9c2dae87361e7d824e2b9bdc8f40f45583da38f9..c4f76ca093ec92da8776be48fcba198d8c7eb258 100644 --- a/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMesh.C +++ b/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMesh.C @@ -65,12 +65,6 @@ Foam::rawTopoChangerFvMesh::rawTopoChangerFvMesh {} -// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // - -Foam::rawTopoChangerFvMesh::~rawTopoChangerFvMesh() -{} - - // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // bool Foam::rawTopoChangerFvMesh::update() @@ -121,30 +115,24 @@ bool Foam::rawTopoChangerFvMesh::update() } } - const List<objectMap>& fromFaces = topoChangeMap().facesFromFacesMap(); - - forAll(fromFaces, i) + for (const auto& map : topoChangeMap().facesFromFacesMap()) { - mappedFace.set(fromFaces[i].index()); + mappedFace.set(map.index()); } - const List<objectMap>& fromEdges = topoChangeMap().facesFromEdgesMap(); - - forAll(fromEdges, i) + for (const auto& map : topoChangeMap().facesFromEdgesMap()) { - mappedFace.set(fromEdges[i].index()); + mappedFace.set(map.index()); } - const List<objectMap>& fromPts = topoChangeMap().facesFromPointsMap(); - - forAll(fromPts, i) + for (const auto& map : topoChangeMap().facesFromPointsMap()) { - mappedFace.set(fromPts[i].index()); + mappedFace.set(map.index()); } // Set unmapped faces to zero - Info<< "rawTopoChangerFvMesh : zeroing unmapped boundary values." - << endl; + Info<< "rawTopoChangerFvMesh : zeroing unmapped boundary values." << nl; + zeroUnmappedValues<scalar, fvPatchField, volMesh>(mappedFace); zeroUnmappedValues<vector, fvPatchField, volMesh>(mappedFace); zeroUnmappedValues<sphericalTensor, fvPatchField, volMesh>(mappedFace); @@ -155,8 +143,8 @@ bool Foam::rawTopoChangerFvMesh::update() Info<< "rawTopoChangerFvMesh :" << " recreating phi for unmapped boundary values." << endl; - const volVectorField& U = lookupObject<volVectorField>("U"); - surfaceScalarField& phi = lookupObjectRef<surfaceScalarField>("phi"); + const auto& U = lookupObject<volVectorField>("U"); + auto& phi = lookupObjectRef<surfaceScalarField>("phi"); setUnmappedValues ( diff --git a/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMesh.H b/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMesh.H index 2cc7c9b526a99c01b93097ae7cad2cb3c93ba11d..34710b03be13c85198c07379046993a1d19eb9e2 100644 --- a/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMesh.H +++ b/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMesh.H @@ -38,8 +38,8 @@ SourceFiles \*---------------------------------------------------------------------------*/ -#ifndef rawTopoChangerFvMesh_H -#define rawTopoChangerFvMesh_H +#ifndef Foam_rawTopoChangerFvMesh_H +#define Foam_rawTopoChangerFvMesh_H #include "topoChangerFvMesh.H" #include "bitSet.H" @@ -49,8 +49,6 @@ SourceFiles namespace Foam { -// Forward declaration of classes - /*---------------------------------------------------------------------------*\ Class rawTopoChangerFvMesh Declaration \*---------------------------------------------------------------------------*/ @@ -94,8 +92,9 @@ public: const bool doInit=true ); + //- Destructor - virtual ~rawTopoChangerFvMesh(); + virtual ~rawTopoChangerFvMesh() = default; // Member Functions diff --git a/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMeshTemplates.C b/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMeshTemplates.C index f4d676933f27b7b38bd49d0ce40aff974a97d34a..b627bc0b24eb2c995bb81dab6e342804a39ca382 100644 --- a/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMeshTemplates.C +++ b/src/topoChangerFvMesh/rawTopoChangerFvMesh/rawTopoChangerFvMeshTemplates.C @@ -6,6 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2024 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -25,9 +26,6 @@ License \*---------------------------------------------------------------------------*/ -#include "rawTopoChangerFvMesh.H" -#include "Time.H" - // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template<class Type, template<class> class PatchField, class GeoMesh> @@ -42,10 +40,7 @@ void Foam::rawTopoChangerFvMesh::setUnmappedValues forAll(fld.boundaryField(), patchi) { - PatchField<Type>& fvp = const_cast<PatchField<Type>&> - ( - fld.boundaryField()[patchi] - ); + auto& fvp = const_cast<PatchField<Type>&>(fld.boundaryField()[patchi]); const label start = fvp.patch().start(); forAll(fvp, i) @@ -71,33 +66,27 @@ void Foam::rawTopoChangerFvMesh::zeroUnmappedValues { typedef GeometricField<Type, PatchField, GeoMesh> FieldType; - const wordList fldNames(names(FieldType::typeName)); + std::unique_ptr<FieldType> zeroFieldPtr; - forAll(fldNames, i) + for (const word& fldName : names<FieldType>()) { - //Pout<< "Checking field " << fldNames[i] << endl; - - FieldType& fld = lookupObjectRef<FieldType>(fldNames[i]); + FieldType& fld = lookupObjectRef<FieldType>(fldName); + //Pout<< "Checking field " << fld.name() << endl; - setUnmappedValues - ( - fld, - mappedFace, - FieldType + if (!zeroFieldPtr) + { + zeroFieldPtr = std::make_unique<FieldType> ( - IOobject - ( - "zero", - time().timeName(), - *this, - IOobject::NO_READ, - IOobject::NO_WRITE, - IOobject::NO_REGISTER - ), + this->newIOobject("zero"), *this, - dimensioned<Type>(fld.dimensions(), Zero) - ) - ); + Foam::zero{}, + dimless + ); + } + + zeroFieldPtr->dimensions().reset(fld.dimensions()); + + setUnmappedValues(fld, mappedFace, *zeroFieldPtr); } } diff --git a/src/transportModels/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.C b/src/transportModels/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.C index a2296c3c6bf3833de1d56e73ddd3f318a9b698c4..6ecf2ad0176a77300c86985d68893001cabd6184 100644 --- a/src/transportModels/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.C +++ b/src/transportModels/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.C @@ -397,6 +397,15 @@ void Foam::isoAdvection::timeIntegratedFlux() magSf ); + // Handling upwind cyclic boundary patches + const polyPatch& pp = boundaryMesh[patchi]; + const cyclicPolyPatch* cpp = isA<cyclicPolyPatch>(pp); + if (cpp) + { + const label neiPatchID(cpp->neighbPolyPatchID()); + dVfb[neiPatchID][patchFacei] = -dVfb[patchi][patchFacei]; + } + // Check if the face is on processor patch and append it to // the list if necessary checkIfOnProcPatch(facei); diff --git a/src/transportModels/geometricVoF/advectionSchemes/isoAdvection/isoAdvectionTemplates.C b/src/transportModels/geometricVoF/advectionSchemes/isoAdvection/isoAdvectionTemplates.C index c79592c3b4a83a7ba598ec15938de31595f18f35..422d86c89634ba9e4c132ce02a72935a06a649e9 100644 --- a/src/transportModels/geometricVoF/advectionSchemes/isoAdvection/isoAdvectionTemplates.C +++ b/src/transportModels/geometricVoF/advectionSchemes/isoAdvection/isoAdvectionTemplates.C @@ -188,8 +188,43 @@ void Foam::isoAdvection::limitFluxes + faceValue(dVfcorrectionValues, facei); setFaceValue(dVf_, facei, corrVf); + + // If facei is on a cyclic patch correct dVf of facej on + // neighbour patch and alpha value of facej's owner cell. + if (!mesh_.isInternalFace(facei)) + { + const polyBoundaryMesh& boundaryMesh = + mesh_.boundaryMesh(); + const label patchi = boundaryMesh.patchID(facei); + const polyPatch& pp = boundaryMesh[patchi]; + const cyclicPolyPatch* cpp = isA<cyclicPolyPatch>(pp); + const label patchFacei = pp.whichFace(facei); + + if (cpp) + { + const label neiPatchID(cpp->neighbPolyPatchID()); + surfaceScalarField::Boundary& dVfb = + dVf_.boundaryFieldRef(); + dVfb[neiPatchID][patchFacei] = + -dVfb[patchi][patchFacei]; + const polyPatch& np = boundaryMesh[neiPatchID]; + const label globalFacei = np.start() + patchFacei; + const label neiOwn(owner[globalFacei]); + scalar VneiOwn = mesh_.V()[neiOwn]; + if (porosityEnabled_) + { + VneiOwn *= + porosityPtr_->primitiveField()[neiOwn]; + } + alpha1_[neiOwn] += + faceValue(dVfcorrectionValues, facei)/VneiOwn; + } + } + } + } + syncProcPatches(dVf_, phi_); } else diff --git a/tutorials/DNS/dnsFoam/boxTurb16/0.orig/U b/tutorials/DNS/dnsFoam/boxTurb16/0.orig/U index 5b54dbfd1026aefe3a116aba9a6184478ee78704..3c0a3284b61383748774578cb36940895471462d 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/0.orig/U +++ b/tutorials/DNS/dnsFoam/boxTurb16/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/DNS/dnsFoam/boxTurb16/0.orig/p b/tutorials/DNS/dnsFoam/boxTurb16/0.orig/p index d56ab8647590395073344900f753a0d373abaf71..148e5e016152db5cefa3568bed4084b9cbe8c9db 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/0.orig/p +++ b/tutorials/DNS/dnsFoam/boxTurb16/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/DNS/dnsFoam/boxTurb16/constant/boxTurbDict b/tutorials/DNS/dnsFoam/boxTurb16/constant/boxTurbDict index 7e2370375b18ed115cc4000039c982bb6097ab24..81c3e0b43dc1f8196e06410b04b16af614963a99 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/constant/boxTurbDict +++ b/tutorials/DNS/dnsFoam/boxTurb16/constant/boxTurbDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/DNS/dnsFoam/boxTurb16/constant/transportProperties b/tutorials/DNS/dnsFoam/boxTurb16/constant/transportProperties index 38f30a72617aa28405525c07eaf5d10ea19ca18d..e8a580a17def22694a82e21a29eae8af7932b10f 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/constant/transportProperties +++ b/tutorials/DNS/dnsFoam/boxTurb16/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/DNS/dnsFoam/boxTurb16/constant/turbulenceProperties b/tutorials/DNS/dnsFoam/boxTurb16/constant/turbulenceProperties index d134448a56865ed047ed0307287d757c2ab8cb47..5a9dfd09a753028966d78b287e15b4b755dd1ea3 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/constant/turbulenceProperties +++ b/tutorials/DNS/dnsFoam/boxTurb16/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/DNS/dnsFoam/boxTurb16/system/blockMeshDict b/tutorials/DNS/dnsFoam/boxTurb16/system/blockMeshDict index 9611e7c6fd1019edd93dca0fd482c8042af0a838..163884a1eae90b11b979e7a816cc935158c74998 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/system/blockMeshDict +++ b/tutorials/DNS/dnsFoam/boxTurb16/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/DNS/dnsFoam/boxTurb16/system/controlDict b/tutorials/DNS/dnsFoam/boxTurb16/system/controlDict index 38fac604dbc5a01722d0a9998d5ef9fba2509342..43529076a00b8e69483836a59284804554a0472c 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/system/controlDict +++ b/tutorials/DNS/dnsFoam/boxTurb16/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/DNS/dnsFoam/boxTurb16/system/fvSchemes b/tutorials/DNS/dnsFoam/boxTurb16/system/fvSchemes index 799e353224335ee8aea86d7a75c0b4cc96f0add5..b8e431f6e0daa1c7eecdf89805891bfd48bee891 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/system/fvSchemes +++ b/tutorials/DNS/dnsFoam/boxTurb16/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/DNS/dnsFoam/boxTurb16/system/fvSolution b/tutorials/DNS/dnsFoam/boxTurb16/system/fvSolution index 4b132a83e7f868e0d009d499fc58e6d78c742d8c..518864e6e98534e1d5f724fc05693d4be373b087 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/system/fvSolution +++ b/tutorials/DNS/dnsFoam/boxTurb16/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/cavity_parProfiling/0/U b/tutorials/IO/cavity_parProfiling/0/U index e9ce88a98387ad09ba8f383acbbce03ce5f7d6a6..573a1e93859582036ab7e3284ccf6bae466c0e21 100644 --- a/tutorials/IO/cavity_parProfiling/0/U +++ b/tutorials/IO/cavity_parProfiling/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/cavity_parProfiling/0/p b/tutorials/IO/cavity_parProfiling/0/p index 1160434c0147040beee61fe88aac3e1862acfb98..861ece3fd25189915bfe37d0afee4ba65f3a11d6 100644 --- a/tutorials/IO/cavity_parProfiling/0/p +++ b/tutorials/IO/cavity_parProfiling/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/cavity_parProfiling/constant/transportProperties b/tutorials/IO/cavity_parProfiling/constant/transportProperties index 80ab6e271d387f5dd52ad4510b6511b10d11b3f0..f0d68f134dd5843eea73fa135fa790e5c2d3ed03 100644 --- a/tutorials/IO/cavity_parProfiling/constant/transportProperties +++ b/tutorials/IO/cavity_parProfiling/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/cavity_parProfiling/system/blockMeshDict b/tutorials/IO/cavity_parProfiling/system/blockMeshDict index 346dc02de8308d88abdc16217a3514c137eba842..4d19616448661f169ff6658af408c1fff03b8e1c 100644 --- a/tutorials/IO/cavity_parProfiling/system/blockMeshDict +++ b/tutorials/IO/cavity_parProfiling/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/cavity_parProfiling/system/controlDict b/tutorials/IO/cavity_parProfiling/system/controlDict index b2ceb91fe786aefd2b6507ef3b74e6689ed1fe02..5935c4ffeba0172c6507c4fb49e00a6d07a30cf9 100644 --- a/tutorials/IO/cavity_parProfiling/system/controlDict +++ b/tutorials/IO/cavity_parProfiling/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/cavity_parProfiling/system/decomposeParDict b/tutorials/IO/cavity_parProfiling/system/decomposeParDict index 9a68dbc9e09a5ee013409dca465fa60981fa2465..f62e0b62664a70e1dd2cf3aaaf80b64050b5c7d2 100644 --- a/tutorials/IO/cavity_parProfiling/system/decomposeParDict +++ b/tutorials/IO/cavity_parProfiling/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/cavity_parProfiling/system/fvSchemes b/tutorials/IO/cavity_parProfiling/system/fvSchemes index 51808e9ee6d8127afb334d4da45540edfc913135..578009903f1c2e680e170200a7091f359e392c23 100644 --- a/tutorials/IO/cavity_parProfiling/system/fvSchemes +++ b/tutorials/IO/cavity_parProfiling/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/cavity_parProfiling/system/fvSolution.template b/tutorials/IO/cavity_parProfiling/system/fvSolution.template index d88c83a55d7817b4d1aa4c6a0bb419244808a6c8..014aee8ca3ec91387bda3dd841f7a69b673f0dde 100644 --- a/tutorials/IO/cavity_parProfiling/system/fvSolution.template +++ b/tutorials/IO/cavity_parProfiling/system/fvSolution.template @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/fatal-ending1.dict b/tutorials/IO/dictionary/fatal-ending1.dict index bbcc5b5ce7452015490ae9af2f1d3984c20016a9..13d5ca719af8e4af4439476b417382df5f042519 100644 --- a/tutorials/IO/dictionary/fatal-ending1.dict +++ b/tutorials/IO/dictionary/fatal-ending1.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/fatal-ending2.dict b/tutorials/IO/dictionary/fatal-ending2.dict index dac692ae8a7291a0fffd16642a34f8dca65b0b74..e050ebda4f369409dafae06d58bbcd9a58e76a98 100644 --- a/tutorials/IO/dictionary/fatal-ending2.dict +++ b/tutorials/IO/dictionary/fatal-ending2.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/fatal-ending3.dict b/tutorials/IO/dictionary/fatal-ending3.dict index 8b4e3283a0d9e39c08ec85b83bd286c6f95fe802..27fa82c174050d0ce95828a3bbfac1775d50463f 100644 --- a/tutorials/IO/dictionary/fatal-ending3.dict +++ b/tutorials/IO/dictionary/fatal-ending3.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/fatal-ending4.dict b/tutorials/IO/dictionary/fatal-ending4.dict index eae5338febaee131ba0ede630dee8b70d290de74..e5df946ba1b0fb4ba61a540b553b50add6f20656 100644 --- a/tutorials/IO/dictionary/fatal-ending4.dict +++ b/tutorials/IO/dictionary/fatal-ending4.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/fatal-premature-ending1.dict b/tutorials/IO/dictionary/fatal-premature-ending1.dict index fbefccc049b320bdab0f253aff0e5457d4cfb109..dadd41a9a129bc4df6b38e173290197b64db247c 100644 --- a/tutorials/IO/dictionary/fatal-premature-ending1.dict +++ b/tutorials/IO/dictionary/fatal-premature-ending1.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/fatal-premature-ending2.dict b/tutorials/IO/dictionary/fatal-premature-ending2.dict index 29edd7c155541814657f237367e74f044d4f0e5f..29be4e116f2a56bee820d295d7de6dd14bb2d8d5 100644 --- a/tutorials/IO/dictionary/fatal-premature-ending2.dict +++ b/tutorials/IO/dictionary/fatal-premature-ending2.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/fatal-primitive-ending1.dict b/tutorials/IO/dictionary/fatal-primitive-ending1.dict index b123671e032c45b6afc66313bcc4e634efbeba0e..42ccc4bbe7a8b3da192195ea0b7e1bcd263cea24 100644 --- a/tutorials/IO/dictionary/fatal-primitive-ending1.dict +++ b/tutorials/IO/dictionary/fatal-primitive-ending1.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/fatal-primitive-ending2.dict b/tutorials/IO/dictionary/fatal-primitive-ending2.dict index 7bcf34e6ad9aaf718b06003318321f4f813bf4e7..3f4091d14bd60fc8f1876b5baee7e0d5658c854b 100644 --- a/tutorials/IO/dictionary/fatal-primitive-ending2.dict +++ b/tutorials/IO/dictionary/fatal-primitive-ending2.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/fatal-primitive-ending3.dict b/tutorials/IO/dictionary/fatal-primitive-ending3.dict index e44cb3fb58dc3b6dc288d542c5a022082865bee8..aace428b81dc66ebdbf84eccd931fa95f990e96d 100644 --- a/tutorials/IO/dictionary/fatal-primitive-ending3.dict +++ b/tutorials/IO/dictionary/fatal-primitive-ending3.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/good-empty2.dict b/tutorials/IO/dictionary/good-empty2.dict index 6bff5a381133c877f4979ed398d5517672837991..bed7c8b58f9090f648e960aff8d1590ff5c72e37 100644 --- a/tutorials/IO/dictionary/good-empty2.dict +++ b/tutorials/IO/dictionary/good-empty2.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/good-ending1.dict b/tutorials/IO/dictionary/good-ending1.dict index c5c41ccc9907e5c5f1a062beaa27cb97f2ae6456..89b384a3e2132c721be61215638f3aa6a5dff404 100644 --- a/tutorials/IO/dictionary/good-ending1.dict +++ b/tutorials/IO/dictionary/good-ending1.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/good-if1.dict b/tutorials/IO/dictionary/good-if1.dict index 3d84fcbdeb59a898fbde475eb3f4b82f72f19811..5a5d35783f5264b1847cc640ab5a1471ace0cd6a 100644 --- a/tutorials/IO/dictionary/good-if1.dict +++ b/tutorials/IO/dictionary/good-if1.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/good-if2.dict b/tutorials/IO/dictionary/good-if2.dict index e2302fc46e40823d4467425407512de50f6a2c60..1bb642b3ad816ec65304e254908303b1ae7ffc91 100644 --- a/tutorials/IO/dictionary/good-if2.dict +++ b/tutorials/IO/dictionary/good-if2.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/good-if3.dict b/tutorials/IO/dictionary/good-if3.dict index 390aafb3fdcf8cc6f9fefde9a36aa33593eee020..e6f76b5a612da90f9511445e1c4bf3e14c5ad87e 100644 --- a/tutorials/IO/dictionary/good-if3.dict +++ b/tutorials/IO/dictionary/good-if3.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/good-primitive-ending1.dict b/tutorials/IO/dictionary/good-primitive-ending1.dict index a4b04ebfa092cb02c11aebee010f5f7df196fafd..4b86a0901c1cf46288dd022eaf65bad9363cf695 100644 --- a/tutorials/IO/dictionary/good-primitive-ending1.dict +++ b/tutorials/IO/dictionary/good-primitive-ending1.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/good-word-expand.dict b/tutorials/IO/dictionary/good-word-expand.dict index 974fbd9ed5e9f10ac223f3fe3c5a651a7e0b5bf7..d061b384dfa1ebc65e99477e6c2ca854f7f8b25e 100644 --- a/tutorials/IO/dictionary/good-word-expand.dict +++ b/tutorials/IO/dictionary/good-word-expand.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/dictionary/missed-ending3.dict b/tutorials/IO/dictionary/missed-ending3.dict index e66081050425f7657a66f47d80cd62b802c117ff..7494df5c748537f912c5d41b86a5d4f3cbeca4af 100644 --- a/tutorials/IO/dictionary/missed-ending3.dict +++ b/tutorials/IO/dictionary/missed-ending3.dict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler/0.orig/U b/tutorials/IO/fileHandler/0.orig/U index fd0d516e3b3f673b4de4978897fd37e4c3af8e14..8294201876f01dbbabfb2d315f773f02113f18c9 100644 --- a/tutorials/IO/fileHandler/0.orig/U +++ b/tutorials/IO/fileHandler/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler/constant/g b/tutorials/IO/fileHandler/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/IO/fileHandler/constant/g +++ b/tutorials/IO/fileHandler/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler/constant/kinematicCloudPositions b/tutorials/IO/fileHandler/constant/kinematicCloudPositions index 918bfa6dc15a719c7f8d5c5b4119cbda182b90a2..69e770b87c5f0ed828bee8fdfcaa1bdbdddce414 100644 --- a/tutorials/IO/fileHandler/constant/kinematicCloudPositions +++ b/tutorials/IO/fileHandler/constant/kinematicCloudPositions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler/constant/kinematicCloudProperties b/tutorials/IO/fileHandler/constant/kinematicCloudProperties index 91fc6654b9ed82cb019da34c37ae074297d0ce16..936ea3a659bb8f35186e7e3238fdadf7eb0d7968 100644 --- a/tutorials/IO/fileHandler/constant/kinematicCloudProperties +++ b/tutorials/IO/fileHandler/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler/constant/transportProperties b/tutorials/IO/fileHandler/constant/transportProperties index eb26b6d0f4a8135079170376806e1906f28e09ad..fc01ada633ccd64178df24305095f8a5099a06c2 100644 --- a/tutorials/IO/fileHandler/constant/transportProperties +++ b/tutorials/IO/fileHandler/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler/constant/turbulenceProperties b/tutorials/IO/fileHandler/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/IO/fileHandler/constant/turbulenceProperties +++ b/tutorials/IO/fileHandler/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler/system/blockMeshDict b/tutorials/IO/fileHandler/system/blockMeshDict index ca6fe397e5cfbc1a32420e4ecb2e52e45b67caa4..9543eca6b9cda489091e932b1f0ae553179f678c 100644 --- a/tutorials/IO/fileHandler/system/blockMeshDict +++ b/tutorials/IO/fileHandler/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler/system/controlDict b/tutorials/IO/fileHandler/system/controlDict index 4cafe3f06e60d9c087c30174352cbfe81460721c..fb5a12f177712a4471a12e6daea2a2010104c329 100644 --- a/tutorials/IO/fileHandler/system/controlDict +++ b/tutorials/IO/fileHandler/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler/system/decomposeParDict b/tutorials/IO/fileHandler/system/decomposeParDict index 82f934f6452d665e05510d521c458c6e7d3b2842..6549bfa2cd6829f22acbc3792b329e778fdb4c68 100644 --- a/tutorials/IO/fileHandler/system/decomposeParDict +++ b/tutorials/IO/fileHandler/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler/system/fvSchemes b/tutorials/IO/fileHandler/system/fvSchemes index 51423a94bfac8d033f345b9424a0a6b7ac7fb099..49aeb6089232d42e28182a4daac228b05ba0bf27 100644 --- a/tutorials/IO/fileHandler/system/fvSchemes +++ b/tutorials/IO/fileHandler/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler/system/fvSolution b/tutorials/IO/fileHandler/system/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/IO/fileHandler/system/fvSolution +++ b/tutorials/IO/fileHandler/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/0/U b/tutorials/IO/fileHandler_dynamicCode/0/U index e9ce88a98387ad09ba8f383acbbce03ce5f7d6a6..573a1e93859582036ab7e3284ccf6bae466c0e21 100644 --- a/tutorials/IO/fileHandler_dynamicCode/0/U +++ b/tutorials/IO/fileHandler_dynamicCode/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/0/p b/tutorials/IO/fileHandler_dynamicCode/0/p index 1160434c0147040beee61fe88aac3e1862acfb98..861ece3fd25189915bfe37d0afee4ba65f3a11d6 100644 --- a/tutorials/IO/fileHandler_dynamicCode/0/p +++ b/tutorials/IO/fileHandler_dynamicCode/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/constant/transportProperties b/tutorials/IO/fileHandler_dynamicCode/constant/transportProperties index 80ab6e271d387f5dd52ad4510b6511b10d11b3f0..f0d68f134dd5843eea73fa135fa790e5c2d3ed03 100644 --- a/tutorials/IO/fileHandler_dynamicCode/constant/transportProperties +++ b/tutorials/IO/fileHandler_dynamicCode/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/system/blockMeshDict b/tutorials/IO/fileHandler_dynamicCode/system/blockMeshDict index ea546147f9adfc0ec3cd23bdaa1b0edc736ad6a9..0ab38a2ce20d90de00271ecf2292acc222edf0c8 100644 --- a/tutorials/IO/fileHandler_dynamicCode/system/blockMeshDict +++ b/tutorials/IO/fileHandler_dynamicCode/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/system/controlDict b/tutorials/IO/fileHandler_dynamicCode/system/controlDict index 499cbbb85f16ec559923d933d9c190c7d4ffdd38..312ca73bd294339ad9e6838999b9a4b6ae1cd15a 100644 --- a/tutorials/IO/fileHandler_dynamicCode/system/controlDict +++ b/tutorials/IO/fileHandler_dynamicCode/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/system/decomposeParDict b/tutorials/IO/fileHandler_dynamicCode/system/decomposeParDict index a6a6703b63a7cdf309e132c6d9197b7d0c7fd528..4d8ce26a2f5042d95dd9c2c9bb193a799fcbb36e 100644 --- a/tutorials/IO/fileHandler_dynamicCode/system/decomposeParDict +++ b/tutorials/IO/fileHandler_dynamicCode/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/system/fvSchemes b/tutorials/IO/fileHandler_dynamicCode/system/fvSchemes index 51808e9ee6d8127afb334d4da45540edfc913135..578009903f1c2e680e170200a7091f359e392c23 100644 --- a/tutorials/IO/fileHandler_dynamicCode/system/fvSchemes +++ b/tutorials/IO/fileHandler_dynamicCode/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/system/fvSolution b/tutorials/IO/fileHandler_dynamicCode/system/fvSolution index b1df8765cbc55719d507565d7d73a8c135273670..aacaee2b7cc8514ada4f873a29505561b13e4439 100644 --- a/tutorials/IO/fileHandler_dynamicCode/system/fvSolution +++ b/tutorials/IO/fileHandler_dynamicCode/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/system/fvSolution.0 b/tutorials/IO/fileHandler_dynamicCode/system/fvSolution.0 index 92417b46fdf134b38c441c55f9686cd8eb3dbd6d..983794c202f08dc20d592af4f53a22779319774a 100644 --- a/tutorials/IO/fileHandler_dynamicCode/system/fvSolution.0 +++ b/tutorials/IO/fileHandler_dynamicCode/system/fvSolution.0 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/system/fvSolution.5 b/tutorials/IO/fileHandler_dynamicCode/system/fvSolution.5 index b1df8765cbc55719d507565d7d73a8c135273670..aacaee2b7cc8514ada4f873a29505561b13e4439 100644 --- a/tutorials/IO/fileHandler_dynamicCode/system/fvSolution.5 +++ b/tutorials/IO/fileHandler_dynamicCode/system/fvSolution.5 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/system/solverControls b/tutorials/IO/fileHandler_dynamicCode/system/solverControls index abae222460221be76a60b94c98258645e96046f6..3eeb9f7c241c3f6e4044f03f469a352c95ad8bb5 100644 --- a/tutorials/IO/fileHandler_dynamicCode/system/solverControls +++ b/tutorials/IO/fileHandler_dynamicCode/system/solverControls @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/system/solverControls.0 b/tutorials/IO/fileHandler_dynamicCode/system/solverControls.0 index 4b1b570f3f645fc57971c0e70be6c0372b217f79..5791f5547c780bce3dcf3b35102abbce154043fa 100644 --- a/tutorials/IO/fileHandler_dynamicCode/system/solverControls.0 +++ b/tutorials/IO/fileHandler_dynamicCode/system/solverControls.0 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/fileHandler_dynamicCode/system/solverControls.5 b/tutorials/IO/fileHandler_dynamicCode/system/solverControls.5 index abae222460221be76a60b94c98258645e96046f6..3eeb9f7c241c3f6e4044f03f469a352c95ad8bb5 100644 --- a/tutorials/IO/fileHandler_dynamicCode/system/solverControls.5 +++ b/tutorials/IO/fileHandler_dynamicCode/system/solverControls.5 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/0.orig/U b/tutorials/IO/systemCall/0.orig/U index 75f7136e70d1e074c39e4a1ab6529b4d926787e0..b6d3eab978ce87410e3bede4321c211d66491165 100644 --- a/tutorials/IO/systemCall/0.orig/U +++ b/tutorials/IO/systemCall/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/0.orig/include/fixedInlet b/tutorials/IO/systemCall/0.orig/include/fixedInlet index 125fbb7bc20e6e06b7203d3c70e0bc77b6db089c..0b9fd7ef7f399378c34ccc6a4f7c8f0d4e44c984 100644 --- a/tutorials/IO/systemCall/0.orig/include/fixedInlet +++ b/tutorials/IO/systemCall/0.orig/include/fixedInlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/0.orig/include/frontBackUpperPatches b/tutorials/IO/systemCall/0.orig/include/frontBackUpperPatches index f17a37762cf61bf0ddd1eba9777f547f2d88f22a..fa7bc41e145dcb207d67d751d8b505f3a1c9356d 100644 --- a/tutorials/IO/systemCall/0.orig/include/frontBackUpperPatches +++ b/tutorials/IO/systemCall/0.orig/include/frontBackUpperPatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/0.orig/include/initialConditions b/tutorials/IO/systemCall/0.orig/include/initialConditions index 6b897d6d9d59ae18ca805ca6d1d1733edaf48165..c41f10f7cfae94619d2f9eac89b3130b8d8ab641 100644 --- a/tutorials/IO/systemCall/0.orig/include/initialConditions +++ b/tutorials/IO/systemCall/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/0.orig/k b/tutorials/IO/systemCall/0.orig/k index 9406e6c421c98219491002ec9de8f5433133d1f3..a7b332158ea43cd8d12d3005f9e41821d0a806d5 100644 --- a/tutorials/IO/systemCall/0.orig/k +++ b/tutorials/IO/systemCall/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/0.orig/nut b/tutorials/IO/systemCall/0.orig/nut index 2d475ca9ce4a5c2b43aeb5b040fbfcb0afe1c9e7..4ce2fb51767e16f17b6b8f01365c662d5ec0ee19 100644 --- a/tutorials/IO/systemCall/0.orig/nut +++ b/tutorials/IO/systemCall/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/0.orig/omega b/tutorials/IO/systemCall/0.orig/omega index 071b2f5497fef16e15beadcd53ad20d3e41fe071..0e2e94ede8b90f1e80d2df7678532ff9c5d40300 100644 --- a/tutorials/IO/systemCall/0.orig/omega +++ b/tutorials/IO/systemCall/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/0.orig/p b/tutorials/IO/systemCall/0.orig/p index 29d63c931abe6de72ca82bcf83445f3140e94ba9..9f2c2adcf4789d9f68d544a1f9a4a43d7a23fea4 100644 --- a/tutorials/IO/systemCall/0.orig/p +++ b/tutorials/IO/systemCall/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/constant/transportProperties b/tutorials/IO/systemCall/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/IO/systemCall/constant/transportProperties +++ b/tutorials/IO/systemCall/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/constant/turbulenceProperties b/tutorials/IO/systemCall/constant/turbulenceProperties index c1d5ac10f3ff6401c6ced11b5eb7d12a818ee895..eb61d1626b61da0457322e05072c0235aed11840 100644 --- a/tutorials/IO/systemCall/constant/turbulenceProperties +++ b/tutorials/IO/systemCall/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/system/blockMeshDict b/tutorials/IO/systemCall/system/blockMeshDict index f4917ff1e296247958efac413496ab48e3335c5d..d4d2af2af075eb52c2773d9c8eaee12bf29f23be 100644 --- a/tutorials/IO/systemCall/system/blockMeshDict +++ b/tutorials/IO/systemCall/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/system/controlDict b/tutorials/IO/systemCall/system/controlDict index bd966938b89986d3f59813d3b448e23b12ed0e0a..0c6c6de05e0826a942528fc57f4be55670c6a289 100644 --- a/tutorials/IO/systemCall/system/controlDict +++ b/tutorials/IO/systemCall/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/system/decomposeParDict b/tutorials/IO/systemCall/system/decomposeParDict index 3a884d08c8af7028e8626ea14667f5ff0ba796be..f2a56f58e294bdf92e9764b75cb732431af632fb 100644 --- a/tutorials/IO/systemCall/system/decomposeParDict +++ b/tutorials/IO/systemCall/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/system/fvSchemes b/tutorials/IO/systemCall/system/fvSchemes index d7d6dead9b99d77a51de8ef9c2613395accd3944..8774c807cb089eceb19af875e478c7eedcd93ea8 100644 --- a/tutorials/IO/systemCall/system/fvSchemes +++ b/tutorials/IO/systemCall/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/IO/systemCall/system/fvSolution b/tutorials/IO/systemCall/system/fvSolution index 09395f6766758b6ba9134df261f03ef628a66526..6e3189ed7fdbb4d3844114b2da011b15b47678b4 100644 --- a/tutorials/IO/systemCall/system/fvSolution +++ b/tutorials/IO/systemCall/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/T b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/T index 608400e4bfb3f551b53547c277bd15d0fe17846f..6a84b02c8eef9d4174a56eb7cd20bad9920c9ea5 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/T +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/U b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/U index 6d23a972a19ae1a9ecae61fbe68286ad46a2b710..31cafc9b5e49c5e5f1329a63a8bcba3c4c1d2739 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/U +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/epsilon b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/epsilon index 2d921a6d3402a86b3ba4c8065cde9e709fc0c258..fd2bf3eaaff57cf61887a5df43ef0cc62faea28b 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/epsilon +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/include/emptyPatches b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/include/emptyPatches index 2fe70d8a550a592ef40a42dc23cc125c3218451c..b006d02c22eac352354954239eae850204c12d84 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/include/emptyPatches +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/include/emptyPatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/k b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/k index ea103ad4e36804fde81e07580acf8a7105a0a3e4..ff9278f26ac9078fbfc3837bfdf2bb10fdd8f959 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/k +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/p b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/p index e936d9661cf7b4f2cc661b9e4663ccd02b343499..c611d6b487a095ac57ad5c73b0b0e64b79c666d4 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/p +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/p_rgh b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/p_rgh index c6d8c726cae7c5aa0ec4725d3254d09837a70711..72775eb5448bb2c010f2b3f92d1bcc260612a44c 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/p_rgh +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/g b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/g index 7f6eb4aeb7cf353d6fce881ce68be5456fdcf4f7..79e491a7fb0da7420a2f774962d61c7058d794e3 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/g +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/leftSolid/radiationProperties b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/leftSolid/radiationProperties index 8321a595246d247c9ea34fc55ce4814d56354528..e07013e9f8c4c608fd027af28670790f1d609e8d 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/leftSolid/radiationProperties +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/leftSolid/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/leftSolid/thermophysicalProperties b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/leftSolid/thermophysicalProperties index 8e114f43c93376c5d67d3741669e0a282b925ce7..bcadc53ce26402366a1023e4bbe593431223bca5 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/leftSolid/thermophysicalProperties +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/leftSolid/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------* \ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/regionProperties b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/regionProperties index 245014e9edfe03e472ff05784f4c6b3b9bd2b04e..9ed32e633ac42ff39b2ad8b5b3c757d95840082a 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/regionProperties +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/radiationProperties b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/radiationProperties index fc5e2c245c95917edb842059b2faa646fc9a2a98..f4a1dd82897d415252dbfb8d006106d32562fe79 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/radiationProperties +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/thermophysicalProperties b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/thermophysicalProperties +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/turbulenceProperties b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/turbulenceProperties index f0c14e0b36b0fbba454fc551ecfd76fba5351058..bd671808c9fa08a172a41e34eaf0ab8e6a373113 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/turbulenceProperties +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/constant/rightFluid/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/blockMeshDict b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/blockMeshDict index ed94b220c2c81a7fb4032b8a48d398c68aa5d035..87e27a2cef44d18c2516f4699c56514797003ff0 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/blockMeshDict +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/controlDict b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/controlDict index 8faffd62223ccc99158c540cba60c220f75c844a..0c4bb562499450343fc32e0dc5de3eb59ed72a1e 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/controlDict +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/fvSchemes b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/fvSchemes +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/fvSolution b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/fvSolution index e374fc9835703a694ec5c074784e951d3e49db35..aca1e45d227589a70dc3e26ad65ed6189e1ddc47 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/fvSolution +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/changeDictionaryDict b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/changeDictionaryDict index eb84a73d68a75b6ed1c468a0b0287ca5e649d44c..d672acd9f42dd5b4cd9568ce4221050db15b2543 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/changeDictionaryDict +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/fvSchemes b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/fvSchemes index eeb1bc9315b8ddbe44708c71792f78af626504cc..9bdddbc69ff03dd00d8dd5d3a79f6fc12bb7ce35 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/fvSchemes +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/fvSolution b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/fvSolution index 843175e80e11328db868ae79f5f108527d15cf4d..ba35965ec167842fdda72826b725d23798365971 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/fvSolution +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/leftSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/changeDictionaryDict b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/changeDictionaryDict index 749db35b1f9fa7244ec6fe6bb41f2bb6c8275ea0..ba1f195c909d77f5d8f47b6eebf537918fda5bd6 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/changeDictionaryDict +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/createBafflesDict b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/createBafflesDict index 5e1cdc353d4b2925656a841bc6747890f0c10808..193459767f7b487af0add5cb41b3a52adafc292e 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/createBafflesDict +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/fvSchemes b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/fvSchemes index d201c3c6120a4fd118183515cbe0a8542b56c439..f0290b304f96955283bdd635bae99a0d5a90ba2f 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/fvSchemes +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/fvSolution b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/fvSolution index 5cc5be43613a991113241215c6c3d74c0202c415..d4b0b718964dcfe2928ceff3496e622a89954175 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/fvSolution +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/rightFluid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/topoSetDict b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/topoSetDict index 0e28f37ffe4a18507f5af9efe15fc2c7d86bd53c..94d6f6ed4ea025a25c88563390bf785f7a9e69eb 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/topoSetDict +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/topoSetDict.f1 b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/topoSetDict.f1 index 9250c1727d455ce5b6b276e4e31b2ae570a6af7d..e02ec1b4fa98a12dfd5c3c278c77816e0e24955b 100644 --- a/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/topoSetDict.f1 +++ b/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/topoSetDict.f1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/flange/0.orig/T b/tutorials/basic/laplacianFoam/flange/0.orig/T index 21f0eb5cf1094a177775c165aa506442799d0f56..c9654176143d9083eefadadd4233f5a26105b914 100644 --- a/tutorials/basic/laplacianFoam/flange/0.orig/T +++ b/tutorials/basic/laplacianFoam/flange/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/flange/constant/transportProperties b/tutorials/basic/laplacianFoam/flange/constant/transportProperties index c82288a7ffbdf88bce3be56c8eb42ba3c29a06f3..37c429c6009c45c2b2a2770d0d6d0c023f1272d6 100644 --- a/tutorials/basic/laplacianFoam/flange/constant/transportProperties +++ b/tutorials/basic/laplacianFoam/flange/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/flange/system/controlDict b/tutorials/basic/laplacianFoam/flange/system/controlDict index 78eb46e010078035e0b96160a45429a78ae958e4..528dd7b4b18923f022afd3cc1ca2afd82c5b5bba 100644 --- a/tutorials/basic/laplacianFoam/flange/system/controlDict +++ b/tutorials/basic/laplacianFoam/flange/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/flange/system/decomposeParDict b/tutorials/basic/laplacianFoam/flange/system/decomposeParDict index a1a1da626bd1ed4145dee7bfce761b4d52d35c42..fc04e0b67c670130122760a82774414e423a0be5 100644 --- a/tutorials/basic/laplacianFoam/flange/system/decomposeParDict +++ b/tutorials/basic/laplacianFoam/flange/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/flange/system/fvSchemes b/tutorials/basic/laplacianFoam/flange/system/fvSchemes index 523e7bc40c962a7844da293b11f67b9b7397598c..89df35b5e9b749ab0524ebc476d688a6d1e2a73e 100644 --- a/tutorials/basic/laplacianFoam/flange/system/fvSchemes +++ b/tutorials/basic/laplacianFoam/flange/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/flange/system/fvSolution b/tutorials/basic/laplacianFoam/flange/system/fvSolution index cab386402ed1278e2c81b983038c9e8e60aa5cad..2156125b1b946dc653d8c9921b384e8f41b87f5d 100644 --- a/tutorials/basic/laplacianFoam/flange/system/fvSolution +++ b/tutorials/basic/laplacianFoam/flange/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/0/T b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/0/T index 501d84da3d675dc6b259565db08c3ae651fed93e..809374eec9d2230e1b9f64edac1edd7be350c4df 100644 --- a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/0/T +++ b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/constant/transportProperties b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/constant/transportProperties index 39f9579daa9a80142e7865307d119d8f260ab7f2..b704d2b53f0e9d47ea19911e56dc2a5b6e04bdc2 100644 --- a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/constant/transportProperties +++ b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/blockMeshDict b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/blockMeshDict index 54a75419c9713066e442db62eb27476323ceb77b..2cfff5a882aaf7b8d54703811b1851aada2fb0eb 100644 --- a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/blockMeshDict +++ b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/controlDict b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/controlDict index 534c6b00a2e5ac06b23f799acab66ca3ed77e576..ba463116b0ca8c1818bdc39ef8d7eaf294f406fc 100644 --- a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/controlDict +++ b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/decomposeParDict b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/decomposeParDict index 7f764347c446a2f317706e06edc1ec1d0edf410d..92c064b99046d9ddbe1bbdc250679a0721e4b822 100644 --- a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/decomposeParDict +++ b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/decomposeParDict.random b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/decomposeParDict.random index 4d844ed6fd3a796b08fdc96ae29f4bb00967fb57..7bf9a519087c68011b78154e64bb129ca54276b0 100644 --- a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/decomposeParDict.random +++ b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/decomposeParDict.random @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/fvSchemes b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/fvSchemes index cc30cf8904ea10c653b0c145cdd74e79cef014bc..e59f658b5d67d97f4cf283a06319c5afd57d4d42 100644 --- a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/fvSchemes +++ b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/fvSolution b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/fvSolution index fe38bf5d707c654971811240e2214d3f096f8167..799a4ede3b6a804a2791f8367bc5f0d6c8f2129b 100644 --- a/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/fvSolution +++ b/tutorials/basic/laplacianFoam/implicitAMI-nonblocking/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld1/common/constant/transportProperties b/tutorials/basic/laplacianFoam/multiWorld1/common/constant/transportProperties index c82288a7ffbdf88bce3be56c8eb42ba3c29a06f3..37c429c6009c45c2b2a2770d0d6d0c023f1272d6 100644 --- a/tutorials/basic/laplacianFoam/multiWorld1/common/constant/transportProperties +++ b/tutorials/basic/laplacianFoam/multiWorld1/common/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld1/common/system/controlDict b/tutorials/basic/laplacianFoam/multiWorld1/common/system/controlDict index 43c842abee0d8de5ef9071424b9f2a68ee6a8d49..47ed48b5bc24866d9fa6aa6303989076627c1114 100644 --- a/tutorials/basic/laplacianFoam/multiWorld1/common/system/controlDict +++ b/tutorials/basic/laplacianFoam/multiWorld1/common/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld1/common/system/decomposeParDict b/tutorials/basic/laplacianFoam/multiWorld1/common/system/decomposeParDict index 2d2fbcaa1ef1e624ed1ab76f70a7bf10b640b7b1..7d6483ac5b009ae951e31c1d902ee04df6f9a3f5 100644 --- a/tutorials/basic/laplacianFoam/multiWorld1/common/system/decomposeParDict +++ b/tutorials/basic/laplacianFoam/multiWorld1/common/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld1/common/system/fvSchemes b/tutorials/basic/laplacianFoam/multiWorld1/common/system/fvSchemes index ef48d4d80c6fc3928cdb043615c9118b1e445da9..a9314d051bd07d4a48bba30f0e22f121c1cbb55b 100644 --- a/tutorials/basic/laplacianFoam/multiWorld1/common/system/fvSchemes +++ b/tutorials/basic/laplacianFoam/multiWorld1/common/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld1/common/system/fvSolution b/tutorials/basic/laplacianFoam/multiWorld1/common/system/fvSolution index cab386402ed1278e2c81b983038c9e8e60aa5cad..2156125b1b946dc653d8c9921b384e8f41b87f5d 100644 --- a/tutorials/basic/laplacianFoam/multiWorld1/common/system/fvSolution +++ b/tutorials/basic/laplacianFoam/multiWorld1/common/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld1/left/0.orig/T b/tutorials/basic/laplacianFoam/multiWorld1/left/0.orig/T index e97b6eb235ae5fbc78a5e216703bbd02d448ac92..30cb4b77779c6ba4dfba34e717311fa310c1a53b 100644 --- a/tutorials/basic/laplacianFoam/multiWorld1/left/0.orig/T +++ b/tutorials/basic/laplacianFoam/multiWorld1/left/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld1/left/system/blockMeshDict b/tutorials/basic/laplacianFoam/multiWorld1/left/system/blockMeshDict index ee6e329476fc13696b08e2e465cfdfce805aefde..9ada4d1ca7001302d4b45fcb46d5ad863ed774da 100644 --- a/tutorials/basic/laplacianFoam/multiWorld1/left/system/blockMeshDict +++ b/tutorials/basic/laplacianFoam/multiWorld1/left/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld1/right/0.orig/T b/tutorials/basic/laplacianFoam/multiWorld1/right/0.orig/T index f0a576eea94e994401b9ca6541eb55f027e4a895..38de5b2ad75e00acce9b2b876799312db9222f42 100644 --- a/tutorials/basic/laplacianFoam/multiWorld1/right/0.orig/T +++ b/tutorials/basic/laplacianFoam/multiWorld1/right/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld1/right/system/blockMeshDict b/tutorials/basic/laplacianFoam/multiWorld1/right/system/blockMeshDict index f7f2e070ee229c0b03569f7772d5472332c814b2..8db53d7b44382a5f18600633e155b38edf127f23 100644 --- a/tutorials/basic/laplacianFoam/multiWorld1/right/system/blockMeshDict +++ b/tutorials/basic/laplacianFoam/multiWorld1/right/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/common/constant/transportProperties b/tutorials/basic/laplacianFoam/multiWorld2/common/constant/transportProperties index 39f9579daa9a80142e7865307d119d8f260ab7f2..b704d2b53f0e9d47ea19911e56dc2a5b6e04bdc2 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/common/constant/transportProperties +++ b/tutorials/basic/laplacianFoam/multiWorld2/common/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/common/system/controlDict b/tutorials/basic/laplacianFoam/multiWorld2/common/system/controlDict index 1683a40a03cb5a875d187c96e2e0e5124e3fafe6..db71374016ac998a068f345209ef58428447f716 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/common/system/controlDict +++ b/tutorials/basic/laplacianFoam/multiWorld2/common/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/common/system/decomposeParDict b/tutorials/basic/laplacianFoam/multiWorld2/common/system/decomposeParDict index 981ace6f29746e07702c7591d129986b56d3d30a..c2aa46283b4c279d724f975d2e58300e312e7439 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/common/system/decomposeParDict +++ b/tutorials/basic/laplacianFoam/multiWorld2/common/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/common/system/fvSchemes b/tutorials/basic/laplacianFoam/multiWorld2/common/system/fvSchemes index cc30cf8904ea10c653b0c145cdd74e79cef014bc..e59f658b5d67d97f4cf283a06319c5afd57d4d42 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/common/system/fvSchemes +++ b/tutorials/basic/laplacianFoam/multiWorld2/common/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/common/system/fvSolution b/tutorials/basic/laplacianFoam/multiWorld2/common/system/fvSolution index a69474bba9ca108eaedcf17f93d1673106a96181..2f992ab7f62ec980997ffee88957b9e0d85c4a3a 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/common/system/fvSolution +++ b/tutorials/basic/laplacianFoam/multiWorld2/common/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/slab1/0.orig/T b/tutorials/basic/laplacianFoam/multiWorld2/slab1/0.orig/T index 66dfbcc9172952e110d5aa8f17607fdc6c473621..4b2746e8a122838a851de93a8026b9f201285f42 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/slab1/0.orig/T +++ b/tutorials/basic/laplacianFoam/multiWorld2/slab1/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/slab1/system/blockMeshDict b/tutorials/basic/laplacianFoam/multiWorld2/slab1/system/blockMeshDict index a0bdeff456940359ec721960eed4c44939f8b34c..1d4ba7a8a73e4f5e6a93c784b05cf0ad2d9aace3 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/slab1/system/blockMeshDict +++ b/tutorials/basic/laplacianFoam/multiWorld2/slab1/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/slab2/0.orig/T b/tutorials/basic/laplacianFoam/multiWorld2/slab2/0.orig/T index 9c10f7cf4bae05206471d76627da1962e70143cc..fb5f4ff7d375bccf9af75af705f1437898a79b0a 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/slab2/0.orig/T +++ b/tutorials/basic/laplacianFoam/multiWorld2/slab2/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/slab2/system/blockMeshDict b/tutorials/basic/laplacianFoam/multiWorld2/slab2/system/blockMeshDict index 5153abf0479882537e69d1675508da93de83356f..4a3e35cb084bc68ae993f47fca3eb662aa627599 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/slab2/system/blockMeshDict +++ b/tutorials/basic/laplacianFoam/multiWorld2/slab2/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/slab3/0.orig/T b/tutorials/basic/laplacianFoam/multiWorld2/slab3/0.orig/T index 7538ed8c0781830774ad802bff875539fdd47931..dc34d91d6f9f53cc1567e3519f5f4eab68f88bb9 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/slab3/0.orig/T +++ b/tutorials/basic/laplacianFoam/multiWorld2/slab3/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/slab3/system/blockMeshDict b/tutorials/basic/laplacianFoam/multiWorld2/slab3/system/blockMeshDict index e062cd309eab414ce0666554f67a47272fbff502..54904cbed2dc4c69b3eb0ae4b7fd7837e33e128a 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/slab3/system/blockMeshDict +++ b/tutorials/basic/laplacianFoam/multiWorld2/slab3/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/slab4/0.orig/T b/tutorials/basic/laplacianFoam/multiWorld2/slab4/0.orig/T index c74cd3e7a47ef6d38b031d460b2f48f01570d512..29a743285acb5c6b7abdf97ac1c52aa643e05493 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/slab4/0.orig/T +++ b/tutorials/basic/laplacianFoam/multiWorld2/slab4/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/slab4/system/blockMeshDict b/tutorials/basic/laplacianFoam/multiWorld2/slab4/system/blockMeshDict index d90cfc986ec7730b1ffa6961a2847b6e6a7d9cf0..dd0975d9478a99a967cb039b3467343094538d8e 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/slab4/system/blockMeshDict +++ b/tutorials/basic/laplacianFoam/multiWorld2/slab4/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/top/0.orig/T b/tutorials/basic/laplacianFoam/multiWorld2/top/0.orig/T index 17ff58b2ad339e15a138606038e346bea80957f1..6408ce44931b33b6e32be00af7d074ee4f287b47 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/top/0.orig/T +++ b/tutorials/basic/laplacianFoam/multiWorld2/top/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/top/system/blockMeshDict b/tutorials/basic/laplacianFoam/multiWorld2/top/system/blockMeshDict index 16429d79d8d14fcd091d93cc1a4f1a776200bb0b..33ebe387b7bbbf440c15be02510f0dea1d946cf3 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/top/system/blockMeshDict +++ b/tutorials/basic/laplacianFoam/multiWorld2/top/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/top/system/createPatchDict b/tutorials/basic/laplacianFoam/multiWorld2/top/system/createPatchDict index acb1f39d229b958bfa5fdcffab06bc72f4af50ca..00da4769eea4f6b2bb4e7f1c6b8ec945a77b9698 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/top/system/createPatchDict +++ b/tutorials/basic/laplacianFoam/multiWorld2/top/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/multiWorld2/top/system/topoSetDict.patches b/tutorials/basic/laplacianFoam/multiWorld2/top/system/topoSetDict.patches index b05a8d139bc348140282f0a8c6f13985c25c19e4..beac4d1ac6121ccdf8f22ac8c2c79ec896bb42f5 100644 --- a/tutorials/basic/laplacianFoam/multiWorld2/top/system/topoSetDict.patches +++ b/tutorials/basic/laplacianFoam/multiWorld2/top/system/topoSetDict.patches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/0/T b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/0/T index 455b693ab36684a9ac59a51ddba87f1761ab18f2..da9c1d8b3cc088872ca91bff230eea9f47794c65 100644 --- a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/0/T +++ b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/constant/transportProperties b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/constant/transportProperties index 39f9579daa9a80142e7865307d119d8f260ab7f2..b704d2b53f0e9d47ea19911e56dc2a5b6e04bdc2 100644 --- a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/constant/transportProperties +++ b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/blockMeshDict b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/blockMeshDict index 593d0fbd11662fc388a2b1d61eb2c25cce5b7d2c..5f1b860c0e80b67424634364927894e30f4e2c67 100644 --- a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/blockMeshDict +++ b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/controlDict b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/controlDict index 4afcc874bb7986352d4604a9de5fac00de2e09a0..f33a46786753b9fd1183543c3a9d1557c7361d5a 100644 --- a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/controlDict +++ b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/decomposeParDict b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/decomposeParDict index 5d06afcaa5b38a84eb3c9bcd21db36f29884acd5..107fbc16850dc7c2182d16cfe0b78ce9e1c7fc5a 100644 --- a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/decomposeParDict +++ b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/fvSchemes b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/fvSchemes index cc30cf8904ea10c653b0c145cdd74e79cef014bc..e59f658b5d67d97f4cf283a06319c5afd57d4d42 100644 --- a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/fvSchemes +++ b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/fvSolution b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/fvSolution index a69474bba9ca108eaedcf17f93d1673106a96181..2f992ab7f62ec980997ffee88957b9e0d85c4a3a 100644 --- a/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/fvSolution +++ b/tutorials/basic/laplacianFoam/twoBlocks-processorAgglom/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/T b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/T index 9ba6b0a17ef2fa6c00ff1bae3f754f167539e2ba..6bf1f29701a96cc018b18120e03baa0c2c57ea41 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/T +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement index 95e62bac6b9e36ddc11ebfad69b769d88fd006bf..9eaf67066792fc23917cda82c071f2e3df6532d4 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/pointDisplacement b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/pointDisplacement index 65ec7d346ebb467f82b1a74fe435dd1f33644238..45a14f53aa81db9a4ffb6bfdedb1bd1ee00131af 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/pointDisplacement +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/zoneID b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/zoneID index e6a563b8866142064502530b9fa5c77e604a0613..02f02f6da64e0993b53bd46b88bf64a316fb6cd5 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/zoneID +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/dynamicMeshDict b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/dynamicMeshDict index 3df3c047053655371853155937913b63875e05da..ed0a465270cb516d6eed1a7a555aac9aaa1df0ab 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/dynamicMeshDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/transportProperties b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/transportProperties index f2791d85abf6907c7e66339cabcb06beeaa30c7a..1464d9233a0bd7dcddf07e6b16df0a536c45e1fd 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/transportProperties +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict index 2137c0d54d4d1066cc57a21b4fc091aa872726c1..eced13cdc4631af69365018388eeff35c6a985bb 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/controlDict b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/controlDict index 9f7984229d989303611ad72ea76241047406d988..8ff4945917dcbeef976010916d789ee62e8e13b3 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/controlDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/decomposeParDict b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/decomposeParDict index b130e886b192974a445f7877a8081666f16b0c06..44f98eaa2865928819bffd31d631c04165747dae 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/decomposeParDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSchemes b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSchemes index dd34241c8def16642da8884d0df91407b225ff64..c7384f4fad20497d89c1be6a0229e887b6f3e942 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSchemes +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSolution b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSolution index 759c7a6801849acac7d0704e2d5303e3c29e962a..2a150ed48e25770c8257022d0fa2b5c7b2f2b619 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSolution +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/setFieldsDict b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/setFieldsDict index 99bee0020b6652fbf0f2f06f638aca8ff38253e5..623e20cd2b73d7f8d4b33e26ca4066e7b746c9d0 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/setFieldsDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/topoSetDict b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/topoSetDict index adaa18551bd6b488d082e88feb5e1f4b0d615990..e1e20d5dc26d5eb78efc8b5b97a88d6881f14c8c 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/topoSetDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/T b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/T index cf3a13e8114e250188bc34f7e96f280141b877a8..0c7f8d31fb40ba9e6a4fab37aa6c2f437d3227dd 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/T +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/cellDisplacement b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/cellDisplacement index 95e62bac6b9e36ddc11ebfad69b769d88fd006bf..9eaf67066792fc23917cda82c071f2e3df6532d4 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/cellDisplacement +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/cellDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/pointDisplacement b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/pointDisplacement index 65ec7d346ebb467f82b1a74fe435dd1f33644238..45a14f53aa81db9a4ffb6bfdedb1bd1ee00131af 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/pointDisplacement +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/zoneID b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/zoneID index e6a563b8866142064502530b9fa5c77e604a0613..02f02f6da64e0993b53bd46b88bf64a316fb6cd5 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/zoneID +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/constant/dynamicMeshDict b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/constant/dynamicMeshDict index 0c2ab4877251b8129e31128ce75275e90b30ab2a..8748b63e2b16dbc8411164dceeae7e3b410a597d 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/constant/dynamicMeshDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/constant/transportProperties b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/constant/transportProperties index 610f7ad959f384dcb5e23217c257ac0b029d9964..50604eaca9dfbe2f83afa25077944a7dbba16c56 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/constant/transportProperties +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/blockMeshDict b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/blockMeshDict index 04bb8fe9cd87d7e6205667250925881bb9e21e79..a0635ec30a95a0145fba65453c519ee86529b0d3 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/blockMeshDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/controlDict b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/controlDict index 75e50dab8c56a948500b2123979bef94aa15b9e6..cf1d9e246458a4832b45dccc900b5268df28a5d4 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/controlDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/fvSchemes b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/fvSchemes index a8f0b6b34c43f1c002a15b68160040e06210235b..fd7000bfa5ec05e4ed24bb783e02f7cebca0751e 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/fvSchemes +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/fvSolution b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/fvSolution index 7fc8a4fa6436b665789c5b5e59796fe10cd6aa91..abf19a1c075a1586482a3906dac0ef0777f43834 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/fvSolution +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/setFieldsDict b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/setFieldsDict index 671444e0f11fea4cc3930fb339e8bd1dffebc4ea..4483e4579f036d6801d528e8e34a4ad7b41913e1 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/setFieldsDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/topoSetDict b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/topoSetDict index 33657fe372169bb3b0887d1da44ce6c60a32957d..c7ca16340ae1a14865daff92e586c5b70ad0ad09 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/topoSetDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransferFluxConservation1D/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/U b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/U index 081cc87a38f33132d39e7ec3868c3c5ab2fa4e8d..3711c21c8a85d8afb365942ad544143954b002d5 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/U +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions index 572741499ea2a8852609dcb1c46fd686c1ffb68d..5808bb4f7c66aa35024962c0665d966328f15b3f 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/p b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/p index 6c976ed19aa57839961b3e576c4a542f6d38224f..7c9a2e116aa3e29416877eefcf02a7296cb1d2fe 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/p +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/pointDisplacement b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/pointDisplacement index 06f4d41d9815270d2117eeed616e8ce65edf0173..e936c7170918210d73167b76a17bd9f584245178 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/pointDisplacement +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/zoneID b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/zoneID index e9a37ab02757081951921dca4024e1f1a550ce5b..df7dbc2230d1c106cfcdb2add3850846d8573309 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/zoneID +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict index 3df3c047053655371853155937913b63875e05da..ed0a465270cb516d6eed1a7a555aac9aaa1df0ab 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/blockMeshDict b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/blockMeshDict index 5d02a59a4b47f872c1df7acfb11c476a3206b772..b0b4eb5a2b13c2dbe834b85003578cee2b6aa4f4 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/blockMeshDict +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/controlDict b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/controlDict index 37fb91c22bf34ca7f37875865bb0ae1cff5c47d6..163c3ca40006a34a7a1be66ef213d83abb306c61 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/controlDict +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSchemes b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSchemes index 80864b88d33205bd16d01ab802acef6e271bad1c..d5dcf7eb87625d090a55159cf2fbf2d2effb205d 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSchemes +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSolution b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSolution index 198415da0c411b950e6cc25d63c68a8f0e736421..ff1b4ddafce631ce30b09d706d9957dd0a432bb5 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSolution +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/setFieldsDict b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/setFieldsDict index 99bee0020b6652fbf0f2f06f638aca8ff38253e5..623e20cd2b73d7f8d4b33e26ca4066e7b746c9d0 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/setFieldsDict +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/topoSetDict b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/topoSetDict index e26852063403a74052ceb0ffba6c18da88b22f40..f4c681158d61ec79baee0735b088f73e13e40681 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/topoSetDict +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/controlDict b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/controlDict index 797c9b8151fc6f0b7c185fafee77efe10c4eecdb..bae8ab0749ed375f5ddd77dce075e111439a6ef3 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/controlDict +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/createPatchDict b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/createPatchDict index 774c19a39634e4c2c8f68d3e94da6dde04d1eedf..301624dd117267f9399f09264888919eeaf05f13 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/createPatchDict +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/extrudeMeshDict b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/extrudeMeshDict index 0fe6dc40eaca0bb22f2aa420760fd20ed1d7c83b..a7609180e9ab1b2b0f5c4729892c0690f79649b4 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/extrudeMeshDict +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSchemes b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSchemes +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSolution b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSolution index 2f5abd0344d1365a722c1328ebaa037dfb164d2f..77a0889c827145fa2a2f73b85f8503f9cc3f08da 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSolution +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/cylinder/0.orig/U b/tutorials/basic/potentialFoam/cylinder/0.orig/U index 20862d0a19c40134a5ef039603f00266c6757258..d10086d5cf7ee5b6061d0ad1b72d736e8be4dd55 100644 --- a/tutorials/basic/potentialFoam/cylinder/0.orig/U +++ b/tutorials/basic/potentialFoam/cylinder/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/cylinder/0.orig/p b/tutorials/basic/potentialFoam/cylinder/0.orig/p index e2209c53b89e487ef7c214386fd551dec7ae1df2..17d64deba10af2da16d408eb057a687e85ea36d4 100644 --- a/tutorials/basic/potentialFoam/cylinder/0.orig/p +++ b/tutorials/basic/potentialFoam/cylinder/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/cylinder/system/blockMeshDict b/tutorials/basic/potentialFoam/cylinder/system/blockMeshDict index f2e2831eb407deb45c635864e5c9140b0caf70a6..5a7242ccca967a02cb96d509ee7efb989e170e85 100644 --- a/tutorials/basic/potentialFoam/cylinder/system/blockMeshDict +++ b/tutorials/basic/potentialFoam/cylinder/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/cylinder/system/controlDict b/tutorials/basic/potentialFoam/cylinder/system/controlDict index 6cf6567dbe11b53da5b660306a21765148cd0d73..210edc70186068d89e6c56164701615760f78186 100644 --- a/tutorials/basic/potentialFoam/cylinder/system/controlDict +++ b/tutorials/basic/potentialFoam/cylinder/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/cylinder/system/decomposeParDict b/tutorials/basic/potentialFoam/cylinder/system/decomposeParDict index e69ee975cf4f9e3a89f377daf9c38b56ce2651a8..d597084201d4f673893e2963588aaf4f72013f56 100644 --- a/tutorials/basic/potentialFoam/cylinder/system/decomposeParDict +++ b/tutorials/basic/potentialFoam/cylinder/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/cylinder/system/fvSchemes b/tutorials/basic/potentialFoam/cylinder/system/fvSchemes index 1296151c2480bb52e7912796188bb5cde7ea17dd..8ef68973a12004fbe6ab7d747cc12c65cd680cc8 100644 --- a/tutorials/basic/potentialFoam/cylinder/system/fvSchemes +++ b/tutorials/basic/potentialFoam/cylinder/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/cylinder/system/fvSolution b/tutorials/basic/potentialFoam/cylinder/system/fvSolution index 23d15a9809bd3dd139bcd8d6476747790d1c06ab..0d7dcd25a5a77d2b33296448fa402012ed2ba05e 100644 --- a/tutorials/basic/potentialFoam/cylinder/system/fvSolution +++ b/tutorials/basic/potentialFoam/cylinder/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/pitzDaily/0.orig/U b/tutorials/basic/potentialFoam/pitzDaily/0.orig/U index 1b79fa72751a9907b2c407467411ed1bc9f7e691..80a4282ce9400b24d6d9a5a2247e80e0cdbd1e47 100644 --- a/tutorials/basic/potentialFoam/pitzDaily/0.orig/U +++ b/tutorials/basic/potentialFoam/pitzDaily/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/pitzDaily/0.orig/p b/tutorials/basic/potentialFoam/pitzDaily/0.orig/p index eca7aa93a8f5ec660e9941f4dbcb7eab7d8de019..783fd80e14d2b3c9848f444ee15f135e319946db 100644 --- a/tutorials/basic/potentialFoam/pitzDaily/0.orig/p +++ b/tutorials/basic/potentialFoam/pitzDaily/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/pitzDaily/system/blockMeshDict b/tutorials/basic/potentialFoam/pitzDaily/system/blockMeshDict index 7709136f71bf3d75aabe2e4fe84e823e3769b6d2..1dd07e2117d137ed392c80db2629404a955e7fc2 100644 --- a/tutorials/basic/potentialFoam/pitzDaily/system/blockMeshDict +++ b/tutorials/basic/potentialFoam/pitzDaily/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/pitzDaily/system/controlDict b/tutorials/basic/potentialFoam/pitzDaily/system/controlDict index 15928a0f7b649c1a4e243f9d8edc7ce60f7bf8de..1144b289372afc03a3664c771edc574af9a8c50e 100644 --- a/tutorials/basic/potentialFoam/pitzDaily/system/controlDict +++ b/tutorials/basic/potentialFoam/pitzDaily/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/pitzDaily/system/fvSchemes b/tutorials/basic/potentialFoam/pitzDaily/system/fvSchemes index 0ab22bc1b803e6008a56eceff94b043e35ae4ece..0fc8a44b55683c83a6822530f5d5453c74071f76 100644 --- a/tutorials/basic/potentialFoam/pitzDaily/system/fvSchemes +++ b/tutorials/basic/potentialFoam/pitzDaily/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/potentialFoam/pitzDaily/system/fvSolution b/tutorials/basic/potentialFoam/pitzDaily/system/fvSolution index 88dd992835ee2ce9a8bacf564ad67d8f73c28026..1213b9a36fa49aca2fa791a15f9a5a08b79bef4b 100644 --- a/tutorials/basic/potentialFoam/pitzDaily/system/fvSolution +++ b/tutorials/basic/potentialFoam/pitzDaily/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/scalarTransportFoam/movingSource/0/T b/tutorials/basic/scalarTransportFoam/movingSource/0/T new file mode 100644 index 0000000000000000000000000000000000000000..9e82b6f5276de11c4098ab7c9f369783acf3c382 --- /dev/null +++ b/tutorials/basic/scalarTransportFoam/movingSource/0/T @@ -0,0 +1,56 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object T; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 0 0 1 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + inlet + { + type uniformFixedValue; + + uniformValue + { + type constant; + value 0.0; + } + } + + outlet + { + type zeroGradient; + } + + upperWall + { + type zeroGradient; + } + + lowerWall + { + type zeroGradient; + } + + frontAndBack + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/basic/scalarTransportFoam/movingSource/0/U b/tutorials/basic/scalarTransportFoam/movingSource/0/U new file mode 100644 index 0000000000000000000000000000000000000000..a16ec2687f4cc5eb868f2d695eca9783082a656f --- /dev/null +++ b/tutorials/basic/scalarTransportFoam/movingSource/0/U @@ -0,0 +1,45 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0.1 0 0); + +boundaryField +{ + #includeEtc "caseDicts/setConstraintTypes" + + inlet + { + type fixedValue; + value $internalField; + } + outlet + { + type zeroGradient; + } + upperWall + { + type noSlip; + } + lowerWall + { + type noSlip; + } +} + + +// ************************************************************************* // diff --git a/tutorials/basic/scalarTransportFoam/movingSource/README.txt b/tutorials/basic/scalarTransportFoam/movingSource/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ed6b6aa0cd7acb9114c7be77eed2d924f48174d --- /dev/null +++ b/tutorials/basic/scalarTransportFoam/movingSource/README.txt @@ -0,0 +1,4 @@ +- demo for using moving 'geometric' fvOption selection +- flow left to right +- scalar transport with zero (non-numerical) diffusion +- still too many invocations of selection update diff --git a/tutorials/basic/scalarTransportFoam/movingSource/constant/fvOptions b/tutorials/basic/scalarTransportFoam/movingSource/constant/fvOptions new file mode 100644 index 0000000000000000000000000000000000000000..9d1b5876494a636e4dfb5a4906a24b6c116475c6 --- /dev/null +++ b/tutorials/basic/scalarTransportFoam/movingSource/constant/fvOptions @@ -0,0 +1,61 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvOptions; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +scalarSource1 +{ + type scalarSemiImplicitSource; + + volumeMode absolute; + + selectionMode geometric; + selection + { + cylinder + { + action use; + source cylinder; + + point1 (0.05 0.03 -1); // beg point on cylinder axis + point2 (0.05 0.03 1); // end point on cylinder axis + radius 0.003; + + solidBodyMotionFunction oscillatingLinearMotion; + oscillatingLinearMotionCoeffs + { + // coefficients + amplitude (0 0.02 0); + omega 0.628318530718; // rad/s + } + + /* + solidBodyMotionFunction tabulated6DoFMotion; + tabulated6DoFMotionCoeffs + { + // coefficients + timeDataFileName "<constant>/meshMotion.dat"; + CofG (0 0 0); + } + */ + } + } + + sources + { + T (1e-4 0); + } +} + +// ************************************************************************* // diff --git a/tutorials/basic/scalarTransportFoam/movingSource/constant/meshMotion.dat b/tutorials/basic/scalarTransportFoam/movingSource/constant/meshMotion.dat new file mode 100644 index 0000000000000000000000000000000000000000..696f47854f2c1f46543a44e856c8d329b636dc90 --- /dev/null +++ b/tutorials/basic/scalarTransportFoam/movingSource/constant/meshMotion.dat @@ -0,0 +1,18 @@ +4 +( + // Time Linear (xyz) Rotation (xyz) + (0 ((0 0 0) (0 0 0))) + (1 ((0 0.02 0) (0 0 0))) + (2 ((0 -0.02 0) (0 0 0))) + (3 ((0 0 0) (0 0 0))) + (4 ((0 -0.02 0) (0 0 0))) + (5 ((0 0.02 0) (0 0 0))) + (6 ((0 0 0) (0 0 0))) + (7 ((0 0.02 0) (0 0 0))) + (8 ((0 -0.02 0) (0 0 0))) + (9 ((0 0 0) (0 0 0))) + (10 ((0 -0.02 0) (0 0 0))) + (11 ((0 0.02 0) (0 0 0))) + (12 ((0 0 0) (0 0 0))) +) + diff --git a/tutorials/basic/scalarTransportFoam/movingSource/constant/transportProperties b/tutorials/basic/scalarTransportFoam/movingSource/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..76ec9e83f1d655886e159ecc7ec853807562722d --- /dev/null +++ b/tutorials/basic/scalarTransportFoam/movingSource/constant/transportProperties @@ -0,0 +1,20 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +DT 0; //0.01; + + +// ************************************************************************* // diff --git a/tutorials/basic/scalarTransportFoam/movingSource/system/blockMeshDict b/tutorials/basic/scalarTransportFoam/movingSource/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..713cd76c71bb7d639c4d2c70c79e4d34ec7822ae --- /dev/null +++ b/tutorials/basic/scalarTransportFoam/movingSource/system/blockMeshDict @@ -0,0 +1,86 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +scale 0.001; + +vertices +( + ( 0 0 0) + (100 0 0) + (100 60 0) + ( 0 60 0) + ( 0 0 1) + (100 0 1) + (100 60 1) + ( 0 60 1) +); + +blocks +( + hex (0 1 2 3 4 5 6 7) (100 60 1) simpleGrading (1 1 1) +); + +edges +( +); + +boundary +( + inlet + { + type patch; + faces + ( + (0 4 7 3) + ); + } + outlet + { + type patch; + faces + ( + (2 6 5 1) + ); + } + + upperWall + { + type wall; + faces + ( + (3 7 6 2) + ); + } + lowerWall + { + type wall; + faces + ( + (1 5 4 0) + ); + } + frontAndBack + { + type empty; + faces + ( + (0 3 2 1) + (4 5 6 7) + ); + } +); + +// ************************************************************************* // diff --git a/tutorials/basic/scalarTransportFoam/movingSource/system/controlDict b/tutorials/basic/scalarTransportFoam/movingSource/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..8735a5813765b0145a7aa24815a2e9e451360e26 --- /dev/null +++ b/tutorials/basic/scalarTransportFoam/movingSource/system/controlDict @@ -0,0 +1,48 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application scalarTransportFoam; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 10; + +deltaT 0.01; + +writeControl timeStep; + +writeInterval 10; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable true; + + +// ************************************************************************* // diff --git a/tutorials/basic/scalarTransportFoam/movingSource/system/fvSchemes b/tutorials/basic/scalarTransportFoam/movingSource/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..d3d702733f92cb2f92a2fbe4ea53fd5da332612f --- /dev/null +++ b/tutorials/basic/scalarTransportFoam/movingSource/system/fvSchemes @@ -0,0 +1,50 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default Euler; //CrankNicolson 0.9; //Euler; +} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{ + default none; + div(phi,T) Gauss linearUpwind grad(T); +} + +laplacianSchemes +{ + default none; + laplacian(DT,T) Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + + +// ************************************************************************* // diff --git a/tutorials/basic/scalarTransportFoam/movingSource/system/fvSolution b/tutorials/basic/scalarTransportFoam/movingSource/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..46993797ebcd0106a7d8ef407c8ff8e4029ed02a --- /dev/null +++ b/tutorials/basic/scalarTransportFoam/movingSource/system/fvSolution @@ -0,0 +1,35 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + T + { + solver PBiCGStab; + preconditioner DILU; + tolerance 1e-6; + relTol 0; + norm default; + } +} + +SIMPLE +{ + nNonOrthogonalCorrectors 0; +} + + +// ************************************************************************* // diff --git a/tutorials/basic/scalarTransportFoam/pitzDaily/0/T b/tutorials/basic/scalarTransportFoam/pitzDaily/0/T index 84f93f697da94cd255956a42904dc19418fc57a8..fb0e19fc60c63d9e0795d239c80082d1b030f6d6 100644 --- a/tutorials/basic/scalarTransportFoam/pitzDaily/0/T +++ b/tutorials/basic/scalarTransportFoam/pitzDaily/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/scalarTransportFoam/pitzDaily/0/U b/tutorials/basic/scalarTransportFoam/pitzDaily/0/U index 5af3d2df4f95fa311b3047b23a89a7d9b5da1e15..66793de5da984f75f3ed6802e5819fc2a540073e 100644 --- a/tutorials/basic/scalarTransportFoam/pitzDaily/0/U +++ b/tutorials/basic/scalarTransportFoam/pitzDaily/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/scalarTransportFoam/pitzDaily/constant/transportProperties b/tutorials/basic/scalarTransportFoam/pitzDaily/constant/transportProperties index 14ceeeb30f0254671c4e142f3a89f1c3beb9718e..45982bba93328cdb5960548f016b577a26bb6557 100644 --- a/tutorials/basic/scalarTransportFoam/pitzDaily/constant/transportProperties +++ b/tutorials/basic/scalarTransportFoam/pitzDaily/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/scalarTransportFoam/pitzDaily/system/blockMeshDict b/tutorials/basic/scalarTransportFoam/pitzDaily/system/blockMeshDict index 7709136f71bf3d75aabe2e4fe84e823e3769b6d2..1dd07e2117d137ed392c80db2629404a955e7fc2 100644 --- a/tutorials/basic/scalarTransportFoam/pitzDaily/system/blockMeshDict +++ b/tutorials/basic/scalarTransportFoam/pitzDaily/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/scalarTransportFoam/pitzDaily/system/changeDictionaryDict b/tutorials/basic/scalarTransportFoam/pitzDaily/system/changeDictionaryDict index fa3c21c472f9107415e4585c0bdf2c8566ed0f7a..798f58539d89fce4ac528978f48b0ffee9a3748b 100644 --- a/tutorials/basic/scalarTransportFoam/pitzDaily/system/changeDictionaryDict +++ b/tutorials/basic/scalarTransportFoam/pitzDaily/system/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/scalarTransportFoam/pitzDaily/system/controlDict b/tutorials/basic/scalarTransportFoam/pitzDaily/system/controlDict index 7cd4944c859544d9e233dd94ae1be40fcdf0811d..ccdea5f4b883ae92a57bd2055d4cb13c126d2f5e 100644 --- a/tutorials/basic/scalarTransportFoam/pitzDaily/system/controlDict +++ b/tutorials/basic/scalarTransportFoam/pitzDaily/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/scalarTransportFoam/pitzDaily/system/fvSchemes b/tutorials/basic/scalarTransportFoam/pitzDaily/system/fvSchemes index d840c8f410bc26e48b8f904a4db5a64401a5019e..176db8e123a54d87196acccc886d24cd18321fc0 100644 --- a/tutorials/basic/scalarTransportFoam/pitzDaily/system/fvSchemes +++ b/tutorials/basic/scalarTransportFoam/pitzDaily/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/scalarTransportFoam/pitzDaily/system/fvSolution b/tutorials/basic/scalarTransportFoam/pitzDaily/system/fvSolution index d275791014560fac2d9fc9deeab75acf333895dd..46993797ebcd0106a7d8ef407c8ff8e4029ed02a 100644 --- a/tutorials/basic/scalarTransportFoam/pitzDaily/system/fvSolution +++ b/tutorials/basic/scalarTransportFoam/pitzDaily/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/simpleFoam/implicitAMI/0/U b/tutorials/basic/simpleFoam/implicitAMI/0/U index 7a237278cdb948fbe8d69370dc3c68508298742b..4b980cde178bc0a547bf72993d3f812bcdcdff86 100644 --- a/tutorials/basic/simpleFoam/implicitAMI/0/U +++ b/tutorials/basic/simpleFoam/implicitAMI/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/simpleFoam/implicitAMI/0/p b/tutorials/basic/simpleFoam/implicitAMI/0/p index c08d2dfd5694454bd1b4e56b5667f0c44af4dc80..a853e262bda7ade9e1c38b12b47c1ebda928e83f 100644 --- a/tutorials/basic/simpleFoam/implicitAMI/0/p +++ b/tutorials/basic/simpleFoam/implicitAMI/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/simpleFoam/implicitAMI/constant/transportProperties b/tutorials/basic/simpleFoam/implicitAMI/constant/transportProperties index 924eb5940cae260e16ac26ab8bc7faa22c15f525..28b2c1e5d0222595e8dec45dfee33d66fe7cd1b0 100644 --- a/tutorials/basic/simpleFoam/implicitAMI/constant/transportProperties +++ b/tutorials/basic/simpleFoam/implicitAMI/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/simpleFoam/implicitAMI/constant/turbulenceProperties b/tutorials/basic/simpleFoam/implicitAMI/constant/turbulenceProperties index 963249f2fcae15b58e1e6edf55b1cc2b18f700e8..429f28d5a021cbe48636cc39abb648b6bce3f2eb 100644 --- a/tutorials/basic/simpleFoam/implicitAMI/constant/turbulenceProperties +++ b/tutorials/basic/simpleFoam/implicitAMI/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/simpleFoam/implicitAMI/system/blockMeshDict b/tutorials/basic/simpleFoam/implicitAMI/system/blockMeshDict index 85d430c6d3ab37f471eff95df0cd19bd5d1ee044..139e0db6b5afd0db4d83ba27a261326c19533097 100644 --- a/tutorials/basic/simpleFoam/implicitAMI/system/blockMeshDict +++ b/tutorials/basic/simpleFoam/implicitAMI/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/simpleFoam/implicitAMI/system/controlDict b/tutorials/basic/simpleFoam/implicitAMI/system/controlDict index 7a0228eac2f363465e44510543a166d18d1976ac..3a933e8408c041118775a3b6de4c3d8820bb4bd3 100644 --- a/tutorials/basic/simpleFoam/implicitAMI/system/controlDict +++ b/tutorials/basic/simpleFoam/implicitAMI/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/simpleFoam/implicitAMI/system/decomposeParDict b/tutorials/basic/simpleFoam/implicitAMI/system/decomposeParDict index f011d82c2a93688a29bbf57efdbadc0daddb28b0..ab2e236ff6dc0e4cf28c0d4e820ab88b0753f750 100644 --- a/tutorials/basic/simpleFoam/implicitAMI/system/decomposeParDict +++ b/tutorials/basic/simpleFoam/implicitAMI/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/simpleFoam/implicitAMI/system/fvSchemes b/tutorials/basic/simpleFoam/implicitAMI/system/fvSchemes index 5f00bea11777b00bef02450081a8324c5e726a0a..7e9a9ba74100f1c9fe0ca48feec28153ef6f27e7 100644 --- a/tutorials/basic/simpleFoam/implicitAMI/system/fvSchemes +++ b/tutorials/basic/simpleFoam/implicitAMI/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/basic/simpleFoam/implicitAMI/system/fvSolution b/tutorials/basic/simpleFoam/implicitAMI/system/fvSolution index 75ab7a267d056b57aa880daaf826ca27eb94afbe..c6c36d4441a145238e3a8ccc1bb86aec146460b8 100644 --- a/tutorials/basic/simpleFoam/implicitAMI/system/fvSolution +++ b/tutorials/basic/simpleFoam/implicitAMI/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/PDRProperties b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/PDRProperties index 0497a6ff6211c391fe1a8fe8cb9d664ee2441be6..bbeb230f7a41b950397d504c77f06325eb4cd0c8 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/PDRProperties +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/PDRProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/combustionProperties b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/combustionProperties index c5efa4214d3455550d1fe4c50374d008ab8f94c9..59ff671482d2e065972a3d1060a4cc0fca2359fe 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/combustionProperties +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/dynamicMeshDict b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/dynamicMeshDict index d3ed6c8d01ffb6de38ff108c38db068c73c017d3..426cab78837cad4a0d708e60c641cdd14d83210c 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/dynamicMeshDict +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/g b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/g index f1ac736cb343c2c965b64565fd3352e6a35ab943..ee6cc230a537a964d80bd42284ab85b71f7458d7 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/g +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/thermophysicalProperties b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/thermophysicalProperties index 4ce4270940cd638375cabe62c08b95cae1f38c33..53c11d43d9bd7b469aace2b1ccdf57d05f37e1b1 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/thermophysicalProperties +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/turbulenceProperties b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/turbulenceProperties index 255878cd74ae37f2059de663af090edb7fe87117..52678288e110bc6186e09fa9fb406c16adc01a15 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/turbulenceProperties +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/PDRMeshDict b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/PDRMeshDict index e643ec019a413bf4ee663cdf7e7fab6b99479797..2725bc890a07105b90d3401fdd508f1282120b57 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/PDRMeshDict +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/PDRMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/blockMeshDict b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/blockMeshDict index 98fca85635e194355a0810d64ff5991f3400b6df..ad3d3fde79fa9e9b827ce93508c37ddced2ba69c 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/blockMeshDict +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/changeDictionaryDict b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/changeDictionaryDict index 84c5092eba10171499ec8c3058183f94340f8ba6..5794633806b98d538a34426526261474b3e43f35 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/changeDictionaryDict +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/controlDict b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/controlDict index 5a2a70d0fec51b9b255cebbcf7e654c97844b43b..60a17690ac307544b3e0a1fbc2ce139d8961e963 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/controlDict +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/decomposeParDict b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/decomposeParDict index fa332cb29eab0ce50a710b2f5e53a8855d59674f..b8ea4d97f8515cd6a74f5a982d660b22c8ab7d85 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/decomposeParDict +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/fvSchemes b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/fvSchemes index efc5c0081f693921967fcc016acdbf7f4f8c516d..0873f1f642b08b037af084c0569c2642bad6a731 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/fvSchemes +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/fvSolution b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/fvSolution index 7614d4f1335c0e19665d900dd8aac5cb93c17ddd..0995ffd3eb6c3be949c3f0764f81867b3f2bf58f 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/fvSolution +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/topoSetDict b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/topoSetDict index 1966755c0f488da4e542ee8f9619ee1a9a8be1e3..385ca34dd8d4506fbf5cae0814c944db3e99355d 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/topoSetDict +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/GRep b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/GRep index 285490f640a8d931345ed14261271bda00da3848..c1172862156132f46f455f2d4834b02d6cf7bd51 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/GRep +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/GRep @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/GRxp b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/GRxp index 5fc38aaace929571ee8b968f27f674270b78211b..1bf850a945314e0656fcf4df9cd1a541fe33c887 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/GRxp +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/GRxp @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/RPers b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/RPers index eb331933cced0cc0a0488808768af3a491dd4c5e..783320cd3b1903b20366f474afc8d194bb264119 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/RPers +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/RPers @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Su b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Su index cd24f1d7297ed928498c76e68eeacd4499450184..3753e2029cd6e06897e6533ebfbb149ecf421d3b 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Su +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Su @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/T b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/T index 1069a3837f61a2ee2099c05511d234c22c3130b8..9757daf4afcd7c65aa21244e94d625062a999726 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/T +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Tu b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Tu index 97c907d86ac8df66224875c6705aa8eeb88d8c3f..ecde1c9e116fd9a17ee7c3817eaa7a2164d4e597 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Tu +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Tu @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/U b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/U index b1d15c15998b70f9684809dc7b7080ae7e4a0a5e..1735a101c22fd3605902c2730d4669b7e02f7576 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/U +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Xi b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Xi index 576f26f619cde3bb0afacce3b890d4b4820d8027..2966da245a808a7ad4abffc0556b2091b4f0c666 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Xi +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Xi @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Xp b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Xp index 34466945f1a70d6e022fdcf405c9ea6b03976648..f4842628e07e60b2fc2e31bd7f10944d3af04c36 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Xp +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/Xp @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/b b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/b index 91337279384557792292a52f0c68c126fc27771f..469d0f236ac43eb105bc004a841ecfeb7c6de813 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/b +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/b @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/epsilon b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/epsilon index 38c6886373999dfa2dddbae7520ad1c6cd6295ae..1da0c3383143f9f018f8020af4384598959693b5 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/epsilon +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/ft b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/ft index 06c8df8552bbc97ae081a779b3fa45cf65f077af..c167ad348e8d40dc0892d8bec02511255199d0da 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/ft +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/ft @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/k b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/k index 1e02334b2d250988f6eb5f29b478abe7a56adefa..45c1dabd47c68ca065aa45b0a469d9c873c7a13b 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/k +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/nut b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/nut index 9d3bb5d6dc6e011efb7e0c3cf77acf76ef909a5a..3da78be39ef3e12a7ef1db664d0fc6784ee76837 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/nut +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/p b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/p index 59db7e38d52cce9facf610532901888d8018855d..cb6872e33ce14a515f29528792128368663a3ac9 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/0.orig/p +++ b/tutorials/combustion/PDRFoam/pipeLattice/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/constant/PDRProperties b/tutorials/combustion/PDRFoam/pipeLattice/constant/PDRProperties index 0c22ed04ef6f3c580bcd891f00014e491758170f..c72804f6132fa6e541eba326d36b8b9f5c3c56fb 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/constant/PDRProperties +++ b/tutorials/combustion/PDRFoam/pipeLattice/constant/PDRProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/constant/combustionProperties b/tutorials/combustion/PDRFoam/pipeLattice/constant/combustionProperties index f337a5607d3a53f68b837dea466558aa9f3a278b..8a74f296d258ac3d5bd419cd6402b9cf4b89b0c5 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/constant/combustionProperties +++ b/tutorials/combustion/PDRFoam/pipeLattice/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/constant/g b/tutorials/combustion/PDRFoam/pipeLattice/constant/g index 928d2b1e466fc410131956ca18c8f91f9821433e..b40cad43bcbbba0df6b4b5a1e096e28f8f1479b5 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/constant/g +++ b/tutorials/combustion/PDRFoam/pipeLattice/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/constant/thermophysicalProperties b/tutorials/combustion/PDRFoam/pipeLattice/constant/thermophysicalProperties index 11f08045fda2d9b3fa9aa458e53d33278ee707fb..e5b7fc938e7a0b7cbfd3ceeb53c31781ddaaa887 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/constant/thermophysicalProperties +++ b/tutorials/combustion/PDRFoam/pipeLattice/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/constant/turbulenceProperties b/tutorials/combustion/PDRFoam/pipeLattice/constant/turbulenceProperties index 4b618bee5cf760c5c07d74272d92fbca3a70503d..beacfc646b33ccc9e968f233287577d688b2d49b 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/constant/turbulenceProperties +++ b/tutorials/combustion/PDRFoam/pipeLattice/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/geometry/obstaclesDict b/tutorials/combustion/PDRFoam/pipeLattice/geometry/obstaclesDict index 098fd0d58c47f8a1f379ff0e6d247d11510306f8..ba6c6beeda4086b56f64a790cad92b34e1a04e28 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/geometry/obstaclesDict +++ b/tutorials/combustion/PDRFoam/pipeLattice/geometry/obstaclesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/geometry/pipeLattice b/tutorials/combustion/PDRFoam/pipeLattice/geometry/pipeLattice index ec5826c7546490f50e69269fa057d04e1b204520..df87731a7b0ba6377c77479b80e0c26ca5de1956 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/geometry/pipeLattice +++ b/tutorials/combustion/PDRFoam/pipeLattice/geometry/pipeLattice @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/system/PDRblockMeshDict b/tutorials/combustion/PDRFoam/pipeLattice/system/PDRblockMeshDict index f5b40bc7aef8112e88ee94f56faad7c9a000f2a0..dfa36619017d41418c5713a39ae4b0a9efaad4c3 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/system/PDRblockMeshDict +++ b/tutorials/combustion/PDRFoam/pipeLattice/system/PDRblockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/system/PDRsetFieldsDict b/tutorials/combustion/PDRFoam/pipeLattice/system/PDRsetFieldsDict index 448aca6b6336cef2eb1461fc9e7b44750e3827c3..358fccdcb2eb99dd6a80e3ccf5693bd3997679b9 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/system/PDRsetFieldsDict +++ b/tutorials/combustion/PDRFoam/pipeLattice/system/PDRsetFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/system/controlDict b/tutorials/combustion/PDRFoam/pipeLattice/system/controlDict index e6b76df34430c842c2db22f08cca2346b44b58bc..ae15dfb18d42af2a1978dccc6837161d71c9e37d 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/system/controlDict +++ b/tutorials/combustion/PDRFoam/pipeLattice/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/system/fvSchemes b/tutorials/combustion/PDRFoam/pipeLattice/system/fvSchemes index e0c02bfca54705300760013572067e23562cb7fc..498193b9c3adb0675b381ec201365ac6bffe4ab3 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/system/fvSchemes +++ b/tutorials/combustion/PDRFoam/pipeLattice/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/system/fvSolution b/tutorials/combustion/PDRFoam/pipeLattice/system/fvSolution index e07dcb5103ad1720edd7581b3e4eccf25ab01142..b6932c164caf66df54ba37eaea851455f4ca590f 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/system/fvSolution +++ b/tutorials/combustion/PDRFoam/pipeLattice/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/system/probes b/tutorials/combustion/PDRFoam/pipeLattice/system/probes index d2b51d67873dc1d25e769ddb1646fab8e716cf07..58800f8a54d4afa27966dad9d642626f79a148a8 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/system/probes +++ b/tutorials/combustion/PDRFoam/pipeLattice/system/probes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/system/setFieldsDict b/tutorials/combustion/PDRFoam/pipeLattice/system/setFieldsDict index 569914844d4d7f9d0262a53b7de3eb7d4faaf122..b64aab08add56276c66ef6383faa9506aed0c57f 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/system/setFieldsDict +++ b/tutorials/combustion/PDRFoam/pipeLattice/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/PDRFoam/pipeLattice/system/topoSetDict b/tutorials/combustion/PDRFoam/pipeLattice/system/topoSetDict index 8c9558def6cbf06b61d76c488bd33e7236529174..55f6604528a508ae5f0911a8aa1ed2b988ffcabe 100644 --- a/tutorials/combustion/PDRFoam/pipeLattice/system/topoSetDict +++ b/tutorials/combustion/PDRFoam/pipeLattice/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Su b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Su index e7ae69530fbaef0bb10cdb2b2412aef354024b19..92328c48d597243dbe399bacc8e8c71edf8a0311 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Su +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Su @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/T b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/T index 5a084b5401e4cc68a87e167c8d98a462bce6001e..48b1799947da0005c94ad647efe19cd2cebd62ab 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/T +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Tu b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Tu index 0d9a1dda53e10ca4c98b3650ed1215ed17beb895..40c94d8f3bb9dac3854ea5425ba560faec9daded 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Tu +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Tu @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/U b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/U index d338ecd1f384934eb348f9b3af15382b067e6884..017f5db7df1469757f8ce3a05ee8fc7e96124a3c 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/U +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Xi b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Xi index f00a0b9f1ea7f6d94f06bab41525f8bda0f38746..0fa861b9912f1c517abdf3d6cb71fb54b5efb7fd 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Xi +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/Xi @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/alphat b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/alphat index a6ababb4ccf1a4a39152e8c8d3d504a84d79752a..1f42df80ffd817b80cc1243b30a20532063f7534 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/alphat +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/b b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/b index bd176a12642580e4e450b0a2c748736f16d54149..8ca8dd2442616e1b4d6061d6fc747300bbddd686 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/b +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/b @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/ft b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/ft index 398804226a158ac2bdbeb7e2e716e1566670b3d1..774cbfda5b5068ec32e3a8563871564f6bb88c3b 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/ft +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/ft @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/k b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/k index ab2ef13189aeacfd40a93616dc1ab5eb24a8a159..147ac10666699d07efc0a8c857099743318d7886 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/k +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/nut b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/nut index 1afbc967f3fbc98f3a8e012f9dfd7bac31037f5a..be05f1827456f5917cd35c2e6edddbff8180586b 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/nut +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/p b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/p index 4f437b5442497c0c1cb7eab4f8928aa0d8524b5b..c323abf9c74f529aeeecae3269afecdde1818406 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/p +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/pPotential b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/pPotential index ab805fe28a31e116b81df9cc4f27a16c2b1fc271..c7e8ea0a2e36057b2f368604cea7337e3f1033de 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/pPotential +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/0.orig/pPotential @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/combustionProperties b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/combustionProperties index 2fa7fffe73174b4c131556d582dcaafb68c75e2a..70a2358b8a2911f8eaa2bd5e978f185516480ce9 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/combustionProperties +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/dynamicMeshDict b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/dynamicMeshDict index 3e3aaf4eeff2f908eb66a06a267c47096060428f..731392de814534aa376d4637abdb570b73595e58 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/dynamicMeshDict +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/g b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/g index 928d2b1e466fc410131956ca18c8f91f9821433e..b40cad43bcbbba0df6b4b5a1e096e28f8f1479b5 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/g +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/thermophysicalProperties b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/thermophysicalProperties index e812ac97705a62e0d8e90d2121b497c196b016e9..830e40706f9f86a77da69484e80a6d3f4cba8f0b 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/thermophysicalProperties +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/turbulenceProperties b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/turbulenceProperties index dd7bb103f5f820c253f3dc05fac72ea29558af3c..9ecf72d898e4fe59173362975433b715788a5757 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/turbulenceProperties +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/FOXiReactionRate b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/FOXiReactionRate index c2dfeda31aa875da1ddfa2b8c6e303a8bad117ec..e0aaef52561d3695eee41f885f323463bbfe21e6 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/FOXiReactionRate +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/FOXiReactionRate @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/blockMeshDict b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/blockMeshDict index 750ab314fded0c022a306f1622e2bad2eeb3ca9b..4db2d3699dc8d1d744afd29564854a0ec5739345 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/blockMeshDict +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/controlDict b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/controlDict index 57c59550ed3905fd6862844563ec9c7f1e3dfcd9..e46fdf0f9c57a60e29a02c49119b88def9c78980 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/controlDict +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/createPatchDict.ami b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/createPatchDict.ami index 1127c38ce63606c37c92f8cf34f7806c91ea137f..dedffbc1b30114324c1cdb9b7d578904b917cce8 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/createPatchDict.ami +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/createPatchDict.ami @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/createPatchDict.cyclic b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/createPatchDict.cyclic index 7ee55cbd39205a54ce37116f606b728280a57c66..9abb92345ba16af8e460fd3f8b4dd6a5a3f57add 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/createPatchDict.cyclic +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/createPatchDict.cyclic @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/decomposeParDict b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/decomposeParDict index ac1918925fcb567afa95d678bd405bda771f5084..5d912a2fe2bcb37bbcf393b775174e68de9a829b 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/decomposeParDict +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/fvSchemes b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/fvSchemes index be5783c31291050b530cdedada5bfcdc9c52d46a..7291d24a32e4cdb197f1e0d6699ca23b3defd5e7 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/fvSchemes +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/fvSolution b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/fvSolution index 7a5c43bdfdb7c5fc30340fb6357ef42aba78438b..c30a0c5c9157c422408d89ee2128801b2d03d0f2 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/fvSolution +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/meshQualityDict b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/meshQualityDict index c2eac80361e36d829e361f1f04bdc37e60bebac9..293b12cf1b6da1c33dac9ae6f47bf2d29a2624ac 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/meshQualityDict +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/snappyHexMeshDict b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/snappyHexMeshDict index a19fcfc2d3f411b6dc950c5f15a078e3a0957b9e..917081358a07afdd582ac82411e759f0cf6c2cf3 100644 --- a/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/snappyHexMeshDict +++ b/tutorials/combustion/XiDyMFoam/annularCombustorTurbine/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Su b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Su index 597c467a88e2200c81b388eac10aa09c3756fa3d..c8b57511b798c30c486d1a833ec4c2789ec772cf 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Su +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Su @@ -1,7 +1,7 @@ /*---------------------------------------------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/T b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/T index d9fd7bec1531e5aa48e66c728f4abf9f69463b7f..933db19ed4e9fdea4c8569a5b56f2d03bb1e4f1e 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/T +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/T @@ -1,7 +1,7 @@ /*---------------------------------------------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Tu b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Tu index 483302ce5372130ab92556faca5887ef4e2c2249..16821bb18a7b07676ea9194587719641e423cde0 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Tu +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Tu @@ -1,7 +1,7 @@ /*---------------------------------------------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/U b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/U index bdfe9487adb5e60238c453f2273fe7aed3126bd7..688ae14ac7a8b204a62e6143c22889a3e184cdfa 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/U +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/U @@ -1,7 +1,7 @@ /*---------------------------------------------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Xi b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Xi index 4507d541b429e29393bb8af3fa016a0e85ebd012..41155a95841fc01b405fe01307fd726696ce4bad 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Xi +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/Xi @@ -1,7 +1,7 @@ /*---------------------------------------------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/alphat b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/alphat index 0dafa0c92e578372147c1c032ef5c173cf5134c1..48de044fe484846d9200787d46d2a44740f4ffa1 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/alphat +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/b b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/b index 2dea632d215b2c56ae13f0302fa07ebbe048f64b..6edd4f0d5ef2fae42b34ce6a09c815535f3c172d 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/b +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/b @@ -1,7 +1,7 @@ /*---------------------------------------------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/epsilon b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/epsilon index b7b81519255ef8739bddefe2f717c2a8ab4e4d55..9d62fdadb6a06352cf489157e09caf48e6ca4d9d 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/epsilon +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/ft b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/ft index 71c254f6a954956e9bd1158773cca7fb819ca2a6..c68b44ea67b9ea26632638bbfebcd62c9374ed59 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/ft +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/ft @@ -1,7 +1,7 @@ /*---------------------------------------------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/k b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/k index 29fc78c009b7c422e25e7d5ad515874ccb851945..b41424485f65d148cd8982202725921138c2752b 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/k +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/nut b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/nut index 920a9e533629b67d5c58b035a5f465f987b7b498..8d1e3cf3a9e536bfa0053c2c9f78054023a86435 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/nut +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/p b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/p index cef520f6c8a64cc1dc8280efefe1d321a4294d20..98abc3377982aa0234dd762bd1e271898a04e1ee 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/p +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/p @@ -1,7 +1,7 @@ /*---------------------------------------------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/pointDisplacementy b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/pointDisplacementy index 23fd0e54cd90d4a594fd306771dc59e84aec4480..5da62dec8d39dd4af34376038886988b402bae5a 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/pointDisplacementy +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/0.orig/pointDisplacementy @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/combustionProperties b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/combustionProperties index d1a36fb365b133a87309520bf04f4fc4080ae4e8..a0ce8036dd943b9d0a997a6ccdf49eb0160797de 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/combustionProperties +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/dynamicMeshDict b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/dynamicMeshDict index f849005c680c697b2c3aff4fd291c1d3314973ba..7cead4561d3dcb7ded94b1b6af0f4ece90ff629e 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/dynamicMeshDict +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/g b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/g index 928d2b1e466fc410131956ca18c8f91f9821433e..b40cad43bcbbba0df6b4b5a1e096e28f8f1479b5 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/g +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/thermophysicalProperties b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/thermophysicalProperties index 50db76c3caaed6e790ee1a48f6612b9aeea0d0bf..f2b3ca3b26bfb206cc84c02215194481f207f447 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/thermophysicalProperties +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/turbulenceProperties b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/turbulenceProperties +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/blockMeshDict b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/blockMeshDict index 73b59ec801b797c71c715a5637f3d137971e66f7..b2e9115cb4c5e4820dcef47150ccaa68e4cf8b62 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/blockMeshDict +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/controlDict b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/controlDict index f5ab1ec2bd8fb884668bf72c3b798d5eef79bbc1..9f5cf1ac9adb7d22eea77142222535f21cf42b4b 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/controlDict +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/fvSchemes b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/fvSchemes index 8a17595032d7f1642b2f06f750e2650a5e9440ea..fa2e5bbeb2ca97a183f4786d241a590985deea5f 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/fvSchemes +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/fvSolution b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/fvSolution index 2b4a378296be83427935f949ca86bc749a46c4b7..47e4f682fa3c397898387802eccdf03d135f19da 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/fvSolution +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/Su b/tutorials/combustion/XiEngineFoam/kivaTest/-180/Su index b2cd35a9f6e1022dc38a8eeb5f877bcccc0f64c4..67313f82a961ff66630f9971a6cb3c9cfa7cc674 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/Su +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/Su @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/T b/tutorials/combustion/XiEngineFoam/kivaTest/-180/T index c23e15059a0518a7a8e593794b36667ee8765f50..5022cf93cba4aca8be460e4592cac0aa32906da5 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/T +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/Tu b/tutorials/combustion/XiEngineFoam/kivaTest/-180/Tu index 034046e124e5417797dcd13c8490bbb3a2a31c7d..fbe0d710f57ae635cac25b1cc25d7e36e97ec22a 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/Tu +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/Tu @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/U b/tutorials/combustion/XiEngineFoam/kivaTest/-180/U index 9e58fe6b116fd0d9b55fe46ccc7783a7e602618a..fd2548dea7362a9c2b1f548ee737fb39a4df77c5 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/U +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/Xi b/tutorials/combustion/XiEngineFoam/kivaTest/-180/Xi index f07fd0d875836596b0983b744079285e69330e6d..dae9ab0d12ac659a870d3791e87663b0fedd4a96 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/Xi +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/Xi @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/alphat b/tutorials/combustion/XiEngineFoam/kivaTest/-180/alphat index b52c3609da89827126ff718147e4464e8a75698f..77208a8c06ba0eefa3483bd1ca01f2206dd0cf89 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/alphat +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/b b/tutorials/combustion/XiEngineFoam/kivaTest/-180/b index 0f8d9c02637a3fc39dd733c682dae70d7298c732..6a7b40f81e8339d68fb47271c92b9e1839f4c40e 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/b +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/b @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/epsilon b/tutorials/combustion/XiEngineFoam/kivaTest/-180/epsilon index ada7f2bafaee4594df72d8dfa10e7dfd3ec0a9b1..ca80e4ca2f0799d20170df6b50aec697c6e844fa 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/epsilon +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/ft b/tutorials/combustion/XiEngineFoam/kivaTest/-180/ft index c962f9a9d9e18e6823b25bbe9943af6b3813093f..0399e231c0907522f164f29b38adbb129fa47654 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/ft +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/ft @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/fu b/tutorials/combustion/XiEngineFoam/kivaTest/-180/fu index eb3777b5bd7f64db8f9f0a7b38c5205c56b250aa..232e2ea149adc24f230d056c17f2b5d34a81cdd3 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/fu +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/fu @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/k b/tutorials/combustion/XiEngineFoam/kivaTest/-180/k index 3a3e9a5277ff19663a207f0225bbb4ab92059bed..0deccd86d0b983c0dc4e4c3ee5e1ffc0fffef69a 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/k +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/nut b/tutorials/combustion/XiEngineFoam/kivaTest/-180/nut index 1ab59b8403e77ed49427be609952529a89d4ff2a..84115bab561cac65b90746f482a10f87e72da63b 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/nut +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/-180/p b/tutorials/combustion/XiEngineFoam/kivaTest/-180/p index 55dc5bae72a99f0bbb3770d28fae6a70fe78f374..05bb2ded284892b2ddd421f20342434ee0b46035 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/-180/p +++ b/tutorials/combustion/XiEngineFoam/kivaTest/-180/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/constant/combustionProperties b/tutorials/combustion/XiEngineFoam/kivaTest/constant/combustionProperties index 8df21d63dde56637954b5b0194e6cef29dd7099c..ae04d6ebb1933abb2c54e1e2c094a0c35d7b2e8a 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/constant/combustionProperties +++ b/tutorials/combustion/XiEngineFoam/kivaTest/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/constant/engineGeometry b/tutorials/combustion/XiEngineFoam/kivaTest/constant/engineGeometry index 4021d2221e77eff68ead6e644aad34f70783e351..4c03e5a2a044f66921654cbc332e3fd06d42eb9d 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/constant/engineGeometry +++ b/tutorials/combustion/XiEngineFoam/kivaTest/constant/engineGeometry @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/constant/thermophysicalProperties b/tutorials/combustion/XiEngineFoam/kivaTest/constant/thermophysicalProperties index 7d7e6f54f0b16f63054c75451c7f6d9a4ef3adad..5ace93e4deed53f14e23cbb8612e5eb6e1f1acbf 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/constant/thermophysicalProperties +++ b/tutorials/combustion/XiEngineFoam/kivaTest/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/constant/turbulenceProperties b/tutorials/combustion/XiEngineFoam/kivaTest/constant/turbulenceProperties index 1e35b3f25133c37a473e97ee3050253ed9de0e92..99fd5171f4d6fd0d67c83f05e4c30b9768844432 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/constant/turbulenceProperties +++ b/tutorials/combustion/XiEngineFoam/kivaTest/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/system/controlDict b/tutorials/combustion/XiEngineFoam/kivaTest/system/controlDict index 395385d1ae11a5e51c63c1d8a7a42cb76f31d45d..d36a93ac37195778a063366234cc10aea02631af 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/system/controlDict +++ b/tutorials/combustion/XiEngineFoam/kivaTest/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/system/decomposeParDict b/tutorials/combustion/XiEngineFoam/kivaTest/system/decomposeParDict index 1807d1e19437e40d36f43e7edc98f62509034888..8c082056663b3c3b39e3fe9c7f93a5fe5085fddc 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/system/decomposeParDict +++ b/tutorials/combustion/XiEngineFoam/kivaTest/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/system/fvSchemes b/tutorials/combustion/XiEngineFoam/kivaTest/system/fvSchemes index 37a83c13ed55cbf799636324ea443cd3c0603c8d..db1fd72e91ce77688890bd256bdbe7c858aafeec 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/system/fvSchemes +++ b/tutorials/combustion/XiEngineFoam/kivaTest/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiEngineFoam/kivaTest/system/fvSolution b/tutorials/combustion/XiEngineFoam/kivaTest/system/fvSolution index 6533f9d931af5a77395b959b1e8489ba233dcc30..0662a07e4e4ac8959709147a6932b58897d0f32c 100644 --- a/tutorials/combustion/XiEngineFoam/kivaTest/system/fvSolution +++ b/tutorials/combustion/XiEngineFoam/kivaTest/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Su b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Su index 85a74528d991a1f1123d7e4669ec4c3346496f6b..b69e30d3fc14719291f28b49191b8b177b81d184 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Su +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Su @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/T b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/T index 2b6d2a6a567fea3cae532ee0af07d5520985b9b8..f3a64bbf2af71efb6dac15864437729aa7f0999b 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/T +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Tu b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Tu index 13e38e548b52b986cd15fcf8412950278537653a..bcfd923bc8e28c782a9a2f05089faee0d7d6f368 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Tu +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Tu @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/U b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/U index 6bb50f87ee2e6ecd5d46a2fad6833dc785bb0fbe..312984f7bf174458e83ab756d51f2f131e5a7b61 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/U +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Xi b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Xi index 0cf21fab44f750359ba375ee471a6e94bd57bddc..e360ac959e344aabbb981db1ddee03b99a2fd3ec 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Xi +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/Xi @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/alphat b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/alphat index 53eb944664238b515356b80a92777a2482475ad6..bffcb7f2316397c7d1cf408027a41c0e8aedf7b1 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/alphat +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/b b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/b index f9e2f182ed0a7c8a243f591f20f5bed29669afe1..53f8a28aa436f10898e5dabaaf9f51934990cbca 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/b +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/b @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/epsilon b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/epsilon index c3631957eac829c76c7542bd71082d3e7e479698..f6ebbdf1ef0d37fd043e26a5b705101c37e6f310 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/epsilon +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/ft b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/ft index 4e6963d815e52d9fa94670c9c6fb371f9b5346e9..568fb4e56612a866d01b43347ee07002de538c6f 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/ft +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/ft @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/fu b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/fu index dede70894074696caba3ea4d132260fca96576cb..242f6d81c49f966a21fbf3178bb0528d06bdb2ff 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/fu +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/fu @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/k b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/k index 7f4c0389518fbff0d4ac31a668c85441e00887be..8a6da95ad4c206835e1d3dfa7feec11755a2fe88 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/k +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/nut b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/nut index 04ce9f28116baeca3e402d8aa7f515377cdfaefc..b328a49b594181231cf0ad98dcc041bdbe24c811 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/nut +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/p b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/p index 16a1e178fa2dc82fc26751b0c413c7255582e844..045893a599fa5f6ab1c8fc9fd68d86b5d340fb3c 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/p +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/combustionProperties b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/combustionProperties index 0c101003b49b0a9430ca71282cba10a594963cd0..43fd1407408ce245ed2ac5ca72acf9cc0473140a 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/combustionProperties +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/thermophysicalProperties b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/thermophysicalProperties index 3b88b59c39f00084802d14eb0397751e4c326e74..2e26c6d72771df0117c06f9298cf2461840103a4 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/thermophysicalProperties +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/thermophysicalProperties.hydrogen b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/thermophysicalProperties.hydrogen index b1367f388d0405ccddb3b196aae292db81fb341f..bb6bc6c50ce2b35272d11038f2d4610d6d8cf31b 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/thermophysicalProperties.hydrogen +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/thermophysicalProperties.hydrogen @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/turbulenceProperties b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/turbulenceProperties index 43f16675b4a46f10504d32f1041ea4c3f22fd529..5267c47501604c5f51769668d77b135bbfa011c3 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/turbulenceProperties +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/blockMeshDict b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/blockMeshDict index 83b3080ed1cd8ea93c2de1ad0e9527bfd7da9189..7ddbfbe80bd7c6b81370a7fe84cd3277ebd75e22 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/blockMeshDict +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/controlDict b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/controlDict index 833cf3d1f06ec04c6d3de1984d48f2ef371009db..951628b441d77792cc12f5b3307dc04472a1f313 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/controlDict +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/fvSchemes b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/fvSchemes index a8bd5621b67f08d1348ea1691e939ada9aa7eb8c..79fc2c139f7c1536f3137bd7e7fbb47e40ee256b 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/fvSchemes +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/fvSolution b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/fvSolution index e85229a7975a93003eb9d0e3dab4901265387057..169857449cb9869d325a7d7a821b9970695a8e61 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/fvSolution +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/gri/chemkin/transportProperties b/tutorials/combustion/chemFoam/gri/chemkin/transportProperties index 0c87da4eb99c311d457104766b37e086a2af4709..07cf40f041c612e8a3b35e5b45efb7ea6515693c 100644 --- a/tutorials/combustion/chemFoam/gri/chemkin/transportProperties +++ b/tutorials/combustion/chemFoam/gri/chemkin/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/gri/constant/chemistryProperties b/tutorials/combustion/chemFoam/gri/constant/chemistryProperties index 9e3689a670f4e2dc98d45c2acd4280e6b6ec3474..f68f6c9a5383ff4d1a0d761eb244aa02ba38ca0b 100644 --- a/tutorials/combustion/chemFoam/gri/constant/chemistryProperties +++ b/tutorials/combustion/chemFoam/gri/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/gri/constant/initialConditions b/tutorials/combustion/chemFoam/gri/constant/initialConditions index 9e7c79b92b43cfd89f49800e7e605eb2de1174f4..5922fc52b1f1c1cb1fad583c20e6d35c3820a8f8 100644 --- a/tutorials/combustion/chemFoam/gri/constant/initialConditions +++ b/tutorials/combustion/chemFoam/gri/constant/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/gri/constant/thermophysicalProperties b/tutorials/combustion/chemFoam/gri/constant/thermophysicalProperties index c5a2b5ae07f716dca1969fa734014de1c11baca4..7b946bbcae6fd797a294faa30d1114a7abbb2b36 100644 --- a/tutorials/combustion/chemFoam/gri/constant/thermophysicalProperties +++ b/tutorials/combustion/chemFoam/gri/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/gri/system/controlDict b/tutorials/combustion/chemFoam/gri/system/controlDict index 719bfc46ebf54ac893c38b7a5d0e97d1a748b109..80f4cd6b41a4e387574281d2772a07de472915d1 100644 --- a/tutorials/combustion/chemFoam/gri/system/controlDict +++ b/tutorials/combustion/chemFoam/gri/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/gri/system/fvSchemes b/tutorials/combustion/chemFoam/gri/system/fvSchemes index f7510980e9472f021d24bee6d73644baf72f44ff..a072cacba6e9a2c3196640ab03385350d4b1173e 100644 --- a/tutorials/combustion/chemFoam/gri/system/fvSchemes +++ b/tutorials/combustion/chemFoam/gri/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/gri/system/fvSolution b/tutorials/combustion/chemFoam/gri/system/fvSolution index 315c1dd0cfa4611f69945abf390c9d61572b63cc..794807ffeebd32776bced161090a2a7c7cdebfb8 100644 --- a/tutorials/combustion/chemFoam/gri/system/fvSolution +++ b/tutorials/combustion/chemFoam/gri/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/h2/chemkin/transportProperties b/tutorials/combustion/chemFoam/h2/chemkin/transportProperties index 0c87da4eb99c311d457104766b37e086a2af4709..07cf40f041c612e8a3b35e5b45efb7ea6515693c 100644 --- a/tutorials/combustion/chemFoam/h2/chemkin/transportProperties +++ b/tutorials/combustion/chemFoam/h2/chemkin/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/h2/constant/chemistryProperties b/tutorials/combustion/chemFoam/h2/constant/chemistryProperties index 9e3689a670f4e2dc98d45c2acd4280e6b6ec3474..f68f6c9a5383ff4d1a0d761eb244aa02ba38ca0b 100644 --- a/tutorials/combustion/chemFoam/h2/constant/chemistryProperties +++ b/tutorials/combustion/chemFoam/h2/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/h2/constant/initialConditions b/tutorials/combustion/chemFoam/h2/constant/initialConditions index de5482f16d5d64041a837bf875c30ba5a670ee01..8b0f33431309002c91bc9186ced0f91c441bd7a4 100644 --- a/tutorials/combustion/chemFoam/h2/constant/initialConditions +++ b/tutorials/combustion/chemFoam/h2/constant/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/h2/constant/thermophysicalProperties b/tutorials/combustion/chemFoam/h2/constant/thermophysicalProperties index bfce150f7fd40ad92427f7e1f3ea16567b1125f8..00cdbb84b6ccafdd7c8cee9ad6b501fa95d14f53 100644 --- a/tutorials/combustion/chemFoam/h2/constant/thermophysicalProperties +++ b/tutorials/combustion/chemFoam/h2/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/h2/system/controlDict b/tutorials/combustion/chemFoam/h2/system/controlDict index b4d027e42f1275d759c6eed4a0034f687e5740c2..7394501b7ad1a1bda0115b1027465eec28eb0b73 100644 --- a/tutorials/combustion/chemFoam/h2/system/controlDict +++ b/tutorials/combustion/chemFoam/h2/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/h2/system/fvSchemes b/tutorials/combustion/chemFoam/h2/system/fvSchemes index 18082f4ced16debeef6b872082c4098f93c78b39..be845217ad86cbdc8f8ba83f4e1773aeb4aecf16 100644 --- a/tutorials/combustion/chemFoam/h2/system/fvSchemes +++ b/tutorials/combustion/chemFoam/h2/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/h2/system/fvSolution b/tutorials/combustion/chemFoam/h2/system/fvSolution index 315c1dd0cfa4611f69945abf390c9d61572b63cc..794807ffeebd32776bced161090a2a7c7cdebfb8 100644 --- a/tutorials/combustion/chemFoam/h2/system/fvSolution +++ b/tutorials/combustion/chemFoam/h2/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18/chemkin/transportProperties b/tutorials/combustion/chemFoam/ic8h18/chemkin/transportProperties index 0c87da4eb99c311d457104766b37e086a2af4709..07cf40f041c612e8a3b35e5b45efb7ea6515693c 100644 --- a/tutorials/combustion/chemFoam/ic8h18/chemkin/transportProperties +++ b/tutorials/combustion/chemFoam/ic8h18/chemkin/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18/constant/chemistryProperties b/tutorials/combustion/chemFoam/ic8h18/constant/chemistryProperties index 9e3689a670f4e2dc98d45c2acd4280e6b6ec3474..f68f6c9a5383ff4d1a0d761eb244aa02ba38ca0b 100644 --- a/tutorials/combustion/chemFoam/ic8h18/constant/chemistryProperties +++ b/tutorials/combustion/chemFoam/ic8h18/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18/constant/initialConditions b/tutorials/combustion/chemFoam/ic8h18/constant/initialConditions index 32c0362a630dae85c025b62e7d1e501d4370c838..d9d3e375c6be6bf0200e11bc9c0189f64ffb13e0 100644 --- a/tutorials/combustion/chemFoam/ic8h18/constant/initialConditions +++ b/tutorials/combustion/chemFoam/ic8h18/constant/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18/constant/thermophysicalProperties b/tutorials/combustion/chemFoam/ic8h18/constant/thermophysicalProperties index bfce150f7fd40ad92427f7e1f3ea16567b1125f8..00cdbb84b6ccafdd7c8cee9ad6b501fa95d14f53 100644 --- a/tutorials/combustion/chemFoam/ic8h18/constant/thermophysicalProperties +++ b/tutorials/combustion/chemFoam/ic8h18/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18/system/controlDict b/tutorials/combustion/chemFoam/ic8h18/system/controlDict index 24d1e116710e63c4290d05e2ab0e750a66bdcddb..476655ad56c94a2842b470ebef7e10b6603eb824 100644 --- a/tutorials/combustion/chemFoam/ic8h18/system/controlDict +++ b/tutorials/combustion/chemFoam/ic8h18/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18/system/fvSchemes b/tutorials/combustion/chemFoam/ic8h18/system/fvSchemes index f7510980e9472f021d24bee6d73644baf72f44ff..a072cacba6e9a2c3196640ab03385350d4b1173e 100644 --- a/tutorials/combustion/chemFoam/ic8h18/system/fvSchemes +++ b/tutorials/combustion/chemFoam/ic8h18/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18/system/fvSolution b/tutorials/combustion/chemFoam/ic8h18/system/fvSolution index 315c1dd0cfa4611f69945abf390c9d61572b63cc..794807ffeebd32776bced161090a2a7c7cdebfb8 100644 --- a/tutorials/combustion/chemFoam/ic8h18/system/fvSolution +++ b/tutorials/combustion/chemFoam/ic8h18/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18_TDAC/chemkin/transportProperties b/tutorials/combustion/chemFoam/ic8h18_TDAC/chemkin/transportProperties index 29d3d050b7b205aa17f4fda9d6aebb0d4e1bcef6..9485f4695815764d66fe884ce8817776d1f0e713 100644 --- a/tutorials/combustion/chemFoam/ic8h18_TDAC/chemkin/transportProperties +++ b/tutorials/combustion/chemFoam/ic8h18_TDAC/chemkin/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/chemistryProperties b/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/chemistryProperties index 4fc1ec38e5a7b7b5d7c6d4c7068385b17c35e43e..5fe23481de28e6396c0bdd80e869ec46deae2a67 100644 --- a/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/chemistryProperties +++ b/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/initialConditions b/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/initialConditions index 32c0362a630dae85c025b62e7d1e501d4370c838..d9d3e375c6be6bf0200e11bc9c0189f64ffb13e0 100644 --- a/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/initialConditions +++ b/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/thermophysicalProperties b/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/thermophysicalProperties index bfce150f7fd40ad92427f7e1f3ea16567b1125f8..00cdbb84b6ccafdd7c8cee9ad6b501fa95d14f53 100644 --- a/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/thermophysicalProperties +++ b/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18_TDAC/system/controlDict b/tutorials/combustion/chemFoam/ic8h18_TDAC/system/controlDict index 24d1e116710e63c4290d05e2ab0e750a66bdcddb..476655ad56c94a2842b470ebef7e10b6603eb824 100644 --- a/tutorials/combustion/chemFoam/ic8h18_TDAC/system/controlDict +++ b/tutorials/combustion/chemFoam/ic8h18_TDAC/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18_TDAC/system/fvSchemes b/tutorials/combustion/chemFoam/ic8h18_TDAC/system/fvSchemes index f7510980e9472f021d24bee6d73644baf72f44ff..a072cacba6e9a2c3196640ab03385350d4b1173e 100644 --- a/tutorials/combustion/chemFoam/ic8h18_TDAC/system/fvSchemes +++ b/tutorials/combustion/chemFoam/ic8h18_TDAC/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/ic8h18_TDAC/system/fvSolution b/tutorials/combustion/chemFoam/ic8h18_TDAC/system/fvSolution index 315c1dd0cfa4611f69945abf390c9d61572b63cc..794807ffeebd32776bced161090a2a7c7cdebfb8 100644 --- a/tutorials/combustion/chemFoam/ic8h18_TDAC/system/fvSolution +++ b/tutorials/combustion/chemFoam/ic8h18_TDAC/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/nc7h16/chemkin/transportProperties b/tutorials/combustion/chemFoam/nc7h16/chemkin/transportProperties index 0c87da4eb99c311d457104766b37e086a2af4709..07cf40f041c612e8a3b35e5b45efb7ea6515693c 100644 --- a/tutorials/combustion/chemFoam/nc7h16/chemkin/transportProperties +++ b/tutorials/combustion/chemFoam/nc7h16/chemkin/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/nc7h16/constant/chemistryProperties b/tutorials/combustion/chemFoam/nc7h16/constant/chemistryProperties index b005a105f0a12f173414f43d44490a36b4b44402..b0d216f0789d8ad89d98bab684c74c46fe8551ec 100644 --- a/tutorials/combustion/chemFoam/nc7h16/constant/chemistryProperties +++ b/tutorials/combustion/chemFoam/nc7h16/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/nc7h16/constant/initialConditions b/tutorials/combustion/chemFoam/nc7h16/constant/initialConditions index 1c688651481b4275eac2bb9ad93bcb8a67cb9c52..98e533c9b9a69fe884ff190b1f70f95ef6334dbd 100644 --- a/tutorials/combustion/chemFoam/nc7h16/constant/initialConditions +++ b/tutorials/combustion/chemFoam/nc7h16/constant/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/nc7h16/constant/thermophysicalProperties b/tutorials/combustion/chemFoam/nc7h16/constant/thermophysicalProperties index bfce150f7fd40ad92427f7e1f3ea16567b1125f8..00cdbb84b6ccafdd7c8cee9ad6b501fa95d14f53 100644 --- a/tutorials/combustion/chemFoam/nc7h16/constant/thermophysicalProperties +++ b/tutorials/combustion/chemFoam/nc7h16/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/nc7h16/system/controlDict b/tutorials/combustion/chemFoam/nc7h16/system/controlDict index 1078317c48a2b9831519eb1bdd1fed5136848bf9..1c831fe1d81ac5bdde336bf2bc6dde7b549f786f 100644 --- a/tutorials/combustion/chemFoam/nc7h16/system/controlDict +++ b/tutorials/combustion/chemFoam/nc7h16/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/nc7h16/system/fvSchemes b/tutorials/combustion/chemFoam/nc7h16/system/fvSchemes index 7ccfabbff8c194b3fabcdfaa4c936129f5879b16..74394664e58bce1b69ef86605321d7ed3f36fd1a 100644 --- a/tutorials/combustion/chemFoam/nc7h16/system/fvSchemes +++ b/tutorials/combustion/chemFoam/nc7h16/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/chemFoam/nc7h16/system/fvSolution b/tutorials/combustion/chemFoam/nc7h16/system/fvSolution index 315c1dd0cfa4611f69945abf390c9d61572b63cc..794807ffeebd32776bced161090a2a7c7cdebfb8 100644 --- a/tutorials/combustion/chemFoam/nc7h16/system/fvSolution +++ b/tutorials/combustion/chemFoam/nc7h16/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/0/T b/tutorials/combustion/coldEngineFoam/freePiston/0/T index c17827d1a19216ab4f7d3fb827a7816a18781637..0da0cf32cd0e4e11b3ea49690188e6fc22769f0a 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/0/T +++ b/tutorials/combustion/coldEngineFoam/freePiston/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/0/U b/tutorials/combustion/coldEngineFoam/freePiston/0/U index 5d1f7643160f05fa648d95198ac81345909679b5..53f59c0062e8e0767f889c9a4f8e2e6ca861244d 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/0/U +++ b/tutorials/combustion/coldEngineFoam/freePiston/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM:.Uhe Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/0/air b/tutorials/combustion/coldEngineFoam/freePiston/0/air index 87b0c3f2a6bf103429ef6615cd37f19db4190e16..6a000ab49233d20297fd7f5375195fd847ac44e4 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/0/air +++ b/tutorials/combustion/coldEngineFoam/freePiston/0/air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/0/alphat b/tutorials/combustion/coldEngineFoam/freePiston/0/alphat index e6e21d2240ae4adde3917b76de9c168c8e3f2696..0ab649ffa998bbc9525570c9542489d0755d517f 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/0/alphat +++ b/tutorials/combustion/coldEngineFoam/freePiston/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/0/epsilon b/tutorials/combustion/coldEngineFoam/freePiston/0/epsilon index d1aa741f074594adcb80337c434dcd2d0c71430f..e42fc1f3370f1239fa91a9778b372b39db8f5484 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/0/epsilon +++ b/tutorials/combustion/coldEngineFoam/freePiston/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/0/include/boundaryConditions b/tutorials/combustion/coldEngineFoam/freePiston/0/include/boundaryConditions index 80b2929b6f1b905291f95d39511fe2fc0ccc8817..1aacb9f3980dbf9a231702cf60707b147efe3ce6 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/0/include/boundaryConditions +++ b/tutorials/combustion/coldEngineFoam/freePiston/0/include/boundaryConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/0/include/caseSettings b/tutorials/combustion/coldEngineFoam/freePiston/0/include/caseSettings index 92176eacc8087309c2c2b12a0203e9d8908e571d..08cbca492d1d7494c8725ea055390515dc6cca83 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/0/include/caseSettings +++ b/tutorials/combustion/coldEngineFoam/freePiston/0/include/caseSettings @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/0/k b/tutorials/combustion/coldEngineFoam/freePiston/0/k index b19a5d928592ec792850f1dd55f287409a639c37..40b17fc5818f0f6a7d3aa0d43e1747becf79f3ac 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/0/k +++ b/tutorials/combustion/coldEngineFoam/freePiston/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM:.khe Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/0/nut b/tutorials/combustion/coldEngineFoam/freePiston/0/nut index c3bbebadea51a452c27232a0b5eb4b2f6ee6bf0f..9d32f0049e3370c6634e0efec967980a66d6931a 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/0/nut +++ b/tutorials/combustion/coldEngineFoam/freePiston/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/0/p b/tutorials/combustion/coldEngineFoam/freePiston/0/p index a56101e0e6636198bdc3784b2aa083db84c7aa5b..cd8aebd075901fb0a1d0a624ffb3848a9d659005 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/0/p +++ b/tutorials/combustion/coldEngineFoam/freePiston/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM:.phe Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/constant/engineGeometry b/tutorials/combustion/coldEngineFoam/freePiston/constant/engineGeometry index ae09a7da9704e4599dab133a16cfe5c0fe4269fe..504e447e2f598a2e01d0ecf946d7bc512637e819 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/constant/engineGeometry +++ b/tutorials/combustion/coldEngineFoam/freePiston/constant/engineGeometry @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/constant/g b/tutorials/combustion/coldEngineFoam/freePiston/constant/g index e9dfc3f353d2990103bc9b9b9ce6a0dd8943fe0f..7639c9e60f33602624b734b7495005cfe95e64fb 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/constant/g +++ b/tutorials/combustion/coldEngineFoam/freePiston/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/constant/thermophysicalProperties b/tutorials/combustion/coldEngineFoam/freePiston/constant/thermophysicalProperties index 9c83e140ce63e8c87276c9f08cdbe6b4bee088f5..05674e849c5376ee1406c8cedf67072f2e3844ee 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/constant/thermophysicalProperties +++ b/tutorials/combustion/coldEngineFoam/freePiston/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/constant/turbulenceProperties b/tutorials/combustion/coldEngineFoam/freePiston/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/constant/turbulenceProperties +++ b/tutorials/combustion/coldEngineFoam/freePiston/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/system/blockMeshDict b/tutorials/combustion/coldEngineFoam/freePiston/system/blockMeshDict index dea25111eb16ad6ee738e88fffeb8050a5d5a806..1f535f3bc44e513882bd1fa707c600e0a7adb3aa 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/system/blockMeshDict +++ b/tutorials/combustion/coldEngineFoam/freePiston/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/system/controlDict b/tutorials/combustion/coldEngineFoam/freePiston/system/controlDict index 21a776458661ecdb728604a49a518a9e90c52541..e014ae2447700bab046b16b274c2895c4413d909 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/system/controlDict +++ b/tutorials/combustion/coldEngineFoam/freePiston/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/system/fvSchemes b/tutorials/combustion/coldEngineFoam/freePiston/system/fvSchemes index 53cbbd1a59947f8e4109a223be7d9281050f9d62..5b869917036c550e7d367bc896f1471a199fa308 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/system/fvSchemes +++ b/tutorials/combustion/coldEngineFoam/freePiston/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/coldEngineFoam/freePiston/system/fvSolution b/tutorials/combustion/coldEngineFoam/freePiston/system/fvSolution index 842addaf8f72c2009cb2f63334dffc66e5442aa5..66e7bcae10707b2d129e95893c3a652dd5532ffa 100644 --- a/tutorials/combustion/coldEngineFoam/freePiston/system/fvSolution +++ b/tutorials/combustion/coldEngineFoam/freePiston/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/C7H16 b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/C7H16 index 4005250b5a3259a3d10dc7bb5fccd41dd60f2d6b..4f54764ef9063412bef75aa98bfee237b2708253 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/C7H16 +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/C7H16 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/IDefault b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/IDefault index 44fb4ca67039a2297b9b5a2024acd5217a403ec1..5eb2532f85f58f777387a21a8871bdd2dc5efd36 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/IDefault +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/IDefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/N2 b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/N2 index 312fa34a1fc0640b6b52871799adda978c55fb23..fe4d553304ca2bb0f13f0bd6b461a5f7f175814c 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/N2 +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/O2 b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/O2 index 773b3256d1af0fa364ae0be1c51cfb34de0f70c9..3e793d72f03555e4001d502735afaa30c05fe6e4 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/O2 +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/T b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/T index 32187cba7042945cc3ce5a424ed3a2220fb5eda8..bc35016ac6626941d461a290f597d91a6c57d6f4 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/T +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/U b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/U index 0caefd8e8c30ee4c34ac828894a5ba49ceaf57a2..191aa1079bda76a8fbee4ab840338782e75084e5 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/U +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/Ydefault b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/Ydefault index 53966e7264941b3f8c3be885dd9a8339ff3fe5a3..617257c76b97e542d7482150df19ef07cc90ee21 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/Ydefault +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/alphat b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/alphat index 7d2426818d5fe18bc40473f1d4518d586d8e6d93..65b18d42fd5b210d9a5554e970531e5b3d6a1bde 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/alphat +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/k b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/k index 1ee6e38119a0a23173bcd0c59dac31c949cb244d..777144ec3a81486aaaf76f767e91161b465ebd53 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/k +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/nut b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/nut index 145750c006cd1ae9ab092f138a6e97f2a3c3b890..e1e6ba9bc25c476012afd005a7837b27617881b6 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/nut +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/p b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/p index 59a8c2eb6ebee23aa4289d62b9c81752432a212e..31603b7f79db008c870b9a6e250c8156db3d92b3 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/p +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/p_rgh b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/p_rgh index f5225fe7366898ffedecabf97fff8bf8ae8196eb..7e6348990aab64d58620501bb454237a25512fe6 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/p_rgh +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/panelRegion/T b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/panelRegion/T index 4a92f8b02d4775eedae172e314e8be9c2c66333f..6b3364d083eb0d088ec5e3e77973cac2b909ee49 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/panelRegion/T +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/panelRegion/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/panelRegion/p b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/panelRegion/p index fe7a0b42042a5b6c2d087e9778a835a3b0767d34..9e28e88ac7143c910d29efe416a6f8f668d94ee2 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/panelRegion/p +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/0.orig/panelRegion/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/additionalControls b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/additionalControls index dbdb42de6864eb1deba5d556d1fd4d16e0e33da0..83d9ee8b301a5fd930c2b0e8b1b54565f754f00b 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/additionalControls +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/additionalControls @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/boundaryRadiationProperties b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/boundaryRadiationProperties index 0fa81bfb1e92043dcb30a9a9d72c401a76505ceb..eb73b1ef44d3898504b65967b861b818f0a498ae 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/boundaryRadiationProperties +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/combustionProperties b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/combustionProperties index 1c54d43dadbcb8254281478d4f2a6816ac15b8ed..a5911536950a95b45b1fc1630d32505c96a5c564 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/combustionProperties +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/g b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/g +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/hRef b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/hRef index 597845f9c65724442803ddc39606ace0400f06a2..1eb759e7771b28caed6186aab865ba93953b4eb6 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/hRef +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/hRef @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/panelRegion/radiationProperties b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/panelRegion/radiationProperties index 5514858e765c2920f9c5a95b522be6a614234224..5659f78c821017f812100bd71e69a1db8f9c29dc 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/panelRegion/radiationProperties +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/panelRegion/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/panelRegion/thermophysicalProperties b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/panelRegion/thermophysicalProperties index 0931c1dcf9a306ab3f8f6c7aa43d406200ca48f5..0ef2b0ae4517026b8e0995991245bf2e51d5531f 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/panelRegion/thermophysicalProperties +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/panelRegion/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/pyrolysisZones b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/pyrolysisZones index 1759eccdee01564ad31ed4c52f674644e62a4374..ed4cbe14b9fa71afd2a749ed88ee5f7e15f1622c 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/pyrolysisZones +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/pyrolysisZones @@ -1,7 +1,7 @@ /*---------------------------------------------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/radiationProperties b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/radiationProperties index f41c5566f36334978c015c087ee3fbb70db2040c..e9863c6ef7d126c2f1e891fe1b56aa3104ab30e0 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/radiationProperties +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/reactingCloud1Properties b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/reactingCloud1Properties index 5a2b88cd94348576df31ee1e556318b99d387681..f1947b12c9304c77ca6fe4c512ed0a658eaa3cd4 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/reactingCloud1Properties +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/surfaceFilmProperties b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/surfaceFilmProperties index 71786456657721262326874a6fa29fc5ce207519..5fc14dd1a00e00c274193ec07cdaeb35e08fa7c2 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/surfaceFilmProperties +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/surfaceFilmProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/thermo.compressibleGas b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/thermo.compressibleGas index 51ffe9f721f2691f62a1582706e42994ee4a0bb3..f314e9ce3c03d9085309ec959598c77b216777a8 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/thermo.compressibleGas +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/thermophysicalProperties b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/thermophysicalProperties index 033f61565f4f4d418b9507c9ab34747b5a2d8901..05dbf0e8ed1b22386aa13bf1aadcf614e36cf9df 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/thermophysicalProperties +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/turbulenceProperties b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/turbulenceProperties index 92238af3b8ae10f15dfcb4175eb36ae987017395..f1719a2b645e3d711b2c35f43c1cd36726ec58f1 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/constant/turbulenceProperties +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/blockMeshDict.m4 b/tutorials/combustion/fireFoam/LES/compartmentFire/system/blockMeshDict.m4 index 92e56b211be0cd8bf54bc258c203a9cf71070809..68fb25ce9409ff8c7b8bbc1c91497ba095797574 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/blockMeshDict.m4 +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/blockMeshDict.m4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/controlDict b/tutorials/combustion/fireFoam/LES/compartmentFire/system/controlDict index c59beb1fde7ff870dd74a32489fea0b131b765ff..4c3e063f04c12e41fe27aaa62a70e1897bf02fbd 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/controlDict +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/createPatchDict b/tutorials/combustion/fireFoam/LES/compartmentFire/system/createPatchDict index 7cb98a92cb53860d2b6ba9c7a85e20036280c85d..3c6ed2afe2ca915ad8d00fa19b889e233a8b79fd 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/createPatchDict +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/decomposeParDict b/tutorials/combustion/fireFoam/LES/compartmentFire/system/decomposeParDict index 3220b6607ae74014818bd25513a16e00d3ec7241..df2c7a43f66ec1341b0a9703afb5cd648f59d569 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/decomposeParDict +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/extrudeToRegionMeshDict b/tutorials/combustion/fireFoam/LES/compartmentFire/system/extrudeToRegionMeshDict index 7e6376d76107322d1e7caaa9f317e393dc70756e..a44c5b8279b04ae377f65338525c5bfa8aab25e1 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/extrudeToRegionMeshDict +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/extrudeToRegionMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/fvSchemes b/tutorials/combustion/fireFoam/LES/compartmentFire/system/fvSchemes index 22b37bfd57a32203b8987b9ec2be7080da945593..e07a5e9b7c11c130be31e9d2f3a06d05f3583910 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/fvSchemes +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/fvSolution b/tutorials/combustion/fireFoam/LES/compartmentFire/system/fvSolution index 5eeb88a06e06ba539549edc8674c7a7ca92fa27b..078029354f0246d94e0abd6fccd926a4a0060300 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/fvSolution +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/decomposeParDict b/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/decomposeParDict index b3bab9434e3ea04c214bd09744ab8eaffcb68889..c8bb5b17fce8d382ef40f4aae2f7fd13c46a0ab8 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/decomposeParDict +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/fvSchemes b/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/fvSchemes index ff67a1695647dae1860769f9e65917cfdae83060..3e1c8f5040c7dbc1eb6eba470b3ebf17c5d7b5fa 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/fvSchemes +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/fvSolution b/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/fvSolution index 8f9401f3b78428c5c9f0249b34f1a4e75efdb7d8..50317898d85c96052a214048b9769b2c2708554f 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/fvSolution +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/panelRegion/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/snappyHexMeshDict b/tutorials/combustion/fireFoam/LES/compartmentFire/system/snappyHexMeshDict index adda5a55818ff00834d680f800ad3e292e3f22e9..35111cd17eabe48adcb7501a2c66cf5e3b180c06 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/snappyHexMeshDict +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/topoSetDict b/tutorials/combustion/fireFoam/LES/compartmentFire/system/topoSetDict index 84a800c096b8d62eecb385dac9aebfcc5e3ee44b..c3b9571fce5d7211738b9b09c0c3544bd2308b36 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/topoSetDict +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/C3H8 b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/C3H8 index 5c0552c64f25dc170f3b8550b46262a71dcc4704..42faae77bffb83cd03677cea076da523e08b3802 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/C3H8 +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/C3H8 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/IDefault b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/IDefault index 69b9a351f7e38cd5e9a4043fe5de71d6d9e18952..889007a19d548be9dfec1ac10f74ec4c5b68bd53 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/IDefault +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/IDefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/N2 b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/N2 index 4dd833f6f5fdd40275d0a1fae73c8159b8089eac..c921a9104d6b154db607292189dbf9d34fc3cce3 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/N2 +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/O2 b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/O2 index 9c03f0cf4b77078c5bb076aafc56e39ea449ccf0..58f5da8d7be98218735ae8561e1b43ba307a565a 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/O2 +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/T b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/T index f57a6f8553eba4ee4e62d2f5a0bfcd0cdcafd72b..716479347c242c9edb078b97430eaaea8b119654 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/T +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/U b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/U index 1a817edd7e8e5c1117a5f1be014b9985d1c161bc..1e2b0ed000186853efd5facbfdffd8f3855f3e4c 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/U +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/Ydefault b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/Ydefault index ec3c8d56bc2b4514d60e666b0959aeb93542d508..9c9c51f59e8e7d3b73bf89f63b252084d298775c 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/Ydefault +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/alphat b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/alphat index 82133805a1f8394a8ceba6a48370d137998f5040..1631066c9a8ff6fd40d5a2b3cab88e032c045b9a 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/alphat +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/Tf b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/Tf index bd669aa2d2c402243f137268d9c18c2f2a69f099..eef21961a02df5b2b2255026ec6754fe36ea761b 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/Tf +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/Tf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/Uf b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/Uf index ec54d0c751ef9014793ebefdf571ddcaccc02c51..8770fcc089ea170e6964cb4937bd2400f7ef3834 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/Uf +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/Uf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/deltaf b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/deltaf index f3c5af1235d72247eb4bc5e6708018fe6b8032ef..20d33afda62f5bdee261defc8aa593b624943018 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/deltaf +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/filmRegion/deltaf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/k b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/k index c7e540d8263898f4f4f786b2d09a4fdd461ae85a..c97c184cd0a6022348d3898dbc13b1eaf8afaa71 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/k +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/nut b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/nut index 27fedbbbc54bd57fe7e813ebc5bdc9dea96c4f70..e2d2d5f6a9104555a38edb08bad271d77ac93632 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/nut +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/p b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/p index 4352a1c0346f72ce913b95e1d27df4b8cbcd1458..4390d6eeaf667ba6aa77f35086c2c8ad64f7fc0e 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/p +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/p_rgh b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/p_rgh index 0c075fb65c454944d1984184a0701bcb12b97da2..6b26559f0bb4fa82db9814acdee2e4b63b33446f 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/p_rgh +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/ph_rgh b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/ph_rgh index 7e14ceda9ad01e729e9dd350ce065ea0cfc94e12..aa9db92823dfe2165194e40e6186d6f6958099ac 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/ph_rgh +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/ph_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/T b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/T index 79ebf68d9bca5990ad029466e1d48233f11f2aee..1b1ba53d2fdb52a08dd5478819b8d62e728eec66 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/T +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/Y0Default b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/Y0Default index 2efac21b80cc5cc8761fca9a2e10ad687095e0e4..d4e4057d6470e48fe4e6eb7a0ac771cc59ae2e23 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/Y0Default +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/Y0Default @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/char b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/char index b07850622607e657a00a78e49435d0b7533f874d..3bfa2cf3c40bf446014b6362ea6bbd5556afa7c0 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/char +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/char @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/p b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/p index 59a73a3ee810219c235cf6947b6c729eef0e5945..ffd3455850f7f6b400e8f89d5e022823c2f212b6 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/p +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/qr b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/qr index 0f19c8ed8fa373a4c88063c21ce3ba784d9f13b4..ff7efef1999247c28273f51a25895d78174e5ebf 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/qr +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/qr @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/wood b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/wood index 4780e8d2634387333daa0a8cf15a7aee63108339..2073da4d3bfdba1849de623e9bf75bf3ecd71133 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/wood +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/0.orig/pyrolysisRegion/wood @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/additionalControls b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/additionalControls index dbdb42de6864eb1deba5d556d1fd4d16e0e33da0..83d9ee8b301a5fd930c2b0e8b1b54565f754f00b 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/additionalControls +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/additionalControls @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/boundaryRadiationProperties b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/boundaryRadiationProperties index d118bbad469d880eba066dc36e2c911577ebd088..48791b99c81ec8eaa9103805a1d3caa2d36591ba 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/boundaryRadiationProperties +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/combustionProperties b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/combustionProperties index ea2831aead4c471461f1be31e0c0300d2c8c2b12..5cca16eaaf8ea72bff349f92e81b796671c5c15f 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/combustionProperties +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/g b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/g index f1ac736cb343c2c965b64565fd3352e6a35ab943..ee6cc230a537a964d80bd42284ab85b71f7458d7 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/g +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pRef b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pRef index 3878db14779d512200bf83d642551fe5555b7a36..6dccff11e219fe19ce8ba3cffb26d89c59b961e5 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pRef +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pRef @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/chemistryProperties b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/chemistryProperties index b6eb84ac2d07f2bea755a706408a08984069d692..4c187b6874618fb7aa8dd9c401f90036e608f5fa 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/chemistryProperties +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/radiationProperties b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/radiationProperties index 8b9bced8ffd6446996aa8a4cba643ae72eb00e1f..203f9df0dc89a0aa5457ac4c93004564bca4a692 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/radiationProperties +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/thermo.solid b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/thermo.solid index 77ba19d03276b6be183be9e7687940ee57041202..1796d1cf075f8a92aa27a554acd6bcb9a0df77fc 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/thermo.solid +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/thermo.solid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/thermophysicalProperties b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/thermophysicalProperties index 53929b4898c59ccd92ef1756da6cdfa5212f7012..6d79d2544e90bebc525a942fa2ee94c36a3dca3f 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/thermophysicalProperties +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisRegion/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisZones b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisZones index ab531e7676338254401032e4678e47228ffc313a..7656b9b9a94bc3e0e0155dd11b2c385fcb177043 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisZones +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/pyrolysisZones @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/radiationProperties b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/radiationProperties index 8f1c46e4dfba1a221fd6f46a7ea0a45dcbd11687..bbb03a466f9f03c06ecb4392adc8837943351506 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/radiationProperties +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/reactingCloud1Positions b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/reactingCloud1Positions index f518fcb81c1c7d98a58966e9cd14bf2921c85203..e3d7611fe44d1bf0b2bfedbd278afc3c510c695d 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/reactingCloud1Positions +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/reactingCloud1Positions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/reactingCloud1Properties b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/reactingCloud1Properties index 5a2b88cd94348576df31ee1e556318b99d387681..f1947b12c9304c77ca6fe4c512ed0a658eaa3cd4 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/reactingCloud1Properties +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/surfaceFilmProperties b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/surfaceFilmProperties index e86781d12a72fd76f57f3c5dcae246d36e500ef6..d36cf5e8d5720cbeb8e7b78adc992dea42b1ef1c 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/surfaceFilmProperties +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/surfaceFilmProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/thermo.compressibleGas b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/thermo.compressibleGas index a451246db8ba32ac438695c4597336e6c366c73b..5b82549480d33351bad8b59ba7779d83925ad7ec 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/thermo.compressibleGas +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/thermophysicalProperties b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/thermophysicalProperties index 5caa989bfd8a7a16ae2ad60e23aaa7f183630bd8..73a65cdc4867cb01a2f44497e36c95142378c9c0 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/thermophysicalProperties +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/turbulenceProperties b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/turbulenceProperties index 77561c59caa25a009e0b8c07195008c7a20bc199..99e3ec2d35709b6746fc241ccd97c20c73a3956d 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/turbulenceProperties +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/blockMeshDict b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/blockMeshDict index a0c5b823b524b294fa46b234690bf8ec314081c9..f53a1900efd51a833e306958da82831dca97563e 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/blockMeshDict +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/blockMeshDict @@ -1,7 +1,7 @@ /*-----------------------------*-C++-*---------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/controlDict b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/controlDict index 02cb270c835c0f44b0aa0691bb885d97b61b5e3f..7e7213f87b9430fe64800b5b2498ee0c3c0e9286 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/controlDict +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/createPatchDict b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/createPatchDict index 7b4f4121f40aa43e3f1f1cc24e1f59ba29b4e5cf..ab0366898b15652692addaa074233f2b02bfd623 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/createPatchDict +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/extrudeToRegionMeshDictFilm b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/extrudeToRegionMeshDictFilm index 6f264d07d7935c6adb53c3493899bb2711257c25..e2ecd3b7cd093e5a318233401d683733655d5a97 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/extrudeToRegionMeshDictFilm +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/extrudeToRegionMeshDictFilm @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/extrudeToRegionMeshDictPyr b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/extrudeToRegionMeshDictPyr index abf151cb6e59c609f966847a0d73a07f282d2b0c..dc4e68c7b5cdd7936e040e0db7575fd0984f29d7 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/extrudeToRegionMeshDictPyr +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/extrudeToRegionMeshDictPyr @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/changeDictionaryDict b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/changeDictionaryDict index 82cbf8fdcecfb7a8b6370e89aa74ab974bb0ebba..c09600abee9963bd8cbf787aa1982efbd2812fe6 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/changeDictionaryDict +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/createPatchDict b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/createPatchDict index c2c775d8b64a943d80fadec20dbf1efa56215db6..1be2f205ae99f75bbe6182d9dd6ce11617af7acc 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/createPatchDict +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/fvSchemes b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/fvSchemes index a1ed43564cce2d3ebb9100bb8074a0fb0cc04476..1a3dbcb820bcc060087681113b3fd528e1e05def 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/fvSchemes +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/fvSolution b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/fvSolution index ad1f2a654bcada604c3172fa55fe955b119c8256..556da188e2fcfaae85b6771917428f2fb5a72131 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/fvSolution +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/topoSetDict b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/topoSetDict index b99567d5ea2642e4ba8c251dd068f5840e0c68b4..5e509fc48c2965c573441bc2e897d15e03957555 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/topoSetDict +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/filmRegion/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/fvSchemes b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/fvSchemes index 382087353b662c19ded2c8fa1c2c77ebb4174d80..64a19fd5433011725bd2295e8d4198d081cea356 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/fvSchemes +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/fvSolution b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/fvSolution index 7d1fa4be7a71e0a4871fb89e78de6b2fc3a2e381..abdf01b68d2e68863975dacdce2b18d3ec7fbfd4 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/fvSolution +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/pyrolysisRegion/fvSchemes b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/pyrolysisRegion/fvSchemes index 6349a1775d795ac247c8f94b0b1e4327962f79ef..fc1c495189d1456c6fe9dd1f0e3497b28db195bc 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/pyrolysisRegion/fvSchemes +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/pyrolysisRegion/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/pyrolysisRegion/fvSolution b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/pyrolysisRegion/fvSolution index cc0411d19bf0f7600accc8dbd9f0ef49cfb34196..8112960e935abaf49e22a185ef5a365ba5fae43e 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/pyrolysisRegion/fvSolution +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/pyrolysisRegion/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/topoSetDict b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/topoSetDict index 2a15fc6998494a90cd5528017709ab2ee84b3ad6..94468600b9e9832d80b52cb3dcebc3fe6472d71a 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/topoSetDict +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/C3H8 b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/C3H8 index c69a22e4c447c4575cc56eee0293a2bed1f0496f..6d886004d4b575c7d3b37f139f3ab4b1428c6e3a 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/C3H8 +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/C3H8 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/G b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/G index 5ca50962ba0aac6b074b48655873d775a1efe657..7435b8c288f784458844142487b4982560e46d91 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/G +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/IDefault b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/IDefault index 2e70b39c8781f1a0a5d717c1ec47b91d113e815d..5a711cab7405a7743270517adcdb3e80b56983a4 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/IDefault +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/IDefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/N2 b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/N2 index 02141bae8e306ae5d4c12909d636f321321a07c0..1f4ba8fd7ea954a4465bbd766cbeb0f605a0bd5f 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/N2 +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/O2 b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/O2 index 9c53a809386cb81bd1603d641648c85ad2aec00a..94800e4a63561d06929a55a7494fcf3b12ac899e 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/O2 +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/T b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/T index db903a98584789e0d90e02ea0c36f875d64658ae..3d89ee351b4b3466e6c98cd0d00ff40ec546f91b 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/T +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/U b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/U index cc4e6e97cfa60cfc0f6be4e5b043a37661cc7672..b892edcd4abad46a2719002abf614ca4f2cb1065 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/U +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/Ydefault b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/Ydefault index e6643874565eede8bcafd6c51f463d7cc3194ca2..5d016557b7e8ed74c9a6cbd6d86a9226ebb5d653 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/Ydefault +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/alphat b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/alphat index 3ef33eef29aad91b1e3ddcb02af96b83d9fc7262..04f5a288a9d49573851027e86d9864c02267692e 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/alphat +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/k b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/k index 82717fd63c6ee199387b5e2f0ea0b4f19daf82b9..42a34ea593777863688fb270d4c60187df93d3d6 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/k +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/nut b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/nut index da7a68536bf3d4689925303e0b9549d48edeaf09..161df6bc0f949dcc2e81d1201e623aab50c896dc 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/nut +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/p b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/p index 62c4c34c680a174395d1bbf9ae845176a04d5f0d..e7aa762a9d8f988f40172e24281f5d594b8b336e 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/p +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/p_rgh b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/p_rgh index d3ed300fe07e366547ef5563955aa8eaad1ba3f8..27bc015644b29cf81c20ed71d0578d55c49c0eb6 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/p_rgh +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/T b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/T index f9f1bf45b03e1f23e72a31678073a21b33bbbe8b..c7173a1b2fd6046c40afdc31eb3233b060b9b5a2 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/T +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/Y0Default b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/Y0Default index 7b3cce94567f0cc8d1a18d7f94d4616a3f04d339..d7bb5e4cd173891a4a36d0628be7d5947e8db8ed 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/Y0Default +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/Y0Default @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/char b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/char index a3e29bb934c49f44c4930104e6516bd79cce3fca..c0ba942986621efb77bd03566673cc7047481880 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/char +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/char @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/p b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/p index 59a73a3ee810219c235cf6947b6c729eef0e5945..ffd3455850f7f6b400e8f89d5e022823c2f212b6 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/p +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/qr b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/qr index a1cc4adabbc9b2c2039fb6d2e629838e8404be96..091465a43ad5b9461902588372520b05e5b2f80c 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/qr +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/qr @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/wood b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/wood index 4526768b5c1bac0a1c9d5c9d31e3e37a5ff94f82..9ea55c241af9f53529a3e3751212fc1fe71461c1 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/wood +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/panelRegion/wood @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/ph_rgh b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/ph_rgh index e28bc7207a65e644ee4f91ba929e52b8d20db3c8..fdf1cdf2337cab16aff9d6d26d778863b8277e24 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/ph_rgh +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/0.orig/ph_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/additionalControls b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/additionalControls index dbdb42de6864eb1deba5d556d1fd4d16e0e33da0..83d9ee8b301a5fd930c2b0e8b1b54565f754f00b 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/additionalControls +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/additionalControls @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/boundaryRadiationProperties b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/boundaryRadiationProperties index 823b6f9573583521036526284d0ad2d59c005e9c..279f2165d5a17a84e9dd15089ff1e2adb695e826 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/boundaryRadiationProperties +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/combustionProperties b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/combustionProperties index c9ebc7d486da72c3a3dd234338717da54e73b15f..bdc9e35eb6a159dc84c3e25e9f0405fc289071d3 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/combustionProperties +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/g b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/g index a3614d2515254834cc6af080d950afa4f88da782..6145fb18d48b5bb7cd1543f9548bf50047055e64 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/g +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/hRef b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/hRef index 28b686b286e38f41db0cdb097cd8cd19d5ac5d47..09e97053245ea51c894800d259245c209e7c0d49 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/hRef +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/hRef @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/pRef b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/pRef index 3878db14779d512200bf83d642551fe5555b7a36..6dccff11e219fe19ce8ba3cffb26d89c59b961e5 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/pRef +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/pRef @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/chemistryProperties b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/chemistryProperties index d7e247ab05f792ed54fccd434a1179b2f33ca12f..be9f29afbc240a0873d652db1bfdd7c3f269f12f 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/chemistryProperties +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/radiationProperties b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/radiationProperties index b5ebd4e4ffe9feaedefe0cac8b80ae2175a29c80..260aa092a0afbfa00fac377e8c9d60c99eecc2df 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/radiationProperties +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/thermo.solid b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/thermo.solid index 77ba19d03276b6be183be9e7687940ee57041202..1796d1cf075f8a92aa27a554acd6bcb9a0df77fc 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/thermo.solid +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/thermo.solid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/thermophysicalProperties b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/thermophysicalProperties index cbdb59f1c89e3a66773cea60374a726f4e959267..65a009f7bd45318b7a04ba471c10a852e508efe9 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/thermophysicalProperties +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/panelRegion/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/pyrolysisZones b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/pyrolysisZones index a12023f40a08457b97f48af42656f5d3f57836c3..60467a9fb3656c3d3971a23201a6a185fe650df9 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/pyrolysisZones +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/pyrolysisZones @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/radiationProperties b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/radiationProperties index 4b77c087c972603aef7506767c8982d91fba889c..61e5b7eb40959a1fc25e7849f1835785080e6c7f 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/radiationProperties +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/reactingCloud1Properties b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/reactingCloud1Properties index 5a2b88cd94348576df31ee1e556318b99d387681..f1947b12c9304c77ca6fe4c512ed0a658eaa3cd4 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/reactingCloud1Properties +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/surfaceFilmProperties b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/surfaceFilmProperties index 71786456657721262326874a6fa29fc5ce207519..5fc14dd1a00e00c274193ec07cdaeb35e08fa7c2 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/surfaceFilmProperties +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/surfaceFilmProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/thermo.compressibleGas b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/thermo.compressibleGas index e15d7fa75b44f2762b2079bf8862146d8855068a..e6316b268557abf877d2556d61fb77df89f61562 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/thermo.compressibleGas +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/thermophysicalProperties b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/thermophysicalProperties index 5fbc441bf932dfb7829576a33f0ac2b39421f43c..4cb89d0747278d5ae9b908c0159b554ae67f033a 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/thermophysicalProperties +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/turbulenceProperties b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/turbulenceProperties index 77561c59caa25a009e0b8c07195008c7a20bc199..99e3ec2d35709b6746fc241ccd97c20c73a3956d 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/turbulenceProperties +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/blockMeshDict b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/blockMeshDict index ba20251cabfa562ffaa1f3950a78d59665701240..b664bcb5b2854aef769f41e6664faadc05d90e70 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/blockMeshDict +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/cRefine.topoSetDict b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/cRefine.topoSetDict index 72be0b70d8a1fb65180d4bbb18b93dfddb2fcd57..3606618502c14c70387092400982b12bc34e98e5 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/cRefine.topoSetDict +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/cRefine.topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/controlDict b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/controlDict index 828c94ff3874bf44d195e5aee2edfdd7db1f2ae9..84724d73711a3ead5054c438db94ac0df1234dab 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/controlDict +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/createPatchDict b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/createPatchDict index 8b6bc8b62d73ccac73d24b1a4a0f6798bffeb6c9..c2d4baf43ea1e6413a64956ae05b62cf4e202e8b 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/createPatchDict +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/decomposeParDict b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/decomposeParDict index e3c75c6ef8dbbcdba6a66f44331d933aa1b4dde0..53164f507dc67db92cd36b02a5d1ace1b529e064 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/decomposeParDict +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/extrudeToRegionMeshDict b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/extrudeToRegionMeshDict index 7b041aa254d3d03c28b47747c61381eb506e2571..371bb64eb49cd9919b304dbc8534f1a8bfe0d089 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/extrudeToRegionMeshDict +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/extrudeToRegionMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/f.topoSetDict b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/f.topoSetDict index ff6842a1beddcf672a7b868d3f89cfbb21ab5b34..9cd21046edcf0aa134e55e73864c0c4f45dc7706 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/f.topoSetDict +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/f.topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fBurner.topoSetDict b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fBurner.topoSetDict index ed6533724a8cb4efe61901e544bf92a504597fd3..69053be5234ec3d64e51b5ee4532be07068c2fc8 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fBurner.topoSetDict +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fBurner.topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fvSchemes b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fvSchemes index 568bf3f78e77c178a955334ca147697e1b63e500..6dbf9cd0af8bf4cfcb68da6cc9231ac600478451 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fvSchemes +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fvSolution b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fvSolution index a4c72652e751bdbbc6c965136445293fe67349b0..afb1fa8577ab02a758359bef4869c9fe385cce4e 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fvSolution +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/decomposeParDict b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/decomposeParDict index d691193b1b4ff3d688ac766c50de0db059c57846..e2f24dee673a2e605acf92527380a2bcab0830a5 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/decomposeParDict +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/fvSchemes b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/fvSchemes index 80b8754a9c3f8f23710cffc19e4d0771c2ebad9c..5bf70a21f9c4918358879be9e06bac1f2be59af2 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/fvSchemes +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/fvSolution b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/fvSolution index 04327a3556dd2343404517ab87906b95fa19a34d..2c3d32bd03776b3f2b404200dd2371695cb2df38 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/fvSolution +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/panelRegion/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/refineMeshDict b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/refineMeshDict index 2b2310aadb9785eca94a2e7b99ea0337add5108a..c8f5d742b7870e49d71dbb25de60ddcab4611a33 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/refineMeshDict +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/refineMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/CH4 b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/CH4 index 43404fd922821165e0b3594099a7c3962959d2e6..178a57cc7d7c8eb79e43a6c36b4d66b1e37fd83e 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/CH4 +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/G b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/G index ceb8b682f9f09a265d69b3a938eb1a93575299b3..63d0dde3a3281a0e420c8779a61480149c2fcce2 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/G +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/N2 b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/N2 index ec4385c15868ed8a89aecfe261f7b7bc43d0be4b..96e063a59ecf86e4aba8c5e5d9f85b751b53e4c9 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/N2 +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/O2 b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/O2 index 9c8a979f23d1123a7e91540227d140059afcf362..ab986096f21469d77c84c3070cffb3e98a559b21 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/O2 +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/T b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/T index aef77648fdf22beb49dc2ecd5dcfb914bfb7325e..ad2d71ce2f9c59de074fb10bc687a17aa1bc4892 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/T +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/U b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/U index f1035b27e7abefb8b72786f5f7edc055f6301989..a09fff3543c7f5bfa79b232acd8f59fdd4320b87 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/U +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/Ydefault b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/Ydefault index 4b3489995784067e88dc6726d73ad875321e9fe8..caa3367bcdfaf048004d94f756ebfa8729310fee 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/Ydefault +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/alphat b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/alphat index a48d76be5ddc74f43bbf4aa1399c60048d9c96c0..a7d5e6ca050749f777e1acd7ade36ba82e386a71 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/alphat +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/k b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/k index 9963d25765ad693fa8ed13989c3cf2c819541e5b..6cfbda83641a10bdb9a1fc83ec2d46c04c72041b 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/k +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/nut b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/nut index b0f5432dccc1557204780222cd4efd661cf51d5f..e8bdcf5c543fb2306e3a02bfaff1b4caac81b306 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/nut +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/p b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/p index f96a8e271e3cb7255b9bd9d579d20a489450ae7b..a4c321aab1d7a330bbccfcae94f0fadd80af69f2 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/p +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/p_rgh b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/p_rgh index bb7e6464f6270af61d55f10dbfcc38ac40a74ba1..d7c726202f5de07ff23c6fb847b6d0e9d0352d60 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/p_rgh +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/PMMA b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/PMMA index 8db155e7f3aa4765c2e946d9c97017fee3745548..955124658c0ba4c24ce27f92dc236e05de9a2e54 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/PMMA +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/PMMA @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/T b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/T index 5067636fed28316bea13b131a1d5fe721b4b8b2f..36b4e4333c8af7a3747b2c670677048105795f07 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/T +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/Y0Default b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/Y0Default index 0ea327bb507135e3c4978b085fc8555303243a2d..889157261b467a1af309f58ae79a2e565d1b0d69 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/Y0Default +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/Y0Default @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/p b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/p index fe7a0b42042a5b6c2d087e9778a835a3b0767d34..9e28e88ac7143c910d29efe416a6f8f668d94ee2 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/p +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/qr b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/qr index f0732ff3e1030b825de922dc83b82642bc626b49..872dc8486e7b528a8ecccfd25a53a06f4a9472c7 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/qr +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/0.orig/panelRegion/qr @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/additionalControls b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/additionalControls index 14323d9e81ba7a8bb3e8a80e7ce49a5aec4b7539..2941fb0dd02590ee65360911951325d2db92e01f 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/additionalControls +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/additionalControls @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/boundaryRadiationProperties b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/boundaryRadiationProperties index 153935b30507a41510fbccb120ef865c64200198..555dc2e3f28cfcb0e982e756a5d43ecac9a0a360 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/boundaryRadiationProperties +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/combustionProperties b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/combustionProperties index 5fdc16d9427c94b4cb07be565e6eda74ee467690..c70eff326c42b3da2ce9f8fec3e158abf5dcb6d0 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/combustionProperties +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/g b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/g index 447e539058ee560afe32dc6b00283595f0eca96e..5d0c163f8e422e5595bb3b653a3d0afb26ff6684 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/g +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/chemistryProperties b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/chemistryProperties index 27c11443601280a7df043a9fee3acd6cfd17f7d0..1cb2258204a3efbbcfacc5d56b4d3f741983dd47 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/chemistryProperties +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/radiationProperties b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/radiationProperties index 83f9c48fdac66621ba5a80b6489d814834224155..69cd61e75470fb0bcde12194123231f7c572d65e 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/radiationProperties +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/thermo.solid b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/thermo.solid index 615561584b462ea0693923008e50d66245bb1be6..4f162b0ce7c040a514082bf46b506cad62ee862a 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/thermo.solid +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/thermo.solid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/thermophysicalProperties b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/thermophysicalProperties index 345a31f0d0fa2aa780ba75508c89e106415f1751..d517671c5d9b8527136fe2b9a545a7c1685aeab2 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/thermophysicalProperties +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/panelRegion/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/pyrolysisZones b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/pyrolysisZones index 54099254bbc71c17ebb262b48680b01c05e02247..3860516da1725364fb57580ea7e56850e975f2e5 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/pyrolysisZones +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/pyrolysisZones @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/radiationProperties b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/radiationProperties index b6c6c6551e402bc9adad017cddc4bdb9329060f3..d6e7e28b9cb58151ee62e7a479f8796cab95edeb 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/radiationProperties +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/reactingCloud1Positions b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/reactingCloud1Positions index 41bce44bd5d157718bb780960d482652b3733e86..7aa4d917f6cc12be871d15ced46d06dd9510a549 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/reactingCloud1Positions +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/reactingCloud1Positions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/reactingCloud1Properties b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/reactingCloud1Properties index 958dc01fd3b4a515a686769864da6bfb5cb8b0e0..c538ffc80857e10063e946e10f91149e3fa71cfc 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/reactingCloud1Properties +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/surfaceFilmProperties b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/surfaceFilmProperties index f81271bc23d4dc5eb6dde92b1c4a4df95328a108..9aa2ac14fc2024cc62f8c8d0cb43815b59dbe337 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/surfaceFilmProperties +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/surfaceFilmProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/thermo.compressibleGas b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/thermo.compressibleGas index 4d10dc27df6a3b00a1b0850a7d6cd58fba31acd7..86a200ddba193a8469ffbf3458e21c174be7775e 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/thermo.compressibleGas +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/thermophysicalProperties b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/thermophysicalProperties index 83a22097d2ee0fe86d014e9355f01b6b5d2b3578..90406b5af9247e654a9a96b3385412d16d97eed8 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/thermophysicalProperties +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/turbulenceProperties b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/turbulenceProperties index 77561c59caa25a009e0b8c07195008c7a20bc199..99e3ec2d35709b6746fc241ccd97c20c73a3956d 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/turbulenceProperties +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/blockMeshDict b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/blockMeshDict index 3ca1de7131b828030185bebf0404a20d79c5d75f..a1829ceedd9b6327c1f210a244f097042c72cb98 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/blockMeshDict +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/controlDict b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/controlDict index bd19455d4e3dbfcf1e8fd7ab8a9ae7b7b19f79e9..dd51720ff227dce8951733f0a7cb2cac65510215 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/controlDict +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/extrudeToRegionMeshDict b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/extrudeToRegionMeshDict index 027751851cfa8924948a683093df8da9f4631588..d41ae42abd833413fed17d21a9c2217a510ed5fa 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/extrudeToRegionMeshDict +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/extrudeToRegionMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/fvSchemes b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/fvSchemes index 79b8210ce9f4da5d3901a29569c36c3dda6d67c7..878cc6a98c3ce43ac85a12618b4b888375a6fdaf 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/fvSchemes +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/fvSolution b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/fvSolution index 5ab2aee048b4ae60158a48a16a2def069ccf105d..15c7d4e06c595e016fa1630874b47d8a9c397847 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/fvSolution +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/panelRegion/fvSchemes b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/panelRegion/fvSchemes index 8e86df32932c9d382b0d56f800fd23d674153894..ecf5af7989e638f9f23d6828d4d5a01604da01ca 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/panelRegion/fvSchemes +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/panelRegion/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/panelRegion/fvSolution b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/panelRegion/fvSolution index a2404ac372fa77991ea38d586527f79ad0908c40..faed36c225d2a094aaa1eae400e902dca91334d0 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/panelRegion/fvSolution +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/panelRegion/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/topoSetDict b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/topoSetDict index 352ccf6c3d50262f6d04b76c751db947ee31603d..4dbfe52fc57b576161d081112f45b1b08905c566 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/topoSetDict +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/CH4 b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/CH4 index af355051db380637c6becf57b1d47c5f1bf7a34e..e5cc2ee923f5fea082721266612e82630a3d3c5b 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/CH4 +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/FSDomega b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/FSDomega index 1c482f5be67757e3e5fc44a95974b821e129f1d0..6c419929d2d2f597036fbd4399e80957ef768adf 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/FSDomega +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/FSDomega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/G b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/G index 345c161c4587d3e9c816ed71d3f2de0f8df45072..6a33e7037efb88617c4b3840e53018bf0209e559 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/G +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/IDefault b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/IDefault index 33d4d2babfadc94ff9ed70a30f507573569b278f..ba9bdb47b9662947a5598dc14240ce67b59aebfe 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/IDefault +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/IDefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/N2 b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/N2 index 7e4489eb32a0d0c9bad83c3e4176e4e1a2935218..508a214292e42bbf5665524168d0868dabbef3fc 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/N2 +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/O2 b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/O2 index cebf0a7aaaf20f75c8a4fca63a5082366dd5bc76..723f9958d49789fb848449fb96fadf9294749de6 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/O2 +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/T b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/T index 51710b86a8c6604a85512f2ef170991f56ebc855..81841f33f862f2c3886ae5bf93ef36e1593d63f3 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/T +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/U b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/U index 8509e67386f9248947be32ec4ee114e23b904fba..2b253384eeeab1478dafd990333b45d6ecbe03ea 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/U +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/Ydefault b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/Ydefault index 6c2d0805261c4832f8d08fa0f2395630fe601910..b1327a9d284a359ecb9de6831abbc8127fcdca17 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/Ydefault +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/alphat b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/alphat index e86633b88c484353ea2b031e8231e6a5b656294d..40cd865f22c6dd876a3c48b6f32945e503434ab7 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/alphat +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/k b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/k index ee65d6cab059cc1a6696ed92ce8aa96987140b0d..52aa9b203ab2416c83e458abff0db8862f622182 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/k +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/nut b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/nut index ebbb93a9594604c060498b7ef7ed9fab2565a11a..8b17dcd7fbe3996196e4cdf3c298acad108ec549 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/nut +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/p b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/p index 8c67c84ffe6afa7ade48c9fdb6c24522930ad3ed..fa925f94c15b238e43fa7c891d4f6823cfb70f4f 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/p +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/p_rgh b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/p_rgh index 980ecebaeca6ca65ea987f114585e14f55ea9bf3..50565a78be3a9123f019b108e8bd2dd3aa7fe60f 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/p_rgh +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/ph_rgh b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/ph_rgh index 8b01847f5cbc25b5cf352e70a0fc846ae7de1dfd..5d0ba86b1d4e598bd1352d87edbe50e29d3246b5 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/ph_rgh +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/ph_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/soot b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/soot index c8d8618f865a6e754519506b369d9644691c4fbb..d6ff469b34c64a61822ea870b96e01e62e9f56a6 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/soot +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/0.orig/soot @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/additionalControls b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/additionalControls index dbdb42de6864eb1deba5d556d1fd4d16e0e33da0..83d9ee8b301a5fd930c2b0e8b1b54565f754f00b 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/additionalControls +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/additionalControls @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/boundaryRadiationProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/boundaryRadiationProperties index a17d403b3044560bda11873c710f8783b0d10b13..1ee8feefc1ca3eed35afe25f4bfc326ff4b18ee0 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/boundaryRadiationProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/chemistryProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/chemistryProperties index 324585e4aa04219713d77f7b15dda966aec5f421..dbdd21ea3e816d21408c7b2c0621f1279f9a1307 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/chemistryProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/combustionProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/combustionProperties index e6308814cd3d886e490e51803b851aee57789e02..29aef456f729661545512f16566b405e58ff2e7e 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/combustionProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/g b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/g index 0c5535932669e8f0342cba1ae577082d7345c3c4..683643b6473b75453b962107d5d6de25216dfd9d 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/g +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/hRef b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/hRef index 597845f9c65724442803ddc39606ace0400f06a2..1eb759e7771b28caed6186aab865ba93953b4eb6 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/hRef +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/hRef @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/pRef b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/pRef index 3878db14779d512200bf83d642551fe5555b7a36..6dccff11e219fe19ce8ba3cffb26d89c59b961e5 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/pRef +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/pRef @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/pyrolysisZones b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/pyrolysisZones index 464aaf70509766a5a7af9a62371ad3400fc7c581..8afc3205e331b16cc5b5e1d7283bdfe1f6cb367c 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/pyrolysisZones +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/pyrolysisZones @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/radiationProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/radiationProperties index c2372b0ff490fecd938ff0861f0b805a0f321c51..26cd96c7d57fd4294bd21b97f16b973e8e7fa473 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/radiationProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/reactingCloud1Properties b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/reactingCloud1Properties index 5a2b88cd94348576df31ee1e556318b99d387681..f1947b12c9304c77ca6fe4c512ed0a658eaa3cd4 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/reactingCloud1Properties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/surfaceFilmProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/surfaceFilmProperties index 71786456657721262326874a6fa29fc5ce207519..5fc14dd1a00e00c274193ec07cdaeb35e08fa7c2 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/surfaceFilmProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/surfaceFilmProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermo.compressibleGas b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermo.compressibleGas index 54f6decfa886451521dd839ef69a7620a8a4f7fe..e726a547817941c806563a0827546f8fd400336d 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermo.compressibleGas +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermophysicalProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermophysicalProperties index b094fd1c8f3eba34b8a9d3481fb71f0af2520bb7..26802f86ee292dbd46c790df7bb389075bdf1c93 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermophysicalProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermophysicalProperties.twoSteps b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermophysicalProperties.twoSteps index 7cbd2af1cdd82e08a8730ca21494c579e98c1ce3..dab07c76a99124e501216686610235f17f0fd967 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermophysicalProperties.twoSteps +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/thermophysicalProperties.twoSteps @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/turbulenceProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/turbulenceProperties index 81d74323e148217e23cdc582ce424b10eeb1a7bd..eb9dfafc7689a672044a3130685ed06c72ee1b9b 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/turbulenceProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/blockMeshDict b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/blockMeshDict index fe74a76bd9e2ddd9bea0bff9a4bc1638eb31d5db..bc82db62a5fd12c9feac101e72fe6cea84f41fff 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/blockMeshDict +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/controlDict b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/controlDict index bfef111e5f2c425f14ff123bf4e57a8080265f72..80d215d196ebcc8d52f457bd7000adc412dd56dd 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/controlDict +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/createPatchDict b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/createPatchDict index e8d3d1557a1643d7d5a51251350f35e36606fdbc..ff4bf674e25d434484b9ebfcc34a23a2f2ea813f 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/createPatchDict +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/fvSchemes b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/fvSchemes index 5f5321c978b32760622679b5cb55528cf97077ee..496cba4286962cc249a22723c64f1bd667de4919 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/fvSchemes +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/fvSolution b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/fvSolution index d29c540ce036847814a48274715a2cd6ab92888e..76a8cae3ce6707bec01c8122856123355a235d0b 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/fvSolution +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/topoSetDict b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/topoSetDict index 39477d70f1ed588473e525dc1d3aa009d49c7cd2..165b26a811b4d1cc87136c3e1cfc9d4e963e06fe 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/topoSetDict +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/CH4 b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/CH4 index d45f133cc834db481995fdb355946fec62771443..6f87b943ec475c8565a3fce2e8d83596447034c4 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/CH4 +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/G b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/G index 09c78656e3779c37bcfdf5aebf431e6bb56f0b42..ff3344906a7545cc21a95bbe22f7cadc2f697658 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/G +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/IDefault b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/IDefault index 188cc3423dfc3cb36472272f69a0af2e8b6079b4..b718b8667d29179d2da4b7923a20ae166d2607bf 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/IDefault +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/IDefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/N2 b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/N2 index b9eb8ef706a19de498ef141ca8a1a0ef0cd863bd..d51ebeafec540f353746af3d8f0ecb61a2df5d99 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/N2 +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/O2 b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/O2 index fa38155c0564c79720b884c8145f042c506699a1..02b915d141614f02c39c5013ad6ee9760ada13ab 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/O2 +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/T b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/T index 094b1ac8854b3ddda456b0024c3d595ab796639d..28c45cabe4917ffb904e9061955feaadfe83ed66 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/T +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/U b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/U index 2b26714d3a675b027009157bb958c1b540a0addc..90b76d745fd49740d08bcb29d4399988ac1937e8 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/U +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/Ydefault b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/Ydefault index 903c29d036a3d9d4317db2543a0c241d3012d0e7..3a466b90e3263a3577d1f337ae51326ec12c3ee0 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/Ydefault +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/alphat b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/alphat index fb9171403bb612774cdedd970450d5a564f355c7..890da81eff51b5fa6b9f7b028bf8d906414d361e 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/alphat +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/k b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/k index bd7c60467838e2b33f0fdb3e01b7dbb97600658a..9428e5cce95f64525ad7fce8189abae658ec8724 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/k +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/nut b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/nut index ea0f0a0209037f0b33677cd4b33b509d97f08666..c43e8dcc5b98ab34987d20b2c569ce40defa819d 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/nut +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/p b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/p index 538ad1d92e1cf290fba0f0a919b1c2d57ee427be..bf2457f61dcc796774c579edf927be2739363917 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/p +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/p_rgh b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/p_rgh index 16567ef6c3eeaff1ed1d2fbaccee4980ee039eb0..ad2be344a8708f0f1020f16ead86c28cfe15de5c 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/p_rgh +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/ph_rgh b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/ph_rgh index fca3bb72db36d8015cc9531e6517aa84fe714beb..4553b288217f0b23662771c99bdfd041005a6678 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/ph_rgh +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/0.orig/ph_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/additionalControls b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/additionalControls index dbdb42de6864eb1deba5d556d1fd4d16e0e33da0..83d9ee8b301a5fd930c2b0e8b1b54565f754f00b 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/additionalControls +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/additionalControls @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/boundaryRadiationProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/boundaryRadiationProperties index 451bcf36ac5314e8c7d77641d693cb098e3812d4..3ee8429b88e1d422e66b9b0ba30abaf358201423 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/boundaryRadiationProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/chemistryProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/chemistryProperties index dd7e1f6355216e5db552d7c8d0e5ada9a5e4d3b8..13e611425a92d0112f40fe649693404c4f2c4f4e 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/chemistryProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/combustionProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/combustionProperties index bcfd472c17b092f0657b9dc52dbdb4f4127486a7..a9fb05974a6ab8f9c05933da510b06177b9d62f9 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/combustionProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/g b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/g index 0c5535932669e8f0342cba1ae577082d7345c3c4..683643b6473b75453b962107d5d6de25216dfd9d 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/g +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/hRef b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/hRef index 597845f9c65724442803ddc39606ace0400f06a2..1eb759e7771b28caed6186aab865ba93953b4eb6 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/hRef +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/hRef @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/pRef b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/pRef index 3878db14779d512200bf83d642551fe5555b7a36..6dccff11e219fe19ce8ba3cffb26d89c59b961e5 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/pRef +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/pRef @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/pyrolysisZones b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/pyrolysisZones index 464aaf70509766a5a7af9a62371ad3400fc7c581..8afc3205e331b16cc5b5e1d7283bdfe1f6cb367c 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/pyrolysisZones +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/pyrolysisZones @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/radiationProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/radiationProperties index f932b20a1d3a2a30c0904d74a3c357ffae7556e2..cb88eb91c64ca607ad9efe7ca0ea56d4a535c80c 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/radiationProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/reactingCloud1Properties b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/reactingCloud1Properties index 5a2b88cd94348576df31ee1e556318b99d387681..f1947b12c9304c77ca6fe4c512ed0a658eaa3cd4 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/reactingCloud1Properties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/surfaceFilmProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/surfaceFilmProperties index d61fde3336ab15d89c68f318c2f7a0d78e28d2c2..214f88cb0c888f657f181ad8a9334ad37471c9c0 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/surfaceFilmProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/surfaceFilmProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/thermo.compressibleGas b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/thermo.compressibleGas index 6137f5521f4290c8f69efd9787dc64ea289cb486..b8a94561fccfdf51cf87b004fb3ea42893414e44 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/thermo.compressibleGas +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/thermophysicalProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/thermophysicalProperties index b094fd1c8f3eba34b8a9d3481fb71f0af2520bb7..26802f86ee292dbd46c790df7bb389075bdf1c93 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/thermophysicalProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/turbulenceProperties b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/turbulenceProperties index dac198af0159a6d4cd544556e7b1d48dff07f860..4bba4bdd330ef96545b7cedab3e555d26a324b02 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/turbulenceProperties +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/blockMeshDict b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/blockMeshDict index 71c596365e8070e6d2be53ba9ed0250ffb7279cd..863da23a81ba46e622de1a81d013d76ec115ecfb 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/blockMeshDict +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/controlDict b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/controlDict index 8b54c371b3e70d3b832f7ed8ed9dcf47c102e4f0..3e7f4cf9d43ba5a04c9bc701e6a1f42699690053 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/controlDict +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/createPatchDict b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/createPatchDict index e8d3d1557a1643d7d5a51251350f35e36606fdbc..ff4bf674e25d434484b9ebfcc34a23a2f2ea813f 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/createPatchDict +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/decomposeParDict b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/decomposeParDict index b4d7c8e993e485521f41e2eb1c352e05baa1fd4d..f9f4da697641b171be0f91f30ffc849d048967a3 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/decomposeParDict +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/fvSchemes b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/fvSchemes index 037e85119ad1081f1c00919b6ad127063a184bcf..f77b350472e0925c0b70d1b10925b18a58eb4fac 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/fvSchemes +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/fvSolution b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/fvSolution index 12ed8df041a3814b1a4a085e383ab9f3b778ccfd..913e38422aefddfb0520ffb6e25a14914ac0cdf7 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/fvSolution +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/topoSetDict b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/topoSetDict index 511885b498a9aa9e1a5312fdabc22b2713b29457..d74b760cf5eaf575d7da5c246c4d7e62dc31823c 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/topoSetDict +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/CH4 b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/CH4 index 883de0d7a9ad5dc188cf8b0e36cbeaeca71cae9d..365ee00a2480075f1287e1aed0f0388b603d1ded 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/CH4 +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/G b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/G index 2a8cd8cdb92f72eb7ebdf92c87c7bec8be41eb9c..de476edcc04bb9848d457c22b46d1ba73e2735e7 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/G +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------* \ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/H2 b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/H2 index 5c3cb3a5606afacc6f80f436fe9b94a4059eb6a0..91e86c0dc9db796ee1c6f28b85af9d3b906adc52 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/H2 +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/H2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/H2O b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/H2O index 9be3ee566663aadd9f84b73eebef97981d36478d..ddbd47d8a38eb96ea7ae5aa8f083e9aaaae56f6a 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/H2O +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/N2 b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/N2 index ed32dea167071a2208f04957eaaa6518515fa830..86a61cd24fb51010c1e91ba462b6d9a1fba7276a 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/N2 +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/O2 b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/O2 index faaf37d12698a096f29c9eaf69726ba7c365a291..e8841ba0a5dad2f1712fcb70ac6a8f6e2ffbef2b 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/O2 +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/T b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/T index ead85eedac89cb15b17e02f0e4b32d8812f1c282..5a2f317b8f1f1e358cf98eefccda8e0c4aa4a634 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/T +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/U b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/U index f49b3114dd09d57c8c27719dc023c7765958839a..26311a0b80d9b1de9e3677c2bb52187d6eaf2712 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/U +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/Ydefault b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/Ydefault index e0c646153cb5e96bbe51aed88c95c3880edd7102..ecb5d6c5d06e3e65f63679c68d05befc01a1c797 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/Ydefault +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/alphat b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/alphat index c3f0f27a24caa48037829e32e2148303db3d795c..e009999e7ebd525c0ea2f5af009851a142b21639 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/alphat +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/epsilon b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/epsilon index 827644fbbba14f68ae82f3c444d91f274fac9043..3d98a1a02e7a726a8e7ea080abac102046374863 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/epsilon +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/k b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/k index 22fe0c3b2d561f62e8da3c578a1f2dc094895a20..9fbaa35755f37c2c1fb40d805dbe2256aa2e82bd 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/k +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/nut b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/nut index 110deb0d09411aa8494bca15e9ba475f6c627bc2..86b44c6ad26114e03ebd957de5f0b606b07d40f3 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/nut +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/p b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/p index e19673228d464efb4023e48e9d5015b4e070b9a8..8daad59eec36c5d3a1dd4a4773497f5c92b884a4 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/p +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/chemkin/transportProperties b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/chemkin/transportProperties index 78aaf3d72c91f60065ed9da2cabadab596879909..c4fdae00f79d26bfa46b10d42daa2b7d5ccbb062 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/chemkin/transportProperties +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/chemkin/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/chemistryProperties b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/chemistryProperties index e082941e3edb6a0df96d2b22783f69f32f8654f4..a2c652d058b120e3f05fc88047b13f02fa584b03 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/chemistryProperties +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/combustionProperties b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/combustionProperties index 091a37441e3f52507d7944eb20455a5851555d85..92139b874ee97982fb6e6794e4168fa0ea4eb38b 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/combustionProperties +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/g b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/g +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/thermophysicalProperties b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/thermophysicalProperties index 85b9a72ba9f3904a78446d75a4dcf9614e0b86bb..82c038c365e77f8624c8bac62960691dcb604ae3 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/thermophysicalProperties +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/turbulenceProperties b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/turbulenceProperties index a9ffdd8c4a5270f55d4a48c656b2883de379ce07..9629734c61722707ca8ca56f437430e3a29a2d1e 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/turbulenceProperties +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/blockMeshDict b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/blockMeshDict index a71ca32bbf557b270545f1377ad033bc89f8f981..735562f27a4efb4f50f79377472bdb4aec751a22 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/controlDict b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/controlDict index 46dd4c893742f421ba583e140b63dd160936b226..7d8c70bf8a005d647ca49c39c0a3d4af71e304f5 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/controlDict +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/decomposeParDict b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/decomposeParDict index 0ef47a6e7a897545709b0e39cbe821d5231bd3bc..7d0ed43e02d68ccdf27b65ef5322e4a0113b3d09 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/decomposeParDict +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/fvSchemes b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/fvSchemes index 849fdf0ce35195bece7a6c8067a00b8a5eb76177..298c3a9a84c65cf16ee7664bba182c78bfd91623 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/fvSchemes +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/fvSolution b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/fvSolution index bdcab9994dd6ebc83543e2ae2973d20e4af177b4..076e23141e7c82fef5ec2f6ebc9c2670c5998892 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/fvSolution +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/setFieldsDict b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/setFieldsDict index 67ad9124a1fff593cf68dd0300fcc056f4b71109..612152e13830a6a1fe4b71ece1999804e132c1a0 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/setFieldsDict +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CH4 b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CH4 index 6b8ecc94c9e12a309c4541c4fcfe14d1ad82fb7c..d248f12780c53694c575e2d781608544c6da3315 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CH4 +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CO b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CO index 35e2e0006f9b82d08508beb92020b64bc4358d13..0b452731a9cab9bcd5158e1e6dd0139add1fa8e2 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CO +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CO @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CO2 b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CO2 index bbb94e9fa3075c5c3d680d22223bf313d7b203e6..95ca5536fef21c34e2e7c0115f69d161756303e8 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CO2 +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/CO2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/G b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/G index ead1490067a35048670a11a518b209f175247c47..75d508a36ff70f5e746501ff654af903cc309abf 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/G +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------* \ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H index 17f4216c4b8e3e38ba7312a76c1bb22783145144..e1346ef2ac93099ea779efb3f2703a4a676d851d 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H2 b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H2 index 13d3389f630ea075528500edeadc07647948a666..f42c94bf1ea4e81fff7ab7c3739a20be4ad3cacb 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H2 +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H2O b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H2O index d19ba065df888a432680a6158270db95d78852c4..6d7675818c1d2ea08b1c9b97497302e97c67e1dc 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H2O +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/N2 b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/N2 index 59af19aa80cdfa32e3dd1bdc5654253fea6567de..06cad1c172ceb540304eeb6a15981acc9b5b93b8 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/N2 +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/O b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/O index 4373733944141ad2417366d3945c39225b76c6f5..0ba8f3cd0c915affadf3dfa82cdc93b8f61e35a9 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/O +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/O2 b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/O2 index 2ad7c38b10be7e7bf37e9b803fcc0cb399cd41ca..7ee724bd555dfee4aeea92cae4fb085b6324b147 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/O2 +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/OH b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/OH index 5f8418b8a869d3b3a1cc6ea8bebe902e957cf7e7..2ef842dce5fbce2ba4d8fd723f3b13fcac73af18 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/OH +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/OH @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/T b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/T index 6b7963b555129603b47dd8cd69d273f7ea1b3fe9..008bd3c6abaa1a59461f6bdd91e016a432416152 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/T +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/U b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/U index 6d95f6d41df3608a198b2f7a3050ef2ccac526cd..106867830f68604f0c72e8a03bdd6e42a65a2e45 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/U +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/Ydefault b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/Ydefault index 00fcd11b75550a06b81536d09b30d827260fa64c..edff41b2a0ea8b24d810c3b0a0774126d7f4100b 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/Ydefault +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/alphat b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/alphat index 51e0232b3fb96037209e380c3d14b26d4ad8818c..26254aa0287b8c63b909b747baefc97024307f81 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/alphat +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/epsilon b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/epsilon index a89dfa6f11558d183a22ed7a18529373925b852a..63d70154519192b7e31ef515950e8c3564ad209c 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/epsilon +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/k b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/k index 82fbfe1836294fe16ce11a56c9c43bff232cdf5a..2797a0ff78215066098a6b82f3db945fbee84388 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/k +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/nut b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/nut index 25520f5bd90602eb7c909ca2ebb4b9f80f42ef70..2b5f4e5b51b4f954e693ed4f97f2e3377f87eb6f 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/nut +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/p b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/p index a0f29b0fe0bd4c1643d82c8c66074d0f3842c700..db714c44056b688b0dc47339d3bf8cf285293693 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/p +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/chemkin/transportProperties b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/chemkin/transportProperties index 78aaf3d72c91f60065ed9da2cabadab596879909..c4fdae00f79d26bfa46b10d42daa2b7d5ccbb062 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/chemkin/transportProperties +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/chemkin/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/boundaryRadiationProperties b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/boundaryRadiationProperties index 86ed83cd975b258f0abdeb507eb53aacf80fa626..c5e26438f8826c5b17405a04e4e66e75203705c3 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/boundaryRadiationProperties +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/chemistryProperties b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/chemistryProperties index ed2992cbfc1ec0b886349d6354b88164bdba5d15..6b6b5970f1a612e529014c3fe37dae95f252a214 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/chemistryProperties +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/combustionProperties b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/combustionProperties index 091a37441e3f52507d7944eb20455a5851555d85..92139b874ee97982fb6e6794e4168fa0ea4eb38b 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/combustionProperties +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/fvOptions b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/fvOptions index 5e4a26d14b0f6bbf2b09e9689aea6ac554118dd3..b704afeb62c9239a47d2abfdb50b02268d055a15 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/fvOptions +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/g b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/g +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/radiationProperties b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/radiationProperties index 29397f9e822b3dc212b7c65993c3a25924e8f6f8..8ed13082421198fc1acff92a825c4e0d11eee227 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/radiationProperties +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/thermophysicalProperties b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/thermophysicalProperties index 85b9a72ba9f3904a78446d75a4dcf9614e0b86bb..82c038c365e77f8624c8bac62960691dcb604ae3 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/thermophysicalProperties +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/turbulenceProperties b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/turbulenceProperties +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/blockMeshDict b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/blockMeshDict index c620d65cbfc50b9242c98c8ad2b9ade3d0a7793a..63b2ae557cf130882e3d0543b36e00db6b729b70 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/controlDict b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/controlDict index e9650d0aba1795ca7cf19c3af3b638efeb5f53a0..4d7c2e2152ab8704d35107ce959455fe13b836d8 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/controlDict +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/fvSchemes b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/fvSchemes index 849fdf0ce35195bece7a6c8067a00b8a5eb76177..298c3a9a84c65cf16ee7664bba182c78bfd91623 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/fvSchemes +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/fvSolution b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/fvSolution index 4dd838b33950bd8260825a13c89c8448126e4eae..24615695c4700af5743de0f94d5b8baa285a15ef 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/fvSolution +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/sampleDict b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/sampleDict index 41afb9b4eb5fbc4b2716f11bbc4f42d107771e5d..0ce1be38ff124b6778afd02f7ce1f3d77867a4c0 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/sampleDict +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/sampleDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/setFieldsDict b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/setFieldsDict index 3a8b3ec39719d26d587c5066d318c680704a03ee..032633acd37ac1c9d809a1b755d2641080b89a34 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/setFieldsDict +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/CH4 b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/CH4 index df67eda50e9172469235b47b68afa0c3ed7de6bd..1431b0278972790590487629a8db3d5c09d6d476 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/CH4 +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/H2 b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/H2 index 783b1d1a0d1cc20ea8765dff533634b38d627cc8..e4f8dbd0113346d3df2a03e911785bff9ff33c27 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/H2 +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/H2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/H2O b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/H2O index 78e39b5f7c2ad266dcfee6912da127a29a98f420..cac538632e3066690b4ec8d34f9c4f7bc6185c34 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/H2O +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/N2 b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/N2 index 6c0ff574eb46fd0ccbb9b03c4891fc249305ada1..7b5509e69f930b02ac4ede2abf35730664f2aa12 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/N2 +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/O2 b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/O2 index 3d03a4be36d0de41b8537a591ddf4673e3311d9c..d8a950c7261c50f400e09d072d45a2a680277159 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/O2 +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/T b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/T index ac7f95cbd0b25fce0b56bcbc074f5281aa36cb06..26582b824ee380f99c0ef1d5c86a57ca26d6efb8 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/T +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/U b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/U index 00a627f361de43dde67aaf3c35b2dda9a3a387f8..8a2e5d08c02f2de870829a31f9139309cdfdc8e7 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/U +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/Ydefault b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/Ydefault index c97473d8a38495e9f758a3a87861fb50b8d092fd..7d02d43a90b7e8b6500ff232cf4728076eb4d209 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/Ydefault +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/alphat b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/alphat index 0aa2c4961e47a42c1c26ec849898b761ee52fa4e..f3b4f95d23e5bf31f550874250df9c93ad3c8f4d 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/alphat +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/epsilon b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/epsilon index e6c5ae52a2d422e79007df89433db6412fcddc27..39add4b38e9a9fb959f2a9e1d2dd728ec837b7b4 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/epsilon +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/k b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/k index ac7769a4545a413bd07d33205535ebbab6791025..4eba99adb1530a341c3e6f3a0776fb0fe6c3b9c2 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/k +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/nut b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/nut index bf5e99dbda8e008fa3986b5c8e7197bc61a25cab..247259e2499789c1abf7d5d026fa6fe92ffaf70b 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/nut +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/p b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/p index 495aadf3652f9b355643a00d66592b73d7dcf1c8..9dba51d955a4f53f839850930bedff95203a9e68 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/p +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/chemistryProperties b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/chemistryProperties index d6f679054f225f1ec7c4ff5b384ae4004d9a2cfc..944ceb1a1f144b0840f1b721ae231452e8f30f40 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/chemistryProperties +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/combustionProperties b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/combustionProperties index 71479bc22e7b87ddff875c73b6487190555cdf9d..7f5c28eae2ff3317190b7cd863c014b501537d4f 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/combustionProperties +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/g b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/g +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/thermophysicalProperties b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/thermophysicalProperties index d6bac740e044273d31ff89c4ed81bfc589067715..f99bda5f3ce367de02ccf302d280b0c95de2b339 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/thermophysicalProperties +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/turbulenceProperties b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/turbulenceProperties index a9ffdd8c4a5270f55d4a48c656b2883de379ce07..9629734c61722707ca8ca56f437430e3a29a2d1e 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/turbulenceProperties +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/blockMeshDict b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/blockMeshDict index ac56018ea15b426cb56a0abe4352395523903949..0703322c42556a6b19abd5841cead48e9a19860d 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/controlDict b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/controlDict index 61b7ae285515cfe34ac687e3b56eb2971c56b692..e6f2a599f2b9ce14169a10580e90e97f4e901cd6 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/controlDict +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/decomposeParDict b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/decomposeParDict index cda353f365980437b1c179ef70a016a538ef84a6..2a913e8d72a4843d091a95cefb32c4e05ffd0558 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/decomposeParDict +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/fvSchemes b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/fvSchemes index dc1f734d8b395134701c1bf6f7836b58453fcd3e..7c1c0e2a456f0be7d96ee00ead9f6083f75f9646 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/fvSchemes +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/fvSolution b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/fvSolution index d752c61c0805cfb84be2ba85038b80a2748e3b99..c5af71ed55c7865d1ce2f235c7511147c1c34831 100644 --- a/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/fvSolution +++ b/tutorials/combustion/reactingFoam/RAS/chokedNozzle/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/CH4 b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/CH4 index 314ab43b496c094c318df8223a4d39bc5eb2e980..4eceb8540df7dd2ffb96ad084ab2a5705a47ed95 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/CH4 +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/N2 b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/N2 index c58ced7b4012f2b34fb0a968a8ed741e8ba657ea..2c8cf89297073b46dd940e61d2b550b209cf11e7 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/N2 +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/O2 b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/O2 index a0115baed10bba3af0875892fd7ba82d3d0385c8..05e7035c5def7f2f3802a93a4f7a7d7b4787d198 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/O2 +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/T b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/T index 6bbee3fdedacfe67dca232f706f52c4988a892e4..70f89f0c68fed392c857ed4a950b2a5a245ef97d 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/T +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/U b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/U index d53af1f72df085d59e04977036cea8a205a51e69..8227d3d5c189078d24f060cde62ecabd562c7f4e 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/U +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/Ydefault b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/Ydefault index 3cdd6ab9d65ceba72508f09bac2209461f71e45f..4cd26ed46d1235c76bd6b7be8e466c767199c7b4 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/Ydefault +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/alphat b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/alphat index a68317429cb359b97c49677c5da8b2fd0366f9a4..5b1b9ecc41671f094710b26734a9c7daf43e676c 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/alphat +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/epsilon b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/epsilon index 062123ed6b42ab39ca4aab55ff5479f5adae48dd..f2a9f173e0f3f36b8d23f294e237b7c19fecf7f7 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/epsilon +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/include b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/include index 8364b8bee8f6cb6fc35343a90666a8a915aca509..20c26beddb1c23c68504f222bc8333dd1a7b7168 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/include +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/include @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/k b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/k index 2c428c0740d1944e34ba3b20270d8dad577d00da..434feed8bd989b4945412c4cb327450ee93a58c3 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/k +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/nut b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/nut index 63e2b408cb4b8f353fe267acae4c75c6c6572543..39539cb127c3d039bede72b8fee2dd2d3614d18b 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/nut +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/p b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/p index aa2ee4343829e13b5f72bc5b9b46af5cb536a5e8..3a067e167411d93f1bd16f644fd6adcb0cd89cf6 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/p +++ b/tutorials/combustion/reactingFoam/RAS/membrane/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/constant/chemistryProperties b/tutorials/combustion/reactingFoam/RAS/membrane/constant/chemistryProperties index 41301d605ad739703608bf042c49307343a38d6c..4afe08578d5f9cb6c193e3de2d91b2c00eaa107d 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/constant/chemistryProperties +++ b/tutorials/combustion/reactingFoam/RAS/membrane/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/constant/combustionProperties b/tutorials/combustion/reactingFoam/RAS/membrane/constant/combustionProperties index 1ceda32812c59962c15fc6778c83cdccfbbfa4ff..6c691ca9d11b5d073d73a3f620f31c204a0e8d04 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/constant/combustionProperties +++ b/tutorials/combustion/reactingFoam/RAS/membrane/constant/combustionProperties @@ -1,7 +1,7 @@ /*-----------------m---------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/constant/reactions b/tutorials/combustion/reactingFoam/RAS/membrane/constant/reactions index 6c1c5584300a500a72c25a0e407002734a166a37..f5c15096e32d3153177cac3ff5a1819fa81dd7ea 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/constant/reactions +++ b/tutorials/combustion/reactingFoam/RAS/membrane/constant/reactions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/constant/thermo.compressibleGas b/tutorials/combustion/reactingFoam/RAS/membrane/constant/thermo.compressibleGas index 035c536c4139d22ad86a55a61f83a19756189615..f7b55b336f13155d6bbfd2cbea3fc9a1f844c882 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/constant/thermo.compressibleGas +++ b/tutorials/combustion/reactingFoam/RAS/membrane/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/constant/thermophysicalProperties b/tutorials/combustion/reactingFoam/RAS/membrane/constant/thermophysicalProperties index ab116f183dd8e3acc58cb384bb7296c2042a915c..12ce8a4c3e549b0e03345b42ef000dc6795a63c8 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/constant/thermophysicalProperties +++ b/tutorials/combustion/reactingFoam/RAS/membrane/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/constant/turbulenceProperties b/tutorials/combustion/reactingFoam/RAS/membrane/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/constant/turbulenceProperties +++ b/tutorials/combustion/reactingFoam/RAS/membrane/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/system/blockMeshDict b/tutorials/combustion/reactingFoam/RAS/membrane/system/blockMeshDict index e9e749aa97c127662c7f511fa8893ebc065445f4..1e314443527851498451f6bb48b52723731037df 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/RAS/membrane/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/system/controlDict b/tutorials/combustion/reactingFoam/RAS/membrane/system/controlDict index 5af13e96283566bd3cb22095681ff7c645d28cc0..d8c0a0161dac80c47d6c55334258e71856b1c0ca 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/system/controlDict +++ b/tutorials/combustion/reactingFoam/RAS/membrane/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/system/createBafflesDict b/tutorials/combustion/reactingFoam/RAS/membrane/system/createBafflesDict index 77068fb0dadae2ab2711b4a945487c036c97103a..63c56d0a02e07a76bb568af47eecea3b4c4f6c08 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/system/createBafflesDict +++ b/tutorials/combustion/reactingFoam/RAS/membrane/system/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/system/fvSchemes b/tutorials/combustion/reactingFoam/RAS/membrane/system/fvSchemes index 66830f33b9e153459fe64b6d0611b1c2fe2c56c9..9cb6288593eb022c869f8df0356bd3cda62178ab 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/system/fvSchemes +++ b/tutorials/combustion/reactingFoam/RAS/membrane/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/system/fvSolution b/tutorials/combustion/reactingFoam/RAS/membrane/system/fvSolution index 5df0d6de58da141fb73903ccf1e74a1677dfb5c4..5fc0508eb7814cf59fe79f9b6f8e81fe28def95c 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/system/fvSolution +++ b/tutorials/combustion/reactingFoam/RAS/membrane/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/system/meshQualityDict b/tutorials/combustion/reactingFoam/RAS/membrane/system/meshQualityDict index 09783711f9aa9dceabcbebd17d0201ff4e950d12..18faaa9901c2948f935ed759d021d62a2e05b5e1 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/system/meshQualityDict +++ b/tutorials/combustion/reactingFoam/RAS/membrane/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/system/setFieldsDict b/tutorials/combustion/reactingFoam/RAS/membrane/system/setFieldsDict index e635e3bc161de164b3e4948d6ceca801ed504084..f98c42b7f384a9ecdc70e36d51666b14a56e19a4 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/system/setFieldsDict +++ b/tutorials/combustion/reactingFoam/RAS/membrane/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/system/snappyHexMeshDict b/tutorials/combustion/reactingFoam/RAS/membrane/system/snappyHexMeshDict index 3d269a1bda03183358c2f551da8807f29db8b957..0b259592e174ec55e03dcfb3027eb062ff6a41db 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/system/snappyHexMeshDict +++ b/tutorials/combustion/reactingFoam/RAS/membrane/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/CH4 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/CH4 index ab2f2edad0d143b41f4b5200d001e106bfb9913c..c7114e650a862a3e9293da7e18e021a3530e9bc5 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/CH4 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/CO2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/CO2 index 08853e67b7d8de1a7516b67e4df748fb9698dc1b..e328d3db82441c09fce2c0257c2dd10e49a5d0f4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/CO2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/CO2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/H2O b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/H2O index 6dc845dda319ead9c1960d2481133cb29a4062b7..c088060f8dd7174d63b9e355c6ffa35e30d98e7f 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/H2O +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/N2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/N2 index fc44bf8383810dbbab4b18ca07aacae13b843c1a..40a92c9367ad54d7474c9ac5ce6fce2e82474503 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/N2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/O2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/O2 index 30c0ae61258811cb1be48932d025af0109ebe1b9..a7e1929d3c251ef1f195fff0a74efa35e34ef5fb 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/O2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/T b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/T index 6d76d9dd2c6876a56caba7033bbc972dcf920425..86ede38a14f2920c389aead9ee73290b44277874 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/T +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/U b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/U index 17a0beea50a19ece6d7c640cf52d8cfcf9455e01..5832f4f2eb6474614bf0f55f78cc351e73f5c047 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/U +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/Ydefault b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/Ydefault index 455052b61f1ab9fc853c42d7a87c119e9ad2727d..c718c2b9aedefa36b85de06c381a263c98c41697 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/Ydefault +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/alphat b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/alphat index 052bda749a0fd3f9a9386de7e349da799a934dcc..83b33bcb2c62697e5c120a033740fb47022b5b79 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/alphat +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/p b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/p index cf8f7ad13be222641b36ac6ae58f9f9339d97252..322b9e61c5cf2f0140156b4fc034ed6933c95bbc 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/p +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/chemistryProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/chemistryProperties index 4870cd78853798bcb647b90cff85834dc4acd2c1..99fa9d89a3de5896dd6a8f6d126f15e44433e0a6 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/chemistryProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/combustionProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/combustionProperties index 6f2c82f98d7f318e226281ee7a704dbe6c935c49..0a3f777671f56bb789d39a7638d46600cafc44d6 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/combustionProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/thermo.compressibleGas b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/thermo.compressibleGas index 16edd584e3a5bc83de38f2a33ca816d24d43b105..da6ae970e1b1a115d22ac28b912116a9a643dfb3 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/thermo.compressibleGas +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/thermophysicalProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/thermophysicalProperties index f421f085e68c43ab99bde7f5b9f8d0c03919e911..d2aab5e1040e708afd838ffedfe564b00650b821 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/thermophysicalProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/turbulenceProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/turbulenceProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/FOBilgerMixtureFraction b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/FOBilgerMixtureFraction index 79715a59bbd6d13f488a7a9494d3ff0550191f3c..e066324dcb443fd5d5d050c9a97afdd761f1f861 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/FOBilgerMixtureFraction +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/FOBilgerMixtureFraction @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/blockMeshDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/blockMeshDict index 6989af448b44da2238dda90f5838056d9b9e8461..97caf4225f9ffe9c8510a728757ad7af372622e4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/controlDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/controlDict index be8e12b6d38232618760806232c540e6bcc6dc7f..8ea3d4032072418e0ab3c8d548628d158f647750 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/controlDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/fvSchemes b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/fvSchemes index 66830f33b9e153459fe64b6d0611b1c2fe2c56c9..9cb6288593eb022c869f8df0356bd3cda62178ab 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/fvSchemes +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/fvSolution b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/fvSolution index af6c64e34ed091f11d3008bcc5e07b4493ba7659..5b434fbe242dc9f4a6bfd34daaa68cc2ea18cc6b 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/fvSolution +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/CH4 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/CH4 index fe2009e6e37eafd35187181724a8ec7acd171f12..ed7ce1de10064cfbfdfb55266dd895caa019d0ec 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/CH4 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/CO2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/CO2 index 18dd44fe701cb365e343f66e72ba6b81b623db06..7f0712e70b62fb41bb2c7d0db6ec448962dcf4d4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/CO2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/CO2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/H2O b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/H2O index 6dc845dda319ead9c1960d2481133cb29a4062b7..c088060f8dd7174d63b9e355c6ffa35e30d98e7f 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/H2O +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/N2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/N2 index 380399fc10c5f869b0a87a385fb5d194ec8f3aaf..5e779e5f7bd3333c3c79e06a2e6ead98d6d58b56 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/N2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/O2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/O2 index d3f6dcd50997be8afc4ade223932a31931791289..fabbf07455a04acf6bb92fa8a8ef8ff7247e74d9 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/O2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/T b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/T index c5e07dc1f825f34031a83616c5b5da150389d3b1..d99ae74319a35c8f68dbce1b53e6bd5aaaf1a69c 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/T +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/U b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/U index 17a0beea50a19ece6d7c640cf52d8cfcf9455e01..5832f4f2eb6474614bf0f55f78cc351e73f5c047 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/U +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/Ydefault b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/Ydefault index 9cd84f0619bd6810227da490752a3ae78f05bcf4..fd123bea203faf738e2afb13be460411c4989fa0 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/Ydefault +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/alphat b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/alphat index 0065fc2538e9b243836594f7d405379047304c17..53207445acb0968567ea880e58c72e4f389eed40 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/alphat +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/p b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/p index b7b1d5633e12be419586ea916be63925b2123d11..6538937e97c218a177f4eccd7ef6968d81366d23 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/p +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/chemistryProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/chemistryProperties index 2a53e35418d181524d8720ae783b6e373afbaee0..ce8314382eee20d414fd745a7e6983f1015825d4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/chemistryProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/combustionProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/combustionProperties index e06e929324283340970a88defe16892b06225dd3..e9b400a9c6be93b50c705a765df1b4a5e2af3a4e 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/combustionProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/thermo.compressibleGas b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/thermo.compressibleGas index 035c536c4139d22ad86a55a61f83a19756189615..f7b55b336f13155d6bbfd2cbea3fc9a1f844c882 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/thermo.compressibleGas +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/thermophysicalProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/thermophysicalProperties index ab116f183dd8e3acc58cb384bb7296c2042a915c..12ce8a4c3e549b0e03345b42ef000dc6795a63c8 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/thermophysicalProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/turbulenceProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/turbulenceProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/blockMeshDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/blockMeshDict index 6989af448b44da2238dda90f5838056d9b9e8461..97caf4225f9ffe9c8510a728757ad7af372622e4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/controlDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/controlDict index d0555d039c05522fdb87c5881c8913b299fa6651..a4a1b77cc3020eff684ad91b25f83530f292d34e 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/controlDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/fvSchemes b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/fvSchemes index ba81fec0e786dfab93205151edd835a52f02017b..622eb9bf594a6c70d5711721ce2437b7da311a59 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/fvSchemes +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/fvSolution b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/fvSolution index ad874a1a07fed713dc03db25883b965555ebb338..8f6fb0d4b1ac9d7c7fea7ecef174d3a1c23c79f4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/fvSolution +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/CH4 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/CH4 index fe2009e6e37eafd35187181724a8ec7acd171f12..ed7ce1de10064cfbfdfb55266dd895caa019d0ec 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/CH4 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/CO2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/CO2 index 18dd44fe701cb365e343f66e72ba6b81b623db06..7f0712e70b62fb41bb2c7d0db6ec448962dcf4d4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/CO2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/CO2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/H2O b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/H2O index 6dc845dda319ead9c1960d2481133cb29a4062b7..c088060f8dd7174d63b9e355c6ffa35e30d98e7f 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/H2O +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/N2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/N2 index 812b62e8447df68a44f9744f9b6922ecc46d697d..40af1c3c8088660028dec517ae35621f0cd3910b 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/N2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/O2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/O2 index d3f6dcd50997be8afc4ade223932a31931791289..fabbf07455a04acf6bb92fa8a8ef8ff7247e74d9 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/O2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/T b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/T index c5e07dc1f825f34031a83616c5b5da150389d3b1..d99ae74319a35c8f68dbce1b53e6bd5aaaf1a69c 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/T +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/U b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/U index 17a0beea50a19ece6d7c640cf52d8cfcf9455e01..5832f4f2eb6474614bf0f55f78cc351e73f5c047 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/U +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/Ydefault b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/Ydefault index 9cd84f0619bd6810227da490752a3ae78f05bcf4..fd123bea203faf738e2afb13be460411c4989fa0 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/Ydefault +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/alphat b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/alphat index 0065fc2538e9b243836594f7d405379047304c17..53207445acb0968567ea880e58c72e4f389eed40 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/alphat +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/p b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/p index b7b1d5633e12be419586ea916be63925b2123d11..6538937e97c218a177f4eccd7ef6968d81366d23 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/p +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/chemistryProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/chemistryProperties index 1b2b63edcedf23fec5d7fdc40b68cc1ac1f03dd6..2497e14e3652758624e3fd20eb587975864058d9 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/chemistryProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/combustionProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/combustionProperties index e06e929324283340970a88defe16892b06225dd3..e9b400a9c6be93b50c705a765df1b4a5e2af3a4e 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/combustionProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/thermo.compressibleGas b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/thermo.compressibleGas index 16edd584e3a5bc83de38f2a33ca816d24d43b105..da6ae970e1b1a115d22ac28b912116a9a643dfb3 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/thermo.compressibleGas +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/thermophysicalProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/thermophysicalProperties index 85b9a72ba9f3904a78446d75a4dcf9614e0b86bb..82c038c365e77f8624c8bac62960691dcb604ae3 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/thermophysicalProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/turbulenceProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/turbulenceProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/blockMeshDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/blockMeshDict index 6989af448b44da2238dda90f5838056d9b9e8461..97caf4225f9ffe9c8510a728757ad7af372622e4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/controlDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/controlDict index d0555d039c05522fdb87c5881c8913b299fa6651..a4a1b77cc3020eff684ad91b25f83530f292d34e 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/controlDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/decomposeParDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/decomposeParDict index a63bb992de12519c8682a8b273f146e5fb1ba88b..9a4c1b1ae1414ce50bd386d6fcaecee46bcad07b 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/decomposeParDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/fvSchemes b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/fvSchemes index ba81fec0e786dfab93205151edd835a52f02017b..622eb9bf594a6c70d5711721ce2437b7da311a59 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/fvSchemes +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/fvSolution b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/fvSolution index 10ccc6f8b7d7d33b8922bb025d5777e75e868288..94794659bc2ddf600da6e89e53da4cc68a8d0af1 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/fvSolution +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/CH4 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/CH4 index fe2009e6e37eafd35187181724a8ec7acd171f12..ed7ce1de10064cfbfdfb55266dd895caa019d0ec 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/CH4 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/CO2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/CO2 index 18dd44fe701cb365e343f66e72ba6b81b623db06..7f0712e70b62fb41bb2c7d0db6ec448962dcf4d4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/CO2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/CO2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/H2O b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/H2O index 6dc845dda319ead9c1960d2481133cb29a4062b7..c088060f8dd7174d63b9e355c6ffa35e30d98e7f 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/H2O +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/N2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/N2 index 380399fc10c5f869b0a87a385fb5d194ec8f3aaf..5e779e5f7bd3333c3c79e06a2e6ead98d6d58b56 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/N2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/O2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/O2 index d3f6dcd50997be8afc4ade223932a31931791289..fabbf07455a04acf6bb92fa8a8ef8ff7247e74d9 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/O2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/T b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/T index c5e07dc1f825f34031a83616c5b5da150389d3b1..d99ae74319a35c8f68dbce1b53e6bd5aaaf1a69c 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/T +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/U b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/U index 17a0beea50a19ece6d7c640cf52d8cfcf9455e01..5832f4f2eb6474614bf0f55f78cc351e73f5c047 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/U +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/Ydefault b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/Ydefault index 9cd84f0619bd6810227da490752a3ae78f05bcf4..fd123bea203faf738e2afb13be460411c4989fa0 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/Ydefault +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/alphat b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/alphat index 0065fc2538e9b243836594f7d405379047304c17..53207445acb0968567ea880e58c72e4f389eed40 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/alphat +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/p b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/p index b7b1d5633e12be419586ea916be63925b2123d11..6538937e97c218a177f4eccd7ef6968d81366d23 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/p +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/chemistryProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/chemistryProperties index 1720cf9c73e29f911ca16520c9ae08fd575403b5..07a95ed066fc3baa0f5019e54fd4acacfeee2323 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/chemistryProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/combustionProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/combustionProperties index e06e929324283340970a88defe16892b06225dd3..e9b400a9c6be93b50c705a765df1b4a5e2af3a4e 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/combustionProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/thermo.compressibleGas b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/thermo.compressibleGas index 16edd584e3a5bc83de38f2a33ca816d24d43b105..da6ae970e1b1a115d22ac28b912116a9a643dfb3 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/thermo.compressibleGas +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/thermophysicalProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/thermophysicalProperties index 85b9a72ba9f3904a78446d75a4dcf9614e0b86bb..82c038c365e77f8624c8bac62960691dcb604ae3 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/thermophysicalProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/turbulenceProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/turbulenceProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/blockMeshDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/blockMeshDict index 6989af448b44da2238dda90f5838056d9b9e8461..97caf4225f9ffe9c8510a728757ad7af372622e4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/controlDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/controlDict index cdbc7737e1c53c17cff2da250ec8e906c95e0fa9..3ce58c20218eb12809634c9675cf0f810775cbac 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/controlDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/decomposeParDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/decomposeParDict index a63bb992de12519c8682a8b273f146e5fb1ba88b..9a4c1b1ae1414ce50bd386d6fcaecee46bcad07b 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/decomposeParDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/fvSchemes b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/fvSchemes index f7c53efbc6911574c660af5029f66af33943455a..584877abd1094933f6d4a5a7072bf9c3d2cbe656 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/fvSchemes +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/fvSolution b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/fvSolution index 27dea6f10c3a2afe585d8599a36d4cba2244896f..87b166c5c7e805c92f5f6fffc94a8aa7a55b6caa 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/fvSolution +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/CH4 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/CH4 index fe2009e6e37eafd35187181724a8ec7acd171f12..ed7ce1de10064cfbfdfb55266dd895caa019d0ec 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/CH4 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/CO2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/CO2 index 18dd44fe701cb365e343f66e72ba6b81b623db06..7f0712e70b62fb41bb2c7d0db6ec448962dcf4d4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/CO2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/CO2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/H2O b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/H2O index 6dc845dda319ead9c1960d2481133cb29a4062b7..c088060f8dd7174d63b9e355c6ffa35e30d98e7f 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/H2O +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/N2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/N2 index 812b62e8447df68a44f9744f9b6922ecc46d697d..40af1c3c8088660028dec517ae35621f0cd3910b 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/N2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/O2 b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/O2 index d3f6dcd50997be8afc4ade223932a31931791289..fabbf07455a04acf6bb92fa8a8ef8ff7247e74d9 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/O2 +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/T b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/T index c5e07dc1f825f34031a83616c5b5da150389d3b1..d99ae74319a35c8f68dbce1b53e6bd5aaaf1a69c 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/T +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/U b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/U index 17a0beea50a19ece6d7c640cf52d8cfcf9455e01..5832f4f2eb6474614bf0f55f78cc351e73f5c047 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/U +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/Ydefault b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/Ydefault index 9cd84f0619bd6810227da490752a3ae78f05bcf4..fd123bea203faf738e2afb13be460411c4989fa0 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/Ydefault +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/alphat b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/alphat index 0065fc2538e9b243836594f7d405379047304c17..53207445acb0968567ea880e58c72e4f389eed40 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/alphat +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/p b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/p index b7b1d5633e12be419586ea916be63925b2123d11..6538937e97c218a177f4eccd7ef6968d81366d23 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/p +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/chemistryProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/chemistryProperties index 09ff6480ec6b858671f8d578f6d8449be538c8ce..d8fdbf118607570d8ab2320db14bd69e0f71017d 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/chemistryProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/combustionProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/combustionProperties index e06e929324283340970a88defe16892b06225dd3..e9b400a9c6be93b50c705a765df1b4a5e2af3a4e 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/combustionProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/thermo.compressibleGas b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/thermo.compressibleGas index 16edd584e3a5bc83de38f2a33ca816d24d43b105..da6ae970e1b1a115d22ac28b912116a9a643dfb3 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/thermo.compressibleGas +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/thermophysicalProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/thermophysicalProperties index 85b9a72ba9f3904a78446d75a4dcf9614e0b86bb..82c038c365e77f8624c8bac62960691dcb604ae3 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/thermophysicalProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/turbulenceProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/turbulenceProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/blockMeshDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/blockMeshDict index 6989af448b44da2238dda90f5838056d9b9e8461..97caf4225f9ffe9c8510a728757ad7af372622e4 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/controlDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/controlDict index cdbc7737e1c53c17cff2da250ec8e906c95e0fa9..3ce58c20218eb12809634c9675cf0f810775cbac 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/controlDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/decomposeParDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/decomposeParDict index a63bb992de12519c8682a8b273f146e5fb1ba88b..9a4c1b1ae1414ce50bd386d6fcaecee46bcad07b 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/decomposeParDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/fvSchemes b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/fvSchemes index f7c53efbc6911574c660af5029f66af33943455a..584877abd1094933f6d4a5a7072bf9c3d2cbe656 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/fvSchemes +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/fvSolution b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/fvSolution index 27dea6f10c3a2afe585d8599a36d4cba2244896f..87b166c5c7e805c92f5f6fffc94a8aa7a55b6caa 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/fvSolution +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/CH4 b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/CH4 index 8bbd4654feecb0bca1c25ea4d95aa8afff34695e..6c9f050df6d388f15b2c213e0f0795b239f78adb 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/CH4 +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/N2 b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/N2 index b9eb8ef706a19de498ef141ca8a1a0ef0cd863bd..d51ebeafec540f353746af3d8f0ecb61a2df5d99 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/N2 +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/O2 b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/O2 index fa38155c0564c79720b884c8145f042c506699a1..02b915d141614f02c39c5013ad6ee9760ada13ab 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/O2 +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/T b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/T index c22c961f82079223646ca460e3398eee09385aa9..473aab4beefc2711b23c8acce11b5d313e241877 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/T +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/U b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/U index d0d418d6afff5534311633cda6512333f7afaf7a..7cb1c36aaab93765e3c95ff0f0abde2a1243b2a8 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/U +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/Ydefault b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/Ydefault index 903c29d036a3d9d4317db2543a0c241d3012d0e7..3a466b90e3263a3577d1f337ae51326ec12c3ee0 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/Ydefault +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/alphat b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/alphat index fb9171403bb612774cdedd970450d5a564f355c7..890da81eff51b5fa6b9f7b028bf8d906414d361e 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/alphat +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/k b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/k index bd7c60467838e2b33f0fdb3e01b7dbb97600658a..9428e5cce95f64525ad7fce8189abae658ec8724 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/k +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/nut b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/nut index ea0f0a0209037f0b33677cd4b33b509d97f08666..c43e8dcc5b98ab34987d20b2c569ce40defa819d 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/nut +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/p b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/p index ea4f3dee895d8efbd77ab092d97a40d4b2c069e1..bde57b15ec740e3e30c8bcb4d60b3b6f08bce8ee 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/p +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/p_rgh b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/p_rgh index 16567ef6c3eeaff1ed1d2fbaccee4980ee039eb0..ad2be344a8708f0f1020f16ead86c28cfe15de5c 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/p_rgh +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/chemistryProperties b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/chemistryProperties index dd7e1f6355216e5db552d7c8d0e5ada9a5e4d3b8..13e611425a92d0112f40fe649693404c4f2c4f4e 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/chemistryProperties +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/combustionProperties b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/combustionProperties index 9055444de496de1c0c49f22a089256ad06e890bf..d0bd98faf8e29e93baa1ccff0a211b3ee2a1fad9 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/combustionProperties +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/fvOptions b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/fvOptions index 56a16e59d2bc5047c22de2996ba5d36fd76dbf67..5b0cd4662613d0e25d2815ecb8774304c0f79e24 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/fvOptions +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/g b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/g index 0c5535932669e8f0342cba1ae577082d7345c3c4..683643b6473b75453b962107d5d6de25216dfd9d 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/g +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/surfaceFilmProperties b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/surfaceFilmProperties index d61fde3336ab15d89c68f318c2f7a0d78e28d2c2..214f88cb0c888f657f181ad8a9334ad37471c9c0 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/surfaceFilmProperties +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/surfaceFilmProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/thermo.compressibleGas b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/thermo.compressibleGas index 6137f5521f4290c8f69efd9787dc64ea289cb486..b8a94561fccfdf51cf87b004fb3ea42893414e44 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/thermo.compressibleGas +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/thermophysicalProperties b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/thermophysicalProperties index 196c00e4dd528634d56f137c32c7d82b4e17be45..e2d65b13b40e0d6078db5f1e77138e171e7fa066 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/thermophysicalProperties +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/turbulenceProperties b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/turbulenceProperties index 587dc3ffe138e687ffd223b5c982a519c254cbd2..216a88a850e1f9f14c53c8804e8d9325f25b39dc 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/turbulenceProperties +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/blockMeshDict b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/blockMeshDict index a5e43bf9e0bb1e4248df77f3a1ea630bb75cbebc..1a79e520a735a2ef1279e58a88a699af82f1e3cf 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/blockMeshDict +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/controlDict b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/controlDict index 7cb3ecea794a4039ff9556738ee19540223274fc..5d1c55782e589575a045c03d08fb12eda07e1716 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/controlDict +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/createPatchDict b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/createPatchDict index ae088185049333a99a29a6fda52bbab35bf8ccc0..47aba27309e2d893220152762cb7e3e8dd5716f2 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/createPatchDict +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/decomposeParDict b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/decomposeParDict index b4d7c8e993e485521f41e2eb1c352e05baa1fd4d..f9f4da697641b171be0f91f30ffc849d048967a3 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/decomposeParDict +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/fvSchemes b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/fvSchemes index 037e85119ad1081f1c00919b6ad127063a184bcf..f77b350472e0925c0b70d1b10925b18a58eb4fac 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/fvSchemes +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/fvSolution b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/fvSolution index 98606fccfabd703d31e2651b3c89d6ed79b4ec7e..09f4300406dc9ec9361ba01328f939f6a86f0fd9 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/fvSolution +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/topoSetDict b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/topoSetDict index 511885b498a9aa9e1a5312fdabc22b2713b29457..d74b760cf5eaf575d7da5c246c4d7e62dc31823c 100644 --- a/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/topoSetDict +++ b/tutorials/combustion/rhoReactingFoam/groundAbsorption/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/h_vibrationShell b/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/h_vibrationShell index 0a6bd7411d0a9e8cb4a0ce4bf659dc06a8fbd75f..2911c3b4582a3322ece599b2f00142f10bfce4e8 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/h_vibrationShell +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/h_vibrationShell @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/ps_vibrationShell b/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/ps_vibrationShell index e2cfb1464a26d9a36e6c4215499b501cfc733aec..630c8002d17ed6d8de32127745a90aa31e56076a 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/ps_vibrationShell +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/ps_vibrationShell @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/ws_vibrationShell b/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/ws_vibrationShell index 6a852f30c6fd3a1536814d6dd2e458e43f923ce8..4f582b2018b6a34bfc2ab2c002e86a807d80782c 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/ws_vibrationShell +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/finite-area/ws_vibrationShell @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/pa b/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/pa index 4145a7b263b27f79e0031023f152f4caf3fcba03..9f5547e97f6f1fa4fe04d88d118214c6db0726d0 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/pa +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/constant/transportProperties b/tutorials/compressible/acousticFoam/obliqueAirJet/main/constant/transportProperties index 7bbfd279013b3ea95a9777643e62b7010c226a52..f791680feb8f252e08fa3627e4ef5b2be64223e7 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/constant/transportProperties +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/blockMeshDict b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/blockMeshDict index f7d7db8bf53e11d68f0af193651cfe4a6c85ceeb..5bc4237a577bc2925dda93a5513e6422cf9cc9ff 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/blockMeshDict +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/controlDict b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/controlDict index 036146cf8220470325ae04e243d188fe355806c2..f599be93d1d3a6ffdaae5c302f24aa2a8588c598 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/controlDict +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/decomposeParDict b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/decomposeParDict index 66c6290dfb68a7cc41d565311b84201d2eae387b..e9cd053c2cb8453de7d216b5536846b396b4ca09 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/decomposeParDict +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/faOptions b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/faOptions index 04a4e92ea815276e1197c84d62f7a05c96855ae9..1082bd0fc86d4d5aef1c6172638aa22defb36673 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/faOptions +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/faOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faMeshDefinition b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faMeshDefinition index 9e21c63f567cbca47659814c05454f969374143c..8e7cc8583cefbd15c1a4aec3d24fe11f22cac33b 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faMeshDefinition +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faSchemes b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faSchemes index fe6f1037fd40431bbfa1849a5b675f8f699c8b6e..5e19b394448a9d71d96b428d7ba173066ff8bc5b 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faSchemes +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faSolution b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faSolution index de0a3874a35f3abd608a1f38a1828c36f7a66add..56bc0b9b0e503240ab69beb674fd2440b76e0a35 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faSolution +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/fvSchemes b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/fvSchemes index 8e92878c159b849a8f9aecc3efb5313889222ca4..56dbbf140e09fea3077007094092e0d8405074cc 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/fvSchemes +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/fvSolution b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/fvSolution index 0662a4a895aa976ac73d45d75391e7622216578c..a470cd276b9d37a613cb599a51f6f7d3320bae77 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/fvSolution +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/snappyHexMeshDict b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/snappyHexMeshDict index 8b707cd5440d897f7d1c5a593cd39ad49b0c0166..6f894a941fb34e8f2f5e59a12056c2c0f06e86f8 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/snappyHexMeshDict +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/main/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/T b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/T index 3cf253bdcd290c3251d8a3fdd1d85a3e23a2a721..79d816194ce8a0ae39b37a5ad0ebd5e8e592f78c 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/T +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/U b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/U index 40aaffed313fd59d1ece7d15ae5a50c1604f0034..5ac04ad4e473b73eb60018c8ec8bfc97f7897847 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/U +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/alphat b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/alphat index 11ab05c8bbb6d15bcaabfa9df1c7b94bdca14539..e4fbaa6f7bf2c4d294371718185b07662562b305 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/alphat +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/nuTilda b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/nuTilda index fd3f132d72e60eea8af8f6d0aae46e5fff8739c9..0c649a38b67956daf1787e30d1258eeecd7d5189 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/nuTilda +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/nut b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/nut index 13af899623fa1507f6a4e4c68382bb08a11b1cc5..65bf78c1a7f95ee93c0dcf2f3666afcf01dc55d9 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/nut +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/p b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/p index 84299d7cc5629559d1e6d75c5f15fef5d0bf73cf..99d6466a5d21f57c2024ad3984cbedbb61e625a8 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/p +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/constant/thermophysicalProperties b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/constant/thermophysicalProperties index bddc1826a4d324af1bbe5e85d0028f6265384400..95c25e01fda3761fe67b07ebb632f2cdd1bfce84 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/constant/thermophysicalProperties +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/constant/turbulenceProperties b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/constant/turbulenceProperties index d20ad387873605462dd9f5e2f9eaa1c0836d09bd..074929515c1059d0ef1b96bda27e4f5df2a95afc 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/constant/turbulenceProperties +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/blockMeshDict b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/blockMeshDict index eb1293a7f7fa82f78c7fc3ecdb00b80908f14ee3..ac61e4363b53308c22a10013226277dda09505df 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/blockMeshDict +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/changeDictionaryDict b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/changeDictionaryDict index 9cdc45feae4f0f98ed410e8ead202b1c51428d68..b616b9045c32908a59276d7a2c6248bbd9a4964d 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/changeDictionaryDict +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/controlDict b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/controlDict index 4dd5219dc7abe6ad08faa5227cdb6b08ec5f1bee..43a47744ef746870994ae3714a17ea645a1d29ea 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/controlDict +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/createPatchDict b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/createPatchDict index 68738f8bf921809f428286649b628510b74e4cdd..306a7cd222a45f49936b03cce648a03e6d22fb05 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/createPatchDict +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/decomposeParDict b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/decomposeParDict index 66c6290dfb68a7cc41d565311b84201d2eae387b..e9cd053c2cb8453de7d216b5536846b396b4ca09 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/decomposeParDict +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/extrudeMeshDict b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/extrudeMeshDict index 183610d070836df510153511b84cfb0fb8fa8aee..f0e083e538fc3e7e38a648f64fee8d8e7fd06af0 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/extrudeMeshDict +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/fvSchemes b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/fvSchemes index 6fd70181a1601d78ed2518cbc976a4ba952104b5..31916dea3111c99e765f3e1f982eed4237b16e78 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/fvSchemes +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/fvSolution b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/fvSolution index 739b2ee3f777a646321e4adbd88afe69276004d0..fcc062fe72a11e8d46d0d3ad417fcf676e80e33c 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/fvSolution +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/topoSetDict b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/topoSetDict index 70200fc57e1c88b9ba42b661a8021aaf9803633a..19e41ca8bf7501140d1acb8292e6bc725ac26841 100644 --- a/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/topoSetDict +++ b/tutorials/compressible/acousticFoam/obliqueAirJet/precursor/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/T b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/T index 4786ff70ad171b8e1c79e2f3d1a056e7f3a1363a..15a49e2bb6b0d9d06222d4bd81e8e66d8d4483e8 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/T +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/U b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/U index 122189939b9d5a40bf0de296e0d81203f1b984c1..984dc6d31528f18ffd76720c103d68e88a40de41 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/U +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/alphat b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/alphat index 973124ef2f52ac5253a998c4165b397b0e970d09..b2d1c171895f05dc61a19e321ee9c8fa5c42582c 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/alphat +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/epsilon b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/epsilon index cbd8dc4bc35cce2293eabed58c735d347bc1f38f..9db321456ce5784aaf96a5e453b03d5f6b244b97 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/epsilon +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/k b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/k index 8679000be34e42b163b61b7c0cff7f95df289328..56ced1e597b68eaf4811213eb5ca4eea90c85adf 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/k +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/nut b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/nut index ed77416b8d308db8381988b560ac3c6d3914b4ca..99a78a04d7e19fb903e62199c6cb6a7da6cbf27d 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/nut +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/p b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/p index 523662b5fca4d95ec40b6d62c14ec4245e25065d..aedd489c96c80de2d2fa145daf11964a2874aa46 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/p +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/zoneID b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/zoneID index 46da66820b1c8548afcf393f411647dc8108d0ab..ff26394f26e725f5169c6381e1b5fac2bd8a355c 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/zoneID +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/dynamicMeshDict b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/dynamicMeshDict index 74977fd51222c86d2a8f1f9609e6b559d0173d1b..eebd7c620cca92ad96e14a5f3e64e4fec1956ee3 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/dynamicMeshDict +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/thermophysicalProperties b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/thermophysicalProperties index eab888cd9dca5f94251e9bd2beac55be89b7e33d..8138609b072784c787c03935054fd5a58acd2707 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/thermophysicalProperties +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/turbulenceProperties b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/turbulenceProperties index e9c5d381003961f15ca04296035c4eac32ae35cf..b7134784759fffbbab7ea579b30e73fca7ceb132 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/turbulenceProperties +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict index 7ce475a57a94f7d2a4de8fab92dd006df7d0a715..ac7aed73a582037bed6fbb9ab304534d3f703c99 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/controlDict b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/controlDict index d9ba61a492ffea02cf26e0e2d2d7d6f012be8be2..6af5f06a00372198e76a7d27e23e279d94f18c09 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/controlDict +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/fvSchemes b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/fvSchemes index ec70282d3ee117ea8edff57e99df91706af755b4..22387cf648f0ad5370a282875cc6e16a572e71a2 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/fvSchemes +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/fvSolution b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/fvSolution index c4bd1fcf005d015b81a55d5711d0dc917a03ea45..558002047cfea8e6990a4299e177db578b06b3f0 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/fvSolution +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/setFieldsDict b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/setFieldsDict index 81f42d7727008501b00ec48bde314b24055d5b95..0b744d4c00e61d607d0b646aa8b1677c98a8adf2 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/setFieldsDict +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/topoSetDict b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/topoSetDict index ff934bc92d6c4c2ed849e6ca5770b239e59c45cf..e54353dd52ca5b62a81de20bea8265c8817a2707 100644 --- a/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/topoSetDict +++ b/tutorials/compressible/overRhoPimpleDyMFoam/twoSimpleRotors/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/T b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/T index 74ea82d8b60d22372a87c40c3a573011bf53a765..e5c38b948a43555d84b8a7c9b8f95660acb5b9a1 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/T +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/U b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/U index dbf6a12c5c27f6546f4b629bde0f50d332e14c2d..554f0a29fc21385bd75584d2fef67b2797c3527d 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/U +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/alphat b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/alphat index 917637cc3ba49dbb8e24fe0088a908ef975340c4..b53d6778dd3c16f71d3e00f659183d3426398e13 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/alphat +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/epsilon b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/epsilon index db64350b91bb475b551e0cdcf02573fb31ae2b1d..1a59b4c13230dc9e14610d7c9e0b466d52095415 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/epsilon +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/include/initialConditions b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/include/initialConditions index a5cda3e5202ddf5a0a80267e92d8b04fe5a08e4e..e8dc07f6251a66cb3e5f0cec3f5ab3f0a0b69c62 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/include/initialConditions +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/k b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/k index 2c0d7c0c08a836ef2ef399eef202f022f8d25de7..d003d3748b125eea5d82ec33d5c3ea0a95eba583 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/k +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/nut b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/nut index 5286b817b16cf8f61260492a73a9b19ede8e84ef..597c757cf28f4511a9d9397906bc7898338414c0 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/nut +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/p b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/p index cb0b288808186529132f236a6ef458212da799e6..6a03aaa98e191e7e672c3683c1797d52fd6ac964 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/p +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/pointDisplacement b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/pointDisplacement index 06f4d41d9815270d2117eeed616e8ce65edf0173..e936c7170918210d73167b76a17bd9f584245178 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/pointDisplacement +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/zoneID b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/zoneID index 56165102e6444bebdfe0852de2f86ce5e9226e5a..b1897f91ec38c601bbf2b316e76e8680faee20f1 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/zoneID +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/dynamicMeshDict b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/dynamicMeshDict index 92d80b3ad547034b45fd7409bd91aafa8c24349d..6001b253ce30964ca1998814d20ae2f8336ec89a 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/dynamicMeshDict +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/thermophysicalProperties b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/thermophysicalProperties index b0cda5f1ed94b117a0ffe2236bf34cbd3f8b9be4..637b2fe112dda118ba18d07dff8605155fb54bb5 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/thermophysicalProperties +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/transportProperties b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/transportProperties index 21ae7f9f7115e17d49a34a44c61b22d9ebcf2729..e5239f5f517c2136dd47dbe635f0b1453640aa02 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/transportProperties +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/turbulenceProperties b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/turbulenceProperties +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/blockMeshDict b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/blockMeshDict index 363e4063b46909f91f3717b6493c7be744423bf2..e4e3474ae70411b0b3c47222c80baeadc83f8a20 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/blockMeshDict +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/controlDict b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/controlDict index 675e9dd55774ab08c5f881045d7d877c5f65e4ec..59d7886005cda05a757bab87b22f15ea566ec7b0 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/controlDict +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/decomposeParDict b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/decomposeParDict index a63bb992de12519c8682a8b273f146e5fb1ba88b..9a4c1b1ae1414ce50bd386d6fcaecee46bcad07b 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/decomposeParDict +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/fvSchemes b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/fvSchemes index bfaad8fbbbd9d9c3f5d36fb9dbbfa8b1233153ee..8fce7ef7050cfd5c938175e8ab3aa0f06312ba86 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/fvSchemes +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/fvSolution b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/fvSolution index a85a99c6f48633f56b13500ef7c7aa675b120ad2..f9bc510aa27e514660271238cf70853fb6a90641 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/fvSolution +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/setFieldsDict b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/setFieldsDict index 99bee0020b6652fbf0f2f06f638aca8ff38253e5..623e20cd2b73d7f8d4b33e26ca4066e7b746c9d0 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/setFieldsDict +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/topoSetDict b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/topoSetDict index e26852063403a74052ceb0ffba6c18da88b22f40..f4c681158d61ec79baee0735b088f73e13e40681 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/topoSetDict +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/controlDict b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/controlDict index 797c9b8151fc6f0b7c185fafee77efe10c4eecdb..bae8ab0749ed375f5ddd77dce075e111439a6ef3 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/controlDict +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/createPatchDict b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/createPatchDict index 774c19a39634e4c2c8f68d3e94da6dde04d1eedf..301624dd117267f9399f09264888919eeaf05f13 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/createPatchDict +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/extrudeMeshDict b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/extrudeMeshDict index 1e1b1f860b55065c07059e46dc92456dbf99590b..c1e9dc4acc89c8acc34e5b94fda8df72821f0ca8 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/extrudeMeshDict +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/fvSchemes b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/fvSchemes +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/fvSolution b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/fvSolution index 2f5abd0344d1365a722c1328ebaa037dfb164d2f..77a0889c827145fa2a2f73b85f8503f9cc3f08da 100644 --- a/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/fvSolution +++ b/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderMesh/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/constant/thermophysicalProperties b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/constant/thermophysicalProperties index efb5db75cbf05bac75dc54ee25cee9ed61292dcb..ab461e7866b1409a8f717f244b8fdb2a92c09eae 100644 --- a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/constant/turbulenceProperties b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/constant/turbulenceProperties +++ b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/blockMeshDict index 12ba9db5cc20d5a0c8992556a61c808a56ea07dd..7e48fc8efa3ed4a0ee188ca09dcb96c8e185e292 100644 --- a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/controlDict b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/controlDict index ed491e9a445cabdeb7eb25c98517f36f86832f5b..e1f74946f4f2f2daa3babc2a6bd0a6507c78310f 100644 --- a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/controlDict +++ b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/decomposeParDict b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/decomposeParDict index 8ac30eb3a9002fa339a685e559391e0712dcdbce..182728e56e4ce29658de60fdfeb1c0320e5fe2c0 100644 --- a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/decomposeParDict +++ b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/fvSchemes b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/fvSchemes index 16e41488f29a4ef684e0f7cca752fec2e13a9c14..6fd55fab1d3baa6883f737f8a4034da6bdfb4444 100644 --- a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/fvSchemes +++ b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/fvSolution b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/fvSolution index ebc5fd9d4b32a9942e061a4c67df572287c850c4..b873c43b25c6e9aa0a0730f204c639e27f853246 100644 --- a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/fvSolution +++ b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/constant/thermophysicalProperties b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/constant/thermophysicalProperties index 5160f01f3bec4909c2f8d33463dedd52e54d830f..fdef6b36ddec7002686bc73906ad8b86df6e9d47 100644 --- a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/constant/turbulenceProperties b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/constant/turbulenceProperties +++ b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/blockMeshDict index 4bd9ac2b965fd4290a2694c1a57bfa4f83882908..4e98e452eb78948683749d98e186be5ca0a20698 100644 --- a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/collapseDict b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/collapseDict index 8d86ef7a7056d7ac904c2f3fdaf9e14475b5cb6a..5abb532c925eadc1c706380041ec4cb4433ede88 100644 --- a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/collapseDict +++ b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/collapseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/controlDict b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/controlDict index a189f25c5594d4612797ba870d9ba07f81c34c78..8b49a033a7eb8e4d096016204e8e267b9dda007b 100644 --- a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/controlDict +++ b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/fvSchemes b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/fvSchemes index 725ad3a9dea988f05d10c390ce42ee927e5e8c11..8b58d4164a646191aacf566c54dfa6e0896380b9 100644 --- a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/fvSchemes +++ b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/fvSolution b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/fvSolution index 8306591eff304f625d659e644d4929633f306442..391d4290bf95ce13cbaefa066c0d4dd47cd6b9f8 100644 --- a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/fvSolution +++ b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/sample b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/sample index e57ba18549dc5173d5975d8662dd348fae15e615..6854edb74adfe9742488cd85d8801da14022cd2b 100644 --- a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/sample +++ b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/sample @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/forwardStep/0/T b/tutorials/compressible/rhoCentralFoam/forwardStep/0/T index 77c3bcd8bffa3dd505867da48a788c3a6d7363bb..4a74e95018fbe082dc553edbac17e428a3a7ca05 100644 --- a/tutorials/compressible/rhoCentralFoam/forwardStep/0/T +++ b/tutorials/compressible/rhoCentralFoam/forwardStep/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/forwardStep/0/U b/tutorials/compressible/rhoCentralFoam/forwardStep/0/U index b6cfcc1f9cc80b2abc21d562402da4e63cf820c5..1688ce7ad41c2026d6ab7ed4669c94f84c8a8576 100644 --- a/tutorials/compressible/rhoCentralFoam/forwardStep/0/U +++ b/tutorials/compressible/rhoCentralFoam/forwardStep/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/forwardStep/0/p b/tutorials/compressible/rhoCentralFoam/forwardStep/0/p index d1cfbc8ea9cc9bef24ec45b0b39823ee44e9f397..3cfeadade5b6e42156a03d99ad805e1f0bb41feb 100644 --- a/tutorials/compressible/rhoCentralFoam/forwardStep/0/p +++ b/tutorials/compressible/rhoCentralFoam/forwardStep/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/forwardStep/constant/thermophysicalProperties b/tutorials/compressible/rhoCentralFoam/forwardStep/constant/thermophysicalProperties index a7569f12395f961ea05ca46df2c61aa4607240f2..95b9c18d9a095866bd7d35b4f01085b403508a00 100644 --- a/tutorials/compressible/rhoCentralFoam/forwardStep/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoCentralFoam/forwardStep/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/forwardStep/constant/turbulenceProperties b/tutorials/compressible/rhoCentralFoam/forwardStep/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/rhoCentralFoam/forwardStep/constant/turbulenceProperties +++ b/tutorials/compressible/rhoCentralFoam/forwardStep/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/forwardStep/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/forwardStep/system/blockMeshDict index 8c0835f8fc86ba999af67bd932970b593d22eebf..9f5c7cd1597b52924b83d6163d8e0092d0f6a9f4 100644 --- a/tutorials/compressible/rhoCentralFoam/forwardStep/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/forwardStep/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/forwardStep/system/controlDict b/tutorials/compressible/rhoCentralFoam/forwardStep/system/controlDict index a34dad34f705dafcc8e88f72c6db73c1f8f08d9a..b2549d76464625b1ec2f9b3ffdd111ffc5346cdb 100644 --- a/tutorials/compressible/rhoCentralFoam/forwardStep/system/controlDict +++ b/tutorials/compressible/rhoCentralFoam/forwardStep/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/forwardStep/system/fvSchemes b/tutorials/compressible/rhoCentralFoam/forwardStep/system/fvSchemes index 16e41488f29a4ef684e0f7cca752fec2e13a9c14..6fd55fab1d3baa6883f737f8a4034da6bdfb4444 100644 --- a/tutorials/compressible/rhoCentralFoam/forwardStep/system/fvSchemes +++ b/tutorials/compressible/rhoCentralFoam/forwardStep/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/forwardStep/system/fvSolution b/tutorials/compressible/rhoCentralFoam/forwardStep/system/fvSolution index b61de99ec2cf6afda1567bdd01160469840aa5b8..eddae3d0bceed671156f85d88c11c7d967888c9f 100644 --- a/tutorials/compressible/rhoCentralFoam/forwardStep/system/fvSolution +++ b/tutorials/compressible/rhoCentralFoam/forwardStep/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/0/T b/tutorials/compressible/rhoCentralFoam/movingCone/0/T index b8636136f07cef16d60240485a011a68ceec096f..32c85f098b7b20a88547b070d1c5184ad9f8e18f 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/0/T +++ b/tutorials/compressible/rhoCentralFoam/movingCone/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/0/U b/tutorials/compressible/rhoCentralFoam/movingCone/0/U index 4b5baa6359a5aaf09217429663b41f05c1d9c0b6..e13734dcdbc778d1277d56e6088a38f911549acb 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/0/U +++ b/tutorials/compressible/rhoCentralFoam/movingCone/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/0/p b/tutorials/compressible/rhoCentralFoam/movingCone/0/p index ea66f0048855fe507ff03569ad3e190fe9c0310b..cb926d9f99be15f28019fb5d70728ab5a89bab36 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/0/p +++ b/tutorials/compressible/rhoCentralFoam/movingCone/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/0/pointMotionUx b/tutorials/compressible/rhoCentralFoam/movingCone/0/pointMotionUx index cd9e76ad50760b4c030dd6915caa886b26bfa2a5..cccaaca9756847673842288a09f0183bbbdb11c8 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/0/pointMotionUx +++ b/tutorials/compressible/rhoCentralFoam/movingCone/0/pointMotionUx @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/constant/dynamicMeshDict b/tutorials/compressible/rhoCentralFoam/movingCone/constant/dynamicMeshDict index a31c84ecfb1e22cb2643f0215850d24a68b41199..828c8be96641f18d413a1b65765f4ab16b8b893d 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/constant/dynamicMeshDict +++ b/tutorials/compressible/rhoCentralFoam/movingCone/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/constant/thermophysicalProperties b/tutorials/compressible/rhoCentralFoam/movingCone/constant/thermophysicalProperties index 3f036e87cacf28bbcd2b4b85be1bd11430041acb..a202d15984e837dd5cbbff96786c21d4600822e1 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoCentralFoam/movingCone/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/constant/turbulenceProperties b/tutorials/compressible/rhoCentralFoam/movingCone/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/constant/turbulenceProperties +++ b/tutorials/compressible/rhoCentralFoam/movingCone/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/movingCone/system/blockMeshDict index c381a7e0b6bc8a67c944b1d9802da8900d609135..166889d5efc26981554ba17083d760cc79328950 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/movingCone/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/system/controlDict b/tutorials/compressible/rhoCentralFoam/movingCone/system/controlDict index 8b1c741548b42a3beda40da3a273af1c6dafd377..e401dd7ef0dafcb99ba0cc886fd942744d394936 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/system/controlDict +++ b/tutorials/compressible/rhoCentralFoam/movingCone/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/system/cuttingPlane b/tutorials/compressible/rhoCentralFoam/movingCone/system/cuttingPlane index 282fbb8a1b73b34edab16d0484de266e3a6bf694..ce7410fc23f560a20d767d9632f8d5aca3e03e8f 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/system/cuttingPlane +++ b/tutorials/compressible/rhoCentralFoam/movingCone/system/cuttingPlane @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/system/fvSchemes b/tutorials/compressible/rhoCentralFoam/movingCone/system/fvSchemes index e7297d011b67ab999441acf9d7560dc3d4ca2b72..953bf669f3df0b92eaea64f8344d4e483e839197 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/system/fvSchemes +++ b/tutorials/compressible/rhoCentralFoam/movingCone/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/movingCone/system/fvSolution b/tutorials/compressible/rhoCentralFoam/movingCone/system/fvSolution index a4e4eed5e2a83b3bcd13d916706656e6c3933039..f60f61af6f4208e6d87ed5a342bc0b8d66aec629 100644 --- a/tutorials/compressible/rhoCentralFoam/movingCone/system/fvSolution +++ b/tutorials/compressible/rhoCentralFoam/movingCone/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/obliqueShock/0/T b/tutorials/compressible/rhoCentralFoam/obliqueShock/0/T index 4af5c24cf869481f170ba80ed44e4bc9f0093158..945e1e8ccf484cbd0379aedd826a2a48446fcdd5 100644 --- a/tutorials/compressible/rhoCentralFoam/obliqueShock/0/T +++ b/tutorials/compressible/rhoCentralFoam/obliqueShock/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/obliqueShock/0/U b/tutorials/compressible/rhoCentralFoam/obliqueShock/0/U index 8d00d1ec7d0ec6b4624cc1d38c8026a6dd42af77..0f923f18900caf694f4ec0733559fcb9826c12aa 100644 --- a/tutorials/compressible/rhoCentralFoam/obliqueShock/0/U +++ b/tutorials/compressible/rhoCentralFoam/obliqueShock/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/obliqueShock/0/p b/tutorials/compressible/rhoCentralFoam/obliqueShock/0/p index a00340d650b56246b4c857d15b54251696e294b4..3b236cc1096c17ff39a6242962cae6670789985b 100644 --- a/tutorials/compressible/rhoCentralFoam/obliqueShock/0/p +++ b/tutorials/compressible/rhoCentralFoam/obliqueShock/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/obliqueShock/constant/thermophysicalProperties b/tutorials/compressible/rhoCentralFoam/obliqueShock/constant/thermophysicalProperties index 9740f68fbd38fe3d633255d876e6413b8fc3dd8b..8bf8d37384bc94a03bd1479d7ab8df3ef6ddf621 100644 --- a/tutorials/compressible/rhoCentralFoam/obliqueShock/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoCentralFoam/obliqueShock/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/obliqueShock/constant/turbulenceProperties b/tutorials/compressible/rhoCentralFoam/obliqueShock/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/rhoCentralFoam/obliqueShock/constant/turbulenceProperties +++ b/tutorials/compressible/rhoCentralFoam/obliqueShock/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/obliqueShock/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/obliqueShock/system/blockMeshDict index 14cb51b3c39ed6cc712bd34bd0e5ed6782510704..771bc826807b2514b1cefb2f16bee83ca72ca9d3 100644 --- a/tutorials/compressible/rhoCentralFoam/obliqueShock/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/obliqueShock/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/obliqueShock/system/controlDict b/tutorials/compressible/rhoCentralFoam/obliqueShock/system/controlDict index a5f01560cd162d333fb0aba04bea066f7824db78..8cd25f8f9d943cf4ade3e68ed14085b2025e115d 100644 --- a/tutorials/compressible/rhoCentralFoam/obliqueShock/system/controlDict +++ b/tutorials/compressible/rhoCentralFoam/obliqueShock/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/obliqueShock/system/fvSchemes b/tutorials/compressible/rhoCentralFoam/obliqueShock/system/fvSchemes index 16e41488f29a4ef684e0f7cca752fec2e13a9c14..6fd55fab1d3baa6883f737f8a4034da6bdfb4444 100644 --- a/tutorials/compressible/rhoCentralFoam/obliqueShock/system/fvSchemes +++ b/tutorials/compressible/rhoCentralFoam/obliqueShock/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/obliqueShock/system/fvSolution b/tutorials/compressible/rhoCentralFoam/obliqueShock/system/fvSolution index b61de99ec2cf6afda1567bdd01160469840aa5b8..eddae3d0bceed671156f85d88c11c7d967888c9f 100644 --- a/tutorials/compressible/rhoCentralFoam/obliqueShock/system/fvSolution +++ b/tutorials/compressible/rhoCentralFoam/obliqueShock/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/T b/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/T index 8cd06ff6c4de8f7ed4397079dd201dcd11765555..2b1573aa024c9210f6fd27591af0cede6fed35bb 100644 --- a/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/T +++ b/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/U b/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/U index dd9b5ef845a095949c0b4acd3ebeabac41b903bf..fa8af8084a65be8e4af465ce4e54950b8d35bb45 100644 --- a/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/U +++ b/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/p b/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/p index c10233d5118804a6fbc7b73637806741c2778e01..200ff6a2433a9ddd0dd3b0d862cc8a33b8258e55 100644 --- a/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/p +++ b/tutorials/compressible/rhoCentralFoam/shockTube/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/shockTube/constant/thermophysicalProperties b/tutorials/compressible/rhoCentralFoam/shockTube/constant/thermophysicalProperties index de911535062a58380e42cb25e1664c35f839320e..1064d2b20b602ac4bf7b443a456417403eb1ecca 100644 --- a/tutorials/compressible/rhoCentralFoam/shockTube/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoCentralFoam/shockTube/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/shockTube/constant/turbulenceProperties b/tutorials/compressible/rhoCentralFoam/shockTube/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/rhoCentralFoam/shockTube/constant/turbulenceProperties +++ b/tutorials/compressible/rhoCentralFoam/shockTube/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/shockTube/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/shockTube/system/blockMeshDict index 88157bba21d0bcfea90956f42e7e8248fb44cb54..e0940e109884679afdbcd109bbacdd887311731f 100644 --- a/tutorials/compressible/rhoCentralFoam/shockTube/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/shockTube/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/shockTube/system/controlDict b/tutorials/compressible/rhoCentralFoam/shockTube/system/controlDict index 278005bb71da7c39e7e6c075b0353123b974ba1e..e0e1249284d3a246146d4511184769ea0e150c43 100644 --- a/tutorials/compressible/rhoCentralFoam/shockTube/system/controlDict +++ b/tutorials/compressible/rhoCentralFoam/shockTube/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/shockTube/system/fvSchemes b/tutorials/compressible/rhoCentralFoam/shockTube/system/fvSchemes index 16e41488f29a4ef684e0f7cca752fec2e13a9c14..6fd55fab1d3baa6883f737f8a4034da6bdfb4444 100644 --- a/tutorials/compressible/rhoCentralFoam/shockTube/system/fvSchemes +++ b/tutorials/compressible/rhoCentralFoam/shockTube/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/shockTube/system/fvSolution b/tutorials/compressible/rhoCentralFoam/shockTube/system/fvSolution index b61de99ec2cf6afda1567bdd01160469840aa5b8..eddae3d0bceed671156f85d88c11c7d967888c9f 100644 --- a/tutorials/compressible/rhoCentralFoam/shockTube/system/fvSolution +++ b/tutorials/compressible/rhoCentralFoam/shockTube/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/shockTube/system/setFieldsDict b/tutorials/compressible/rhoCentralFoam/shockTube/system/setFieldsDict index 11d5bd692e2dbd11248b155cf99e476b431b8d45..a1dd96e9a247de64c66a519e7eba1551e0d8cc36 100644 --- a/tutorials/compressible/rhoCentralFoam/shockTube/system/setFieldsDict +++ b/tutorials/compressible/rhoCentralFoam/shockTube/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/T b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/T index db68cef39b821c7aad84b39a31369308fe950a13..6beb7805a0a5e3cd3433843cd97a96298e1f805c 100644 --- a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/T +++ b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/U b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/U index d09713d85fddb2adec7c721fccbdda8a0d0f6e43..657e0b20c21a3f44dc4f5c21f6991690d2d257ff 100644 --- a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/U +++ b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/p b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/p index d1cfbc8ea9cc9bef24ec45b0b39823ee44e9f397..3cfeadade5b6e42156a03d99ad805e1f0bb41feb 100644 --- a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/p +++ b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/constant/thermophysicalProperties b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/constant/thermophysicalProperties index 9740f68fbd38fe3d633255d876e6413b8fc3dd8b..8bf8d37384bc94a03bd1479d7ab8df3ef6ddf621 100644 --- a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/constant/turbulenceProperties b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/constant/turbulenceProperties +++ b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/blockMeshDict index b79308d29c6daafa21af05b2547f8ea2fbe330ab..4646df1c21546116a8cf862ecb15dddd3073a61b 100644 --- a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/controlDict b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/controlDict index d1e1ce158296ea0aaf60623388b9d146ffcd4a1a..b28b4ce12a48eb29d13d285707cf42f22bf1a86b 100644 --- a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/controlDict +++ b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/fvSchemes b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/fvSchemes index 16e41488f29a4ef684e0f7cca752fec2e13a9c14..6fd55fab1d3baa6883f737f8a4034da6bdfb4444 100644 --- a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/fvSchemes +++ b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/fvSolution b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/fvSolution index b61de99ec2cf6afda1567bdd01160469840aa5b8..eddae3d0bceed671156f85d88c11c7d967888c9f 100644 --- a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/fvSolution +++ b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/T b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/T index 84b39db74227ffd21b9b21d721e214a00ac5fd86..653ca654c336018081dce4a4885572a379aeaef3 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/T +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/U b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/U index 7b20deeb28a0161a4db25ff86f7f2eeaf1de9b13..0422e6f601ec4d84ade0bc08e5e01f14bb4f9515 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/U +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/p b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/p index b5dcca76a54c3297966152e8ce043dcd81786f99..3f83f44413ea3f53c2242c614d49e16435a6bbed 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/p +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/constant/thermophysicalProperties index 5e9173357578ed60d3e7de7342db0debf9f669ef..1bdd02e96ff29d90ea9883023ab93f81b94511ba 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/blockMeshDict b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/blockMeshDict index 9740ccbf43d3fe521e7659cf8c292465e1fbcdd5..ca2b18392f523100279d4ce12b0c10d98dff92f4 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/controlDict b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/controlDict index dd3e7befea2d910f712b3aee0c01fc0608aed82f..0e3561493952453e0bde366abdfc1d5898f6d594 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/controlDict +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/decomposeParDict b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/decomposeParDict index f583aa28f0c18cb82bd1deb6828d53a5cfbbe994..c8228f7e965afef374e4e44a0d08aa20e7bcc017 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/decomposeParDict +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/fvSchemes b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/fvSchemes index 960955e6bd3d2470a1d661642a9cde4cf38c6771..f631bdcdecc4ef76437c34e73529294e079a27de 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/fvSolution b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/fvSolution index 02a17784a7348398f9bb21665883ca267bd8d453..89e357e5305a94034c9782652c47652c10b7c0ba 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/fvSolution +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/preProcess b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/preProcess index 619a25734ee1e7a575ec67bc5da369eeaac10828..cfa904047cfbb0e683858bb35aace1ae478f521f 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/preProcess +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/preProcess @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/T b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/T index 166f40fd62c26f143625d14132d1633d3d4e1623..11372e359e61a7695a2f7694d2413908d516d6af 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/T +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/U b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/U index 47792eac7e1c7feb74b36560635e90e3c1524016..95c85efd0a066c6d02bcf4c6288a53385bd51848 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/U +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/alphat b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/alphat index 871dc090f6f7098df72adf0251f2c79d00406b54..4aac112371359cd1cad93111e36b71d49c9be659 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/alphat +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/k b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/k index d41c0a568c94b341fd384363e53b0632f052bf1b..4bfd1aa6454fccc280cdb9771595021eda6b4393 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/k +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/nuTilda b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/nuTilda index 2ca2bfe2a854c3e0808e02d93e3416b5eebe93a8..5fa2e23dff66faa7ace30af524fa938c3b9879d7 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/nuTilda +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/nut b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/nut index 50a514341ec5384d1f78d4ef6e2abb125eef28a9..fff8c7c2e71f02f288fd87182fa1bbea4bc3ac7f 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/nut +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/p b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/p index cae8c30592332ac38bf0656adb527c5599caec52..c668f1022b9ceb976db8c65190d180430e514661 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/p +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/constant/thermophysicalProperties index 955221cf9e33fa780e9b368832c890a2eff58f1c..7b45dfb832ae6813276571e0c4e8fde1b6e10128 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/constant/turbulenceProperties index 452fba7d6f01c9d2a5b5077f91e079cae339a30c..baf1103c43d027f53907ef14933357215ba43988 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/blockMeshDict index 7709136f71bf3d75aabe2e4fe84e823e3769b6d2..1dd07e2117d137ed392c80db2629404a955e7fc2 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/controlDict b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/controlDict index af62b3fde440fcc50163e67009a152860775af6c..465017072e3afd5986339037866e8bdaa8a90d01 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/fvSchemes index 85605d52c5a6ded0eb8dcf596cd2aeef24b322db..e17283dfce7a8f6ed0320c0e0162298dde0944ba 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/fvSolution index b0ec8ec096c03ca32afdd24b667d7701f7a0c07d..cffaf11d77632010e386cd78c3ed8edfb19bd5ac 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/T b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/T index 1f7672dbb6d13d4b6d741cc966a40259ce9b274e..77c7814a32fec4d33230c7da1f4e6d228f0f8742 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/T +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/U b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/U index 69a5d8eccc0632ff46a658a2a8eb419da0964fd8..47a0050bcc2f58ae02ffe069a2f83c12635640fc 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/U +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/alphat b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/alphat index 4b208bbb63881cc3b557a2dfe135348b840098bd..982e135b0904106cc83e08a4bcb412d99233cb28 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/alphat +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/epsilon b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/epsilon index 70dc1ea0b8b7d197ef2a425b584be5fd55f194ce..48a866a2fa01b3b68d009924ad803062073b6c5d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/epsilon +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/k b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/k index 675a49ed093b5553e7cd857b82e59239d6b72ec0..2e5ae6374bccfb27ce98bc5a45c77191f4e84383 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/k +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/nuTilda b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/nuTilda index 76fde313eaf0d107efce9cfe7ba3493f416eb844..558cd68024dd756be2884300706d25b34458d614 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/nuTilda +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/nut b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/nut index 9e5e8ec36209c9ee9f3956993d3bab505f274754..7156b0728be2656c3d19bee63c1b5b6ae0c10ae1 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/nut +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/p b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/p index 4f21102a0545f5e20ee7a91869f3309f32cfcc12..19c652c970beec97b675c3ce1b45bf4464ba944c 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/p +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/fvOptions b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/fvOptions index 9c57837f4ab0063f68ab988cd2df1e7d77cecfa6..85dfb9f29479e6cb4efa577389662f357bf9da23 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/fvOptions +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/thermophysicalProperties index 9a672cd29f012eec26d54b6bdcc8b34efad871ba..6c7903319e7d32ba57c2fe80733a2ea9d7136f64 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/blockMeshDict index c5efd775e5639dd75b3602df260e20d6f862530f..cf8309491128edf3235061513f78f11f51751d0c 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/controlDict b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/controlDict index dec0103c334a1c727b0cf6ae0e25e229cd0efee6..afe6694876e48c2005e828e5d765bb6e48c0e10f 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/fvSchemes index 3b33aed742241a317e87ed7f57fefbe7f8adbc4d..ea178b5379c0abeed0f287205abfaea697ec23e6 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/fvSolution index 11837b86a86dcd947c26654dbf1e8e3489a82e60..7d48a87c638fed2f2be4f5b6251853320cdc19cf 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/T b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/T index 1f7672dbb6d13d4b6d741cc966a40259ce9b274e..77c7814a32fec4d33230c7da1f4e6d228f0f8742 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/T +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/U b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/U index 90a7e86447c233be88f0bcda933bf16347199f00..18d5214c41d82d48817823d783832d086394d523 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/U +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/alphat b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/alphat index 4b208bbb63881cc3b557a2dfe135348b840098bd..982e135b0904106cc83e08a4bcb412d99233cb28 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/alphat +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/epsilon b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/epsilon index 70dc1ea0b8b7d197ef2a425b584be5fd55f194ce..48a866a2fa01b3b68d009924ad803062073b6c5d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/epsilon +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/k b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/k index 675a49ed093b5553e7cd857b82e59239d6b72ec0..2e5ae6374bccfb27ce98bc5a45c77191f4e84383 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/k +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/nuTilda b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/nuTilda index 76fde313eaf0d107efce9cfe7ba3493f416eb844..558cd68024dd756be2884300706d25b34458d614 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/nuTilda +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/nut b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/nut index 9e5e8ec36209c9ee9f3956993d3bab505f274754..7156b0728be2656c3d19bee63c1b5b6ae0c10ae1 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/nut +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/p b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/p index 7575ac576f57c6cc7245157e56814c6afd97d2c5..ce3201e416cece2a1ddca39ad64191570f07dbec 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/p +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/fvOptions b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/fvOptions index 9c57837f4ab0063f68ab988cd2df1e7d77cecfa6..85dfb9f29479e6cb4efa577389662f357bf9da23 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/fvOptions +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/thermophysicalProperties index 9a672cd29f012eec26d54b6bdcc8b34efad871ba..6c7903319e7d32ba57c2fe80733a2ea9d7136f64 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/blockMeshDict index c5efd775e5639dd75b3602df260e20d6f862530f..cf8309491128edf3235061513f78f11f51751d0c 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/controlDict b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/controlDict index dec0103c334a1c727b0cf6ae0e25e229cd0efee6..afe6694876e48c2005e828e5d765bb6e48c0e10f 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/decomposeParDict b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/decomposeParDict index a5576233b12bff4f86f5a3fc8bcb6e0bc8889244..54e5102da7882166af370bd71be59c19bd686977 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/decomposeParDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/fvSchemes index 3b33aed742241a317e87ed7f57fefbe7f8adbc4d..ea178b5379c0abeed0f287205abfaea697ec23e6 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/fvSolution index 11837b86a86dcd947c26654dbf1e8e3489a82e60..7d48a87c638fed2f2be4f5b6251853320cdc19cf 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/setExprBoundaryFieldsDict b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/setExprBoundaryFieldsDict index df9c8abb51e7db0fa0fe108b1a6883d80deb9386..f42336a2241a28f6c272e45ed6c1c85a30c8535e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/setExprBoundaryFieldsDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/setExprBoundaryFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/setExprFieldsDict b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/setExprFieldsDict index 5c6ac3b35aad92803139f44d3a6665d7e1a963ab..4b2a70191adcf19360bcc0ec4b794ac7ec96438c 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/setExprFieldsDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunctionAverage/system/setExprFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/T b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/T index 13f39b0847f3e8bcdcb417a0403a6c4feae19917..98410c87813ef682d71aaa2b744520a2cf6dfd27 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/T +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/U b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/U index 7868a7e6ea9fa384106ef01ee1b3abde4a0d02e7..091c6541ac2be80b1c2d3fa0e04a87f60106a7f4 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/U +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/alphat b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/alphat index 07c529c26f271bdfb7d96ce712b1d5760743e0b1..b1a19fa7fb8695b7f29361a68cfc4f786d1a613e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/alphat +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/k b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/k index df22298eed24fd637431ccc9b28376c8b1b981fb..03477c4185644bdea7abb89985465d66f413e02f 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/k +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/nut b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/nut index a0e012939c3bd1dc58e224a8fce75c8638681504..cbcc3782e105cff8d78df49db5bccee628f1410f 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/nut +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/omega b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/omega index 8871d67a9b1df0ef10871e11f3de6923ba5fbe0b..35ca02bc68e31dd4037dcfee6b46cd622e02bddd 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/omega +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/p b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/p index c4a472e15e084de8c9b64caefc128fc4c109d4aa..7e381cfcd1426f4c84b32ec46d7621fd86ee106b 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/p +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/constant/thermophysicalProperties index d8cc0b01b30eb79f5b38593cd9d26f3d4979c23b..af0b1175dd66c424f2a335dc341d4dcde339ef63 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/constant/turbulenceProperties index 5deb96622538a2ee348371b07a1680bfbd998f64..646ecdf62957f53b7e095c50ad54267561e34b0d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/blockMeshDict index 078d2293133e75c7038fb9d407e118b7a9150d62..20759c19962e783a64d32fcd0d6d2a70c3e25683 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/controlDict b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/controlDict index 4c0e5f31af3af80d101b866f7237bffb26a71632..40c2e0d7a73b745e1191708b1c53fbe559831b34 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/extrudeMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/extrudeMeshDict index 54529a553d0be572a5a12dcecb6063cc2326b96f..6862e8f9e25434d2d368d86a41f9ab3b02479464 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/extrudeMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvOptions b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvOptions index dd1898b1604823898cd7f1cf0bc7fd4bf5c6feab..37ec379a1f1496cd2ea73a207fd45d7360f2dd44 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvOptions +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvSchemes index dac03266604ad2e2f6f5b781c628320eeb761dfd..23b60471c393f9db1a58aab71b3943e26d64f097 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvSolution index d81a08a3e5d2b7d7be7d759090c5aa463e11b0c6..083fc3ba5fc3e5a9a144f0e0dc64e7e41358312c 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/T b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/T index d7ad2480f874e56b64e712afdf3a2660f45d5a44..7e0914d5b1b918c2e9344e80bc432ebe596dbc4d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/T +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/U b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/U index 9f3cd801e4f9cdd99627118c5f32c1e4b63aa67b..54d65be38184261b1fce172abea4d3cdd8059e3e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/U +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/alphat b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/alphat index 4473f5ae9aa7f8f5c73bdd8f72b742383e76adfa..d76f743f533e764381e3276d05ca373396165217 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/alphat +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/epsilon b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/epsilon index 2a95ea4c2da79db97b4865483ae3392d5169dbb3..18d241a17e2e54c8f69a1b1fbc30f0f6d8924d23 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/epsilon +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/k b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/k index 02bf5e1bad007f82a0b8701f68663851cfe60d83..9c1e225b82a00b48c363b9e3a572a6176028bc49 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/k +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/nut b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/nut index 98bf395e220265175ceaba1f0b722e5ad1bf7329..f9233f78b469fad37bc97e8755a2f6ee5672710d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/nut +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/p b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/p index ad76339a6f4d65acefacd35895731485d99b5218..e70d2f1ccee1b4ac2058de392f5e59b73e7b43ef 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/p +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/fvOptions b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/fvOptions index 8687a2c6c2fd3aeca6b4c5aa3b3a2fe91789268f..c10a4578c849fb83645466933a42c803c1bd3288 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/fvOptions +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/thermophysicalProperties index 6b25435d256c2f766d9909e8bc6112c9c538d180..2dca5ebd59a3d09f8a71748034a4dfb76e53110c 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/blockMeshDict index 11d1a78c51b6d030732a35e6dcc2edad45b9d5a5..4ac9ec33090e20c09619c77da106d9eddbf5f548 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/controlDict b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/controlDict index e5ff499f4b363ca039f898efc1401cd14d375b97..a220bab456248a9fa5459af4f85b6fe6e83a3abd 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/decomposeParDict.example b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/decomposeParDict.example index 49a900b227561fa4a6ad87de5b39c154a2297565..3bc221e24e31c584f3feabc324f9c172628544ba 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/decomposeParDict.example +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/decomposeParDict.example @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSchemes index f9f6136aa6d339b06c87961e32507ac6e94ddc55..effae88647a7c9ffb6004cc0f1dd1655cd243e78 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSolution index 33b2608b7aad7111d50b2b9d1da7faf33ffee07e..989d9747a35947cb5f076c38aa438a76b9752577 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/T b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/T index 8fb585fe16be1b2522a69f7c6ea4c7995b91d3ed..0808707408c60033283cc297ebb69ce0dbe36033 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/T +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/U b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/U index 77079cf62fb0a47180dff63951e1be04a81cfcbb..70cc6f5032f75ba98e761094f67b5fba28d8e70c 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/U +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/alphat b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/alphat index e37036e72c6376c6313138a696c992c7ccadcd4a..50ec9d3ffa5738374ef676aa43e699cb5a5bf97e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/alphat +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/epsilon b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/epsilon index 2a95ea4c2da79db97b4865483ae3392d5169dbb3..18d241a17e2e54c8f69a1b1fbc30f0f6d8924d23 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/epsilon +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/k b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/k index 02bf5e1bad007f82a0b8701f68663851cfe60d83..9c1e225b82a00b48c363b9e3a572a6176028bc49 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/k +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/nut b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/nut index 98bf395e220265175ceaba1f0b722e5ad1bf7329..f9233f78b469fad37bc97e8755a2f6ee5672710d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/nut +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/p b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/p index ad76339a6f4d65acefacd35895731485d99b5218..e70d2f1ccee1b4ac2058de392f5e59b73e7b43ef 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/p +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/fvOptions b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/fvOptions index 1878763ef5e7f1fd9663ea6007e1d3a65d278644..07f1eeb5ee441f777e442494472774ba08ee91f2 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/fvOptions +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/thermophysicalProperties index 9a672cd29f012eec26d54b6bdcc8b34efad871ba..6c7903319e7d32ba57c2fe80733a2ea9d7136f64 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/blockMeshDict index 69f87013b7c4a920a00392cfd92c6092e8ab1d66..16a9cb13a385ae6aacab68837ce6d15f91c045f8 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/controlDict b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/controlDict index 784af30852b073fbc16cbd6098fb91073d119e44..c2f4963f478d4513c51be1366408a72e7e45f601 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/fvSchemes index d81861b81f31f293c707e84e41ce31cf912da420..9bbf45db6ca3b511d38dd389589bf60b2fe3b2e3 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/fvSolution index ca39c6838c18c94c2a1b170a25f6c3df6a8568b5..8eb0b74e46def7c4e7db3893663ba6f91cfb52aa 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/T b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/T index 49277f096cc4c7e86756816872d2027cfb50408e..c647a9bfd62d030188785b4c3ead55f84dd43b04 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/T +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/U b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/U index 018256552b4883879e741e8e331b8f156d40c9a5..a6fabe7ed8d83f9403428498d2cd781461112211 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/U +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/alphat b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/alphat index 7a181f3f4c7b01d70e3ce59f32169a47bc7cb679..27af59f4b466ced981c8526d2b075628488a9d93 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/alphat +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/epsilon b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/epsilon index a01802225bdff838e624a22252977ef1324c7291..463b82cb6a53458cc147e8fb37ce91bf830c6836 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/epsilon +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/k b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/k index 40df0ed2ae820c391be5f8ee67071d83f0862445..bab1655a940e36974caaf22a51dc4e64aee6909f 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/k +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/nut b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/nut index 368342851dd09f6a4c65924bbf8558313836a43e..afb246b52727145a681f0cdb4690d9b43db77521 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/nut +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/p b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/p index 7933507ad4d6c06e2669df64f8388564d5932df9..ef1e37d5bce51d28bc16fdfa64ee4675b83f4b4d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/p +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/boundaryConditions b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/boundaryConditions index 64ed32ffb68344e5576b7a32727942de6c8598e1..4641626b49a96710444adbd70f70d82750d0283d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/boundaryConditions +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/boundaryConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/caseSettings b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/caseSettings index 885083a28e3a17a7083317a5885ab2cd62f7ac4c..51e48a871abea134725d1b3e49cee13b5a959850 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/caseSettings +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/caseSettings @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/dynamicMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/dynamicMeshDict index 711788116cd6943b466af07cf8a4a9ccbaa607bf..41d9dc561f2cd9fa583a8f8f628c43e4499a0efe 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/dynamicMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/thermophysicalProperties index 9a672cd29f012eec26d54b6bdcc8b34efad871ba..6c7903319e7d32ba57c2fe80733a2ea9d7136f64 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/transportProperties b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/transportProperties index 9be5005298b5cf826286093a684368dc4e3395b0..dc26924569e3934ce1b610a9e34a2e20bdab0556 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/transportProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/blockMeshDict index b3c05ee978b5b4a2d4c66a97199b32cf48764227..6c0cf2fec35efeb1b6d1c6b433b09ef8feab6538 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/controlDict b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/controlDict index 66189ece9c74370701df4e26a1b867e4d3f6a236..fc2e65a4180231425be016d88ae03391ea53a984 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/createBafflesDict b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/createBafflesDict index edfc9627e28c89a4b8b8d956fe64b0c7d7b79c46..404bb377e506d46a0d854fb43523a8f327bb6bef 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/createBafflesDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/fvSchemes index 061222b6cbdc0b0a00871eb63f6d83e19e4b1572..6798a0aa318635e6ab3e8962b932b3591599d609 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/fvSolution index f7668a4f32cf15057a62997eb15bea1b7b68f7e5..c1a32d40c4e1f9d9105e1a05f448be40dd16833e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/snappyHexMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/snappyHexMeshDict index 94228cc740e1a54b49feac5e3df27f3a671e83e1..e2ae937262bcfe67d355392f95f555b23ccfcfa8 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/snappyHexMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/surfaceFeatureExtractDict b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/surfaceFeatureExtractDict index 72701bbc2f17c26230d928a667210b36333fc9eb..e15fa6144da0e9042d1802d7822a98980f9aa800 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/surfaceFeatureExtractDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/surfaceFeatureExtractDictDefaults b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/surfaceFeatureExtractDictDefaults index 90fd9c992305d5d2df55aed13c2325dbb760914c..363f915a0a9194e869fc721ffacf39306214ec7d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/surfaceFeatureExtractDictDefaults +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/surfaceFeatureExtractDictDefaults @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/T b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/T index a5dc2ecbd13bf55853c380b794cd0e8ce94a1b2e..80f7994ccb6e12d532555f75a920774722ca6632 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/T +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/U b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/U index 45de4e358322047556741f656e4cef4bd16c8538..e3e55f6e7de68551d334693767da32a0fda3d122 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/U +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/alphat b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/alphat index bbdb5ad8f3723a8afb1e40953397a484403953ec..022a32da80224e660127b57dcd63c73ee3d1fbd0 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/alphat +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/epsilon b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/epsilon index db1036a59c11318522f6f72c5e2441b8f1fa5124..58abf2cfd82d3c3cad71bc03339976d82cdf464f 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/epsilon +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/k b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/k index f70d28e65d6649242ecfe3412feb473f0c6970d7..2e9bc9fb65a098a5613ebb5c03b7f4355a57d394 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/k +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/nut b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/nut index dd6d0f4372257cf1569c15738bc3153f29718336..942c4fbe6185c707bf28a66158e416bb236a32a4 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/nut +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/omega b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/omega index ec6638e5704d8fdf9ee105e30db058949731c841..4a58bce6df9327f07dc03e056be5103fc75b80a0 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/omega +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/p b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/p index d1942b91c31b10324b33d0f8d19b9c93b42a9c9b..19712bbfd3a69f2f8b96e54b3c464a2e4f10979d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/p +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/constant/thermophysicalProperties index ce18b4879c56c6d63e3fe5d47cb653f2aa030e2b..5bfa274348b33e06283ed27463a3a601a6c1667d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/constant/turbulenceProperties index 5deb96622538a2ee348371b07a1680bfbd998f64..646ecdf62957f53b7e095c50ad54267561e34b0d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/blockMeshDict index 89ef70458c46f0482b9a2f0884bc56fbae77deb0..eb7f950887d791b2678cb6a8b1cdac94fe746c72 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/controlDict b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/controlDict index 2638d7db061d58fe035bb58d75e5b0627d8a6a13..d18797f0fd8d6401277715fe3846f1b85ca1f4a5 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/fvSchemes index f3ff0ceb117ed20f82526e43a46d6112ba224835..660f30dddcb110508044e15fed548b41b1562196 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/fvSolution index 5969088c107a3013063344c2060a7ba942916fbb..57f16c094ea903ddff972c667bfde48e50ca5a1d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/T b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/T index ca28eb05b756e0465830d303bbcdfd96fb6d8a84..1763bcbd2fe8122e719cd751f76d9245e8b122f4 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/T +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/U b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/U index dc2d0e0d071ddac7d300a5af7a40d9cebe19793c..a96bceb7de0e04d0b6d28787feb03d7ece579b43 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/U +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/alphat b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/alphat index 28515c2b1605a5e2e4efb0243e25f98aea4c5f78..3103c24e1b1ac264b4a1e0fd1bd2f40de762c0d6 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/alphat +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/epsilon b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/epsilon index dff185025467878cd073b75bf9621915614a4e3f..502ce198fd5a89114f1e833d26cd586f07df19cf 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/epsilon +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/k b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/k index 51e876d2aab00911a2a34debb4ec77771d62bc34..81673b05e2fc887473d478b9828255c4ab3fa71a 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/k +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/nut b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/nut index 88176304830ae4dacdf9e9ba8a90454241bb32d1..1277b57f53947a9afde84a99d315fcab2ffa1956 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/nut +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/p b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/p index d4b0e3957c113fbf3f96aaa983cd2d67e5615674..331817ea9a6b528a48e3b3b922b009a4ba7011ce 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/p +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/constant/thermophysicalProperties index 12beb91744a14100dc6dd1e92be9fa4b38148cee..9d8a16ebe955cfb40990fbcd0127548ae9f72b28 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/controls b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/controls index 1beeab8f61972fefbea6eaa8d20cd0a99d5ae9e4..bb5ee235473ff54388aa381ddddfc33d6cf4b446 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/controls +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/controls @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/blockMeshDict index 4bf30e877362d8d16496aaf8acd060555ee96202..793012bece8951c63be27176a2b53d9407017a52 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/changeDictionaryDict b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/changeDictionaryDict index 3b8f2afd18efc33a401dd75346b13b2bf1c198de..d1868618766783205097662f8e165359cb1c9593 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/changeDictionaryDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/controlDict b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/controlDict index f5cd64c25ec3259b6792888b6292401202a78411..74780e8e5cc3338f4570e6b175d9443c62045a4a 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/decomposeParDict b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/decomposeParDict index 52375e088da3cef49e15d6182866702d60b097da..e98183c46937d265c225c151704b81b3dcd6d0a6 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/decomposeParDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/externalCoupled b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/externalCoupled index cb3fad063f68208e24dc8860635f591ed9be17ae..8d390e926ab18fe9a7aa5a63d6b6ebc886f13546 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/externalCoupled +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/externalCoupled @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/fvSchemes index 5600ea79dbcdc1263306af6bab88cb54f0425047..9132b3ff49d951d6b8149ed6eeb944c96447fadc 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/fvSolution index 4bc341f543a4678caa76e330fd0d85c627e92d15..c42f6d2a752cbf4975c59037a7a6448ff8dfed99 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/RAS/externalCoupledSquareBendLiq/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/T b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/T index d20d02209406d73725f7b25ee12549e10f65b717..3bb9a834f6bcd979ac61dedb24be1b17a9f2b861 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/T +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/U b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/U index b243e1d5aa5348ae867441414152803db2eef4e5..c9c2067ecb20b9a4a618982abe1881005176cf38 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/U +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/alphat b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/alphat index b959c1c4d391ea7c141f21e5b68338efc5ac953c..8f95d73242b56846fd98f89aa214d4b6fd2c4247 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/alphat +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/epsilon b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/epsilon index 0468e30594e3eabb95daedb3120197e6c5213fc3..1e324d84436ade96925dbee13e28cc5206ffeb1d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/epsilon +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/k b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/k index c2bb0caaa8e83b139a3d4cd0fc1fcff86adf8aa0..b09486487146312ceba875462c173a384134a0ec 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/k +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/nut b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/nut index 4c5fff8628e6daf06a8cba0e059ae4a4a0468b74..1f6389862580e5a099e62be5ecbdfd9f9b63912a 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/nut +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/p b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/p index cd5e46ec68a8397dbdcf361abf744830a56f96ce..e7ff71447091f8c98d12b34f5526dbc81ee66a48 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/p +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/tracer0 b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/tracer0 index 8f2962bd7f9fc2d9dd20b35b5b339e807ac5d548..d437506875e8d994d79658ac7b761851e500928f 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/tracer0 +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/0.orig/tracer0 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/MRFProperties b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/MRFProperties index 2c0cdf788aa20dba41cc6abf310478eaeda160d7..b69e1e62f5e6b85aa43f2ba1f397b8d545ba4eef 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/MRFProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/MRFProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/fvOptions b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/fvOptions index d3d0112a8defe9c0921375dac4c353ffab74e7d7..91ef7bf3146cefc5de8d8e08c2464871f41fb807 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/fvOptions +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/thermophysicalProperties index 39cbde9f693fd0892d716a6057e3d66d5a884c23..4dce7ae28dbef92a73c75fcfb7c0adbcce8116e4 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/transportProperties b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/transportProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 index 5fdc92e9041f3550caf23e9e9c298e102f6c7324..70f86632e5d0bd0e5c62545c8a95adf4cde8232f 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/controlDict b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/controlDict index 6b022bb033595a5ab6de7ccec0936ae3fbb6011b..074151122fb2442b952a1e8d9e77c9a322be2e57 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/fvSchemes index 824a34fb06c82954f5412ba82473e487b80af7cc..751b55d2fb10d66bd204a36c30bd1475431e69ac 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/fvSolution index c674a38f4ba963c283b118e674a75e5e6c3727c3..459847b6f6b80570d0f3abc200a658f197fd4911 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/T b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/T index 35b2ac40256dba8392671a8746d96e24a15e3f82..5b50f85c859cf5d7d2d5982ffb3f3ce75ef7841a 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/T +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/U b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/U index c9561576bcdaa4e8849ab7059d2f2f8eb93da7a9..fe8325c63a074c2238f9b073c4787fb323ba0c60 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/U +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/alphat b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/alphat index 28515c2b1605a5e2e4efb0243e25f98aea4c5f78..3103c24e1b1ac264b4a1e0fd1bd2f40de762c0d6 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/alphat +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/epsilon b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/epsilon index dff185025467878cd073b75bf9621915614a4e3f..502ce198fd5a89114f1e833d26cd586f07df19cf 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/epsilon +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/k b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/k index 51e876d2aab00911a2a34debb4ec77771d62bc34..81673b05e2fc887473d478b9828255c4ab3fa71a 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/k +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/nut b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/nut index 88176304830ae4dacdf9e9ba8a90454241bb32d1..1277b57f53947a9afde84a99d315fcab2ffa1956 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/nut +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/p b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/p index d4b0e3957c113fbf3f96aaa983cd2d67e5615674..331817ea9a6b528a48e3b3b922b009a4ba7011ce 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/p +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/constant/thermophysicalProperties index 12beb91744a14100dc6dd1e92be9fa4b38148cee..9d8a16ebe955cfb40990fbcd0127548ae9f72b28 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/blockMeshDict index 5d4730017db24a0b7550c9f68e044ce4585d3c46..42c3e5d6183753808feb74e5f95d9c228d609e38 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/controlDict b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/controlDict index bd4d52c0f744474e33381552131e4bd6aac3e0d3..ad6433d9e7c0f4a26a9b540b2c319a59a46e3cca 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/decomposeParDict b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/decomposeParDict index 52375e088da3cef49e15d6182866702d60b097da..e98183c46937d265c225c151704b81b3dcd6d0a6 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/decomposeParDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/fvSchemes index 82c047367e5dfa2753e056c4aaa0ebe170b209c5..2fb4d9591248c5309d4f40ee666f21afb0a4ba24 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/fvSolution index 4bc341f543a4678caa76e330fd0d85c627e92d15..c42f6d2a752cbf4975c59037a7a6448ff8dfed99 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/topoSetDict b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/topoSetDict index f31adaa73b6300b9b36f5035731390658d078a28..b51e6dd933e216ab4a0afa798046b5d78b6a5eab 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/topoSetDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/T b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/T index cc5efbdb70310c734b43c2ff070584987c61edd0..7bf2d68f324f6424da6bbe79f5459eaff236e76f 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/T +++ b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/U b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/U index d97b8c576df82defa7898f094d487afe1e7f6e13..493d49aec931b25db38b0783c75003c56b61b7b3 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/U +++ b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/p b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/p index f86bc385bcf144f500b2b2ef1f8159f8707de0c3..00f4dc0ee4fb7e6165b27eabae3caf5ebf9b19ac 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/p +++ b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/constant/thermophysicalProperties index 955221cf9e33fa780e9b368832c890a2eff58f1c..7b45dfb832ae6813276571e0c4e8fde1b6e10128 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/blockMeshDict index b4de4036cb77a674363fb30edf5e69ebbe6ffe75..31a547203dc0528bb9db1e853dd25d02285152a5 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/controlDict b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/controlDict index 12f32427b3821e1cd70425a246e07bc110a30e6f..4470897db3b010604800649dec0e6ff308a33ffc 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/decomposeParDict b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/decomposeParDict index cf6d208f01a50c2c6befc08ed6e7872db2ad0cea..99b3f6a0d2b8487757d08f552a0110e469e76f1b 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/decomposeParDict +++ b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/fvSchemes index 25e11f983bff39d76681b39d45624b01ee155f66..e690fee0acada3509aceac4b2af59e6c92ab76d8 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/fvSolution index b0ec8ec096c03ca32afdd24b667d7701f7a0c07d..cffaf11d77632010e386cd78c3ed8edfb19bd5ac 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/T b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/T index 6b4280314d7fd3ee2b8fff500fda5f75579daae3..7583c7a5b5c73eb9f14a38b3f2dd62d28bace634 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/T +++ b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/U b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/U index 97c074532f82021d67a54fd8e441c2bbb8efa501..d2c9274507f30f42d05c2abe9d66f740441606ed 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/U +++ b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/p b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/p index 3a0706c978bd72a4c35736fd130ac60061e01958..22b7c0781a31c35db308404d414b9fea2c3c1a20 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/p +++ b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/constant/thermophysicalProperties b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/constant/thermophysicalProperties index 9a672cd29f012eec26d54b6bdcc8b34efad871ba..6c7903319e7d32ba57c2fe80733a2ea9d7136f64 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/constant/turbulenceProperties b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/blockMeshDict index eff0994b7a15649fa754e86a102ae8a9fccf5774..ff007fd776edc1d786df3bede9d1e0281b201acb 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/controlDict b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/controlDict index d7540c02e88ac53d63f30727184f5d95a88e7751..127e8f3bf9b6dec5d3c82b5746811126694611fc 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvOptions b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvOptions index 9659fa19acb34c1219836b689457e3e9ced6d99f..a44088ad4b19694265b55a3296cb46993c00c865 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvOptions +++ b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvSchemes index 9095e4dcaed2e2bf435bb59cf4b58db0b89b3d20..7be4c6bb4001361c68e056d693fb8c79fe82d555 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvSolution b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvSolution index 2a83fcb6b96ed464d881af77cd634d87c9dd9179..9972a42288393ee746047b3b3642e9c1b4906d3f 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvSolution +++ b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/T b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/T index 66e7db4b4732ddd912c08ab13e1ec0775fc69b26..0f9009aacf6ef17adc7d156cd880764170bf6a07 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/T +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/U b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/U index 569ed0ef1c33b137c2e66333c50d9e564eddf889..90712bf122c8704a6d6d72bdcaf205273cc3ebc0 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/U +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/alphat b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/alphat index ae81d2a87de9f84fb8c5af3b6a7e54b5c8ee90f5..c0bd811b1e6ae1bf834cc33dacc6ce9e8703ceed 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/alphat +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/epsilon b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/epsilon index 33fc07492240c255c9d9307be3441cb985a03652..48f70dfa313b325ff556cf7124edf4c1ae3495b3 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/epsilon +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/k b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/k index 6ff7325c8fb4cf977bc6694e171ee89c5c86cec5..21072c8631a74033d1a5b0b5707fc88cbaa70b85 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/k +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/nut b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/nut index 50fc6cc839312628433a393898881a443463817c..f04c2d46538a8b35e92c933e54ff5f946cbf7956 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/nut +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/p b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/p index ad76339a6f4d65acefacd35895731485d99b5218..e70d2f1ccee1b4ac2058de392f5e59b73e7b43ef 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/p +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/blockMeshDict b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/blockMeshDict index 69f87013b7c4a920a00392cfd92c6092e8ab1d66..16a9cb13a385ae6aacab68837ce6d15f91c045f8 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/blockMeshDict +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/fvOptions b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/fvOptions index 91152157012e474f23c245dd4a59735df99dd78f..7e9c4f144de9dffd397daf31751aeddda04c3d1f 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/fvOptions +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/porosityProperties b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/porosityProperties index 9c425b6d224bc74aaa63fd37c77b1fe1d90c0a4e..e461d7eee7017c0c2e635356cb270371f0cd47b0 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/porosityProperties +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/porosityProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/thermophysicalProperties b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/thermophysicalProperties index fead8126cb841ac8355c53dd901b9fe494654392..e2384eda66d9ebc61ff7701ce82c38b414d25b50 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/turbulenceProperties b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/turbulenceProperties +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/controlDict b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/controlDict index 00357a6bb605f78a70ef5c3f575dc54d3d835001..a00a8d39af60f73233340a2d337f89513e040003 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/controlDict +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/fvSchemes b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/fvSchemes index 3f9dbf5f54217e4bf3889183c1b7c8a0d0091e94..a109044a9ea65251b969e93c8a969130751cc757 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/fvSchemes +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/fvSolution b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/fvSolution index 510cc2fe1d7b58c8d795290ccd91ff5df545ba07..e3807256541dcf7fb8688f4a42a963f5ffc2af81 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/fvSolution +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/explicit/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/controlDict b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/controlDict index bfafd65bf4bf1fd63be44adfa535c5a18b454161..af1f95c673ddb86e8287b8156bce71c35df00dd9 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/controlDict +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fluxSummary b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fluxSummary index 98d059ab4096e2ff162de7b2abe3952ac0961421..41a3ef792299ebe933c4117363694613399aa7d7 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fluxSummary +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fluxSummary @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fvSchemes b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fvSchemes index 3f9dbf5f54217e4bf3889183c1b7c8a0d0091e94..a109044a9ea65251b969e93c8a969130751cc757 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fvSchemes +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fvSolution b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fvSolution index 27429ff81df16ccb162f5736dc3f3e735ebcefc5..88d01b597680561009f932204ec623c5b4eec438 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fvSolution +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/sampling b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/sampling index 441a69a538cdeeb8ccac008bf438eb9fe8bb78d8..cc827bae49ba5a7ad03c349fdefdb637f606ca96 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/sampling +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/implicit/system/sampling @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/T b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/T index 13f39b0847f3e8bcdcb417a0403a6c4feae19917..98410c87813ef682d71aaa2b744520a2cf6dfd27 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/T +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/U b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/U index 0f295be1f61a3b126be496d4fba6d2a641c857ba..d3b4f0fd20a09144c647cf663a134c3a7ffb6184 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/U +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------* \ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/alphat b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/alphat index 07c529c26f271bdfb7d96ce712b1d5760743e0b1..b1a19fa7fb8695b7f29361a68cfc4f786d1a613e 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/alphat +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/k b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/k index df22298eed24fd637431ccc9b28376c8b1b981fb..03477c4185644bdea7abb89985465d66f413e02f 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/k +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/nut b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/nut index 4bceae1f1cd03991045aa50001f3d53944569fa3..3d07edc7da0e636367be26592666a359dd13e017 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/nut +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/omega b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/omega index 8871d67a9b1df0ef10871e11f3de6923ba5fbe0b..35ca02bc68e31dd4037dcfee6b46cd622e02bddd 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/omega +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/p b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/p index ffa8a3d2e40c65e53318f233b0d0c9e660467e6a..c2787d31b63518b8186b2addfffb0d6823bf4404 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/p +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/constant/thermophysicalProperties b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/constant/thermophysicalProperties index d8cc0b01b30eb79f5b38593cd9d26f3d4979c23b..af0b1175dd66c424f2a335dc341d4dcde339ef63 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/constant/turbulenceProperties b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/constant/turbulenceProperties index 5deb96622538a2ee348371b07a1680bfbd998f64..646ecdf62957f53b7e095c50ad54267561e34b0d 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/constant/turbulenceProperties +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/blockMeshDict b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/blockMeshDict index bc888b4285f1e99edcd4b3d0ef6216102f4115ce..cade69b19ed0fb60e5d111f7ea70706d96efb796 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/blockMeshDict +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/controlDict b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/controlDict index d4a6fff8303788e8ebad3cc9e92ab0398fa854ef..ae9f6d07268685cbf1db95d8af3d24656950929f 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/controlDict +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/decomposeParDict b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/decomposeParDict index 4325a4d4884c13a6dbfa4431e4c07277f92c4d06..48bdb28384ad436b842455f491191ecaddfd4222 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/decomposeParDict +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/extrudeMeshDict b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/extrudeMeshDict index 54529a553d0be572a5a12dcecb6063cc2326b96f..6862e8f9e25434d2d368d86a41f9ab3b02479464 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/extrudeMeshDict +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvOptions b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvOptions index dd1898b1604823898cd7f1cf0bc7fd4bf5c6feab..37ec379a1f1496cd2ea73a207fd45d7360f2dd44 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvOptions +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvSchemes b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvSchemes index 11a71f4a268f85fee92dcd359b6447d222d469c2..0e55136e2cee28d8035d8ef3aba64a6d0165baf7 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvSchemes +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvSolution b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvSolution index 0cb77ef996662bb74a7a9c5291d23bf03f36c4f6..3f4e82bfbc6f9243f66e00c11e65ae0bf3b568a4 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvSolution +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/topoSetDict b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/topoSetDict index ef3a7a75966ff26fd35ffd2a71a842f2cf5e5b57..8a9caba63816f0c5eb10e89fb423f50e3abf8502 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/topoSetDict +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/T b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/T index 8fb585fe16be1b2522a69f7c6ea4c7995b91d3ed..0808707408c60033283cc297ebb69ce0dbe36033 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/T +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/U b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/U index 0d0af2ea16f60ee084367d21a8f59a492fab170a..da8d9f6f22736560b62874d42849344b23a8a4b2 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/U +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/alphat b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/alphat index e37036e72c6376c6313138a696c992c7ccadcd4a..50ec9d3ffa5738374ef676aa43e699cb5a5bf97e 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/alphat +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/epsilon b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/epsilon index 2a95ea4c2da79db97b4865483ae3392d5169dbb3..18d241a17e2e54c8f69a1b1fbc30f0f6d8924d23 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/epsilon +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/k b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/k index 02bf5e1bad007f82a0b8701f68663851cfe60d83..9c1e225b82a00b48c363b9e3a572a6176028bc49 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/k +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/nut b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/nut index 98bf395e220265175ceaba1f0b722e5ad1bf7329..f9233f78b469fad37bc97e8755a2f6ee5672710d 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/nut +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/p b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/p index ad76339a6f4d65acefacd35895731485d99b5218..e70d2f1ccee1b4ac2058de392f5e59b73e7b43ef 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/p +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/fvOptions b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/fvOptions index 3079092014b6dfa42598b18948508c6d8a6ceaef..8af2a5a420c1011dabe555e1a3d7559779beebad 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/fvOptions +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/thermophysicalProperties b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/thermophysicalProperties index fead8126cb841ac8355c53dd901b9fe494654392..e2384eda66d9ebc61ff7701ce82c38b414d25b50 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/turbulenceProperties b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/turbulenceProperties +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/blockMeshDict b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/blockMeshDict index 11d1a78c51b6d030732a35e6dcc2edad45b9d5a5..4ac9ec33090e20c09619c77da106d9eddbf5f548 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/blockMeshDict +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/controlDict b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/controlDict index 9952201c2b0128b915799d32cc1c806bb5d32025..21a977fba5fcd9917aa71f4793f865bb2c347048 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/controlDict +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/fvSchemes b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/fvSchemes index 3f9dbf5f54217e4bf3889183c1b7c8a0d0091e94..a109044a9ea65251b969e93c8a969130751cc757 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/fvSchemes +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/fvSolution b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/fvSolution index e5fd7457a259c96e021ef4dadeaf29b6a95d6282..2bcd2309032c67946165ad1a7b356eced1e275e2 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/fvSolution +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/T b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/T index fdf9a5e1a8db0e35e481b31c2d57ce02fdd1305f..68425145d98d1d3fc5c596e1ff7f1b880d4c433e 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/T +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/U b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/U index 4dbcfb71cbc990c7aecbdaa573b43a9e62c9222a..b0bdce53b731f1b651a4aae154e7e764266f9ca3 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/U +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/alphat b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/alphat index 1eed31f75070df4f3354e2b3fe6956ef5b50e4ba..3b3b26ddee3a7337f8fa6a04708a1afac5ae3136 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/alphat +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/epsilon b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/epsilon index 32ed071b871b528656730837a05fab45fd9bd5ee..e73aa54ba878ad3a35493ee45dc1478c1c9b62fc 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/epsilon +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/k b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/k index 2309dee254fd8dc602169f6d3fb36ee1b9485491..777c4f6de34249caa2ea98fe1774a45c75fc0214 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/k +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/nut b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/nut index 61e5c96ab53ff4f6a54eda22165e6f63b64e6df9..19b6434e1b393bf9d53554629dec2f392c3bb0fa 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/nut +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/p b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/p index b70475d288c157a5c6bfef3b8e2847d503ccf86b..18e9a1efc0618b4f10dfa9e87d9a9ea16ccb148e 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/p +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/tracer0 b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/tracer0 index 4a01287dcf6f6928fcd64c895a6c81456a975660..a434ee9c103c66448b36038c38b0fcd7bbfefe75 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/tracer0 +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/0.orig/tracer0 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/constant/thermophysicalProperties b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/constant/thermophysicalProperties index c703d1b343ae8f0b3da13fc60f78725507dfb879..1048e826d257012319e659c51cae6ee788ffaef9 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/constant/turbulenceProperties b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/constant/turbulenceProperties +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/blockMeshDict b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/blockMeshDict index 06bcf6a0bb424392acfc7bf0e452c5183284b1a8..8cb084b9cd2c655e0da2a7c684163c56fbb83c89 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/blockMeshDict +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/controlDict b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/controlDict index 443b17cca5ee6125794dc72adcbec9854255e7f0..514ae46004cbf153aca0ffcad3b4afa911f85b1e 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/controlDict +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/decomposeParDict b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/decomposeParDict index 665c1af6ca65fbb795f4f6f6f15a8c5d3b8d0a81..b2545c0a6b3d57a75bd2b0515fa351eda37c46e0 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/decomposeParDict +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/fvSchemes b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/fvSchemes index 131d9c0f45a52a5028aca8b1da0bf05fd061ede1..3017e7ff3bfe36630e1662c0bd66990e33adba2d 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/fvSchemes +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/fvSolution b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/fvSolution index 2478ae2f84b971f18b10c9b6f4f4485f893aafae..332c0e507e8c6e5d9cb128adc14a872c93275e6d 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/fvSolution +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/meshQualityDict b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/meshQualityDict index c2eac80361e36d829e361f1f04bdc37e60bebac9..293b12cf1b6da1c33dac9ae6f47bf2d29a2624ac 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/meshQualityDict +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/snappyHexMeshDict b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/snappyHexMeshDict index d17b0e56ff63a18f298b2d8405bd661a31ad36ce..ffcdf0b2e4dfb64c57ffa18219affc1c1c1ee2f0 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/snappyHexMeshDict +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/surfaceFeatureExtractDict b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/surfaceFeatureExtractDict index fe0501bea2482ba8d0395c475f799fc0fa960596..f4c29699525d1eb2324298ccaec16b6c0e9dac1a 100644 --- a/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/surfaceFeatureExtractDict +++ b/tutorials/compressible/rhoSimpleFoam/gasMixing/injectorPipe/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/T b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/T index 8317bbade39d5e71775d1481eb2bfc22fae74752..c695e79f7a672bf5d32ab1587d1e6b8860603b33 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/T +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/U b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/U index 7f0cfb11834f989a53235e51124d96aa5be31d70..4459aaa9ee4909755f40cd9993bc74975b7e5c8d 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/U +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/alphat b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/alphat index 28515c2b1605a5e2e4efb0243e25f98aea4c5f78..3103c24e1b1ac264b4a1e0fd1bd2f40de762c0d6 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/alphat +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/epsilon b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/epsilon index 43e5fefbc08c1d3310213d452f670978c27e872e..2ebe580e630606d130aa06f25e45c6a729b4e5c1 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/epsilon +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/k b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/k index 369b33c04257d4978477465823c5366997fd2c28..ccf3e8d77780b802ef5e8c77e6fd28eebd158afd 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/k +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/nut b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/nut index 88176304830ae4dacdf9e9ba8a90454241bb32d1..1277b57f53947a9afde84a99d315fcab2ffa1956 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/nut +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/p b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/p index 1f27e25a6e5bbf4f65768cbf5d7faec8db445dde..fb2ae671424ea7a1150af361a7875b72decdb565 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/p +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/constant/thermophysicalProperties b/tutorials/compressible/rhoSimpleFoam/squareBend/constant/thermophysicalProperties index 73d02dee4c2ab9d5e5c8c0e043910a58704ce77c..4e64f993e457716476f9d7f07231549d58353c49 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/constant/turbulenceProperties b/tutorials/compressible/rhoSimpleFoam/squareBend/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/constant/turbulenceProperties +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/system/blockMeshDict b/tutorials/compressible/rhoSimpleFoam/squareBend/system/blockMeshDict index b9ce8c5d18109559aa09259f27c23cfaad78680c..3904e64edfa10c2d2953be5cc9850cd452b55ffe 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/system/blockMeshDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/system/controlDict b/tutorials/compressible/rhoSimpleFoam/squareBend/system/controlDict index e7af1dd6e6a2fe3d266a951b070d4e0ef8d4e268..82e0ab9e4e04f0c66832f177c4dd17a54e3405dd 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/system/controlDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/system/decomposeParDict b/tutorials/compressible/rhoSimpleFoam/squareBend/system/decomposeParDict index 52375e088da3cef49e15d6182866702d60b097da..e98183c46937d265c225c151704b81b3dcd6d0a6 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/system/decomposeParDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/system/fvSchemes b/tutorials/compressible/rhoSimpleFoam/squareBend/system/fvSchemes index 93d100ada0fec49933fcc9c75d5acceea586f34a..5d05ab50fe7ac1091b7cd7fc521290d5ad43c800 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/system/fvSchemes +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/system/fvSolution b/tutorials/compressible/rhoSimpleFoam/squareBend/system/fvSolution index 74239c300e283cac1690b3a26879c00108fb9cd5..d8d7dca3795f6ab1d0f54835bafe9973b35d895a 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/system/fvSolution +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/system/sampling b/tutorials/compressible/rhoSimpleFoam/squareBend/system/sampling index 5f5648c0f1d493d5341c6c691861906248fb7378..41ba151551ea9ac752d44b5b517afbf970a858df 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/system/sampling +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/system/sampling @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/T b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/T index 0a5cea9c5c8e6a61840be0b0b3e634466b5d5148..0fef804843ce8b54b968f8a7075fd4756933078a 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/T +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/U b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/U index a1a9a1261f9c2318d908948f15cd45dfe9376d35..9f2386569622f077b865d35309747809206ae444 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/U +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/alphat b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/alphat index 28515c2b1605a5e2e4efb0243e25f98aea4c5f78..3103c24e1b1ac264b4a1e0fd1bd2f40de762c0d6 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/alphat +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/epsilon b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/epsilon index dff185025467878cd073b75bf9621915614a4e3f..502ce198fd5a89114f1e833d26cd586f07df19cf 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/epsilon +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/k b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/k index 51e876d2aab00911a2a34debb4ec77771d62bc34..81673b05e2fc887473d478b9828255c4ab3fa71a 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/k +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/nut b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/nut index 88176304830ae4dacdf9e9ba8a90454241bb32d1..1277b57f53947a9afde84a99d315fcab2ffa1956 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/nut +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/p b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/p index d4b0e3957c113fbf3f96aaa983cd2d67e5615674..331817ea9a6b528a48e3b3b922b009a4ba7011ce 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/p +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/constant/thermophysicalProperties b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/constant/thermophysicalProperties index 12beb91744a14100dc6dd1e92be9fa4b38148cee..9d8a16ebe955cfb40990fbcd0127548ae9f72b28 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/constant/turbulenceProperties b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/constant/turbulenceProperties +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/blockMeshDict b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/blockMeshDict index 5d4730017db24a0b7550c9f68e044ce4585d3c46..42c3e5d6183753808feb74e5f95d9c228d609e38 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/blockMeshDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/controlDict b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/controlDict index e8d52bed78b65e4c56157565abe1d7c0f2739f77..f8dd6ad050f7cd1479b265470d329e00d11e0163 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/controlDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/decomposeParDict b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/decomposeParDict index 52375e088da3cef49e15d6182866702d60b097da..e98183c46937d265c225c151704b81b3dcd6d0a6 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/decomposeParDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/fvSchemes b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/fvSchemes index 88b1c18d5917db50fba57bda604abe4d75af62aa..b8032e7fc1f205656489892a9a8eac3f749166f5 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/fvSchemes +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/fvSolution b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/fvSolution index f24bc509a50a2568668506a80f2c0b307e0ac733..c10dc5d854f98ba287222ec15688a382d05e4709 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/fvSolution +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/topoSetDict b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/topoSetDict index f31adaa73b6300b9b36f5035731390658d078a28..b51e6dd933e216ab4a0afa798046b5d78b6a5eab 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/topoSetDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/T b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/T index 35b2ac40256dba8392671a8746d96e24a15e3f82..5b50f85c859cf5d7d2d5982ffb3f3ce75ef7841a 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/T +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/U b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/U index 59da8409c5f756c316adb4887b9d630257738001..c2590fe63265815173d32c09facd1cb244667fb1 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/U +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/alphat b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/alphat index 28515c2b1605a5e2e4efb0243e25f98aea4c5f78..3103c24e1b1ac264b4a1e0fd1bd2f40de762c0d6 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/alphat +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/epsilon b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/epsilon index dff185025467878cd073b75bf9621915614a4e3f..502ce198fd5a89114f1e833d26cd586f07df19cf 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/epsilon +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/k b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/k index 51e876d2aab00911a2a34debb4ec77771d62bc34..81673b05e2fc887473d478b9828255c4ab3fa71a 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/k +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/nut b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/nut index 88176304830ae4dacdf9e9ba8a90454241bb32d1..1277b57f53947a9afde84a99d315fcab2ffa1956 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/nut +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/p b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/p index d4b0e3957c113fbf3f96aaa983cd2d67e5615674..331817ea9a6b528a48e3b3b922b009a4ba7011ce 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/p +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/constant/thermophysicalProperties b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/constant/thermophysicalProperties index 12beb91744a14100dc6dd1e92be9fa4b38148cee..9d8a16ebe955cfb40990fbcd0127548ae9f72b28 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/constant/thermophysicalProperties +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/constant/turbulenceProperties b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/constant/turbulenceProperties index f7c4b04328d0e0797575a228bc1f79bd0b08b00e..131cb2c00b1de8e4a3c9571900cf651900d33ea0 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/constant/turbulenceProperties +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/blockMeshDict b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/blockMeshDict index de82bf1434c7cef6416e8c065e44e5d802391474..8c1ef52976191eb6de59629e85cec00c1be4b635 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/blockMeshDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/controlDict b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/controlDict index ef19023e7091380dbcb6ca65492906040dbb56be..116050ddb76edfa610aa6803a3d81e82d3bee301 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/controlDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/decomposeParDict b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/decomposeParDict index 52375e088da3cef49e15d6182866702d60b097da..e98183c46937d265c225c151704b81b3dcd6d0a6 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/decomposeParDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/fvSchemes b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/fvSchemes index a58b751f9c2140ebd37a862bbd764776e05a8ea1..01948ac6b1cdad7c71255a4ec61b201f78addfef 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/fvSchemes +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/fvSolution b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/fvSolution index f24bc509a50a2568668506a80f2c0b307e0ac733..c10dc5d854f98ba287222ec15688a382d05e4709 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/fvSolution +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/topoSetDict b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/topoSetDict index f31adaa73b6300b9b36f5035731390658d078a28..b51e6dd933e216ab4a0afa798046b5d78b6a5eab 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/topoSetDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiqNoNewtonian/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/0/T b/tutorials/compressible/sonicDyMFoam/movingCone/0/T index b8636136f07cef16d60240485a011a68ceec096f..32c85f098b7b20a88547b070d1c5184ad9f8e18f 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/0/T +++ b/tutorials/compressible/sonicDyMFoam/movingCone/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/0/U b/tutorials/compressible/sonicDyMFoam/movingCone/0/U index 4b5baa6359a5aaf09217429663b41f05c1d9c0b6..e13734dcdbc778d1277d56e6088a38f911549acb 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/0/U +++ b/tutorials/compressible/sonicDyMFoam/movingCone/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/0/p b/tutorials/compressible/sonicDyMFoam/movingCone/0/p index ea66f0048855fe507ff03569ad3e190fe9c0310b..cb926d9f99be15f28019fb5d70728ab5a89bab36 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/0/p +++ b/tutorials/compressible/sonicDyMFoam/movingCone/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/0/pointMotionUx b/tutorials/compressible/sonicDyMFoam/movingCone/0/pointMotionUx index cd9e76ad50760b4c030dd6915caa886b26bfa2a5..cccaaca9756847673842288a09f0183bbbdb11c8 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/0/pointMotionUx +++ b/tutorials/compressible/sonicDyMFoam/movingCone/0/pointMotionUx @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/constant/dynamicMeshDict b/tutorials/compressible/sonicDyMFoam/movingCone/constant/dynamicMeshDict index a31c84ecfb1e22cb2643f0215850d24a68b41199..828c8be96641f18d413a1b65765f4ab16b8b893d 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/constant/dynamicMeshDict +++ b/tutorials/compressible/sonicDyMFoam/movingCone/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/constant/thermophysicalProperties b/tutorials/compressible/sonicDyMFoam/movingCone/constant/thermophysicalProperties index 3f036e87cacf28bbcd2b4b85be1bd11430041acb..a202d15984e837dd5cbbff96786c21d4600822e1 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/constant/thermophysicalProperties +++ b/tutorials/compressible/sonicDyMFoam/movingCone/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/constant/turbulenceProperties b/tutorials/compressible/sonicDyMFoam/movingCone/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/constant/turbulenceProperties +++ b/tutorials/compressible/sonicDyMFoam/movingCone/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/system/blockMeshDict b/tutorials/compressible/sonicDyMFoam/movingCone/system/blockMeshDict index c381a7e0b6bc8a67c944b1d9802da8900d609135..166889d5efc26981554ba17083d760cc79328950 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/system/blockMeshDict +++ b/tutorials/compressible/sonicDyMFoam/movingCone/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/system/controlDict b/tutorials/compressible/sonicDyMFoam/movingCone/system/controlDict index 48b554bf24c319eadefc0a845048ddd7c9ec9676..af93b9b7fd998d9ad68a0858eaad8fc5a302be6a 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/system/controlDict +++ b/tutorials/compressible/sonicDyMFoam/movingCone/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/system/fvSchemes b/tutorials/compressible/sonicDyMFoam/movingCone/system/fvSchemes index 1dcfda5cb3a3be7fc2ce9ebe6b51208385cc054b..de7dabd97bc291394cd8e16036c725a346497a04 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/system/fvSchemes +++ b/tutorials/compressible/sonicDyMFoam/movingCone/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/system/fvSolution b/tutorials/compressible/sonicDyMFoam/movingCone/system/fvSolution index 8708034c1d07386e5fa12a3e558aa1c1d2d15e92..23bcb79da9cea32c8b99aad484fa4eafe89b34cf 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/system/fvSolution +++ b/tutorials/compressible/sonicDyMFoam/movingCone/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/T b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/T index 018a2112cd69749e08f0efa7a3777d876ff05f3a..51577d0c4b66fc80bbb2f0fead24c79a5a7c91bb 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/T +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/U b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/U index dc946b41edd07cec3d326f5e6acb8be3fdda5bb1..4204818b7a9e5a5de82bc37afdcb6d92a4446d60 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/U +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/alphat b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/alphat index 08125cb34307a423b2cf8b9440b30c8502951590..7e361fcee7e60d4d03ddea4e87a23fc13f61ae58 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/alphat +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/epsilon b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/epsilon index 48d998345878584c414ad59fa52226e78b302046..fb66f921ff0535fb9fb481afba27f1b600eaad68 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/epsilon +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/include/initialConditions b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/include/initialConditions index eb196c35b3b8c37610c76922d0c5427e62f3a3bf..7e10c83b4cc00e6def0af1b5a4303627bfeb6582 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/include/initialConditions +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/k b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/k index 8341eed2bbd30bed01fd2e38f1df831dfc36e2c9..1a3181e2b12af75523a1aa1c414d8888e429a01d 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/k +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/nut b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/nut index edba87e2cd8d7e734952cf4c36def7ae8c7e9e14..e9c40fc3177d46e73872dc6559cf1b3dc0d884ec 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/nut +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/p b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/p index e3f7449bdf12dd906bddd15246a88b64f508f5a7..c685e93530f24c1ad18a9f0f3053ae9f46febf74 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/p +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/constant/thermophysicalProperties b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/constant/thermophysicalProperties index 0d2dc5895925095806f9bebecd5c1849c0919a46..4a94af96ade3cc15b08f5dcfd675c4a8e12f823c 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/constant/thermophysicalProperties +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/constant/turbulenceProperties b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/constant/turbulenceProperties index bcd74e3828f401a65ce58fd507ee4ebfba93550a..7c5e56fec46e47207765a69e360a1f1c15042fed 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/constant/turbulenceProperties +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/controlDict b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/controlDict index e16a4662099d2b054483e50ed8f1802973cf27ba..8fb03e33756de3cfc96e2422716800d7dde4147e 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/controlDict +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/decomposeParDict b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/decomposeParDict index f4e1588ea2396ad771e986f184cc93316a7bd9eb..186d7941f0136899b4ad432e424135a5606794b8 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/decomposeParDict +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/fvSchemes b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/fvSchemes index f7fc8ecd7686ed38d2edf143066654b576c5dd52..262924bf77e6568b9542c56a44c510291f609a76 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/fvSchemes +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/fvSolution b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/fvSolution index dd42d0721065c1159d058776b61485ae14fe0f97..0d21a877e105094c0c9ab856bd476271b8983c19 100644 --- a/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/fvSolution +++ b/tutorials/compressible/sonicFoam/RAS/nacaAirfoil/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/0/T b/tutorials/compressible/sonicFoam/RAS/prism/0/T index 941ccc4fea990267c41d646e5b1ed7b74e6b6151..1a876d0a163bc03937a3c3a19aeebbc35f5b1bd9 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/0/T +++ b/tutorials/compressible/sonicFoam/RAS/prism/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/0/U b/tutorials/compressible/sonicFoam/RAS/prism/0/U index 75c0c8d060a31dcbed29d58c3a155c263120319c..33534709e1ac33e3d581240384271beab79bc653 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/0/U +++ b/tutorials/compressible/sonicFoam/RAS/prism/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/0/alphat b/tutorials/compressible/sonicFoam/RAS/prism/0/alphat index 53502b9668276dce3b41b95c32fead1539c5da97..b2556dd91fbb6c19d5a8d8562c49ff09a817070e 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/0/alphat +++ b/tutorials/compressible/sonicFoam/RAS/prism/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/0/epsilon b/tutorials/compressible/sonicFoam/RAS/prism/0/epsilon index d212d8543e57f8e5eb2a686cfd1dcbaa7f74fb48..875f90b37d5c1cf3b5666a1395a4bdca1effb697 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/0/epsilon +++ b/tutorials/compressible/sonicFoam/RAS/prism/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/0/k b/tutorials/compressible/sonicFoam/RAS/prism/0/k index c3ab89e380402ad08f628f3c2c5bff54ec54fdf3..51ad962c423f65de5fb921831ec17cc99d983f6f 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/0/k +++ b/tutorials/compressible/sonicFoam/RAS/prism/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/0/nut b/tutorials/compressible/sonicFoam/RAS/prism/0/nut index 681fd14879050ea7574532491cc97d5d2bfb954e..45762bb5e6405d654d7417e5b19f83da6a1cea87 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/0/nut +++ b/tutorials/compressible/sonicFoam/RAS/prism/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/0/p b/tutorials/compressible/sonicFoam/RAS/prism/0/p index c2ff5c0e3520b4e378d39f4a810624d7ac278b9e..b8a6bb7321f0cbc492b3fd14878981b100e59e4b 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/0/p +++ b/tutorials/compressible/sonicFoam/RAS/prism/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/constant/thermophysicalProperties b/tutorials/compressible/sonicFoam/RAS/prism/constant/thermophysicalProperties index 0d2dc5895925095806f9bebecd5c1849c0919a46..4a94af96ade3cc15b08f5dcfd675c4a8e12f823c 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/constant/thermophysicalProperties +++ b/tutorials/compressible/sonicFoam/RAS/prism/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/constant/turbulenceProperties b/tutorials/compressible/sonicFoam/RAS/prism/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/constant/turbulenceProperties +++ b/tutorials/compressible/sonicFoam/RAS/prism/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/system/blockMeshDict b/tutorials/compressible/sonicFoam/RAS/prism/system/blockMeshDict index 0fbf53f003a704221e7c2b301d90bbd75ae38bcb..6887e74f6abc10fe31895bc1c63eca4b251a88ea 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/system/blockMeshDict +++ b/tutorials/compressible/sonicFoam/RAS/prism/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/system/controlDict b/tutorials/compressible/sonicFoam/RAS/prism/system/controlDict index 64e32e9bdd7feb94804dd636fb767b48b6ca7fb0..113cd080f58266218abf0673e564ae4916647712 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/system/controlDict +++ b/tutorials/compressible/sonicFoam/RAS/prism/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/system/fvSchemes b/tutorials/compressible/sonicFoam/RAS/prism/system/fvSchemes index e0b080add5f7307332293ba658ad696fd93a5f49..8b7f71e8adeec3ca4205bd1d5e5a9edf16e8fc33 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/system/fvSchemes +++ b/tutorials/compressible/sonicFoam/RAS/prism/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/RAS/prism/system/fvSolution b/tutorials/compressible/sonicFoam/RAS/prism/system/fvSolution index 6f6f399d1839a6407fb475911f9fb2c0a4618845..9a1f61adb7a1a26884ba1adc0bc1cef11dff0bd0 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/system/fvSolution +++ b/tutorials/compressible/sonicFoam/RAS/prism/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/forwardStep/0/T b/tutorials/compressible/sonicFoam/laminar/forwardStep/0/T index db68cef39b821c7aad84b39a31369308fe950a13..6beb7805a0a5e3cd3433843cd97a96298e1f805c 100644 --- a/tutorials/compressible/sonicFoam/laminar/forwardStep/0/T +++ b/tutorials/compressible/sonicFoam/laminar/forwardStep/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/forwardStep/0/U b/tutorials/compressible/sonicFoam/laminar/forwardStep/0/U index b59b5bc3b7b35e94808d329bc696d01b6473b653..af43d042b36090aae105ecf3eb494eda8976979e 100644 --- a/tutorials/compressible/sonicFoam/laminar/forwardStep/0/U +++ b/tutorials/compressible/sonicFoam/laminar/forwardStep/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/forwardStep/0/p b/tutorials/compressible/sonicFoam/laminar/forwardStep/0/p index cd5b6f6493889bedcfdc801efec4d98004c214aa..4db61a7b656c10957fb8660336736dccdfd8528e 100644 --- a/tutorials/compressible/sonicFoam/laminar/forwardStep/0/p +++ b/tutorials/compressible/sonicFoam/laminar/forwardStep/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/forwardStep/constant/thermophysicalProperties b/tutorials/compressible/sonicFoam/laminar/forwardStep/constant/thermophysicalProperties index a7569f12395f961ea05ca46df2c61aa4607240f2..95b9c18d9a095866bd7d35b4f01085b403508a00 100644 --- a/tutorials/compressible/sonicFoam/laminar/forwardStep/constant/thermophysicalProperties +++ b/tutorials/compressible/sonicFoam/laminar/forwardStep/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/forwardStep/constant/turbulenceProperties b/tutorials/compressible/sonicFoam/laminar/forwardStep/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/sonicFoam/laminar/forwardStep/constant/turbulenceProperties +++ b/tutorials/compressible/sonicFoam/laminar/forwardStep/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/forwardStep/system/blockMeshDict b/tutorials/compressible/sonicFoam/laminar/forwardStep/system/blockMeshDict index 9e71b37952454df9fbaa80dc835631e69d925400..61b8826c7caf47e1a993d21463cf42e770211b71 100644 --- a/tutorials/compressible/sonicFoam/laminar/forwardStep/system/blockMeshDict +++ b/tutorials/compressible/sonicFoam/laminar/forwardStep/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/forwardStep/system/controlDict b/tutorials/compressible/sonicFoam/laminar/forwardStep/system/controlDict index e7626b8c22ddb93d14668b0ab4e4e086eaf915ba..3fd0a81e18ae5c90092bf1f3c578f9bd70ea01c7 100644 --- a/tutorials/compressible/sonicFoam/laminar/forwardStep/system/controlDict +++ b/tutorials/compressible/sonicFoam/laminar/forwardStep/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/forwardStep/system/fvSchemes b/tutorials/compressible/sonicFoam/laminar/forwardStep/system/fvSchemes index 90d894ea0c6c1a07e9974946e22aa3fef3a634d5..9c325bdea9e4b226efda2aabb868b2954afca0b8 100644 --- a/tutorials/compressible/sonicFoam/laminar/forwardStep/system/fvSchemes +++ b/tutorials/compressible/sonicFoam/laminar/forwardStep/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/forwardStep/system/fvSolution b/tutorials/compressible/sonicFoam/laminar/forwardStep/system/fvSolution index 2ca9db8a49cb692fa69d63a3666714063434a9ab..f012f436d132b8665694cdeb094ce8e2f3ddac8f 100644 --- a/tutorials/compressible/sonicFoam/laminar/forwardStep/system/fvSolution +++ b/tutorials/compressible/sonicFoam/laminar/forwardStep/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/T b/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/T index 8cd06ff6c4de8f7ed4397079dd201dcd11765555..2b1573aa024c9210f6fd27591af0cede6fed35bb 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/T +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/U b/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/U index dd9b5ef845a095949c0b4acd3ebeabac41b903bf..fa8af8084a65be8e4af465ce4e54950b8d35bb45 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/U +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/p b/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/p index c10233d5118804a6fbc7b73637806741c2778e01..200ff6a2433a9ddd0dd3b0d862cc8a33b8258e55 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/p +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/constant/thermophysicalProperties b/tutorials/compressible/sonicFoam/laminar/shockTube/constant/thermophysicalProperties index 8dcbc57f52fbf17961dfacdd741e172b729146e6..1c1e5b0d5395fcc11384a504a0a0bc38539cf346 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/constant/thermophysicalProperties +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/constant/turbulenceProperties b/tutorials/compressible/sonicFoam/laminar/shockTube/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/constant/turbulenceProperties +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/system/blockMeshDict b/tutorials/compressible/sonicFoam/laminar/shockTube/system/blockMeshDict index 9715bd90e047c090ec66ef9b66640d3656c188e9..df22964010cbad886a830dead4a88afc5413d65b 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/system/blockMeshDict +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/system/controlDict b/tutorials/compressible/sonicFoam/laminar/shockTube/system/controlDict index dad6b130b19be37fd48e34686e282f01bed412cd..5ac9e6bf13e4e3afa74433b9fcd28848447868d5 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/system/controlDict +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/system/fvSchemes b/tutorials/compressible/sonicFoam/laminar/shockTube/system/fvSchemes index 3528d4f721808d2340e7f911adf5cdff656264cb..08680bdd9e150d50ec33c365d08eba2403b9cc8c 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/system/fvSchemes +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/system/fvSolution b/tutorials/compressible/sonicFoam/laminar/shockTube/system/fvSolution index 2b879eb28c5e31a6bcd4a07fe1b62cb27d47aa80..f60216b9e9bb1936ae3ec3207942988f03c956a8 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/system/fvSolution +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/system/sample b/tutorials/compressible/sonicFoam/laminar/shockTube/system/sample index 9d5e7a9e33e05fbf2dde15ea0b659192303b1926..12f24d5733bbb5914128fa31e8da2530f3189b67 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/system/sample +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/system/sample @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/system/setFieldsDict b/tutorials/compressible/sonicFoam/laminar/shockTube/system/setFieldsDict index 11d5bd692e2dbd11248b155cf99e476b431b8d45..a1dd96e9a247de64c66a519e7eba1551e0d8cc36 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/system/setFieldsDict +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicLiquidFoam/decompressionTank/0/U b/tutorials/compressible/sonicLiquidFoam/decompressionTank/0/U index d493e1c77081c4763d81f93d36dacf36bcb1266e..1a18c02e4ff4157b41d580bb15bd8fef5998fdea 100644 --- a/tutorials/compressible/sonicLiquidFoam/decompressionTank/0/U +++ b/tutorials/compressible/sonicLiquidFoam/decompressionTank/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicLiquidFoam/decompressionTank/0/p b/tutorials/compressible/sonicLiquidFoam/decompressionTank/0/p index e9f7fc161e1576161b38850c87427e57e992d7b9..4e4c8ba27b8ef0d5da5f668d496030766add78d3 100644 --- a/tutorials/compressible/sonicLiquidFoam/decompressionTank/0/p +++ b/tutorials/compressible/sonicLiquidFoam/decompressionTank/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/thermodynamicProperties b/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/thermodynamicProperties index 2cfac82f56dca31faaba71d7520ba055847bedd5..5f18de5a18593ccc041461a751da922e0bf0df9d 100644 --- a/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/thermodynamicProperties +++ b/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/thermodynamicProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/transportProperties b/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/transportProperties index 69cfe943a28f7362bda39677f82880978428ee98..132cebe5e88384a476a3ecdb551419cb2c252cf3 100644 --- a/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/transportProperties +++ b/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/blockMeshDict b/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/blockMeshDict index 9c61388b2aa3b105079eaf584584d345a7bc9750..fbbf4feb7045e24afc82657f2d247c0a6fc8b12a 100644 --- a/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/blockMeshDict +++ b/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/controlDict b/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/controlDict index fdd5ea156c7e14eb646afc4767904a6d8bc02729..06adea5d22069437cdf9676c529e83d163382ecf 100644 --- a/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/controlDict +++ b/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/fvSchemes b/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/fvSchemes index c82201c34deb4a93789c6635c6bd6e7b89c0beca..0aa29ac84a3f6391cd09949ad11a83ae72fc6cba 100644 --- a/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/fvSchemes +++ b/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/fvSolution b/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/fvSolution index 0b4657ee0caec93fe8cb436ab9f153b3dc5a091d..852c3d9174ea6f6e97102ea4ce27433adcc2cf2a 100644 --- a/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/fvSolution +++ b/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/boundaryT b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/boundaryT index 70e01df9378e6835a86a72dcb8943a2ec4d95d36..78078c65af86ac1153595911677bdd5afb96dfd3 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/boundaryT +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/boundaryT @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/boundaryU b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/boundaryU index 4edf0c9b43a8447c7c9db926de627705b5881990..a04768bb297709a652d5cf0b178d14744792e40b 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/boundaryU +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/boundaryU @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/dsmcRhoN b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/dsmcRhoN index f466b598445e2872fe452d8ca91cf52f45ee88f2..f2a4df068a0cf3280698b371c83b558da09625b0 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/dsmcRhoN +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/dsmcRhoN @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/fD b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/fD index 0759c544e15abcb827797bad26d140f521f8546b..38e9df35fe796ae71484df32144269977a8a078a 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/fD +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/fD @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/iDof b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/iDof index ef6445308cd848e4272a62ae57ac25768295eb62..4d3e24f1f75f59f9a2adb63de829ad0b7b0261f4 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/iDof +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/iDof @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/internalE b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/internalE index 92a33b16f60245f0a9f33d4a4fc3773cacc8a197..23c04d38b73dc1415142b7f376cd83c06fde14b9 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/internalE +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/internalE @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/linearKE b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/linearKE index 7200b0fc48c2272546160e8a59487c4c6217e13b..4ed6db5ade23f60961f186c85dfe2bc758c9547d 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/linearKE +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/linearKE @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/momentum b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/momentum index 2243a09b9963b41f56e0aa2b13feb793b781ba64..cb3ec0d787a07334707df312928c56ff8739fcb5 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/momentum +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/momentum @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/q b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/q index 8bf8b877ff7effae01bfb18528552e4dfc84dd67..c37d4a2742a2c798cf9dadc79bd06b3ebbfa8327 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/q +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/q @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/rhoM b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/rhoM index bb05f6cb594857bb08bd8dcfbf2991773d65c500..3053d4e375ae4c66d84ea3f9fd8e1a76d236fb92 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/rhoM +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/rhoM @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/rhoN b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/rhoN index f6e33c20c4285fe432ec4ba8901cfee1130b652c..c8ce7e6090f60af4b0bcadbf48486b1fd6c2be38 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/rhoN +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0.orig/rhoN @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/constant/dsmcProperties b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/constant/dsmcProperties index d3c427962ac04a87731e387d4b296e0ba727d631..9cfcbc8aa094fd46e7c137353d942108ca01f0e3 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/constant/dsmcProperties +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/constant/dsmcProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/blockMeshDict b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/blockMeshDict index 9acf24266e51fe0c42a415057fb579ea306a8202..19845735dbac33452fcb018fa8369a6ab112faea 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/blockMeshDict +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/controlDict b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/controlDict index 3e3301364871d1e4b0b2e7c85cf0247851b0378b..8eb7df4758a26adfd1f69739f41c53f97beef4a5 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/controlDict +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/decomposeParDict b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/decomposeParDict index fd330a30f1e91ed83e2c6918b52c78ca1385252c..46a8ce94d62fbd5f5a4154a79a0ea6dc46c6888c 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/decomposeParDict +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/dsmcInitialiseDict b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/dsmcInitialiseDict index 94b88e24ee2deca2c5fdf2f1318369906ef88fda..c942da6b06041eb74bd18b1203ba8b35c300ee02 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/dsmcInitialiseDict +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/dsmcInitialiseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/fvSchemes b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/fvSchemes index c6ea61106dd38c69b2acc2cb1afb0926bf422803..d859ebbd471436490bf3eba57707b1799e66eedb 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/fvSchemes +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/fvSolution b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/fvSolution +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/boundaryT b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/boundaryT index b8bc4aa528a5b3a9a7c50fca61a8b236596361d4..a9b534a68349bac59b4ff29f1643bce23e1616d4 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/boundaryT +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/boundaryT @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/boundaryU b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/boundaryU index 214086f374468df4f581cb4b82d7bdbe83b0eae6..fcf442d7e6ffeb07060670f09cc0b03b819ef46b 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/boundaryU +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/boundaryU @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/dsmcRhoN b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/dsmcRhoN index 6189ab5799113483e7390314a2a35519f1861658..8899e62c63f57f5e6938db9810e8ccf220eadc4f 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/dsmcRhoN +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/dsmcRhoN @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/fD b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/fD index 799d1bc1547505e00719cc146425257604cd548d..777822b3740a5a6827bf910da6c53b5ce60eea47 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/fD +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/fD @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/iDof b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/iDof index 9dad1fcf815868f2743c2d8a4a30fa926c150853..b9bb4121005075212b98762fafee6b39926ccb6c 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/iDof +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/iDof @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/internalE b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/internalE index 1d51359fc35d219540193609cf923164efb3b988..b890ba4ed29707a241bf7e3bc8e5cbf44e722898 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/internalE +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/internalE @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/linearKE b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/linearKE index b61a54995e04813140356bf1924c638866b540e8..17ce8d611b3b1ee8c68a0e5ba6791157b1760e83 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/linearKE +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/linearKE @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/momentum b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/momentum index 1375a62fe21a9ddeb103b857394127a58cc5fee8..cfd3b58660d6aea36f26f4b38e2422bd9f060209 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/momentum +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/momentum @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/q b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/q index 0e0a44f32ae2b8be2de86166d433d430a5f3b21e..ec143e5f8327fb774c3990e3c5c6b3fa0ca13396 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/q +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/q @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/rhoM b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/rhoM index 3d32803233aa5f84c7406d48ec65102a14829217..65b8b005a3ade161cc231e4f945aaea4ff7b7e4f 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/rhoM +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/rhoM @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/rhoN b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/rhoN index 7425108a3af7b32de87d7b3523dfa64ede03ba0d..b812b2ff497ed3c9c9b3de781f2fef760d37c287 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/rhoN +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/0.orig/rhoN @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/constant/dsmcProperties b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/constant/dsmcProperties index 0ff7fef9d14a73ff9061949e1bfa1869f9343c47..8375fa9f0e1a51a2b58ac7501ed48d8139150adc 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/constant/dsmcProperties +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/constant/dsmcProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/blockMeshDict b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/blockMeshDict index 34b07ee54d12bad8bc89ef5f1db29bb3c586f1ff..14b10902203a3d60b4bf08782391898c0b694030 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/blockMeshDict +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/controlDict b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/controlDict index c47418cf62e91d9582751f3e572e81661ff5be71..27e0b3036d359fc31df84e87c98eef5f218edd0a 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/controlDict +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/decomposeParDict b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/decomposeParDict index fd330a30f1e91ed83e2c6918b52c78ca1385252c..46a8ce94d62fbd5f5a4154a79a0ea6dc46c6888c 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/decomposeParDict +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/dsmcInitialiseDict b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/dsmcInitialiseDict index 2f0ad73749ec03610b24d7108dc0fd30ee352617..69702c8ee253e7d58a94451bbdbba41107bcdb9d 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/dsmcInitialiseDict +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/dsmcInitialiseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/fvSchemes b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/fvSchemes index c6ea61106dd38c69b2acc2cb1afb0926bf422803..d859ebbd471436490bf3eba57707b1799e66eedb 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/fvSchemes +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/fvSolution b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/fvSolution +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/boundaryT b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/boundaryT index b125728ea66bf10a3ffedf9e79f4b10798dac36e..ebffcf6ba6c5504bfef4b09db76589e9179e162e 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/boundaryT +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/boundaryT @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/boundaryU b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/boundaryU index a220d06fd7a1c1620a5a7cd10ea0500af8e54813..13e0bd46cde88229d363cfc36de5ee51966d55d5 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/boundaryU +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/boundaryU @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/dsmcRhoN b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/dsmcRhoN index 82f50b9610f8da3341c8ced5d4ad8451335f6494..edcc175fe3fd6e10701fab55d0943fbcc11269e1 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/dsmcRhoN +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/dsmcRhoN @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/fD b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/fD index 8d3671f5bb26724e9ecc049536ca57f8536ddb7c..c2242d4e479d457e30e8fed2ea6bc73372a14aa6 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/fD +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/fD @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/iDof b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/iDof index edd87e7f9f4c49fc05db383025565f33f8f1cbc6..a8ea96be31fc5a48be3e81bfb67d152b02d4dcf0 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/iDof +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/iDof @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/internalE b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/internalE index 71c7e566eb1dc0a71eb2984b25cdbb1031c26331..8a39fc2b6c357cb182630322bcc2d56f5faba265 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/internalE +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/internalE @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/linearKE b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/linearKE index f7e2fb6691bfcbaabe41138ae45950b13922fbc0..ce74d7129e8febf2b3da92015a601eca1f4d25af 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/linearKE +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/linearKE @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/momentum b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/momentum index 238b9da7057e8ffdebaea0f6448bf133fe97025f..8a2bf43d6a20002a98f5c94beb2ba578769d79fd 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/momentum +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/momentum @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/q b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/q index 3040f257c916f7b63381ce7ed2cd1d79589a1307..e80c67562d48d359a14525db17afcd60881c283d 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/q +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/q @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/rhoM b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/rhoM index e69618e5cc2058fbb58c4a2d88f3b1a660972a19..787635b25f80028db82772bfe9497a17c7b43e81 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/rhoM +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/rhoM @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/rhoN b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/rhoN index 581ba1854537cf00f0a44f3f6c5c3cc85c73ee13..05980ddf553ba2169868816053778bf8ab5fb7f5 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/rhoN +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/0.orig/rhoN @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/constant/dsmcProperties b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/constant/dsmcProperties index 4ef54a1168c03a59b7d87532b9708f680c62fb3d..fa611368e273b227da0b1820f9509e58f8999b9f 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/constant/dsmcProperties +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/constant/dsmcProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/blockMeshDict b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/blockMeshDict index b34e2fda53cf8190d9ac1121867311086a1a575b..9e544a1ed565acba279e98622411fb67ef90d554 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/blockMeshDict +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/controlDict b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/controlDict index 7ffde222115cde649d913592aede6b9c7c0cc483..3ba30e879ecedd850fe45ab08b27a7d21372c8e5 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/controlDict +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/decomposeParDict b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/decomposeParDict index 008c06e60c70023caebe76b04ae44402c64bdb54..9e006d775c42048d6d6c1c6430b882593911bdca 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/decomposeParDict +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/dsmcInitialiseDict b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/dsmcInitialiseDict index af312b1dad01a3c9d30ad1671e994ffc3886d4b6..aed554658b50c6a353bf95a2c5629dac01703034 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/dsmcInitialiseDict +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/dsmcInitialiseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/fvSchemes b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/fvSchemes index c6ea61106dd38c69b2acc2cb1afb0926bf422803..d859ebbd471436490bf3eba57707b1799e66eedb 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/fvSchemes +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/fvSolution b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/fvSolution +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/boundaryT b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/boundaryT index 48fa6650af361c500f846edec717779c525fac2f..4753a4f70f4fa3d4c372b5a30a0953042a86072c 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/boundaryT +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/boundaryT @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/boundaryU b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/boundaryU index 72aceb1482c6774a1903deeb14a1748fec69cf52..2c498e29d1576f2fbff6dc42a2b37f86d6d2914f 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/boundaryU +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/boundaryU @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/dsmcRhoN b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/dsmcRhoN index 996ba211bf57991f6197732fcd80b86935f13835..dba9073106e87164bea45349ca98d15c2713b631 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/dsmcRhoN +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/dsmcRhoN @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/fD b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/fD index 6f14e08b30b2a275d25038b44e79264b47c977af..fa9c183a2539c8c35c4ecf354b162ff8638ff3ee 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/fD +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/fD @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/iDof b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/iDof index 101e58d0ea243bbe2f40969e600b75d020686e30..15a4f70a29448fcad4a7084ce9d6852a70f19df8 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/iDof +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/iDof @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/internalE b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/internalE index 91e21651eecb3df7a0c82a2184fa6e130852c37b..65036d8c1168c9ae4692f553465a01cb637d2118 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/internalE +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/internalE @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/linearKE b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/linearKE index 918d509572fc89be0db9d607f82ee82775d9dae4..8b7086d89416fcc802074a36c6282821469d922b 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/linearKE +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/linearKE @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/momentum b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/momentum index 351cd35b3a4aaaa7e4ab2c81efb4d36a88e3e9dc..1c2c46b155916ec3b8a42895a608cb82f7b88754 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/momentum +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/momentum @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/q b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/q index 2a949d77257f01917a70bfa867f65a2bbe4e28ee..ed87458fa05304953bd528446d564c191e69a6e8 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/q +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/q @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/rhoM b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/rhoM index 2f654dcbc9ac939f8764160858d009abda7cd63e..c1d03159c246c252c80aed0d75ceedcda0e224b4 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/rhoM +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/rhoM @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/rhoN b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/rhoN index 812a92706f5e8c1cfc719dfedb452b5d2bb0f84f..2f3a2f2eba968543d7a1c4ea7682dc2b87932124 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/rhoN +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0.orig/rhoN @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/constant/dsmcProperties b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/constant/dsmcProperties index 305d4a79c9a33b37c62766d6a20e3665198d891d..d897eda3a38f9e7ec41cf7fcf0208620ef6537b3 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/constant/dsmcProperties +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/constant/dsmcProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/blockMeshDict b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/blockMeshDict index f88ab403101ccfeac1e26ba9bdb5ba4af1e6d7a2..01bb71609a02d060fca4357cb3031138a9dd0407 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/blockMeshDict +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/controlDict b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/controlDict index ba502675ac63474e2454b5bca51e4f6bedcc897d..98ad5f34beb4301053599caf624f020491572c67 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/controlDict +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/decomposeParDict b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/decomposeParDict index 008c06e60c70023caebe76b04ae44402c64bdb54..9e006d775c42048d6d6c1c6430b882593911bdca 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/decomposeParDict +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/dsmcInitialiseDict b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/dsmcInitialiseDict index 2f0ec27650b6c1c79dc7f0dbc19c736b23d7e43a..75ed134204dfd22f91b0f1c8e7fd45e4abb35d46 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/dsmcInitialiseDict +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/dsmcInitialiseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/fvSchemes b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/fvSchemes index c6ea61106dd38c69b2acc2cb1afb0926bf422803..d859ebbd471436490bf3eba57707b1799e66eedb 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/fvSchemes +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/fvSolution b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/fvSolution +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/0.orig/U b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/0.orig/U index c24658b8e7a6ff1fed1a0b83710781582e4c5349..fde6899c25eef0c97cd156b08cb28b61dd60fa20 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/0.orig/U +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/constant/moleculeProperties b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/constant/moleculeProperties index 668a6812604b070b72d52e80d818f96901b92769..2a57345ee75a010fed3af98f054e78acbe38e03d 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/constant/moleculeProperties +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/constant/moleculeProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/blockMeshDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/blockMeshDict index afc4e731808ef0b1ad01088410dfc747f4895670..f2666c22b008a757d96025ffc472612901c423a2 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/blockMeshDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/controlDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/controlDict index f0a29f24110e8199bed576f87a9b571b599fd5e8..87e70905b4ecca6b80facf9b720a4efb5f201879 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/controlDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/fvSchemes b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/fvSchemes index c6ea61106dd38c69b2acc2cb1afb0926bf422803..d859ebbd471436490bf3eba57707b1799e66eedb 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/fvSchemes +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/fvSolution b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/fvSolution +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/mdEquilibrationDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/mdEquilibrationDict index d2e21f470fbad456dbfa737d09727c1e7ffc5ddd..0b7e01b1a8d0ed4a9fd7727e6f315efe4b09ba18 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/mdEquilibrationDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/mdEquilibrationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/mdInitialiseDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/mdInitialiseDict index f7e5f6c4fb0d4aaaf8e7dfb5a9667082be082747..83fd30960eb0c53ffdc2ffa9d8124f4ecefb3146 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/mdInitialiseDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/mdInitialiseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/potentialDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/potentialDict index bb400b93e13823fa3788283b5a5e7f930b023b03..237cab2b5766d158816f003c74b4fe477d2f2db0 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/potentialDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/potentialDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | n| \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/0.orig/U b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/0.orig/U index c24658b8e7a6ff1fed1a0b83710781582e4c5349..fde6899c25eef0c97cd156b08cb28b61dd60fa20 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/0.orig/U +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/constant/moleculeProperties b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/constant/moleculeProperties index cd149c44b66a8a2831f4a5929bdd06849d55fd39..577adcd876779cbb6a56799653266c3db631e2a4 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/constant/moleculeProperties +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/constant/moleculeProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/blockMeshDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/blockMeshDict index 5546f44ca739fc2357fa6941dbdb86253b0c7d41..6cb456ededd037cfeb13350305600738b139b1be 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/blockMeshDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/controlDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/controlDict index 1b949e26c66b4c88041d7a49db563a5c276f543d..0bbce5bb12d2df7201617ec206a64353ce266c23 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/controlDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/fvSchemes b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/fvSchemes index c6ea61106dd38c69b2acc2cb1afb0926bf422803..d859ebbd471436490bf3eba57707b1799e66eedb 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/fvSchemes +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/fvSolution b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/fvSolution +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/mdEquilibrationDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/mdEquilibrationDict index 603a076d856ec54e01cdfd30e49cfdb3274932a0..3500481f900c8532a3a0438e68b895a1109410eb 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/mdEquilibrationDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/mdEquilibrationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/mdInitialiseDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/mdInitialiseDict index 1e6d389bdddd30c159f529d42ff3f17b4f18839c..120c22e936b8de233702ce10e636e0da0fa385af 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/mdInitialiseDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/mdInitialiseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/potentialDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/potentialDict index 176949a13ef339cb1c000fec8d921999f7a0da37..db9d65f54b9809fd188e04faef0973a39926b99b 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/potentialDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/potentialDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/0.orig/U b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/0.orig/U index e95205a80e187b0243d595c4cfacbf674e135e69..0557f56d28a0e8e3f568d91caf2fb3ebfc3f2b78 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/0.orig/U +++ b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/constant/moleculeProperties b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/constant/moleculeProperties index cde01261e01c33535f9c67766df88492cc2689f8..94353093cb90735f2ce886e03a2bcec45cad0411 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/constant/moleculeProperties +++ b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/constant/moleculeProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/blockMeshDict b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/blockMeshDict index 7191254e1dd471a32d0ca6a03281966842eeaf3e..dcbb98246cf06df2d54311deb9b61da3b70dd010 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/blockMeshDict +++ b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/controlDict b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/controlDict index 320c35050c7c422ef8b99fcf2d461e1bccadb7df..410bd7038bb5c107934b80e366d88e1c2c20e298 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/controlDict +++ b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/decomposeParDict b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/decomposeParDict index 19b90dd0888473dc6fb542ae5364fc52867dd22c..b7a340a08f48c8c9778cc65b90393edda6f12914 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/decomposeParDict +++ b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/fvSchemes b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/fvSchemes index c6ea61106dd38c69b2acc2cb1afb0926bf422803..d859ebbd471436490bf3eba57707b1799e66eedb 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/fvSchemes +++ b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/fvSolution b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/fvSolution +++ b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/mdEquilibrationDict b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/mdEquilibrationDict index 603a076d856ec54e01cdfd30e49cfdb3274932a0..3500481f900c8532a3a0438e68b895a1109410eb 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/mdEquilibrationDict +++ b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/mdEquilibrationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/mdInitialiseDict b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/mdInitialiseDict index 70a3b2c0aacf5e09be6cda9081c4a9492efa60a7..3a15eb0f5dbefbb9d54fce7631f18ad40e57a42d 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/mdInitialiseDict +++ b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/mdInitialiseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/potentialDict b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/potentialDict index 176949a13ef339cb1c000fec8d921999f7a0da37..db9d65f54b9809fd188e04faef0973a39926b99b 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/potentialDict +++ b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/potentialDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/electrostaticFoam/chargedWire/0/phi b/tutorials/electromagnetics/electrostaticFoam/chargedWire/0/phi index 0d09ec4822cb9409733daee9d0c7d8a4de533f0d..07dcf5eff6d3e185d85d9b7710f4fc55194ae813 100644 --- a/tutorials/electromagnetics/electrostaticFoam/chargedWire/0/phi +++ b/tutorials/electromagnetics/electrostaticFoam/chargedWire/0/phi @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/electrostaticFoam/chargedWire/0/rho b/tutorials/electromagnetics/electrostaticFoam/chargedWire/0/rho index dfde9dcf329a55ffab75eab9f0f20b7ca1badab5..dd381f19c3ba305c55ccefae2ec4cd6083b97ccb 100644 --- a/tutorials/electromagnetics/electrostaticFoam/chargedWire/0/rho +++ b/tutorials/electromagnetics/electrostaticFoam/chargedWire/0/rho @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/electrostaticFoam/chargedWire/constant/physicalProperties b/tutorials/electromagnetics/electrostaticFoam/chargedWire/constant/physicalProperties index ae7f7e6e81045bd42d0686b8a512db4590cc631d..55406a4cfe1c10aaa2dfdc3cc82eb8d3a4b7710c 100644 --- a/tutorials/electromagnetics/electrostaticFoam/chargedWire/constant/physicalProperties +++ b/tutorials/electromagnetics/electrostaticFoam/chargedWire/constant/physicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/blockMeshDict b/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/blockMeshDict index 662589c4a18df20fa4b42f1f42a9e8b6d77a26b8..ead1514cce48322fd1059fba247e6e2bc9b583b0 100644 --- a/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/blockMeshDict +++ b/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/controlDict b/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/controlDict index 5d6c90e742857725e7ca343722ef44249f3a2283..4cf4f537922f41a9e9870cc2231ad6866ee3fa32 100644 --- a/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/controlDict +++ b/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/fvSchemes b/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/fvSchemes index 1e15b08c3eb4e28f62488c880c8320a463d924f7..02bfd971d9adbdf5f1330540b6784f8d037b91a6 100644 --- a/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/fvSchemes +++ b/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/fvSolution b/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/fvSolution index d0e9daf0648ee49c32109678c99dc303e7895c82..be1582c5e26709456c085fc776511891ad39b83a 100644 --- a/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/fvSolution +++ b/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/B b/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/B index 1e3322f7041d0c032da58c8b8ec400a97e6134cb..27375229f0d98ced6806c04a6e6f3de8afe73afb 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/B +++ b/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/B @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/U b/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/U index f883de6b877e82715cb4235a38ac561c810937b2..5db2bc6486bbccc33f189192d1e444acecff5386 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/U +++ b/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/p b/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/p index bcd8d9ee2ecaf18da321aa0db70dc2878c8b55b1..a15ffc0d4aecb90db73eb530ec402beb4186d771 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/p +++ b/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/pB b/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/pB index 127e6b2321c1054f4d37fa273853e9bd0b15ead3..4da6fe5b07973dcf4c826c89d9fa085eb5340ab5 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/pB +++ b/tutorials/electromagnetics/mhdFoam/hartmann/0.orig/pB @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/constant/transportProperties b/tutorials/electromagnetics/mhdFoam/hartmann/constant/transportProperties index 72036be7c70fac981a3c026c4faeeca697b346cb..f418acf45195baad003f2a89c7f296c25cd2b554 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/constant/transportProperties +++ b/tutorials/electromagnetics/mhdFoam/hartmann/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/system/blockMeshDict b/tutorials/electromagnetics/mhdFoam/hartmann/system/blockMeshDict index 37027b0f665f7ff3a3e27d8d0774a269a8ef1b86..6c141005f8c88f8ae4072ba2d5f4e9db6d475b52 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/system/blockMeshDict +++ b/tutorials/electromagnetics/mhdFoam/hartmann/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/system/controlDict b/tutorials/electromagnetics/mhdFoam/hartmann/system/controlDict index af9db3c0d6be7f0e03d4b5817703b1e197ab5c14..8c996a64cf6bf41d8f0e6cda6f8ec33ebe87ad30 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/system/controlDict +++ b/tutorials/electromagnetics/mhdFoam/hartmann/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/system/decomposeParDict b/tutorials/electromagnetics/mhdFoam/hartmann/system/decomposeParDict index 94029c5db3a254583493034d00dff25696477b33..e0b7ee98105ac8a5be3a2cc688407d806fafc17e 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/system/decomposeParDict +++ b/tutorials/electromagnetics/mhdFoam/hartmann/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/system/fvSchemes b/tutorials/electromagnetics/mhdFoam/hartmann/system/fvSchemes index 54f240e73484d8422e777425170cc3f50880e27b..eb072a4a84b2b1655b96dc4d3587d00a380647f4 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/system/fvSchemes +++ b/tutorials/electromagnetics/mhdFoam/hartmann/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/system/fvSolution b/tutorials/electromagnetics/mhdFoam/hartmann/system/fvSolution index 00b27f262110cf52c0367f2be5046eed2c212694..3558a2fe6e1fcebc4f8853fd1b19a22602008d3b 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/system/fvSolution +++ b/tutorials/electromagnetics/mhdFoam/hartmann/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/system/sample b/tutorials/electromagnetics/mhdFoam/hartmann/system/sample index 5ff615d92cb3ec62df3edd5fec1faa28d4ce50df..79cae5ddb48581fbeea6bc67857ebecf3b5b40f0 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/system/sample +++ b/tutorials/electromagnetics/mhdFoam/hartmann/system/sample @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/financial/financialFoam/europeanCall/0/V b/tutorials/financial/financialFoam/europeanCall/0/V index 8e0c5bf1607b8e18f13c54c4deff2189042a8e2d..bd309028d82110a235550a754f71c8c80b11b6a7 100644 --- a/tutorials/financial/financialFoam/europeanCall/0/V +++ b/tutorials/financial/financialFoam/europeanCall/0/V @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/financial/financialFoam/europeanCall/constant/financialProperties b/tutorials/financial/financialFoam/europeanCall/constant/financialProperties index a34dbf68731802cd6013af14daa0f0f0f4d70c1e..1fb38536984f3dac3d7fd594a6548d9da741ada7 100644 --- a/tutorials/financial/financialFoam/europeanCall/constant/financialProperties +++ b/tutorials/financial/financialFoam/europeanCall/constant/financialProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/financial/financialFoam/europeanCall/system/blockMeshDict b/tutorials/financial/financialFoam/europeanCall/system/blockMeshDict index 5995687af8786c0fb0f6d06598bbea6da593ffca..f3dd5e6b6a4f87c0996692ba36d8273828837685 100644 --- a/tutorials/financial/financialFoam/europeanCall/system/blockMeshDict +++ b/tutorials/financial/financialFoam/europeanCall/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/financial/financialFoam/europeanCall/system/controlDict b/tutorials/financial/financialFoam/europeanCall/system/controlDict index ca8b8e2a92e6d026e5ff38219e9dccbf34c954d4..fb0c18db1d15c0bf4ed5207c3773fb56321fc6c0 100644 --- a/tutorials/financial/financialFoam/europeanCall/system/controlDict +++ b/tutorials/financial/financialFoam/europeanCall/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/financial/financialFoam/europeanCall/system/fvSchemes b/tutorials/financial/financialFoam/europeanCall/system/fvSchemes index 8f185001abb3ad9cf846fc606b56171291c65eb6..3fedaa6141f3988b1906e56abd0aa264d71b08de 100644 --- a/tutorials/financial/financialFoam/europeanCall/system/fvSchemes +++ b/tutorials/financial/financialFoam/europeanCall/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/financial/financialFoam/europeanCall/system/fvSolution b/tutorials/financial/financialFoam/europeanCall/system/fvSolution index 04c7bfed4307a45b3f306eaee78f3dee5bb8d0bd..09af70e08d8ed15442004df6ba8db670c6649765 100644 --- a/tutorials/financial/financialFoam/europeanCall/system/fvSolution +++ b/tutorials/financial/financialFoam/europeanCall/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/Us b/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/Us index 098e0fca919a8b51f2ea0098e5e50f3fd6fb9c7b..ae9d977108dbbb50d9d4567350210a0783605129 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/Us +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/Us @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/h b/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/h index 60833022ef3633a1a19206345512dfc326e86626..5d8ff27b9837179d991a1099c7b81fbcdd90aa11 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/h +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/h @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/manningField b/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/manningField index 98d1263d43a39876522db6194eed0096921b7518..bf2f9f6cdea76288b31cce7a34e48c0003586a3f 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/manningField +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/0.orig/finite-area/manningField @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/constant/g b/tutorials/finiteArea/liquidFilmFoam/cylinder/constant/g index d817a70fa72dfe17be46b6fb740749e17199d574..d6265b648c08f8e7264ff82ddaa9efa10ca88025 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/constant/g +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/constant/transportProperties b/tutorials/finiteArea/liquidFilmFoam/cylinder/constant/transportProperties index f358f3e673bcdcb84d6ef8538ed3cf8cba7bcf7a..cc197386d60644a1a3d3a0ea28e24e219f2c94ca 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/constant/transportProperties +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/FOsurfaceCourantNumber b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/FOsurfaceCourantNumber new file mode 100644 index 0000000000000000000000000000000000000000..aa6c8a1382a471f6863ecdf110f82fc7efc33564 --- /dev/null +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/FOsurfaceCourantNumber @@ -0,0 +1,38 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +surfaceCourantNumber1 +{ + // Mandatory entries + type surfaceCourantNumber; + libs (regionFaModels); + + // Optional entries + area region0; + result surfaceCourantNumberField; + rho rho; + phis phis; + + // Inherited entries + writePrecision 6; + writeToFile true; + useUserTime true; + + region region0; + enabled true; + log true; + timeStart 0; + timeEnd 1000; + executeControl timeStep; + executeInterval 1; + writeControl writeTime; + writeInterval -1; +} + + +// ************************************************************************* // diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/blockMeshDict b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/blockMeshDict index a0fcc0b529cc47ccf58faf567d85d94d1d872cc4..05eba9d1b37334cc7e3e7fee8240623caaff0ce1 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/blockMeshDict +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/controlDict b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/controlDict index 70074e2c4af941e8eab61c7aad5dcad49090fea4..75692a4b7f1000513cff447b3441441c753d500b 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/controlDict +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -50,5 +50,9 @@ maxCo 5; maxDeltaT 0.1; +functions +{ + #include "FOsurfaceCourantNumber" +} // ************************************************************************* // diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/decomposeParDict b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/decomposeParDict index e69ee975cf4f9e3a89f377daf9c38b56ce2651a8..d597084201d4f673893e2963588aaf4f72013f56 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/decomposeParDict +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faMeshDefinition b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faMeshDefinition index 7ff8456fa8f4be9d8fb371fc9dd9bec9d0924d17..6423527a696987506f5886cd3ab99d4b89decaf2 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faMeshDefinition +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faSchemes b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faSchemes index 7a9fd9a11bc061d6ce5365932599aabaecad0832..fbaea2a1ddd088042ede369c18d8ed652093a541 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faSchemes +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faSolution b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faSolution index 7c5251ba5e8cf31b3c1287c1ff62b2734a9301d0..298886cd56fc8e4b01358e404b6c8e135e100021 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faSolution +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/fvSchemes b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/fvSchemes index c6ea61106dd38c69b2acc2cb1afb0926bf422803..d859ebbd471436490bf3eba57707b1799e66eedb 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/fvSchemes +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/fvSolution b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..7f27acc8aafdc9c654d77e52adddcb26c0aa112e 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/fvSolution +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/setFieldsDict b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/setFieldsDict index 450ef1ebfba6bbcd2aaf27b161fc468e4182bc6e..55677386ff1f2e39dd9869d19dd2b8f4127eee7d 100644 --- a/tutorials/finiteArea/liquidFilmFoam/cylinder/system/setFieldsDict +++ b/tutorials/finiteArea/liquidFilmFoam/cylinder/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/Cvf b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/Cvf index 9e3a2ba358b550023f53ed348f685d65aa7c18ac..029d508b4376ef13ea3eaf4fadef32bb220584b4 100644 --- a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/Cvf +++ b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/Cvf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/U b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/U index e6e971eefe92e5ccdf0c81bdfa6709bb6b24cbe6..bc121ae3fd4feea6d41df10dde0089c74910bbc1 100644 --- a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/U +++ b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/finite-area/Cs b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/finite-area/Cs index 535f66973c911ff0bc903b8352daf32692c8417c..85a68a32055263bb333608f1ac97e0dd15dede95 100644 --- a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/finite-area/Cs +++ b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/0.orig/finite-area/Cs @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/controlDict b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/controlDict index ca9fd48c77ecb58749d77f80d88ce2fcb80c430c..15a782f20c334f67512cc1590f63f11d601b9d1b 100644 --- a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/controlDict +++ b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/decomposeParDict b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/decomposeParDict index 931b9486dea8492a68e8dad822972eb919b2e9e2..f46d64544feac9ed7174b8097dbce9012a88a4fa 100644 --- a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/decomposeParDict +++ b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faMeshDefinition b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faMeshDefinition index 11cac70128de99e3cff9f98836154213463429a1..09c3618056e05787df6962b7d29112e0a123d8e5 100644 --- a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faMeshDefinition +++ b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faSchemes b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faSchemes index 3a520e601342d072cd0ce54286b109b4a939b664..2bce6b5a975c7b0865d666f437e30b3458a2fa6b 100644 --- a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faSchemes +++ b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faSolution b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faSolution index 32f6be3b2ad7a3788578c02e2cdd713c7929ee8e..ec266861cd71544f348996d68d43d1bb17bc1266 100644 --- a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faSolution +++ b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/fvSchemes b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/fvSchemes +++ b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/fvSolution b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..7f27acc8aafdc9c654d77e52adddcb26c0aa112e 100644 --- a/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/fvSolution +++ b/tutorials/finiteArea/sphereSurfactantFoam/sphereTransport/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/0.orig/finite-area/Cs b/tutorials/finiteArea/surfactantFoam/planeTransport/0.orig/finite-area/Cs index c00ec687608b9c2966bcec2df8991e3aab7b269c..1a6d263250d0a00c2275e65d47374d2904e392a8 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/0.orig/finite-area/Cs +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/0.orig/finite-area/Cs @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/0.orig/finite-area/Us b/tutorials/finiteArea/surfactantFoam/planeTransport/0.orig/finite-area/Us index 5c17e2517c0c8edfcbf37143278577196878624f..89a3eb6e20fee357f4ef6fd366d633fdc5740687 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/0.orig/finite-area/Us +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/0.orig/finite-area/Us @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/constant/transportProperties b/tutorials/finiteArea/surfactantFoam/planeTransport/constant/transportProperties index 8598004e96a08ab40eefe6cc849ad361b4c7a8bb..4fc857377b232acca52bc67a479a863e15cca24a 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/constant/transportProperties +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/system/blockMeshDict b/tutorials/finiteArea/surfactantFoam/planeTransport/system/blockMeshDict index 648b2d231d331a61f09bd46b35a6f60c3808e1f7..89dce1ce887e9f2d3d638414dc1d33f0e1514238 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/system/blockMeshDict +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/system/controlDict b/tutorials/finiteArea/surfactantFoam/planeTransport/system/controlDict index 188987b2af7f15ba3ed72c59d711013d20783a21..dd792b1d26d84c6c82c7e741ef96b55a56aa392e 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/system/controlDict +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict b/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict index e69ee975cf4f9e3a89f377daf9c38b56ce2651a8..d597084201d4f673893e2963588aaf4f72013f56 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict-procBoundary4 b/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict-procBoundary4 index 3ea9c518a9e0d087f118c24bc49d7f1d1e84a3a1..91e6a8ceff96aa5be4292ae45f5a74492e330c42 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict-procBoundary4 +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict-procBoundary4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict-procBoundary8 b/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict-procBoundary8 index ce8ecaa3a7af86bee304bb19465cce04ce0c27b1..389f8bbc1554e287bcc7bc619ad946c9393fb4f0 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict-procBoundary8 +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/system/decomposeParDict-procBoundary8 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faMeshDefinition b/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faMeshDefinition index d3ca29a273bbaa2f2e752ecad7b2bc9768ebcbaf..814b1129289a2e5684386a9926e47127524a3a05 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faMeshDefinition +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faSchemes b/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faSchemes index e2e966ed1dec2bc1130a98f56e702bbd8b3284ff..9088589391d6a480941da3c8d8ebf25214d143e1 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faSchemes +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faSolution b/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faSolution index 8ca7e76e0d0dc7d8c89a2261f35f670f1a7ddc1b..adbd34849bc8d077cd12fb4fb68f991ed19b7b8a 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faSolution +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/system/fvSchemes b/tutorials/finiteArea/surfactantFoam/planeTransport/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/system/fvSchemes +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/finiteArea/surfactantFoam/planeTransport/system/fvSolution b/tutorials/finiteArea/surfactantFoam/planeTransport/system/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..7f27acc8aafdc9c654d77e52adddcb26c0aa112e 100644 --- a/tutorials/finiteArea/surfactantFoam/planeTransport/system/fvSolution +++ b/tutorials/finiteArea/surfactantFoam/planeTransport/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/T b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/T index d787f021fd4d0aa42c7c457d3b5803b1ce5902af..a477ece6dfc9a8f51d70bacd39057a3f3e55a539 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/T +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/U b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/U index 6512c99fbee20d1cd0924b629fc5df3343b2c25f..cd3c370915c4ea79a8b747c9bdf625e4168c1c44 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/U +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/alphat b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/alphat index ce9a39d943afc74c3993660f6f58228eb5234864..61eed39ec97efda8ad4b0a2f9d0e0b4e9d976697 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/alphat +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/epsilon b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/epsilon index a78de1967c48c1b989c77235b91ed3edcc9faf9f..9f348b22b4c5e335091b1fca9b15ca4e13392749 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/epsilon +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/k b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/k index 73120c17cadc73c689f7f05e9f5431fd9042ec19..41bbff5ed36bab805c21103e5377b7863f99cc28 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/k +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/nut b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/nut index fedf579fa7d1cf8234bbbda8a8ff74ca290b4968..eebed686f314b60fac2036e79b64c5ae32a508b4 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/nut +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/p b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/p index 35e2ecaa82b34f9afa8e9430b85bf45c528513d5..dc0a71bc1b0804de4f46017047fa85d35989428b 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/p +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/p_rgh b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/p_rgh index 972e069f90069ddc814072d65ae41b8d5d04fb77..977117972e8c4a4bc14b3f261b8c8710d40f6481 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/p_rgh +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/0/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/g b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/g +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/transportProperties b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/transportProperties index bc690c10da758d36101976a01d6eb229cdde5a44..783236f4648f0b373e492cfa201093fe7ea66071 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/transportProperties +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/turbulenceProperties index 319be23a0b498a21fc37fc8721396b1563cf181f..759e0f7c29003606b32fff5b127cf64f5e5b38ee 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/blockMeshDict b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/blockMeshDict index b2a70bee3b603e77c17a20d0816909d7367b24d1..be8ece305557c0a63aeadc0c2007fa48441223fb 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/controlDict b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/controlDict index db07dfe0710e202b890aa11fc9b7a3d92d897a2d..9ccace0fffa2d871ac08b5e39aeebcf347535194 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/controlDict +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/fvSchemes b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/fvSchemes index 09313c3083c71c44eb468bdb5b79bf7a6140559b..17ee3951585cfd9c98e5acc1225c65f73316e971 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/fvSolution b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/fvSolution index a52fef4cdcc9cd518e9570b807291f7e09e69d69..ae0788997cbfa1ac24fd1488158072f6ac71684b 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/fvSolution +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/T b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/T index baaffd6060210e919992d5d3cf34bed58bbf51a7..37135a7d388b4683633127985ee7e4cd36658ba9 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/T +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/U b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/U index 6a8969c6408e1244a47148ee90de0e635cd83698..d5b2acdef0a80e86e4a2505acc31068afc47592b 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/U +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/alphat b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/alphat index a2a0a3a513d1b1a664aa999ba0769f1ff1379eb8..18c0564b6dfe88a2a832970444639f5e4031dbd7 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/alphat +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/epsilon b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/epsilon index 95486e7d426c53d82413c9bcaef0c7e76e9e5d2a..e0fa0040116af40c9804caa8d5ab2a57b18819b3 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/epsilon +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/k b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/k index 6f55263e31f00f25cbe095db9b4be030fc4ac56d..a39765f6e635f298ae8777f3995afdada879ad47 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/k +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/nut b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/nut index 0bd05b48a139559b3dc3d7c77630327c49147748..ea8fb77b084f399deb2eec27b0978e41bbbd0687 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/nut +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/p b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/p index b786ce5d602ae5b53640d59b494ebbff1b337ae4..2c37c22e23f876ffd92c70b4319cf561ea6d926e 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/p +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/p_rgh b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/p_rgh index 48ea1951cb96c02181851788a861eca463dd8354..92f9b717b1f8e267ebd24b2c90f87b84f56bf7bf 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/g b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/g +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/transportProperties b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/transportProperties index 96bbb22fc0cb71d755a408ec9157d8af3e8f58d3..99939dbf1d877215d1fba8791b87577a7b161d3a 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/transportProperties +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/blockMeshDict b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/blockMeshDict index debf2d67d9ba8f75a02cb258b4528be77d0c77da..10a352f129f82e2eda4a8af6aa1e1de5f9327206 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/controlDict b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/controlDict index c068b20b42b99281e05f51cd9d814081e40fd1cf..172bbb6d78237b123ccd146445eb58b3a07a5f1a 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/controlDict +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/fvSchemes b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/fvSchemes index 315d7d62b91ea6df3708e63e1c64e0991902a34e..194bc9451881d04529386d78f699ae846c7b76df 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/fvSolution b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/fvSolution index 07fdb1a8d78531daed9f9e9b7c713267e2db34ef..ebabd1fb7ed68ad28def33f0824c827792427499 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/fvSolution +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/setFieldsDict b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/setFieldsDict index 1bad561329dba7565ad8c3cbfa66b023e32a4fbe..d2146b3317054d1a714be9c3eb14613da4858556 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/setFieldsDict +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/T b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/T index baaffd6060210e919992d5d3cf34bed58bbf51a7..37135a7d388b4683633127985ee7e4cd36658ba9 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/T +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/U b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/U index 6a8969c6408e1244a47148ee90de0e635cd83698..d5b2acdef0a80e86e4a2505acc31068afc47592b 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/U +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/alphat b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/alphat index a2a0a3a513d1b1a664aa999ba0769f1ff1379eb8..18c0564b6dfe88a2a832970444639f5e4031dbd7 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/alphat +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/epsilon b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/epsilon index 95486e7d426c53d82413c9bcaef0c7e76e9e5d2a..e0fa0040116af40c9804caa8d5ab2a57b18819b3 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/epsilon +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/k b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/k index 6f55263e31f00f25cbe095db9b4be030fc4ac56d..a39765f6e635f298ae8777f3995afdada879ad47 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/k +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/nut b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/nut index 0bd05b48a139559b3dc3d7c77630327c49147748..ea8fb77b084f399deb2eec27b0978e41bbbd0687 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/nut +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/p b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/p index b786ce5d602ae5b53640d59b494ebbff1b337ae4..2c37c22e23f876ffd92c70b4319cf561ea6d926e 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/p +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/p_rgh b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/p_rgh index 48ea1951cb96c02181851788a861eca463dd8354..92f9b717b1f8e267ebd24b2c90f87b84f56bf7bf 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/g b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/g +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/transportProperties b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/transportProperties index 96bbb22fc0cb71d755a408ec9157d8af3e8f58d3..99939dbf1d877215d1fba8791b87577a7b161d3a 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/transportProperties +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/blockMeshDict b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/blockMeshDict index debf2d67d9ba8f75a02cb258b4528be77d0c77da..10a352f129f82e2eda4a8af6aa1e1de5f9327206 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/controlDict b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/controlDict index 24d856212051aba82615fb7b3a0c1da57976faa2..7bbc8098f9c0108cff0eb091fc7eafbc528e395e 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/controlDict +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/fvSchemes b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/fvSchemes index 88941855764dbfb92e0ed7918c6adf86fa84eafe..0b2bb0d1a880b1154451c7608a42bb99d218859f 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/fvSolution b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/fvSolution index d8a9a324a9464f600840131d621d3446a7c54451..3381259bf3ceaa0423e6ba68157259d075eeedaf 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/fvSolution +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/setFieldsDict b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/setFieldsDict index 1bad561329dba7565ad8c3cbfa66b023e32a4fbe..d2146b3317054d1a714be9c3eb14613da4858556 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/setFieldsDict +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/T b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/T index 07a7d7be291ad698ae278a106693a240ed78e614..9831689eca35bd4b852c7d6dd8512ef9876a033a 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/T +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/U b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/U index b189992fd882eba3a1dedfa8f25783b61ad1e167..0cce551f753e4e8aaaf67efb4558e76fcbe25e5c 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/U +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/alphat b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/alphat index 2ccd1188baba5283bcef08525782f83381c238d3..674d14965d8ff61142e86a8575e67754a2384b28 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/alphat +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/epsilon b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/epsilon index a48ceeee6dfdba844b46b83500934b0202ef90cc..868c59fb016e21e4c9dc298f33272ef0068923c9 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/epsilon +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/k b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/k index e0f0e8cd82943f96db235c5150e9df95069f32a2..5b0e63339d74bdc22589f448d0f157470eab10bc 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/k +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/nut b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/nut index 68d5c1ca7ea6f6918899ed943b4e33b387f6dcbe..7a7126c77b92f778604587cddcb3681985bd4b77 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/nut +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/p b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/p index f98a2f3f38cad480b1adf80e0592990df0113189..61202cb19a66d33d1177fd46c0cfda72a3a6bc15 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/p +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/p_rgh b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/p_rgh index 5198cb7967df7bb31a8db3e86ee11fcab52f9b30..0347f239300eefbff0cdacd7c410fb11b5caccce 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/g b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/g +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/transportProperties b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/transportProperties index 96bbb22fc0cb71d755a408ec9157d8af3e8f58d3..99939dbf1d877215d1fba8791b87577a7b161d3a 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/transportProperties +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/blockMeshDict b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/blockMeshDict index 1529b92aaf5ef29dd3f02422a473a3e55233cb6d..297677354356e621c23b8e47118b80e08161f180 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/controlDict b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/controlDict index 790d44624ad9c388c46c35db2de76bc1f50fc3a7..06f01d2f58ef8bad2605ad9c2b85568240034cb3 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/controlDict +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/decomposeParDict b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/decomposeParDict index 38c549df4773c69f7a86b2965f99bb6157c17960..e35813383734abf0844da97f5ee1dba9e4579d6e 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/decomposeParDict +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/fvSchemes b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/fvSchemes index a61699aebace7d02349b6badb1c52d0d5cb05d9d..a62f5b15c4eeee457e320908e235fa678a03124f 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/fvSolution b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/fvSolution index f6d3c8bf07ecdb573e80214e04fb96614555744e..4c189c8c0632d773a336d5c6de52da7064724d2e 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/fvSolution +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/meshQualityDict b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/meshQualityDict index 7f34616212ac22c6d2c464830dc74b219366d412..df1a19269287223b9007cbb3ae0c8d9b72459b66 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/meshQualityDict +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/snappyHexMeshDict b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/snappyHexMeshDict index 0a2016e590018140f78875bcc51d5a2301d7788d..311f2112fb6dc1b45d33e2dfba11553f79ffcdee 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/snappyHexMeshDict +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/T b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/T index ef1547a33a27904d055a7d0b28f875375a5845c0..db8fdf84a175e0d690e80e85c3c0162f530823ce 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/T +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/U b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/U index 6a8969c6408e1244a47148ee90de0e635cd83698..d5b2acdef0a80e86e4a2505acc31068afc47592b 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/U +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/alphat b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/alphat index 9ad47b8d55ef3234dde32cc3671d8af0f72b37b6..55e776041db5e0375d3fb55c0fcb199c03a7a350 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/alphat +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/epsilon b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/epsilon index 95486e7d426c53d82413c9bcaef0c7e76e9e5d2a..e0fa0040116af40c9804caa8d5ab2a57b18819b3 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/epsilon +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/k b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/k index 6f55263e31f00f25cbe095db9b4be030fc4ac56d..a39765f6e635f298ae8777f3995afdada879ad47 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/k +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/nut b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/nut index 0bd05b48a139559b3dc3d7c77630327c49147748..ea8fb77b084f399deb2eec27b0978e41bbbd0687 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/nut +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/p b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/p index 63544cb09a6a061e5fcb89a4f1f70e73309a31be..3da84912e2f0fe32c32f9eab0c3812c8d9cc3265 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/p +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/p_rgh b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/p_rgh index 4d220478008318514cc74ba4cf7d8f8b96bb6bfc..2170c25ec77676ac81260b029abd6e975038f682 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/g b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/g +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/thermophysicalProperties b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/thermophysicalProperties index 80168543ddb6abe4e1ece7fd4cbe15f11f22b39b..7e35988c7628ccf79088af27319b0cef8dedb564 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/blockMeshDict b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/blockMeshDict index debf2d67d9ba8f75a02cb258b4528be77d0c77da..10a352f129f82e2eda4a8af6aa1e1de5f9327206 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/controlDict b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/controlDict index 2fba84de3b8d2f23cae5764f1d2d4dbf8a39cff1..081ba9fa5254be950e507956ece9c79d1065de43 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/controlDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/fvSchemes b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/fvSchemes index a905c23ec430177e1a389b246c974c4e0ebb7a94..5e1ef17c603b95a03228258b6a15fe26a3172c62 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/fvSolution b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/fvSolution index 8a1e0382a609b307e67cf4696c5cfadda2388a97..5cc23c6e366a82d2cd850562d54f4023c8cc0767 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/fvSolution +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/setFieldsDict b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/setFieldsDict index 1bad561329dba7565ad8c3cbfa66b023e32a4fbe..d2146b3317054d1a714be9c3eb14613da4858556 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/setFieldsDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/IDefault b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/IDefault index bf5daccc21c6fb67072452a79e6f8ba8c51b1fcb..5a298e53929b542433153a467ce79acf6a4ef978 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/IDefault +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/IDefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/T b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/T index 6a4bac3ff8473618795e7038791860e4d44355dd..9ee0abf014612f7df4426460d873960ec538335e 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/T +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/U b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/U index cf1c273c6f96dc203ff0aea5bdac5a5b553586a8..93a91d7cb303e78354562a659bc8b28cda3abfe3 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/U +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/alphat b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/alphat index 1759e09cb72894e2d54308b07775dd68c4e07a37..cb870eecc0e97311d066a9707cf9e94bcaf78cea 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/alphat +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/epsilon b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/epsilon index 1f89fdf45d3d1953a7aa8caa68a0f1306d2f97dc..6880a40ffd07d16a645b04ea6e06de2b1472475e 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/epsilon +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/finite-area/Ts_ceilingShell b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/finite-area/Ts_ceilingShell index 826c771c4c54352568f3636ac9ca5e6bc15ccf68..f279478bcf9588ef93790a4e33e612778e818c21 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/finite-area/Ts_ceilingShell +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/finite-area/Ts_ceilingShell @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/finite-area/h_ceilingShell b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/finite-area/h_ceilingShell index 4a23b9a00f4365afa97b60dddebc24c4cbc5b91d..9131ba186c4bea335077d6e0c0f5c5a0af47e828 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/finite-area/h_ceilingShell +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/finite-area/h_ceilingShell @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/k b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/k index b5f91ec16cd7d6eba54fa8c0b8e0314958061619..4b2a284eec276486c687b96cb6dd8acfd867bdb1 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/k +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/nut b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/nut index d353c8147a06a9a74f723350972d68c944898d89..8d49504e1a1e9c0a1d4815535d62b5ed7072f7f0 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/nut +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/p b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/p index 6f25ce80ef64edba2bea2dbc626d1feb61f6fc72..e9db4f86d9be090753f6c3cb54ddc5881a450f0f 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/p +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/p_rgh b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/p_rgh index 94894bb4b3fe19cda7075228a57ec3ab8477bfb1..52c95af2623446acf5b7b6fbcd9fb351c5c4a417 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/p_rgh +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/0/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/boundaryRadiationProperties b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/boundaryRadiationProperties index fc3b3f8a0aa11f878acf79c922475ce5284ac84b..46189d852eec6e4d16a3f02050cdd0e865f82648 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/boundaryRadiationProperties +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/g b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/g +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/radiationProperties b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/radiationProperties index 31d4288fd3c1ce5f3ab0e14106e4bbdd37e2d308..29765d7ab6804c09ad476aab0ac07fa27b9341d4 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/radiationProperties +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/thermophysicalProperties b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/thermophysicalProperties index 3bbc1cd43e0551cbfc9fe4bcdf859adee9556c0c..b2f7018790e55e6d56bcf1952f123c0a2b0f1439 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/turbulenceProperties index 36bbbff19cb7d5a2f8d49b9eda7c73ecffe874c1..fc525261a719de930d0bb1ba1a45f3e4c8942652 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/blockMeshDict b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/blockMeshDict index e5b25e60ba0bd86db82d3be5c3740b76c6255c8f..14678104ba0638a9d4be83951c53ee5c3b21f1d6 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/controlDict b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/controlDict index 4e9db01d583edac7701f51f3308a7fc812ebafdd..9f195d2015d60e06578d5ea0b4e33da1d8fb24bf 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/controlDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/createPatchDict b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/createPatchDict index a73803cc12d2535f23e485c1d646bda3d6a80fe5..51a2bfe14ce89cba344fac8fb1d7ee9089412661 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/createPatchDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/decomposeParDict b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/decomposeParDict index 58693af6f917436577fc58ec8b159cd117bd2ac6..e4c095c79fc693bc0ee86c648f74e1a1a6d0ea76 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/decomposeParDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/faOptions b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/faOptions index a721c5a04fb025d64ed8d381484df99aca9b418d..feec084ad99c1f9839e0ff416cc24974dee6020f 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/faOptions +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/faOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faMeshDefinition b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faMeshDefinition index a85df0cad79d157eb3c2e6722be47afc6ea00024..e066557e7feef3152051b407f72c21798f719f70 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faMeshDefinition +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faSchemes b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faSchemes index 8903be44f0c76a43ef323b0662892d634d32a298..00fc3f6df47c135cf76123489c77761211125a10 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faSchemes +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -21,7 +21,7 @@ ddtSchemes gradSchemes { - default none; + default Gauss linear; grad(jouleHeatingSource:V_ceilingShell) Gauss linear; } diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faSolution b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faSolution index d1da620bf92a8d32f9840bc78d170e841282bf0b..4c4b89a5e662b951ea24e61806fc3e898979eba3 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faSolution +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/fvSchemes b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/fvSchemes index 35a34b3abb4d5629616fc1a4fb6a2d86dce2e209..001f9ca206e1f76088bb216d960aa3557f5eda7b 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/fvSolution b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/fvSolution index 4140fcb23b862dee95530f36d94037bc178ab7c6..5bbfe9f7e2eaa643012ab84c804cf399e1367152 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/fvSolution +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/topoSetDict b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/topoSetDict index be35a86da40bce186ebe54544da68df90e1aa223..a581af686f3821580329695386784e714ffd7cee 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/topoSetDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoomWithThermalShell/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/IDefault b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/IDefault index 7cc85e6c9f5faa6252d5e393b891eab144056776..9fee415c9bc5232340799ecf995d1a174b785748 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/IDefault +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/IDefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/T b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/T index 67eb8496d0f10138c9437eaeb06154dd0e5f8dd4..f4e24dc3511db7bfe7b9f25d1cd3f923322112a9 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/T +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/U b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/U index 3432683094752b811180860a77337b2350f3ca21..69fd0fc636adbbb354c554ec97fc485c30661382 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/U +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/p b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/p index 7e63922a49886b43a9c388bcceb2be796d12d943..8c06172c4957f1e6bb955d82a385856bcb67e280 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/p +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/p_rgh b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/p_rgh index 29f98e525c65830c5dab3cf556af25c4965ff85c..d9f6781e37332a141ab7bb2019aa751cfd7d59ba 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/boundaryRadiationProperties b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/boundaryRadiationProperties index 6d4a8429e71d0b4b0ab33908ec15df7e536f8bd6..ca9127a5a45e8dae1712324c8d1697612574f1ee 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/boundaryRadiationProperties +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/g b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/g index e9dfc3f353d2990103bc9b9b9ce6a0dd8943fe0f..7639c9e60f33602624b734b7495005cfe95e64fb 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/g +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/radiationProperties b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/radiationProperties index 07159e2c34536ae1e9430edb4af841d4d0b5401f..6ec99098788883455e96592bac5066050559052b 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/radiationProperties +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/thermophysicalProperties b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/blockMeshDict b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/blockMeshDict index 3ed48971c80d30d58274dbd2e6fce5a5a7d553bb..9cd0543f9f35cf78e200147b9f362cecb3f981fc 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/controlDict b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/controlDict index fe053674f57c75274ef957c81f4c439fcdc6f5fa..042d87afd64c61087da94676887d52dabd0b4351 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/controlDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/fvSchemes b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/fvSchemes index e54130f08b940ea14016373e47306ac3a2bd75a1..40cabcc5240dc33ed3ccf21613537ab4a0a6b406 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/fvSolution b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/fvSolution index e6f8f92036606d52ce63bc599fd9a047fb61ca96..61c71ede3557725d1c9d4e42d05211a668211af2 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/fvSolution +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/T b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/T index f99d3d78deac20bccc9c728909d5253b0368424b..242681400fede18d7a531ac444c355d792a19ace 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/T +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/U b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/U index 120bd284f678eed52e72490740493df144f86c23..1add11c6ebd8379012aa6c0d6eb22d8aebccd303 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/U +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/alphat b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/alphat index 2535dbd6133a6d83d17f6203f63077234374ed3a..cbb1a35010037446691d710295031a073410d42a 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/alphat +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/epsilon b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/epsilon index 40114657257f3c2ab20823e7491bf7378c27dba2..c0a16b2c5f72c6dd4903a60e9cd200fa9b9eb7aa 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/epsilon +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/k b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/k index e77ea8c7f4b7b35f40c81db32e43c9726226ec69..9d0738050abdb44ba78d349bc87449dd07441004 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/k +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/nut b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/nut index 8d0fc09df061e2d146822aac0db27ec9dc53c789..a74c552962f207121505b81df23bda516bf633f5 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/nut +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/omega b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/omega index 314b864231b1adf3ab2b128b8325c26d5238ab2b..696f58780825cf715eefcf9f49a33adcd9abf614 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/omega +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/p b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/p index 037fa1e5c7c02c8d24147fe5934ba0c8a20da249..c3b7dcf581679fd41e9e167f16f44f5900268b16 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/p +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/p_rgh b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/p_rgh index b26fb4481ddb71557a9efe8d967b7807de9be341..00b55d89a03e09cf07bfc3d4536b214ee8de6de0 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/g b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/g +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/thermophysicalProperties b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/thermophysicalProperties index 0149b4cabc852843456e0143de2bbd45bf0c3ab4..6ef64a70427ac8555bfef6bc5caa3dfbadc03feb 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/turbulenceProperties index 5deb96622538a2ee348371b07a1680bfbd998f64..646ecdf62957f53b7e095c50ad54267561e34b0d 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/blockMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/blockMeshDict index c4ed631fa10e33a54e008897042c4cef05a07623..51a31431c3a1eae35f1275fa8ce808ec3b72e7bb 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/controlDict b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/controlDict index 94af2ec1583ac379044d2ac784a3df0c100cdc20..6b0fdf76d8e431917c80a0d076bf744bed4bd7c6 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/controlDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/fvSchemes b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/fvSchemes index 9a5c18ffaf40d9550b4c2f1cc57d3725b9a1c197..2f9e6c67ea85cf87dc4e437bd35c05764e05a774 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/fvSolution b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/fvSolution index 0477b060f56526473f05c5969f41e5479bfdc268..75ac3b59ad15885c4b20a131a43de7a6fd32489a 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/fvSolution +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/sample b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/sample index 8c50945f547b35d85c882b6896578dfd8b065bcf..031011e8a1354d1f26216cfa7b89e1a3b8c4d832 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/sample +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/sample @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/T b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/T index 9b59658a623ed9d1671bd7a9063a85f94221e226..0cb9fe4ba2a7326116875550452499c3ae42aef7 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/T +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/U b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/U index 1ff791902bc40a1022c4e60b20c6e6b8ce3393f6..3747ed186234ace11144ead050a718df07e146c7 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/U +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/alphat b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/alphat index 1abc016f1980010654c7ed9b14f2f825c8eac6f3..f5a342b6d2bbc45181e8292aebc1945c68cbbae1 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/alphat +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/Q b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/Q index 3c32515c712539c004d939234752b2eac54cc738..dbb95dcf5dccab4ca97e2d446f54ce8ec7873ca7 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/Q +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/Q @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/T b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/T index 88bdba57d34ad1ac248f3e0d9623a4da4348a179..d7d2f00586178778fa691bb4e05a36f4ebbb025f 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/T +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/p b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/p index a85add60471790f8caee8f246580704543efc96f..5acf185a9190885770983e6bdfa28498ae18de78 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/p +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/baffle3DRegion/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/epsilon b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/epsilon index 51d709d1994b39aefe6472ca1ca026a00965f3ed..cd00c6e080b19b8dd0a3c96a05923d0fcb8ce835 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/epsilon +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/1DBaffle/1DTemperatureMasterBafflePatches b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/1DBaffle/1DTemperatureMasterBafflePatches index 95603f4556ca9fd3a8a947672a47c224ef62a5ae..c63f1efadd4ce28f3d9775f6b44a69de39d15aef 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/1DBaffle/1DTemperatureMasterBafflePatches +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/1DBaffle/1DTemperatureMasterBafflePatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/1DBaffle/1DbaffleSolidThermo b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/1DBaffle/1DbaffleSolidThermo index 9d5542394443db230b85e5b7be9bf44708bbbbc5..c0a52123269088bc3f94cd7cdbb110bea85040ac 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/1DBaffle/1DbaffleSolidThermo +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/1DBaffle/1DbaffleSolidThermo @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/3DTemperatureMasterBafflePatches b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/3DTemperatureMasterBafflePatches index e893bbb7e95940fff3933b8e75b535def51ac83c..80a5b3662aa5d49d63bb2ac3badba77c5409ef42 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/3DTemperatureMasterBafflePatches +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/3DTemperatureMasterBafflePatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/3DbaffleSolidThermo b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/3DbaffleSolidThermo index 99d25f30f4d6efb041d8fd114689515ce16a5b21..911aa6a0c6b1785f8d9111f4bd093c606b215f07 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/3DbaffleSolidThermo +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/3DbaffleSolidThermo @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/extrudeModel b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/extrudeModel index 08adf3c925ef94fc849146f08ccc69ff47dfe553..02b99d52d78dcba3b65fbe2d24a19985a28bb6ed 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/extrudeModel +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/3DBaffle/extrudeModel @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/baffle3DSetup b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/baffle3DSetup index c5440caa64e6a22789732a54e2e089ea176bd7e7..37eb108d1bcfc91cc7f2c95a3ae7821c0f82d35f 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/baffle3DSetup +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/baffle3DSetup @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/wallBafflePatches b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/wallBafflePatches index 9a2ecc49f9d3dc7349083b260034be06b0643271..e4852f2721f5a909b1d18a9a4b0e69be0aaab83d 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/wallBafflePatches +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/include/wallBafflePatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/k b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/k index 2281e3af29928a84a6c6c6bd7f7e7e80c0112d28..0c6fa7ca445ae1c86050413b8e8240535c74a9d7 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/k +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/nut b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/nut index b4dc9229d8005a2b9eaebbf9bafd7455997c524f..8b6155b54d9cc155beb66333d5365d37297be92d 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/nut +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/p b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/p index c0a200cbccc7336bbb14cc1def4d18a608ce798c..efeb71595f344698f7cbfd7878bc1f77c81fcf35 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/p +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/p_rgh b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/p_rgh index b837ab8268b3bc18b7514cc91cbb1e7387e3697c..fb224d14c3427d10127db76069a13898b815281c 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/g b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/g +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/thermophysicalProperties b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/thermophysicalProperties index 0149b4cabc852843456e0143de2bbd45bf0c3ab4..6ef64a70427ac8555bfef6bc5caa3dfbadc03feb 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/baffle3DRegion/fvSchemes b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/baffle3DRegion/fvSchemes index a2e1efa40aa3f905182d54577f6aab541c54a6ba..c86b9a80789a8c324502d37529bcd474f8268053 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/baffle3DRegion/fvSchemes +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/baffle3DRegion/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/baffle3DRegion/fvSolution b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/baffle3DRegion/fvSolution index b676c7b824cf91cd498400568a5977a8d80374cd..f33cc947fbf1816eb148f391f5a3d0553ea06107 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/baffle3DRegion/fvSolution +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/baffle3DRegion/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/blockMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/blockMeshDict index 20bb362d45b72fb6385017d77cf3659ca8adc2c6..df43208c6d8a09bc3a52c11a5f7ba9c184ff7aaf 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/controlDict b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/controlDict index 767f9c303fc8029bca8327e229ef5c958d4911cc..3cefb1ce840ead6cd15994c57854693e2ae4aab0 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/controlDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/createBafflesDict b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/createBafflesDict index aa4d5db9166eb70592b7da68fe0acb5ebf7a8fc6..79ac9b3d5d01e45ac9bd897e79c8e97f88f2e65a 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/createBafflesDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/fvSchemes b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/fvSchemes index e341f221a5d6d4d050a65f31840cf0fc61a817ac..d2301cd87d826af4662bcdd62d3679f753592291 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/fvSolution b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/fvSolution index 9525f77f2d794e7a7fd705e731062ca8ae977261..73f9b66fe9b11fe767026e39ac54333ec2ad7b9f 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/fvSolution +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/DR b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/DR index 41c1c04b3a7510ab6bc384f73c2bac0ee2807210..c6efbb6d1b5fb3147fc678958b333de2efead222 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/DR +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/DR @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/PMV b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/PMV index 423a1a2366d4b144baf02235078b373ba253c6b4..2a532393c8d9dea544fec804261403a451b78a03 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/PMV +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/PMV @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/PPD b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/PPD index 7bfff79cb83013919da39b3a476b8ab1dc9df79c..cf8e2f1bb96903e44b8da2093ee78dbf23da3fdb 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/PPD +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/PPD @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/T b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/T index 6ce2d8cd4189ecefadc4a7590b5a3a46cd32cdbf..450a565b7d2b1ee639196219fc66e021273ade1d 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/T +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/U b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/U index 5bbd2204148d674b770a79a451753f1e0e0b5d9a..15930b46a7686729815ceee262ed0cffbe258d94 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/U +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/alphat b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/alphat index 25fcc5b2d900d1016a19249f1109f8df69231808..fe662c4c9662902b2e06eae8b519a33bc8845906 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/alphat +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/epsilon b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/epsilon index 228e894f46f7142c84a67bb5bd6a922a955a2a02..ad4ee87ea21fbdf03046cc6b91c061a72bfc44b1 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/epsilon +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/k b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/k index 03f5d4460dd10d1bd0a8d987724ffda0576230cc..57e59fca6d07680c2103f1093d1014b0bc7a4622 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/k +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/nut b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/nut index 3329f386d50f73921a18f89422a98b51b20e88a6..4d7432d2c70b18d16130feb86a881ccdf8ccbf39 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/nut +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/p b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/p index dc2a255cea7a89b94ee6cfebb984961a97f2a473..d52850852d6a21b837c869bd2f3cdc30462b9e94 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/p +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/p_rgh b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/p_rgh index 30de4dce99a8e5e105ec74d301a4919ab37cd516..750a1929a34c0ba342594f12258b9adc5f3006d3 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/g b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/g +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/thermophysicalProperties b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/thermophysicalProperties index c974d960542ce811681a3d770f980e4232f53a6e..0c4c7ef66e813d3a197045c68ef50fe1c4747fb7 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/turbulenceProperties index dd7fa863e0cbd813af8700d494c55ada6744ef8f..34e4272230d483546d6816e6f02aface85170bd5 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/FOage b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/FOage index 8a4b785d0546923c9c61db35a2ab6b0a8c321ff2..92bade64b28ff471e6a4704ab2ca89817d1512b8 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/FOage +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/FOage @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/FOcomfort b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/FOcomfort index 5491051badde0a13388bcb6df76647ec7af355e3..b3e8df35ab43a35c2b6d2b2f88d679dcc82ebf8c 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/FOcomfort +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/FOcomfort @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/blockMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/blockMeshDict index ccb20145fdb9ae487ae3241878653cf175693dee..f0dfa29c43a5511fc0e8102b6aad15857164d1ea 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/controlDict b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/controlDict index ee6719c3d18ef8d9d1c2d17db19513b1be74c7c2..9f5efbc9cc3a535de08f0a84092037490bc87b0b 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/controlDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/createPatchDict b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/createPatchDict index 89113cf41e7305da0fdbc186952c1089cc9bc1b5..3830771dccca6b7bad62d1a25165b292c41c7476 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/createPatchDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/decomposeParDict b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/decomposeParDict index 367539f0a9d624abec943f2eb1ada8eeafa7d55d..18f898288c4659c1f5a965b2a79432e16b4df669 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/decomposeParDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvOptions b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvOptions index 45f267e71a4cd224fa360e1b39193b5d7679cb7e..8b0fc7960f13c9c76d80bf3cf5dffe76df7fd9d3 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvOptions +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvSchemes b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvSchemes index 8c8969392baf644c07a374456010c0b23e722403..d1432572ad2b94749b4f98e1535a183bd25ce649 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvSolution b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvSolution index eb98225ecd062fe5f337f49eb54c93acb9b9a883..29ac832e6955ad01e49b53fbc463d7df7bae1372 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvSolution +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/topoSetDict b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/topoSetDict index 23791cbb25e533f41c22c801bc524595a1d5096f..96385614aa757f39992aee03bc9a63fbf4f2e2bd 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/topoSetDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/comfortHotRoom/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/G b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/G index 00413fba9e3e4a72ceed70bbcbdf2b44e9a67dd0..80aeaffd8edd043ac88c7fc39b3a7d6d9a18998c 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/G +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/T b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/T index 1b7931171a1170f204aaee2960abe6c5914cfabb..56a2379abe288b27c285eedd8a92b802ce7e6dd7 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/T +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/U b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/U index 1ab32f95f096b261941db4ec8e6ab75779a5301b..acd0dbfcdec24da5ae7453ecbce4dafe53a7adf1 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/U +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/alphat b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/alphat index a55d1f3bab26af81d0e9f35b689bf5a3a5e4049a..30ae843f7c6fc928c03c6978aed857ab4b788a47 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/alphat +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/epsilon b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/epsilon index f79a13979c3c1971d7b59ad1768cd1c27fb27a78..2de326bd49ff8b216261f5be63fec59f18880a00 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/epsilon +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/k b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/k index a5d28216a59ff36073a8989b1dbbe88235e977ed..b052a334ad56512027bffe8ad8d0bf3308439127 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/k +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/nut b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/nut index 1c4b67c9a73b80b97805375af3733d87fa4b814d..faea641f0e4e2cfd37f8dafc37ce8b88e337fa5b 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/nut +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/p b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/p index 161dcac8e5fa85b85e34eec273183f745fc59265..768ab7b338c2a521b3b6aa8eb8a78a8b357879a8 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/p +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/p_rgh b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/p_rgh index e1b22e153eda21002eb4efa4adbb1087ed103cbc..69ff3998ef8dee94e1d9d86156c11a16f08d32c5 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/boundaryRadiationProperties b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/boundaryRadiationProperties index 3579ffb6c0bb1d13455fb937ffa8386144f4676c..4dbd39bd5871e08f63174860070dad7ec96963cf 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/boundaryRadiationProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/g b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/g +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/radiationProperties b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/radiationProperties index 93da8b2fc22b7d344686572de30b3f6696ebfb58..40f12b604665816cb12452fb4ff2e2c3f3499857 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/radiationProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/thermophysicalProperties b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/thermophysicalProperties index 80168543ddb6abe4e1ece7fd4cbe15f11f22b39b..7e35988c7628ccf79088af27319b0cef8dedb564 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/blockMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/blockMeshDict index 59c0ce496a1653d52f94c2fb986b78f55ca507b0..f58fd7d89cd53efae3aea8b737e02f9cb4591eda 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/controlDict b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/controlDict index 7a3e8612de788ba1f2b2ebdbac147ce33ad898b0..5d66c9fd2ae3bf5c4072079014f71269c77700a3 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/controlDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/fvSchemes b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/fvSchemes index 994076c962a96dfadce8ebf47cd62c535deb9154..dc0b66009e09bca19c30cfb6007c6ec42e52a0f1 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/fvSolution b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/fvSolution index e75f0604ab35927c356355a5d9e9b76a9ba3c2c6..d19530635a29d296df5bc1d7b124dcc8afe02617 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/fvSolution +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/G b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/G index 46a73f56f1976010e7521ca0e2b3a6cad86dcfe3..7e037f0945723207b3691dca4e0ba39d807b510a 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/G +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/IDefault b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/IDefault index 188cc3423dfc3cb36472272f69a0af2e8b6079b4..b718b8667d29179d2da4b7923a20ae166d2607bf 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/IDefault +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/IDefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/T b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/T index 1b7931171a1170f204aaee2960abe6c5914cfabb..56a2379abe288b27c285eedd8a92b802ce7e6dd7 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/T +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/U b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/U index 1ab32f95f096b261941db4ec8e6ab75779a5301b..acd0dbfcdec24da5ae7453ecbce4dafe53a7adf1 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/U +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/alphat b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/alphat index 4601053d930f366a5c5c4d900bf7eb7b34e31b75..eff024fa44a3bd73114ee922835512a3cdc0b234 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/alphat +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/epsilon b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/epsilon index 5cce90d9b7f87d71b864bbfebdbaae113440580b..d91414d6f45106262ae41d71b519bc7fdd6d9f63 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/epsilon +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/k b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/k index a5d28216a59ff36073a8989b1dbbe88235e977ed..b052a334ad56512027bffe8ad8d0bf3308439127 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/k +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/nut b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/nut index 312f696d76820aac34d23641f54e1be2aa09227a..0c436ea5098eca47175e824ac5a8d1898a5828d1 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/nut +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/p b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/p index 3ddf34a912e0dc7bb3c17124eba47e23d1a22b0c..280d9160e55baac2750a93e0e35408cc75175640 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/p +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/p_rgh b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/p_rgh index e1b22e153eda21002eb4efa4adbb1087ed103cbc..69ff3998ef8dee94e1d9d86156c11a16f08d32c5 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/boundaryRadiationProperties b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/boundaryRadiationProperties index 6d4a8429e71d0b4b0ab33908ec15df7e536f8bd6..ca9127a5a45e8dae1712324c8d1697612574f1ee 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/boundaryRadiationProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/g b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/g +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/radiationProperties b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/radiationProperties index 370ec7b5637e23e8105fef249a9771f429ad1051..768fa07c51e2d194c80c05da10fa6d5317a418fa 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/radiationProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/thermophysicalProperties b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/thermophysicalProperties index 80168543ddb6abe4e1ece7fd4cbe15f11f22b39b..7e35988c7628ccf79088af27319b0cef8dedb564 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/blockMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/blockMeshDict index 59c0ce496a1653d52f94c2fb986b78f55ca507b0..f58fd7d89cd53efae3aea8b737e02f9cb4591eda 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/controlDict b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/controlDict index c422d48e131d1e439eae7c6d7621d84965b620c4..49668ad8a303adcf88f6cf8b0970dc37a8ebc618 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/controlDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/fvSchemes b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/fvSchemes index 30e06eddd188f9cefc85137deed130eaa1832624..ab1c9416f33cdbef5f31bffe1899dda27933ded7 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/fvSolution b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/fvSolution index d7668a62ab55b53aa85ba48c25d6031982c0112f..72961877cf85a4417d5cf8a208b7e4e823412dd2 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/fvSolution +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/T b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/T index 268ad74eb059e0cc4f1bd58fcab1fbb46abfa46c..a7fd88a99202f5e3c7fdd0ac9b6627a0fba28584 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/T +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/U b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/U index e4834143325a2ae7611197c57edae76013aaee19..306c50081b4760e3b4590b4438f0d04c30b7539f 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/U +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/alphat b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/alphat index 3b97a11d074b80de88e1b3e26251f50b6e6fc10a..d695a82eeb3ad6a39ec38fe9494444c472d5a5b5 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/alphat +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/baffle3DRegion/T b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/baffle3DRegion/T index 9d2a27f6689057e54e205eebca5d3ec77bf039bf..6d3366833a0d01ccd6af536c2ecd5ebe92a4d8b4 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/baffle3DRegion/T +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/baffle3DRegion/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/baffle3DRegion/p b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/baffle3DRegion/p index a85add60471790f8caee8f246580704543efc96f..5acf185a9190885770983e6bdfa28498ae18de78 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/baffle3DRegion/p +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/baffle3DRegion/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/epsilon b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/epsilon index b777933f3b4b2485452e0709cb19740c940b5cf8..3bbb63412c8632678dae00727c02e4dc31e86aeb 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/epsilon +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/k b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/k index e65a6c298415de30f941d7847c08e4961db29490..20a493463a4e41017632c4a163adff23e748abff 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/k +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/nut b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/nut index 980c5c6bdff8bdfed45524bddbcdea65705020b9..8090e02d5d9f65f026ecd7db9a9a59b88390c3b4 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/nut +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/p b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/p index c0a200cbccc7336bbb14cc1def4d18a608ce798c..efeb71595f344698f7cbfd7878bc1f77c81fcf35 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/p +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/p_rgh b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/p_rgh index 73dd561d79934def9e8d0216a9900bfd196b4b45..ba9a1d5262e322e19947d25268e5d28721a27376 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/g b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/g +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/thermophysicalProperties b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/thermophysicalProperties index 0149b4cabc852843456e0143de2bbd45bf0c3ab4..6ef64a70427ac8555bfef6bc5caa3dfbadc03feb 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/turbulenceProperties index f642985ec1912ae07d3b6cf6ba916e0aa6df12cc..4ab703675dc2237bfa1da72720869a73cf75da0e 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/baffle3DRegion/fvSchemes b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/baffle3DRegion/fvSchemes index a2e1efa40aa3f905182d54577f6aab541c54a6ba..c86b9a80789a8c324502d37529bcd474f8268053 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/baffle3DRegion/fvSchemes +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/baffle3DRegion/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/baffle3DRegion/fvSolution b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/baffle3DRegion/fvSolution index b676c7b824cf91cd498400568a5977a8d80374cd..f33cc947fbf1816eb148f391f5a3d0553ea06107 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/baffle3DRegion/fvSolution +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/baffle3DRegion/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/blockMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/blockMeshDict index 8a4f5c9b27ffd18f2116794f6bf4b0706dae9270..c42e18d7f6e00bc7c8eba3bfd5c2b862582f1ad6 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/changeDictionaryDict b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/changeDictionaryDict index ef443f35c1a4e32816f5f6046ab864f8c929769f..9c11531558f52b1598535cbd73c746afd66a2cb8 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/changeDictionaryDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/controlDict b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/controlDict index 61f67d2b1b20d65c49365beaabcff30e3409faa6..a603faccf64fa239dea995d2bea2dd52f611230d 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/controlDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/fvSchemes b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/fvSchemes index 3b6da433bc7c0c462811fe02b0b0c292afb6a732..e282175792f2651b5bb089957039b4ce5e364bf4 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/fvSolution b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/fvSolution index 41bb7ca1a86a6101bb24b80d7cd6a8111e391a13..19c3316373a36b25e028cce604227834de4679bd 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/fvSolution +++ b/tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/T b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/T index a1f35909744cec005a45ed6df2e0318a05d4ebf2..2abef3b1b2e65465d665375420dbfaeeccda8c41 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/T +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/U b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/U index 73ada7b27baec161c69298ec5d6d73087aa2af64..439793607eb0615640b58e396686d31b1eb1c69c 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/U +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/p b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/p index 6d05b377a270afff79890fa4229fff9821d13320..02053cb9cb6705fadb3e19fea242a4ef800cc89e 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/p +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/p_rgh b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/p_rgh index f2a08146c9a45e335ce127de2bb20539a7f1a3cd..f6f831e44c27248ded0f5c355f45d0bdcb5af1ef 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/p_rgh +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/boundaryRadiationProperties b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/boundaryRadiationProperties index 63cca100ad2e35bb5ff804017f19be49f1905b89..41cd151715a5195250f5624b74fe33f8e8aa20ec 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/boundaryRadiationProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/g b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/g index 1cd0212aeb941e8f025ce7d24f8d5a0e447a8ece..81ab0f70a563ae1547e049f483a76ab2e5919348 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/g +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/radiationProperties b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/radiationProperties index e122730095b0a8b3a8fa9389275fa1f1fcb20278..681f18921f44a13f881abb9467415113224ad94d 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/radiationProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/thermophysicalProperties b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/thermophysicalProperties index ce1acb72fb6143f7f0948e97106a2509ecac13d5..7fcd4fd929ddfd1a8288c7f41d4d32bfc4492e37 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/turbulenceProperties b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/turbulenceProperties index 8ea6e358edaed33af9739f4d59ac3a3314460abc..d981612235b7a128a049b8098ee69f55247d96b2 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/turbulenceProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/blockMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/blockMeshDict index 2e38f93133b64404011a9b8785c59d2caea6dffa..1d4fce3c04ae3c84b0d352e4bb0d1c50e588a66f 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/controlDict b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/controlDict index 7c8ec7a1bf9d2a7ee7d6893c842d144de15a159a..4adb1689677c9ce517390c63706c9ab75d457d7e 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/controlDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/fvSchemes b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/fvSchemes index c6ba53e001d3dea850d316b1f22caba47b3e3959..8d5ebdcb3b973362e0b0a1fdc0915029ada73dcd 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/fvSchemes +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/fvSolution b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/fvSolution index 38c4bbc19483200ddcd15248f6eaba581303df90..6c0fe64c0b4df6d8d4a807bb49bd0d9bcd5f6f2c 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/fvSolution +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/meshQualityDict b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/meshQualityDict index c5e4f5ec15c6034ff30f9db5de96234df3a6ec4e..ee087e0e5c7bf5fb3881011fb1598317d242cf71 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/meshQualityDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/snappyHexMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/snappyHexMeshDict index b610bbd88e95e61095bacfcdbd06bcd96c302e47..f385cd5ceb4233c0705f9cd7128ae67769d88cf1 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/snappyHexMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/surfaceFeatureExtractDict b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/surfaceFeatureExtractDict index d718a7b55d812722485b45aaf0e63e9394b62cc4..f03d35256c76c1ae95b230449d06145677a46a17 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/surfaceFeatureExtractDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/simpleCarSolarPanel/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/T b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/T index cbd09bd7582f3b7a20b41b85d0d82ab3cf68b263..0d4d86b92b13c8113111e1c3e99437f85abb5208 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/U b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/U index b7bf73b1357a6244999a41081d75ce70e444e24b..0804ea8929aceb64cdf27217317e847d8bc1d6f1 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/epsilon b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/epsilon index b4b21992c6126db0524eecf1d40434fbced1210d..2f1130493ae281bd074b723b08bcd3c833260501 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/k b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/k index 063eb9085ad94dabf20f25a7b3ffefd48133abe8..730c16bf201f8ffda9905e26ef264acec1263383 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/k +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/p b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/p index 9a430fd79f327a6a8321fd7f56f6069715b6ff5c..bbbea634dee840322c26a100337790dff120dbd5 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/p_rgh index ec657884eacadd60b587c1f1706d47bfd864c2b6..207d8cfaa6a354a6f61f1e0ba89009782b3d4a9e 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/thermophysicalProperties index ea174f9a97dd20c087d4254d55aa5c8cfda22623..71c014ee348905b64342ba79f69720f20956f840 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/bottomWater/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/g b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/heater/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/heater/radiationProperties index 439eaa9c891f0a40a0d772dfe1b6c76b82d848f9..faa5b9558b5b73137b2176bbd94034da064401a3 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/heater/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/heater/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/heater/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/heater/thermophysicalProperties index 73481e9db3c44f1e4fd5811b7eb8e177172823cf..75e1f7eb1ff368ef849e531304dcd21bc2a3fec4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/heater/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/heater/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/regionProperties index 78f63d6aa3b5f681ea229c4873fb0f6444741ee1..d218d57f60b43fcbfdcd26c1acc13ab17b577375 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/topAir/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/topAir/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/topAir/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/constant/topAir/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/blockMeshDict index c4f51efc628fce49ed7fe16af6289b93bdf88ff1..e12efd24f2cea79e67759e0873af7ae7ff67067c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/changeDictionaryDict index f87235d058e981860de7c9fb55b149d916c3c6b1..965140ec325a67969d7364f8d934f4af4810f840 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/fvSchemes index 858732b69fb4329e3cb65f61abc554c4c71c8bed..c28ba412deff6e040b9f9adee4946eddcae90d1b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/fvSolution index 106ad4eabafdb63061329c459b409ebf23c9074b..7c935a69ea286d1d4e57aebab2dafddd6d955f4f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/bottomWater/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/controlDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/controlDict index ba5cb60d95d15e9a305d1d28575d498423e92851..dbfb9e9fe797e348e7597d711a584bcf99ece9a4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/decomposeParDict index cf6d208f01a50c2c6befc08ed6e7872db2ad0cea..99b3f6a0d2b8487757d08f552a0110e469e76f1b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/externalCoupled b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/externalCoupled index b98dfc9782af8dda24501754ccacd8a91ed640de..2b6424603a23bc3ff4f9487f4e0ff5b76e86d286 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/externalCoupled +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/externalCoupled @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/fvSolution index 2f5abd0344d1365a722c1328ebaa037dfb164d2f..77a0889c827145fa2a2f73b85f8503f9cc3f08da 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/changeDictionaryDict index 47356d07e42cdc59a584e92e25c3ba9f4994edcf..09e5f0af9dc501c4a41b835ab7276587ff801aff 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/decomposeParDict index cf6d208f01a50c2c6befc08ed6e7872db2ad0cea..99b3f6a0d2b8487757d08f552a0110e469e76f1b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/fvSchemes index 97b96c4d7c82b5685490d65840e9f6fe4560a174..9129a42d09476043e608abb7639221faccdb22bc 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/fvSolution index 735ce18dc6ce9cbc64ec9c30310da61a807030ba..868f702458bd53a60729b457d231ef817dcd464c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/heater/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/leftSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/leftSolid/changeDictionaryDict index cf38aec5275e9fb7fcfd7d4ffe29c98185c17bb1..d4abe4acee9cd957eed02d39fb62c9dcf2170e68 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/leftSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/leftSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/rightSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/rightSolid/changeDictionaryDict index 881aee1ef12bdae44006ce4d40a9301a41ea773c..13a5bb3123374876ea0cb3ffed9d5325488a86c0 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/rightSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/rightSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/topAir/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/topAir/changeDictionaryDict index 2f4923adc712395e7e9159b223d3f58a29f57ea6..bc842161f82822a56ad2bea2a5b9cb4246aeb153 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/topAir/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/topAir/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/topoSetDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/topoSetDict index 60cf18fb35ed8fa8aab30d7e7d84dea93ae8a557..8fc7667453919095efcf643b16aa18bfa2f7c166 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledHeater/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/G b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/G index a3df5aecb1c9ba31645279e57cd18312ece024b3..029bf3bedbd884ae11b538e584803b9f04bd5e0b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/G +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/IDefault b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/IDefault index 677ce7fe343841a5053359708561b7c8db787687..256159acf49676524a255598974245334e62f876 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/IDefault +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/IDefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/T b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/T index 6e2e0771994abdbb7694337f57b069a424711e6c..18ec6ca4f0e1d61201b15c587048fc5e6012aa47 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/U b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/U index 275bcd34d5488d4b0c9253bc68dfc83e763cebbd..1ebc4044b90a5d9327eb8fd2015ddfb538fc766f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/alphat b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/alphat index 5d15f2166a438702eddc0cb8ee4585c903163f67..1e196c87d204ac8fb0cfe87b3256142374e3a186 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/alphat +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/epsilon b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/epsilon index 00c1a5f09e3f46039e74c465bbc6533925366caf..9ee542beda8f5daa5c2126efb0ce5a6379dc9661 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/k b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/k index fc92e001f0e378d35a08b97bd77d7ad25c20b754..8fa342ca3f739ca888b0b95ffbefedebddfa54f8 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/k +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/nut b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/nut index bddd276585fe8d71b19c3eec61b93894882bf2e9..55ef5dc33ba503532c33c6466212b76928653d37 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/nut +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/p b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/p index c79a74eacddc58fc199c49582c62dee6048738a5..f3634559f063e69ebc5d8cc57c45c64c3071d60a 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/p_rgh index 0d3aaeddc2eb63427d9000bf26f9fb3d54d2a6e1..a21e928266c8c739fb4e5f0ecf07d267176720b9 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/qr b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/qr index c307493881e43811267f2478102b6a1f5bf66434..0a996e4ae4c11bcfa35e832432a1f7355983d44b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/qr +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/air/qr @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/floor/T b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/floor/T index 6c97d9385b9e5c73a6568c123149d561df3b2341..ee0ec14127a9fee901751f4f781fd15201327f2d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/floor/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/floor/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/floor/p b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/floor/p index a0605cce09856919c2b0269f8f7223aacd2a05c8..5c44756f1b682c62817c118e8f32f0c07328e21a 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/floor/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/floor/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/solid/T b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/solid/T index 57cf84a976a6370356c060e6e6dcc6ef6c51ee18..5e475049cc86f5b91d3929bc406cb8dc0e53bb25 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/solid/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/solid/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/solid/p b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/solid/p index dd5fc571a9c9b55f13f5aba1d70465d65198bb4a..0b144130925eb92048cfa74af2781e72451a0761 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/solid/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/0.orig/solid/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/boundaryRadiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/boundaryRadiationProperties index 660ddaf859dd6e56791c32710206e30f27d55436..c226cc2f6554bca9fe3d18c14803af06a770e69b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/boundaryRadiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/radiationProperties index 181a5cde3ba4bf025fa9ff30cf989f2b2d31a2b3..dc585504c279ea42150d7712f402a8d003b556a2 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/viewFactorsDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/viewFactorsDict index e81f2eb69047c7fc06efbbbc10851bb80b99428c..0390a0caaae33c44790a38875f2242c3bc11ccf6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/viewFactorsDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/air/viewFactorsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/floor/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/floor/radiationProperties index bfe4533c2d0a862c07f5a9cdc2088fc6fb067f07..5b92b0519b00551bac11c1c5c1e980d153afdb35 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/floor/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/floor/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/floor/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/floor/thermophysicalProperties index 604d11c91ab22cd5d1ba9f96bf70ab948e5c7f10..58e39ac4d76685741496dc57ec1e8d2f29595fed 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/floor/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/floor/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------* \ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/g b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/regionProperties index 572291e6374444e9466ebcdb918c881d3554bda7..b7e371c06f6e86416442cc0d25afb390d6cc94de 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/solid/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/solid/radiationProperties index aff0ee14c40921478a9ba039ff3d197582c55cce..f8f71b2301c32ff917c5d32e64d502be1d3596c6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/solid/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/solid/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/solid/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/solid/thermophysicalProperties index c7f79975ea744113d80a6159f570082ca5040ff5..063b9533941a6a928d22e5cc4e04456dd71288cb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/solid/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/constant/solid/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------* \ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/changeDictionaryDict index 2534290bdd5c2d10af734b9cd506315d9a3caef7..9d25b9c35b1d3e3b581ff5db188993efea9075e2 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/fvSchemes index 3f246f8bbbed387f1f8b02cef03adce5339b8267..61f2f6fee200a2a78b6a7ca33c78bf14c6b197f5 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/fvSolution index f38050c058b89a4288c044dd87cb6def73755e55..72d849dfa9d8f645efc1139d7e3621dcbe27f693 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/air/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/blockMeshDict index f48586d2d671fa311c34a8d5594996bec307daeb..37622c4a522e09f70c7f03bee25a232cf81be47a 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/controlDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/controlDict index b91917a6bd9acb9f79bb205ac7a3ad261717ed45..af65830de47569b1129051fb9dae8b7382ba236a 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/decomposeParDict index cf6d208f01a50c2c6befc08ed6e7872db2ad0cea..99b3f6a0d2b8487757d08f552a0110e469e76f1b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/extrudeToRegionMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/extrudeToRegionMeshDict index 4e25fb33d4368db53607fdcc45d4cd33d0b710cb..d31a1012e130aa78ba6af4fd3d6c85d0452cd9de 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/extrudeToRegionMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/extrudeToRegionMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/changeDictionaryDict index 20e144dcabe4399cd6012378b5f58458964c32fc..6c1a9ae66d6aca73d5ac23aa8ede6f492fe4d892 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/fvSchemes index 42871a9ddd68265487b72fd135dd50d4d94da200..5796cdaf3a8ef040cdb028c1d9fba15283f6508c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/fvSolution index 85df1b20a16ef95558106ee6a0a3967485818441..f6b00b6448eb24b157f568c282139d0d3072c3ba 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/floor/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/fvSolution index e374fc9835703a694ec5c074784e951d3e49db35..aca1e45d227589a70dc3e26ad65ed6189e1ddc47 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/changeDictionaryDict index 505f22123e3309033a45a82b4bdf7efde2126d5e..dded53b21224a3cbec68cffc4d29eaebf34334c9 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/fvSchemes index 97b96c4d7c82b5685490d65840e9f6fe4560a174..9129a42d09476043e608abb7639221faccdb22bc 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/fvSolution index cb92dfc842c7e4737f3b4c27fae0ec469e6a8845..956b6f4d092cae4c0da3d962437235d4fccd0648 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/solid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/topoSetDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/topoSetDict index 8e1380134ac7455e9e9f3d978c7b875d67a7f514..2c351f65f755b7b1433fb8abb82ebc3432ca4e42 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/T b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/T index cbd09bd7582f3b7a20b41b85d0d82ab3cf68b263..0d4d86b92b13c8113111e1c3e99437f85abb5208 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/U b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/U index b7bf73b1357a6244999a41081d75ce70e444e24b..0804ea8929aceb64cdf27217317e847d8bc1d6f1 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/epsilon b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/epsilon index b4b21992c6126db0524eecf1d40434fbced1210d..2f1130493ae281bd074b723b08bcd3c833260501 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/k b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/k index 063eb9085ad94dabf20f25a7b3ffefd48133abe8..730c16bf201f8ffda9905e26ef264acec1263383 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/k +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/p b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/p index 9a430fd79f327a6a8321fd7f56f6069715b6ff5c..bbbea634dee840322c26a100337790dff120dbd5 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/p_rgh index ec657884eacadd60b587c1f1706d47bfd864c2b6..207d8cfaa6a354a6f61f1e0ba89009782b3d4a9e 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/thermophysicalProperties index ea174f9a97dd20c087d4254d55aa5c8cfda22623..71c014ee348905b64342ba79f69720f20956f840 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomWater/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/g b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/radiationProperties index 439eaa9c891f0a40a0d772dfe1b6c76b82d848f9..faa5b9558b5b73137b2176bbd94034da064401a3 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/thermophysicalProperties index 73481e9db3c44f1e4fd5811b7eb8e177172823cf..75e1f7eb1ff368ef849e531304dcd21bc2a3fec4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/regionProperties index 78f63d6aa3b5f681ea229c4873fb0f6444741ee1..d218d57f60b43fcbfdcd26c1acc13ab17b577375 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/topAir/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/topAir/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/topAir/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/topAir/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/blockMeshDict index c4f51efc628fce49ed7fe16af6289b93bdf88ff1..e12efd24f2cea79e67759e0873af7ae7ff67067c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/changeDictionaryDict index f87235d058e981860de7c9fb55b149d916c3c6b1..965140ec325a67969d7364f8d934f4af4810f840 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/fvSchemes index b92f1e137eb52a7f110efdb0830054e470b91780..7bce871901fbf70c9b19a9e014bc5398dab1069d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/fvSolution index 22f937a325da0c8cfad673ee085cb41743226f22..9d7fc303877b23c772ff7ffbd66006ea52c7a74c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/bottomWater/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/controlDict b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/controlDict index e74dfae401a7c3e5ea470dc11b7b58675361b8e9..98935c0539a669ac04442693faa3b71fd4ae41b5 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/decomposeParDict index 124f4c36c253a84b58daf216d9f2fd77cfe99b4b..1bf9308e6df9f0509843bd55c555833ea78c3acd 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/fvSolution index 2f5abd0344d1365a722c1328ebaa037dfb164d2f..77a0889c827145fa2a2f73b85f8503f9cc3f08da 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/changeDictionaryDict index 47356d07e42cdc59a584e92e25c3ba9f4994edcf..09e5f0af9dc501c4a41b835ab7276587ff801aff 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/fvSchemes index 97b96c4d7c82b5685490d65840e9f6fe4560a174..9129a42d09476043e608abb7639221faccdb22bc 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/fvSolution index 735ce18dc6ce9cbc64ec9c30310da61a807030ba..868f702458bd53a60729b457d231ef817dcd464c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/heater/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/leftSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/leftSolid/changeDictionaryDict index cf38aec5275e9fb7fcfd7d4ffe29c98185c17bb1..d4abe4acee9cd957eed02d39fb62c9dcf2170e68 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/leftSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/leftSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/leftSolid/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/leftSolid/fvSolution index 735ce18dc6ce9cbc64ec9c30310da61a807030ba..868f702458bd53a60729b457d231ef817dcd464c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/leftSolid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/leftSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/rightSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/rightSolid/changeDictionaryDict index 881aee1ef12bdae44006ce4d40a9301a41ea773c..13a5bb3123374876ea0cb3ffed9d5325488a86c0 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/rightSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/rightSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/rightSolid/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/rightSolid/fvSolution index 735ce18dc6ce9cbc64ec9c30310da61a807030ba..868f702458bd53a60729b457d231ef817dcd464c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/rightSolid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/rightSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topAir/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topAir/changeDictionaryDict index 2f4923adc712395e7e9159b223d3f58a29f57ea6..bc842161f82822a56ad2bea2a5b9cb4246aeb153 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topAir/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topAir/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topAir/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topAir/fvSolution index 22f937a325da0c8cfad673ee085cb41743226f22..9d7fc303877b23c772ff7ffbd66006ea52c7a74c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topAir/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topAir/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topoSetDict b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topoSetDict index 60cf18fb35ed8fa8aab30d7e7d84dea93ae8a557..8fc7667453919095efcf643b16aa18bfa2f7c166 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/CH4 b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/CH4 index 3114f64df06f62a46808edc8bbf32b78a2826a7d..bfbebe822b08140942baf6160abb79ad913b8f54 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/CH4 +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/N2 b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/N2 index 28b8c9a250e85d8ca38e3348c4b499387c5d2c8f..ca221e4a70045be0044916007c350cefe1896fb9 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/N2 +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/O2 b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/O2 index 80c29da54811761bf1f0dc34d0bdeaacdf87f99b..0868ce6f28e8ec6a590c451cf67c272f459748c1 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/O2 +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/T b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/T index eb7031592b2416293210070915dd2de5ea67813f..40e04c02d4a3467b9f1086dabd31f2c687905b5b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/U b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/U index e7d0e69ccee2875b095eb1b09a8480c26a8c8313..a654d601c09c1d459c69178abb996726c02b48ce 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/Ydefault b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/Ydefault index 5a6f0e69646f9b30161dc49760bbc674870ce567..adc857443ca883be4c0dbbd3e0fec026181f7aaf 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/Ydefault +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/alphat b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/alphat index f2d8836de5fda09714984c865b8fd7088d9971d8..41a9820476985702869b25eb21da7c332baaef6f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/alphat +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/epsilon b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/epsilon index b52f1ea7e62d5e35b59d0f7fdd61efa5f558ff05..688f684315965305b52040121318655c5e080af6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/k b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/k index fab45e9b1b2f896fa20595751506deecdae1adef..2979f316c0155261c5c8b663dc9f1c0d2f9422ee 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/k +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/nut b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/nut index ad34dea2ee4b57627c23cf56ae9b5ac2890bea7a..9a0de693a9b7219bf977f8b0234b01c06b31f9f5 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/nut +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/p b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/p index 7586cd6718b0d3f603fda6166c3376f80161cd5d..857f2a6882a81ca55585d376e7273684a5d15581 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/p_rgh index b1ed444d0c887200779b36f8df7785362aeb38a5..c6cfa74926d490311fedfc7df160f99c33a9e1e0 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/gas/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/solid/T b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/solid/T index f86ccb8b392ed3fafb7df4f2ac09308b6fb81959..9e5ae66e94b70b953602a803eb6b0187c6e8fd4a 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/solid/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/solid/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/solid/p b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/solid/p index 4155f7b0c29ce9520f37b6b3f43bff7d8d06a3ec..8993cc55a08026d58a1aacfb1b43ae62fbb63af4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/solid/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/0.orig/solid/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/g b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/chemistryProperties b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/chemistryProperties index c393bbf84a79ef0926caf2535112800e2844bbd8..fb436c4df6dfcb36f5970fbe3065d63e92b18404 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/chemistryProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/combustionProperties b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/combustionProperties index 6102a8f92840319f0f0598d7369ff530239d3adf..9426491baa85fa6abd6805279bc629354fbf5235 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/combustionProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/fvOptions b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/fvOptions index 3ee0cfb0f8fbb7111780f85ea4142b5aabda107d..34fac781c9e314d60269123f9d58333b5983868d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/fvOptions +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/reactions b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/reactions index fce3885e82b257f72c9bde25fc0c609f658e37be..900c1f90e4319f93235da526bde3791bd1d7d249 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/reactions +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/reactions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/thermo.compressibleGas b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/thermo.compressibleGas index 035c536c4139d22ad86a55a61f83a19756189615..f7b55b336f13155d6bbfd2cbea3fc9a1f844c882 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/thermo.compressibleGas +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/thermophysicalProperties index e860673922d6d6a30f3905510623e6aaf4f90362..54a2a651d917eaffc3fad4877f5605c5304cc3f1 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/regionProperties index 970400bee465326a08b61af7ac53d79447542bd2..584f2ac773a2b09c537ed82a230b66ba8c3e211b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/solid/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/solid/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/solid/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/solid/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/solid/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/solid/thermophysicalProperties index 73481e9db3c44f1e4fd5811b7eb8e177172823cf..75e1f7eb1ff368ef849e531304dcd21bc2a3fec4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/solid/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/solid/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/blockMeshDict index 6196b7b878aa23bbc596ebd409f55ba910f6847e..46fb2c40cb2d5eec2f1f3b52f852626ac29852a5 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/controlDict b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/controlDict index 4510897e9f71e574c8c5157eadbe1ba524922fe1..f23e490edf5108951a11e4c2df0754317404d186 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/decomposeParDict index f66c0aea120a15dbe132a867fceb86950e593bb4..677d07b3df54c6a60e83a8beb119f20ecca42293 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/fvSolution index 2f5abd0344d1365a722c1328ebaa037dfb164d2f..77a0889c827145fa2a2f73b85f8503f9cc3f08da 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/fvSchemes index e6ebb9589d50cf825dfceef4252aacd30ae34f94..ffd3cfaa1091f07828f519bef12fbbff36096a81 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/fvSolution index e07d56629bf96b63e1a12c618910334397039ed7..56fc3a3321b6bae0d3ed82c041da9fbd215e6858 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/topoSetDict b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/topoSetDict index f14823f68b0ccc72b058016b92ebc23a8baa59b3..d618f66ffbc1ca302532081fcaab3e5b70172301 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/gas/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/solid/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/solid/fvSchemes index ff51380468afdb0c6651a8e0eea89729bf6a8a11..27ac318885b29f4ad44713887c29c7874cc47195 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/solid/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/solid/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/solid/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/solid/fvSolution index 07ac5742e08e3ac1e60e6e0df3afaef0ada9db4f..cc0fde202084af8d6cc94b3d2fe6cb98158067c4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/solid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/system/solid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/T b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/T index 54c8cc619252e1d93722090c4ea34197e0e5c594..06f46259a8deb5947199b9d8790eb8a0ec0e192c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/U b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/U index 82f15ba02b10b7f5fcc0adcb38cf2dae94cb3972..d5b744a12199b52c23bae7df6a13f218dd6d7de0 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/alphat b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/alphat index 017d37efb5c63d15aca1d3fcff02b474cd097b05..0859c0acb6e4659526b4387d8a44fe658d1e73bc 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/alphat +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/epsilon b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/epsilon index dbf7e1319862f03510700a9baa260a26e80c210d..274ffbbdaf1ab4ad42e78a8d7aad6db314e90fe6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/k b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/k index 40197e4612728bda3b1b0abe0fe1c643f6d05c3f..8227e89f7796165c29501a915d683ac177c2cd90 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/k +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/p b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/p index a94b2183a8aff3225eaa798279ea332769a9bc0f..832d116bbee5ab94d829fc7c5a85f2a9717b7c7f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/p_rgh index fd201afc29c9832c1912a48893e565308171dcd5..234559fb9db054e387b84371fef6fae18bec75ca 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/rho b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/rho index e1d24b7bd96987cdfa3b55164772e7510c4b4fa3..c5ba6490d361330ed62855e442da3d415589a95d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/rho +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0.orig/rho @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/bottomAir/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/g b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/heater/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/heater/radiationProperties index 0c288b87b5d984e8d3844c389d124409a9ae1209..bc98c6af2301df6c08c145cb540737a021ece32c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/heater/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/heater/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/heater/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/heater/thermophysicalProperties index a5347d57ffc57962d9e9393f9fa5f53c012d883a..16ef0b9b1dd83a950c340b7853bfc1ad0af398c0 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/heater/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/heater/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/regionProperties index 889bb2cbeed96dbd04dbc9332d9bac8b5067bd14..d8463c3d423579d7a5fdcc0f598687523d278ecb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/blockMeshDict index c4f51efc628fce49ed7fe16af6289b93bdf88ff1..e12efd24f2cea79e67759e0873af7ae7ff67067c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/changeDictionaryDict index 264d6ef15735521758d259d571ee2a0267160943..a015020c9873197034e80f56e9378293390487d7 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/fvSchemes index b690be0946669f84fd0e3589ef5eba8ceddbba78..9a63493330cd502f848c1913b946eb6d4b262657 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/fvSolution index 4912bcd57fbcacf7bb1e0ec592e93b727bf6eb11..474a7780907b838d801abd2fa7c18b33204e42ac 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/controlDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/controlDict index e2a5490c44579807ca04ea7931dc5c0e264980f6..dc22421d63c516b5f6c5e30412eff2bd99e7876d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/decomposeParDict index 7107765d35f1131c5838f49c43e4255ca19d268f..43d940a2da6a27395eba584e19911fa3c1c30b87 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/decomposeParDict.6 b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/decomposeParDict.6 index 19133c8d8cb755feb64e963ad82198ba7cfe0aba..4f85b793b66d1958a34ff4c62c16c2e13247de97 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/decomposeParDict.6 +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/decomposeParDict.6 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/fvSolution index 2f5abd0344d1365a722c1328ebaa037dfb164d2f..77a0889c827145fa2a2f73b85f8503f9cc3f08da 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/changeDictionaryDict index d2dd8ab93ade5e9bb1c34523b39c0bd182162f58..3676c82aa718ddcb4bdad7e5aa516b70a20bf668 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/fvSchemes index 97b96c4d7c82b5685490d65840e9f6fe4560a174..9129a42d09476043e608abb7639221faccdb22bc 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/fvSolution index 735ce18dc6ce9cbc64ec9c30310da61a807030ba..868f702458bd53a60729b457d231ef817dcd464c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/heater/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/leftSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/leftSolid/changeDictionaryDict index 638c83b316641de2ead9a338323691b1f392ad89..1234ea792e3753f465c7c6e3439307250000b126 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/leftSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/leftSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/leftSolid/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/leftSolid/fvSolution index 735ce18dc6ce9cbc64ec9c30310da61a807030ba..868f702458bd53a60729b457d231ef817dcd464c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/leftSolid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/leftSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/meshQualityDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/meshQualityDict index 7f34616212ac22c6d2c464830dc74b219366d412..df1a19269287223b9007cbb3ae0c8d9b72459b66 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/meshQualityDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/rightSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/rightSolid/changeDictionaryDict index 186cc58c69a0836e94706dd2c997e3c0cf7dea78..ad431c1a8d9eb41f350800f83eef2870d0e9cdb1 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/rightSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/rightSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/rightSolid/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/rightSolid/fvSolution index 735ce18dc6ce9cbc64ec9c30310da61a807030ba..868f702458bd53a60729b457d231ef817dcd464c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/rightSolid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/rightSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/snappyHexMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/snappyHexMeshDict index 6fd4988e390d66de51145486766c2b358330055d..7e4d570dff12f6b1fec25266217a32f32917bb86 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/snappyHexMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/surfaceFeatureExtractDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/surfaceFeatureExtractDict index c1e20345986a81a3741c01e0ccf834a02190bb84..db47a883ac4da3c537829f1729267b1e34f5f783 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/surfaceFeatureExtractDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/topAir/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/topAir/changeDictionaryDict index 3206ce0ab251f9a75eaf789de25984ae7b4d9b0e..f25f463926b05201af91efffd1f490c5d4adc051 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/topAir/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/topAir/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/topAir/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/topAir/fvSolution index 4912bcd57fbcacf7bb1e0ec592e93b727bf6eb11..474a7780907b838d801abd2fa7c18b33204e42ac 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/topAir/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/topAir/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/T b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/T index d5f85ee8a5f6efb64eac51498d70ad4cf4121ae8..8243768adecff74c0a7452836a5768bd762970a0 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/U b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/U index 477dce256710f058d96ac733ebb7f4dcbcea9dac..8c86fcf52fc5f7a579da3d9ef6aa0d60ba75a702 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/alphat b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/alphat index bd58df639ad43da6a4242c46be013d98e5c5a45c..9c9c4304804884154d967505e3d346716909d2fd 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/alphat +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/epsilon b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/epsilon index 9a305bd271896b6bf7c7d8987920f1718fdd4718..36a4452ad12fea1b32b3b120193ecbd03e1cfac8 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/k b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/k index 0ce71939ff8c2d048083a58a82dcf0b35f18aca4..3ff80aac40d66d77bc4b735bd4f3a3e291971564 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/k +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/p b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/p index 3d141749087bf9a6a4b5b856e7fa509449b8f018..1071cd2b9239ef86101d569d06ad980f5d4d3247 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/p_rgh index e2c8bb6402d8a287ff4accc3a1c2bda535456f8b..c774959940cfe13e0487fcf120c20df73edb955c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/rho b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/rho index 0e3573c824afa268c9a06044356bb5c377491a49..89bb186acddc025be31f6ffc329148941cd7eedb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/rho +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/0.orig/rho @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/turbulenceProperties index f0c14e0b36b0fbba454fc551ecfd76fba5351058..bd671808c9fa08a172a41e34eaf0ab8e6a373113 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/bottomAir/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/g b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/g index 32870956d50713b0b982f27ec3b8d43ef09b4105..eab9f8dc41cb39bb83064d222605b53605806199 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/heater/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/heater/radiationProperties index eb875982a4d9d9e6c6bda07aacd8470b80a1b998..27a39001fe3b0dadb8d52afe6640228766038663 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/heater/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/heater/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/heater/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/heater/thermophysicalProperties index faaf30217487950db9d0b9e77c9e9a6bbb858b14..a3180e82c34fd2c0d2071a5d61083bef9c53f6bd 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/heater/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/heater/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/regionProperties index 092e980f95322e362fc651350aa5cbe9444f6449..c44ae72a3d29976eeca90b8ebd93cc3d14f13079 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/blockMeshDict index dcb344ed908ec4df3b06e14224eca0557a89fd2e..59a00f7657d8c0f618486c678e1f69adb9681742 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/changeDictionaryDict index 805674f1247d321cd7314098d4af37c1472b679a..5d151393b40b8f7f360039471ff80cb88f2a5c4f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/fvSchemes index ca41dacccb22ea1577f56cf5a607b01367d680e7..30728d6a45d936716f1525684cbf7cbf135c2caa 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/fvSolution index d5efdb37902601e138bd24a48e56fc6a3ee75dd1..68f86105770eb863d670bc234da5ad3c7392b23c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/bottomAir/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/controlDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/controlDict index 433cb8f06717e1f8b641f4b44abb07ddcb715f45..b227c7ffdab2e363497a978dd858e5ad36b0b38f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/decomposeParDict index d5b1c40a515b9bfcc3fa3c2d1f266a40bd74fb50..1e15582fd37efd73325d0a065e2894ccc00ac3b5 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/fvSolution index 41c9e685f85a769a1894279be889a44e0afe7250..dd17047fb7c453ad95ddfd52cbf894503e5028a4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/changeDictionaryDict index 39a9404a3462c90cb237f9ef18f4a6f613a0eea4..a4738cb9393680d3b75ef5d0b510ad9279f2342f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/fvSchemes index 97b96c4d7c82b5685490d65840e9f6fe4560a174..9129a42d09476043e608abb7639221faccdb22bc 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/fvSolution index 677894d5db542a926545d794cb98a84a20f98798..1b122ac88a320c8bd9d0f76d4d5fbb77982f4354 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/heater/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/leftSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/leftSolid/changeDictionaryDict index b3254a5ece0580d5f532dfbdb54ca3f8e13feaeb..06a50c534741309e89a45ca707ba6d03692391ed 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/leftSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/leftSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/leftSolid/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/leftSolid/fvSolution index 677894d5db542a926545d794cb98a84a20f98798..1b122ac88a320c8bd9d0f76d4d5fbb77982f4354 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/leftSolid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/leftSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/meshQualityDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/meshQualityDict index 7f34616212ac22c6d2c464830dc74b219366d412..df1a19269287223b9007cbb3ae0c8d9b72459b66 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/meshQualityDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/rightSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/rightSolid/changeDictionaryDict index eaef53b65d0ddc8a222224052808d75730cab6a8..49c0fb7baac695811b973277b71033495edd761e 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/rightSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/rightSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/rightSolid/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/rightSolid/fvSolution index 677894d5db542a926545d794cb98a84a20f98798..1b122ac88a320c8bd9d0f76d4d5fbb77982f4354 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/rightSolid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/rightSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/snappyHexMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/snappyHexMeshDict index 9fb29f263692143502cf8902247fead4468cc418..0ce9ee3a151f28ef80784eb450eb87c4caf4eefc 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/snappyHexMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/surfaceFeatureExtractDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/surfaceFeatureExtractDict index c1e20345986a81a3741c01e0ccf834a02190bb84..db47a883ac4da3c537829f1729267b1e34f5f783 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/surfaceFeatureExtractDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topAir/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topAir/changeDictionaryDict index 62114167d34ba7d2dc184d0bfd42f44b16c59057..70a91f48de760c7448c767b1c2c36321f751f4fb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topAir/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topAir/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topAir/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topAir/fvSolution index 51f5b0a86ea9936d52e1b5df8b0ad74dbbaa5803..99f7ab925324130881bd4125de0572cd362387a3 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topAir/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topAir/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topoSetDict.f1 b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topoSetDict.f1 index 33330437d10ecd7d48e4572bbbdc38a71e324e80..e4618275dd58988eed75fa5a2edc9a138b75044c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topoSetDict.f1 +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topoSetDict.f1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/G b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/G index a3df5aecb1c9ba31645279e57cd18312ece024b3..029bf3bedbd884ae11b538e584803b9f04bd5e0b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/G +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/IDefault b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/IDefault index 997b1f2a4c7afb45b945ae9653bee8de4da34089..f25b4a4005b5a4a12af6e406786fdb0da9bf38b6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/IDefault +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/IDefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/T b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/T index 6e2e0771994abdbb7694337f57b069a424711e6c..18ec6ca4f0e1d61201b15c587048fc5e6012aa47 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/U b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/U index 275bcd34d5488d4b0c9253bc68dfc83e763cebbd..1ebc4044b90a5d9327eb8fd2015ddfb538fc766f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/alphat b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/alphat index 5d15f2166a438702eddc0cb8ee4585c903163f67..1e196c87d204ac8fb0cfe87b3256142374e3a186 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/alphat +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/epsilon b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/epsilon index 00c1a5f09e3f46039e74c465bbc6533925366caf..9ee542beda8f5daa5c2126efb0ce5a6379dc9661 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/k b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/k index fc92e001f0e378d35a08b97bd77d7ad25c20b754..8fa342ca3f739ca888b0b95ffbefedebddfa54f8 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/k +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/nut b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/nut index bddd276585fe8d71b19c3eec61b93894882bf2e9..55ef5dc33ba503532c33c6466212b76928653d37 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/nut +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/p b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/p index c79a74eacddc58fc199c49582c62dee6048738a5..f3634559f063e69ebc5d8cc57c45c64c3071d60a 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/p_rgh index 0d3aaeddc2eb63427d9000bf26f9fb3d54d2a6e1..a21e928266c8c739fb4e5f0ecf07d267176720b9 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/qr b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/qr index 8472fdad656cae739ab16959051867221cc7eb5d..ebaa462d409fe05f12970e89e2a330c107e5c51a 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/qr +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/air/qr @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/floor/T b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/floor/T index 6c97d9385b9e5c73a6568c123149d561df3b2341..ee0ec14127a9fee901751f4f781fd15201327f2d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/floor/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/floor/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/floor/p b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/floor/p index a0605cce09856919c2b0269f8f7223aacd2a05c8..5c44756f1b682c62817c118e8f32f0c07328e21a 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/floor/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/floor/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/solid/T b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/solid/T index 57cf84a976a6370356c060e6e6dcc6ef6c51ee18..5e475049cc86f5b91d3929bc406cb8dc0e53bb25 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/solid/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/solid/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/solid/p b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/solid/p index dd5fc571a9c9b55f13f5aba1d70465d65198bb4a..0b144130925eb92048cfa74af2781e72451a0761 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/solid/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/0.orig/solid/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/boundaryRadiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/boundaryRadiationProperties index 36884a3058eca9d248b3685464c43c5a13e627d6..a74982b200f7aeb38dc592d61ce5c644797a083c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/boundaryRadiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/radiationProperties index 7b86800138c7592cab2c93fb7c5f2c33d2e6b8bf..a0189c71c539ff6318237364a3ee9703d6527419 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/air/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/floor/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/floor/radiationProperties index 8cc0968b39bb1ee339efcd1a9c6393d21ad054b1..271bd025bb032e8dabdcfc92a462536e30a6d91e 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/floor/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/floor/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/floor/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/floor/thermophysicalProperties index 604d11c91ab22cd5d1ba9f96bf70ab948e5c7f10..58e39ac4d76685741496dc57ec1e8d2f29595fed 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/floor/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/floor/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------* \ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/g b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/regionProperties index 572291e6374444e9466ebcdb918c881d3554bda7..b7e371c06f6e86416442cc0d25afb390d6cc94de 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/solid/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/solid/radiationProperties index 3df0c9e169578cf4bc360420484b3c9b9c784877..b5ab37bf61d860343ab04a27485df7811d9684fb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/solid/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/solid/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/solid/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/solid/thermophysicalProperties index c7f79975ea744113d80a6159f570082ca5040ff5..063b9533941a6a928d22e5cc4e04456dd71288cb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/solid/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/constant/solid/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------* \ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/changeDictionaryDict index 0779b8599b0acc95b1c701ef4e473eb3a0922907..789cec84e9b79dcc8b272952f9ab64f2aaf4bbf3 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/fvSchemes index 4a2f064e4d9e387c01a02d15f2aa8bf9697d29fb..781b15a91e60d3c25c032ead05858953f878cb04 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/fvSolution index 2b15011d8b603aa4358d29e83ec98e39a25be495..42e112d26b6c04282b26531e5159c48cc60ef6e2 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/topoSetDict b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/topoSetDict index 076457f5df11f712f2da67d9dfa794a5adec250a..59c375d8bfcd3bad70faf317586a84615005b381 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/air/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/blockMeshDict index f48586d2d671fa311c34a8d5594996bec307daeb..37622c4a522e09f70c7f03bee25a232cf81be47a 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/controlDict b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/controlDict index 45d57715d86bb0a96040b89c186813126b5bfec6..d9502e542031fbfa876cb93e92980458442c8c1d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/decomposeParDict index cf6d208f01a50c2c6befc08ed6e7872db2ad0cea..99b3f6a0d2b8487757d08f552a0110e469e76f1b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/extrudeToRegionMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/extrudeToRegionMeshDict index 4e25fb33d4368db53607fdcc45d4cd33d0b710cb..d31a1012e130aa78ba6af4fd3d6c85d0452cd9de 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/extrudeToRegionMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/extrudeToRegionMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/changeDictionaryDict index 20e144dcabe4399cd6012378b5f58458964c32fc..6c1a9ae66d6aca73d5ac23aa8ede6f492fe4d892 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/fvSchemes index 42871a9ddd68265487b72fd135dd50d4d94da200..5796cdaf3a8ef040cdb028c1d9fba15283f6508c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/fvSolution index 85df1b20a16ef95558106ee6a0a3967485818441..f6b00b6448eb24b157f568c282139d0d3072c3ba 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/floor/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/fvSolution index e374fc9835703a694ec5c074784e951d3e49db35..aca1e45d227589a70dc3e26ad65ed6189e1ddc47 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/changeDictionaryDict index 505f22123e3309033a45a82b4bdf7efde2126d5e..dded53b21224a3cbec68cffc4d29eaebf34334c9 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/fvSchemes index 97b96c4d7c82b5685490d65840e9f6fe4560a174..9129a42d09476043e608abb7639221faccdb22bc 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/fvSolution index cb92dfc842c7e4737f3b4c27fae0ec469e6a8845..956b6f4d092cae4c0da3d962437235d4fccd0648 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/solid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/topoSetDict b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/topoSetDict index 6938bdf62da1379d4b75328e9584ccbc1fe6fd27..e72aac20d0666db4630b10a5da2efc578ef1cbc8 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/H2O b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/H2O index 698161d2f8d77d140bf1596aa067788286104d24..736c93958a81b18bc26e79bafc2f9a026e0a832b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/H2O +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/T b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/T index 0fa567fe1b03a439a0c28ce8f44c28b72b755dce..8e6585b1acdcd5afe0057f5e6414b8db286aff0c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/U b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/U index 925ff1ca755418bf36f7c5e1ed3225dc732a7478..8c763bc31b21f1f8163a58424dddb9256c681481 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/alphat b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/alphat index dd62da9b4bf14055abe0b46b6655c4a731417888..9e52aac75322b937dc550ef3ef807b7428d7cdac 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/alphat +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/k b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/k index 142f6f84d5732453e0b4300b33c175c08447f92a..75315aac98666159f46e39b48e13fa707ab59468 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/k +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/nut b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/nut index 66c0d0e1f8aa5ec79b99cbf4a6cba3d2ca851660..6d2ea546bf5086027cb2a761127439127a1176cc 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/nut +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/omega b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/omega index e0f18082572e0f81734f3d2cfecf5dd4bbe792ed..d4a961adc000070d54ffb7d7697d82a0e5eb54c5 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/omega +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/p b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/p index a6abf8dde120004ccc0836d73da34a50e3504be0..f788c8f05d571cec8d65c53e56323f0c60d18842 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/p_rgh index 8087c10aa0e73b6f3cfa0362a2f563a368bba547..016385892c08845f1118ed65d880e0e06bd30479 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/cabin/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/windshield/T b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/windshield/T index bb694273647a63235396f753ab02d0bd41e71b6e..c8547d1949c04eb8d0d6c9aa09f159e1293cd3a6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/windshield/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/windshield/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/windshield/p b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/windshield/p index c55da50bb8a3f41a59f84eb59097db3be08f190c..6d2441ea2827ec3fff6400e024bbf8f9836a6f58 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/windshield/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.orig/windshield/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/Allrun b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/Allrun index 940382c4de3e7ace083aa35cc4a8c5926c223f95..a13c16c18e9a2626bbc92a9fc8d911d972d96050 100755 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/Allrun +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/Allrun @@ -16,7 +16,6 @@ runApplication subsetMesh c0 -patch walls -overwrite runApplication splitMeshRegions -cellZones -overwrite # create register face and cell zones -rm -f log.topoSet.register runApplication -s register \ topoSet -region cabin -dict system/topoSetDictRegister diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/Allrun-parallel b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/Allrun-parallel index 89f2927ab817cee8cf4e9824937e38616126e126..b5403e5e1f82b0a1156705dc0bc585fa2e0189dc 100755 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/Allrun-parallel +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/Allrun-parallel @@ -16,8 +16,7 @@ runApplication subsetMesh c0 -patch walls -overwrite runApplication splitMeshRegions -cellZones -overwrite # create register face and cell zones -rm -f log.topoSet.register -runApplication -o -s register \ +runApplication -s register \ topoSet -region cabin -dict system/topoSetDictRegister # set the initial fields diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/thermophysicalProperties index 3a3330a9abbda626653ca4d947d5510d9a4f5809..32d136d383d90951d8c7e5dab4099a901b762585 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/turbulenceProperties index 5deb96622538a2ee348371b07a1680bfbd998f64..646ecdf62957f53b7e095c50ad54267561e34b0d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/cabin/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/g b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/g index b761ce1685ba3e3a995005f2b6d27ba30c2a4ba8..6cee1f640c3af8fa784d2602b3035ae00bf2b314 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/regionProperties index 0bb5b5ce3172ac0d2bb479fa5c86ece82ad71887..ab46c7f7c5d804b97e983376c23b8b41b9f3abc4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/windshield/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/windshield/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/windshield/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/windshield/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/windshield/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/windshield/thermophysicalProperties index 741547c77be41fa28d86b158bac0632dc5f0523c..e0969de3caa242d039542ebaa57bba742fd212a0 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/windshield/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/constant/windshield/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/blockMeshDict index ecd2c88eb47811630952b5dd84d45604c092de89..99f504cf0ebb150b42b549fca3eb6360e634baef 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvOptions b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvOptions index 444d65d7006a3327b28c1bceef2b8a2986d6dadc..3176fde3adec7d7754c098b6a1c78bb1cb486b93 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvOptions +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvSchemes index 2a96557a8a875adda9aaaf1dbcacaf4ade798055..38898827be01732167d8b5bdbf1e07cd13ca3b4b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvSolution index 3bbe24387f7a902aa65ad1f6b52aa4ae8ad5589c..733fba4da2a23d72034e149edb896742de1720ea 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/topoSetDict b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/topoSetDict index fc34bcec5283c504376ed1c729c529a283d3f314..6ee3e233fc0596e23f22b7e139ff2ff5e1cb2d0d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/topoSetDictRegister b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/topoSetDictRegister index 111a02fc4ed89d37ddf54139d5d21c82a2a497d1..9f9854289abeb0ba2b75bb0de4e3946dbd48ea58 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/topoSetDictRegister +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/cabin/topoSetDictRegister @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/controlDict b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/controlDict index 1e3689669d2a48027dbe0d4899107f6b08ed92d7..18d4fb59c01151b3806dabe5037fe04cb8441ed0 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/decomposeParDict index cf6d208f01a50c2c6befc08ed6e7872db2ad0cea..99b3f6a0d2b8487757d08f552a0110e469e76f1b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/fvSolution index 2f5abd0344d1365a722c1328ebaa037dfb164d2f..77a0889c827145fa2a2f73b85f8503f9cc3f08da 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls index 6ef3864fbefeb250c73813e8ef9299dd3dbd3f0a..4381cb22ae4f299fbf129eee79d3ba82b35098d4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.0 b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.0 index 38d73b41f0ce4bf576816e71b4cb213238953f41..77ce86a7534ac1f24f7ee5c5eddca707d0c184d5 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.0 +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.0 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.20 b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.20 index 7144b2ae6db11b3ddf4388f75c0d8cee9ea54274..b8d6299729b00643a21a6d536ad3efc059feaeed 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.20 +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.20 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.5 b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.5 index c3a89e27f670fe1642e62cacfbadc9bc20c8d218..c77cfd51e4a081c99abe731f08e1b65fd49dd834 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.5 +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.5 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.60 b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.60 index 6ef3864fbefeb250c73813e8ef9299dd3dbd3f0a..4381cb22ae4f299fbf129eee79d3ba82b35098d4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.60 +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/solverControls.60 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/topoSetDict b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/topoSetDict index fecfcefa9cc0fbc4bf604d8a324d8cbf99ecd6e5..c1336b90dcd55c817fa9e836279beb584c515171 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/windshield/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/windshield/fvSchemes index 97b96c4d7c82b5685490d65840e9f6fe4560a174..9129a42d09476043e608abb7639221faccdb22bc 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/windshield/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/windshield/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/windshield/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/windshield/fvSolution index 7e53d13d7d25de0afd8680321b6f292035ca9a86..86eb1ff942ccd534abd557ab3226e22c81314670 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/windshield/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/windshield/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/T b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/T index 70c67b7e15189cc0fc08fa2f49b94632d6698da5..881fabfc398311bf9d3b820ab9ba135bb9a8fb46 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/U b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/U index 6cf0c558030e72c8d19e334b901c9b10bb0f2804..e64c46cad0cf2a95e3df3820120d3d5713f85e14 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/alphat b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/alphat index 68a2245d8279b11cfdde35b8837f61d1582ed2ae..e92459e2eee3c97c28d23b9a74ecc6e2c2f4ada0 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/alphat +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/k b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/k index 427cf83a68d677cc1f3e9edc30dc0d0bfcdfc321..5ab1f938de657ff8c014c0f13daa0f3e1f7777fb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/k +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/nut b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/nut index 70479b403275fdca8067641112c4e794eea70acf..822841539db1fcb7cabc8bec9857c1cb1eb38119 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/nut +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/omega b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/omega index 42fb37a4ecac40cb298c3a66be1a030c1e4acd9d..e25c9cb3dc3b0cbc3eb2445b22b9ab8f1227590c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/omega +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/p b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/p index 80db8d3c025353c2f8a54a913bf2609b61c3a1dc..c729997ba8deee2b7b149c54422b07050c2034c6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/p_rgh index 48a1164cecef2de2d2039774f2436409dac95012..9b40e94c59e12ae6ddfe2a96bd61329dbc6c3a07 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/T b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/T index 0a9758506caba4a96d93b486710f35ce14fab7a5..27d81da8187825ab35b9334f0cfffc0d649c2221 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/U b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/U index 8092522cc670c4741a852fd63b5508cc67fae57a..f4d300a68fe53cb2e7eb1e91e57b8d69250b0220 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/alphat b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/alphat index b0683b6db29bfdfa5ad7b526c277fa6b86c6c8c3..c19c0e45fc88f3b570affdbcba8d8e9f863c2827 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/alphat +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/k b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/k index 7ed921e0b7be7eb5e37c13639406e5644d8a2b88..662253772234d27a7d15888748462f47234e3223 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/k +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/nut b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/nut index ed8566f58c314466a2217e1458079e42e64c1c3e..b6f4d0767b9802dcf5f683664ab1378dbc6209cb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/nut +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/omega b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/omega index 937b7ef68e91076f6a19db761f1a83f5121a84af..107ad4b35057b69352176b95d4802cdab4a0516c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/omega +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/p b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/p index eb40c226a8e628cbfb79bc2e45d1d749ca2f592c..01c01f6795f975c073025bc67a7208312e3d118a 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/p_rgh index 7caead7b3c828b1bfc45124042003210c6222fcd..24b7b2f3251f1a070df307aa6ef02ee9ed6bf57e 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/exterior/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/T b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/T index b0422032354ab06b1a0f2e65a710a48c2f3060fb..7c8a7ea697ae5d1199323d19805e3e9ccafc6695 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/U b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/U index c932cf3d57416c40d9ec5d47e0de2c2bcf97d8f6..ef66e1658b250fa817831eb2ae0d55e29b58c305 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/p b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/p index 0105f1f701ccbb4143662997a7795f78e6e19d9a..772c46390d0bcd91aee87b0545edc381d7b5c6dc 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/p_rgh index a5854ae4badbddf2466c12b4e6275bfb7dcd0476..ab87135fc262a0cdc48434fb8d84f443417aae4a 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/cabin/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/cabin/thermophysicalProperties index e4772e0acb8a1884eeeaf4d38984536e6a3b425d..044e6e5adc43d4124133871c797315732cf4c1e1 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/cabin/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/cabin/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/cabin/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/cabin/turbulenceProperties index 5deb96622538a2ee348371b07a1680bfbd998f64..646ecdf62957f53b7e095c50ad54267561e34b0d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/cabin/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/cabin/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/exterior/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/exterior/thermophysicalProperties index e4772e0acb8a1884eeeaf4d38984536e6a3b425d..044e6e5adc43d4124133871c797315732cf4c1e1 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/exterior/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/exterior/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/exterior/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/exterior/turbulenceProperties index 5deb96622538a2ee348371b07a1680bfbd998f64..646ecdf62957f53b7e095c50ad54267561e34b0d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/exterior/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/exterior/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/g b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/g index b761ce1685ba3e3a995005f2b6d27ba30c2a4ba8..6cee1f640c3af8fa784d2602b3035ae00bf2b314 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/ice/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/ice/thermophysicalProperties index d61d7891b301163ce4cc8bd26f43fb49ff3c4034..282a8d0004cba9ac7e3305bd757c2611720abb72 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/ice/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/ice/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/ice/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/ice/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/ice/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/ice/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/regionProperties index 8bdfa22766769ed2d1cd43f42fd3119bf958b99c..d39d0416529c6e8fe1d6cb745ed12dd9f2f1e42f 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/blockMeshDict index 8024043864f0b2e46bba11d6138cfaa8577422cd..699f9071d11f7759b88e4af07412be2480a9ad03 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/cabin/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/cabin/fvSchemes index d4c4b54d82fe0eae099329e258d03ade0d51b4ef..9dc02a8f4c1571956e9efcb51b1cb981139ad659 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/cabin/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/cabin/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/cabin/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/cabin/fvSolution index 16a1cd6261b22565457337a3680acf01b730f7f5..28e83a4a49a550cbbd2c04e24f3df4b680678e17 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/cabin/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/cabin/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/controlDict b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/controlDict index bcce39cde7f48cc0ba88f015fad4a7b1a3fda312..6d15c8dbff6f83cb201a282d559627e800a1a194 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/decomposeParDict index a2fa47c2edff8ecfe6be9a201467ca8c96d333c8..6f1bcb5f12b7145cb4633e7bb3fdce0f7956eecb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/exterior/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/exterior/fvSchemes index 84c8bdeaa9f232002174e5118a17f18406214967..ff16fef129116177a235840834847e24d7626c91 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/exterior/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/exterior/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/exterior/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/exterior/fvSolution index 2554c1ab63f0382ac9b404cbf37d0c7e958136d9..e52f5ef036651e63e26240560a609346301aee06 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/exterior/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/exterior/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/fvSolution index 6233cb000878554f9d30ed241713e427b23c1c16..adaf0bb680afeead5b25916f276c12c4ac722b2c 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvOptions b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvOptions index 65296eb374b3ef7c281f958d16dc97697803017b..1255e1ceaee2b80ea86b31c8039e0c8b055d5f42 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvOptions +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvSchemes b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvSchemes index 534aac8b779e140c007d20febac1993603633577..ec81c077dd58d8828ab7623661b290528c519bf4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvSolution b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvSolution index cd06b206d3eec08927e8afccb1108d18b633179c..4372006f9d08afea8bdff892990df7b52f747b5e 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/ice/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/topoSetDict b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/topoSetDict index fc34bcec5283c504376ed1c729c529a283d3f314..6ee3e233fc0596e23f22b7e139ff2ff5e1cb2d0d 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/T b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/T index 03e4c8cbc0d88c214b74b1b6bfe8d41ce622873b..d8ff51a6f2ee1bd25af304a497df65be958779c7 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/T +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/U b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/U index e27a2d34847dfb76dec3ff9ba6cb3ec2aeae06a6..01196b3c39d0ab238c387f907df051ce0f9bac02 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/U +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/alphat b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/alphat index aa6ae05d11a22a0b01a7cf0e93eda0f92a4455c8..97deab3004d16cf0ac64258ee28e0b4437e41e06 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/alphat +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/epsilon b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/epsilon index d94f2af733fe832711a7aa45ed80a91105407161..e37d6d3561d7147bf6a88381cc6539a0d080f003 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/k b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/k index d58fd59f5e98d9649e2d0e36ae208838497e4a8d..0a25dc963c1c34a069a5ca85e91e78f7f5ad585e 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/k +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/nut b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/nut index 8f74fa1b551da1a9a9b8f5fe8a9b7c089cb5ef02..138fad3c842eb250927494cb18feb79dceb9aec0 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/nut +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/p b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/p index b6abd17143766729daa7d813b4c9f2c712b3373e..04059ab052e03a1a3219352b988b8caeb95ed6f2 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/p +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/p_rgh b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/p_rgh index 883a4a06566943e0483e0fdd58b93b3ec075ddca..d315559855ddb475f658fadab5a9f19aa137642e 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/domain0/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_CPU/T b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_CPU/T index ffe7903e7753b13cdce7c06340d15a1896d0fa2a..f2f9dd5fc869645228861c37cf1fd80b0f8539c2 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_CPU/T +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_CPU/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_CPU/p b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_CPU/p index 04338109136dae31732d4e315ec420b6a5dafd25..5b86508c836724a344a6a012977967f0c827d913 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_CPU/p +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_CPU/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_fins/T b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_fins/T index fc5e86739219b0bfbcfd7c4f0c17487adb16c004..eb6e70325690072023134e99f45014213e07fc24 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_fins/T +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_fins/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_fins/p b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_fins/p index 3767e1510c967401e80755164076d5e7e57ff101..90d926970ab14e28f5400d0f215d490f92d25a3c 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_fins/p +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/0.orig/v_fins/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/MRFProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/MRFProperties index 4e2383e0aa2f9d9b49d5ee520103fdb168a9df81..27e032575a6f781f2dd6b901e837c4b2d72be525 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/MRFProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/MRFProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/thermophysicalProperties index 4bce275de74ec92222433e75785ba857c7861503..9d9f970f440c0f697b546c092a55a592432c091b 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/turbulenceProperties index 999f53afd7b128201468a25e329ee076f5da8cb5..483ca9154ad297c05d201ef3fdf028abdf8ec127 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/domain0/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/g b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/g index 27eddbae04e5eaa29c17fbdbc138c08129c70bfc..989db86290b4e6ee3ab75362629d824c735802b4 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/regionProperties index 7c8ba5e75c4672ba172e75819f8e178d72670e51..0c3e5068fc262270323b9a2208129a535ec6d9c9 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/v_CPU/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/v_CPU/thermophysicalProperties index 2c23bf22eb1272f9ff0a169dd91a0f72bb70fcb6..34104c2216a1452ad0bd8628e0681af110352a84 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/v_CPU/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/v_CPU/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/v_fins/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/v_fins/thermophysicalProperties index 2c23bf22eb1272f9ff0a169dd91a0f72bb70fcb6..34104c2216a1452ad0bd8628e0681af110352a84 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/v_fins/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/constant/v_fins/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/blockMeshDict index 357084edf95675aa653be154bc23660ad51d855b..cf9d375212d835c7d508d596d08b3588b671f488 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/controlDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/controlDict index b9ec577398c50a0e5441243785933966812dd2fe..5a6b1be3a8834fb7e25918ae356bdee12e80c022 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/createBafflesDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/createBafflesDict index 67e40c0e9d5648fec83c09ad352d01fc3617fe3e..6974848b4aacac9805531e5575bb596ce91c5dea 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/createBafflesDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/decomposeParDict index e34fdc4e083b6ed3a97e160ac37ef277841e6544..02742771e9674e4eb5dba9ea99b1e29119718263 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/decomposeParDict index e004cc29d79b1256492ad63c06673058251bdcda..b7acf02d178da01096880acd89869ae824ad56ac 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/fvSchemes index 2531e314c864c205cc2139bd6a658d1cf1d2182b..feed71bd1aaf94fcc91bdf19829f72d5534d4ecc 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/fvSolution index 01a42dd17aabffe2f67841ff1188348463ce2b6d..5b6939931077e4ff1bb5e8e0f699911a2b924ed8 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/topoSetDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/topoSetDict index 9531b488053b7695b42131788fd1a306f3aa8105..30b129a959d2be333bfb6421cfb64d6ee98c2788 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/domain0/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/fvSchemes index f51b8b6ac81821e8357ffcb7e001b6a133e27929..e08d40a6f6e14730a8f8d0639aaee06dc4426771 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/fvSolution index c67ffe5d2e00fedacf0926fef11262ee89d4096d..db196f13cfb9190243b984fc047ea9bda542b967 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/meshQualityDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/meshQualityDict index 347b4308bdea94e8462dd99a7052ffc991283f42..b4408ec9cee11a6f6b07179f4b7aadc38455f2fd 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/meshQualityDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/snappyHexMeshDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/snappyHexMeshDict index 8431b534ef31975e5d973e507d5df96f713e1dde..2accf44322c15345702dae5b27f3c09265a12852 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/snappyHexMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/surfaceFeatureExtractDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/surfaceFeatureExtractDict index 6c84a1688c4444830594023c3b95c9e938e6573b..4e79a08215a4689209776009b0bdeea3ea8aff4e 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/surfaceFeatureExtractDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/topoSetDict.f1 b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/topoSetDict.f1 index 285c3da8ab31f73714b367bf731e1cdade063595..71387e292ebee8ff6dfa4d36556ac78c8207d6d3 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/topoSetDict.f1 +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/topoSetDict.f1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/decomposeParDict index e871ed0620ed8af917bd2a863bee61c6b0b6501a..3ccfb959c717ff613243df41fc97274644554ca6 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvOptions b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvOptions index c7fb8ac45fe06d4b6b0043e3dba314d3ba64b485..a079752fc4e645dbf41873b915eacb1bfdaf961d 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvOptions +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvSchemes index 8adc668cb94346eb1c301f5e7e219e49c12801ec..6be315c3c8b464f73ead49198cd59cb5ca5a251b 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvSolution index bbfe1e0952bf723b98650698760064aaab09c66b..8e366537b53c02d9002d0670bd688721278b97ab 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_CPU/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/decomposeParDict index e871ed0620ed8af917bd2a863bee61c6b0b6501a..3ccfb959c717ff613243df41fc97274644554ca6 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/fvSchemes index 1dbe14c2d3629f2817326156e447fcc44184de43..370f4d07565dc91efeb35ed105a6a23ffa7632e8 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/fvSolution index 21e60d2b791a2f5f26d5467c1b1b6d4c36690fa6..86d532445f07f9f584d9e875ed435d547eee74a9 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/cpuCabinet/system/v_fins/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/T b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/T index cbd09bd7582f3b7a20b41b85d0d82ab3cf68b263..0d4d86b92b13c8113111e1c3e99437f85abb5208 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/T +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/U b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/U index b7bf73b1357a6244999a41081d75ce70e444e24b..0804ea8929aceb64cdf27217317e847d8bc1d6f1 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/U +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/epsilon b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/epsilon index b4b21992c6126db0524eecf1d40434fbced1210d..2f1130493ae281bd074b723b08bcd3c833260501 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/k b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/k index 063eb9085ad94dabf20f25a7b3ffefd48133abe8..730c16bf201f8ffda9905e26ef264acec1263383 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/k +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/p b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/p index 9a430fd79f327a6a8321fd7f56f6069715b6ff5c..bbbea634dee840322c26a100337790dff120dbd5 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/p +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/p_rgh b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/p_rgh index ec657884eacadd60b587c1f1706d47bfd864c2b6..207d8cfaa6a354a6f61f1e0ba89009782b3d4a9e 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/radiationProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/thermophysicalProperties index ea174f9a97dd20c087d4254d55aa5c8cfda22623..71c014ee348905b64342ba79f69720f20956f840 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/bottomWater/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/g b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/heater/radiationProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/heater/radiationProperties index 439eaa9c891f0a40a0d772dfe1b6c76b82d848f9..faa5b9558b5b73137b2176bbd94034da064401a3 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/heater/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/heater/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/heater/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/heater/thermophysicalProperties index 73481e9db3c44f1e4fd5811b7eb8e177172823cf..75e1f7eb1ff368ef849e531304dcd21bc2a3fec4 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/heater/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/heater/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/regionProperties index 78f63d6aa3b5f681ea229c4873fb0f6444741ee1..d218d57f60b43fcbfdcd26c1acc13ab17b577375 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/topAir/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/topAir/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/topAir/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/constant/topAir/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/blockMeshDict index c4f51efc628fce49ed7fe16af6289b93bdf88ff1..e12efd24f2cea79e67759e0873af7ae7ff67067c 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomAir/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomAir/fvSchemes index cc397d887cb8df6a99ba8e5637d9f32c27c53b37..9972466ee9fa268c7b5788b82af67cf6d018510b 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomAir/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomAir/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomAir/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomAir/fvSolution index 043f70fec760cd6ed29e59bbcf65edb10bd294cd..5823f5a9a592d45324659c148282a8ce04046b1a 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomAir/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomAir/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/changeDictionaryDict index f87235d058e981860de7c9fb55b149d916c3c6b1..965140ec325a67969d7364f8d934f4af4810f840 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/fvSchemes index b92f1e137eb52a7f110efdb0830054e470b91780..7bce871901fbf70c9b19a9e014bc5398dab1069d 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/fvSolution index 8079fed5b849d85c23cfd74d461d0d31d2a36787..68584e147501a74e80246350e2a454ab377c6e1d 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/bottomWater/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/controlDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/controlDict index 2b46aa97c11f107455d5fd64ae667bb5788d2b48..beeb3e7760de7c310dd06813ec45f93baf431e81 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/decomposeParDict index fd28a4f74375cf6fd67c4199d80c966e3b61f909..04407933ae9d1a34461be564e39402c554179b37 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/externalCoupled b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/externalCoupled index 725dbc6e0e9bcfb7def20d79ed8f905fc48d214b..f6422e18051d7c6229c6531a23cceeb068f7db46 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/externalCoupled +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/externalCoupled @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/fvSolution index b3a8ca5cca4ed29ac68f9b767a850c79831c7e07..7b9155aeb10279d58fff041e848a31ec4dcef087 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/changeDictionaryDict index 47356d07e42cdc59a584e92e25c3ba9f4994edcf..09e5f0af9dc501c4a41b835ab7276587ff801aff 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/fvSchemes index b7acf35fd7cdc632df5a3bbdca6628d9be43070f..0839a98bd96b5a6cfe4dbc037378bb645cd25c22 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/fvSolution index 50512b4aa5cbde62f26224b0916e40313596626a..3c7b8f4bb2a654a6875c5710973c6ebbe615ca50 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/heater/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/leftSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/leftSolid/changeDictionaryDict index cf38aec5275e9fb7fcfd7d4ffe29c98185c17bb1..d4abe4acee9cd957eed02d39fb62c9dcf2170e68 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/leftSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/leftSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/leftSolid/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/leftSolid/fvSolution index 50512b4aa5cbde62f26224b0916e40313596626a..3c7b8f4bb2a654a6875c5710973c6ebbe615ca50 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/leftSolid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/leftSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/rightSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/rightSolid/changeDictionaryDict index 881aee1ef12bdae44006ce4d40a9301a41ea773c..13a5bb3123374876ea0cb3ffed9d5325488a86c0 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/rightSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/rightSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/rightSolid/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/rightSolid/fvSolution index 50512b4aa5cbde62f26224b0916e40313596626a..3c7b8f4bb2a654a6875c5710973c6ebbe615ca50 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/rightSolid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/rightSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topAir/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topAir/changeDictionaryDict index f201ff21d1b283742e9740834d2960498f0741f9..8fdfbe201574b2c8b7466cab648757d6d3c8043a 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topAir/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topAir/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topAir/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topAir/fvSolution index 043f70fec760cd6ed29e59bbcf65edb10bd294cd..5823f5a9a592d45324659c148282a8ce04046b1a 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topAir/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topAir/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topoSetDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topoSetDict index 1b24d402c4f7e0a45e6442d4846173e061f253ed..e244a244190672b8124037eca71333711029d5ec 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/externalCoupledHeater/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/T b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/T index 93043019dd7f3273f80d2bd40b7e728e0394bbb4..b9e276d83b4ca37bb874c440730ac1c6961e517c 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/T +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/U b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/U index e0c44a950486dcd7056b71d1b0bd1b19e798b26e..30204327329e65707a9e1e97110c1efe85938c6b 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/U +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/alphat b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/alphat index 3eab3536cd10af6f3d72283cf9db57fda1226603..c1df77a77b443449a9eae2f72c3729cb7f3a2cdc 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/alphat +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/epsilon b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/epsilon index 887da0d70085f58bd4f1ca4690add743093b1c66..18585db289bde8fddfa444f012aa1e2a0e0848b2 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/k b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/k index dbacc8617f65542860f78a461e97e5ff19c13bd0..27466bf9dd4994f1d9ba3bf2daa7c1472a173569 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/k +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/nut b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/nut index d160fff966587521231bbefe5ebe2d444b937f80..5cdcc54c0bb44bda407f7f930e87b24ea17b50e9 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/nut +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/p b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/p index 73c0a210139a4adf53feb84d31c298453eae939a..e67d7e2422b17d0bfa68e5a39694a53b9b077e62 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/p +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/p_rgh b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/p_rgh index 4e235d4a6b95b66f25e79c05df86771d188c2b61..c1840261313b3e0a7cc33b8a1ab5162edee9ce3d 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/air/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/AoV b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/AoV index ee303f3a229c2b90e87dfe9dcfec24a279b04ea3..062985653dd57821e6b017c46d0e626fc6a8a241 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/AoV +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/AoV @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/T b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/T index 3976c84aee2bbf686e848dff7f742ac2f6b9a3eb..949ed87da0587fc9155d390ff43277b8b45c4759 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/T +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/U b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/U index ef294ef4e0685817983dc58524ea58646bc40846..c39dabc67c9d8ca98a55ab3ae28978e120c6682a 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/U +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/htcConst b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/htcConst index d3ac4661b8b7f06b5e4170e46a993b126206b5c4..fe1edc0e1ae625de8120b4fdce8a1e604280e673 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/htcConst +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/htcConst @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/p b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/p index c79500327bb907134c6937ac75d3a8c7370686c0..ac313dd52ec2928a41f8327ab65e2d965237eda8 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/p +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/p_rgh b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/p_rgh index 9c8cff6c6637c0d1de4e1c9d978a69f5f1b32174..585962e4399fbc435431ac6d7aa0eb43f08acefb 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/0.orig/porous/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/MRFProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/MRFProperties index 1123cd9df4cf4e2dbf90a007e0f1ac4669cda084..5395487c0521a1c91512265d8e0db931f6a5078c 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/MRFProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/MRFProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/fvOptions b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/fvOptions index 27d5934c0d77454b2764726b693f71e1080b52be..97cc74a8ceed7658c17452361c017d2c474641a8 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/fvOptions +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/radiationProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/thermophysicalProperties index a51ea5a2a3328dbe56c832fba40f585364fcc715..60894d51eca60d898269d3c2b995f6089d8bcab0 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/air/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/g b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/g index 294ce8e4b75feea18101634efc7cdf7885a6e399..b06b20d8710f43cd4407d195cad6f30654620b5f 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/fvOptions b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/fvOptions index 0bd572040be23e9bfde11508b4ee802c077edfc2..9d4f9d6c801f1926c1f120b11981ba04dad9b28b 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/fvOptions +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/thermophysicalProperties index 01b1a6e2151b42fd16835c5b83329f63334c53b0..e20d87d64edc23e86addaf41e2e6e34355ada120 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/porous/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/regionProperties index d695ccc7d1914cbdca768f5034b113eba2796feb..dcc788e9e4631a5b67cb3530d5d1631831dd5701 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/blockMeshDict index 9d738b6d2b3e9d1933f136981dbaec545120bb16..b4775895044615c53bf22809ce175612ef5f63c0 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/createBafflesDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/createBafflesDict index 9cdd35949b65f0fd2f7736c887bc1a054db75373..8d783ac87c3a71a2b3f112be74c20b4b677ed5cd 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/createBafflesDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/decomposeParDict index 19b90dd0888473dc6fb542ae5364fc52867dd22c..b7a340a08f48c8c9778cc65b90393edda6f12914 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/fvSchemes index 0abc03728e92821b46d65c9d0b7060da3a9d0d11..c0fa61f0937663e109a7bbeab6eb451340294d18 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/fvSolution index e87ada7f23cfaea36e7ecc4604d2a705514b42a4..3475f6c7ff8c89760882c4daef4e0520e6962fc2 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/topoSetDict.1 b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/topoSetDict.1 index 798f3b3a4d13ce2f9425597face230f555c67509..7eaa58512e6e8e4997a248f73803be9036cfc820 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/topoSetDict.1 +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/topoSetDict.1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/topoSetDict.2 b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/topoSetDict.2 index 2e285cbf2b6ff149202f70c2d1e1d836baaac385..19aa3e040f08c0a95d6ec698e028ce8631b16d8f 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/topoSetDict.2 +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/topoSetDict.2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/controlDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/controlDict index 1c67c9f51eaf848f1ba0607d061512d14e6567e9..d180befdac6ad2d72c28ae27844b880d5117fa2c 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/decomposeParDict index 19b90dd0888473dc6fb542ae5364fc52867dd22c..b7a340a08f48c8c9778cc65b90393edda6f12914 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/fvSolution index 2f5abd0344d1365a722c1328ebaa037dfb164d2f..77a0889c827145fa2a2f73b85f8503f9cc3f08da 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/blockMeshDict index 633325e45e92d97611050e48f841beb6bed3eaee..ec2028770353d41101723c0bf39e40ceb8ed3b07 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/decomposeParDict index 008c06e60c70023caebe76b04ae44402c64bdb54..9e006d775c42048d6d6c1c6430b882593911bdca 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/fvSchemes index edb2c18a72da802f3d4ec005ec6f23882ab0f710..12863c86dfebd2b0421e7a28dab40486dd98f7c6 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/fvSolution index b42457ffab6074edd4b73e728427564d2cf15fc8..eef8f56c93232d0f9cc6f98a14a708cbd4555a1c 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/T b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/T index 5f889864ef3c69fce69ff6138da34e5d5d2b5c54..d98b1732f72d4fd8d1bb4ebdad11f38796005a5b 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/T +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:V b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:V index dd664f94543fdd5a7b0d52dfdcc37ec961d2e52c..779ac350346d51e25db7c092060648aad21ef191 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:V +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:V @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:sigma b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:sigma index 2717a4b8a83e942e07b7b82fd393333ff9faf20f..830ceea1a168b09804756ee1176fb3bb4e2af145 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:sigma +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:sigma @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/p b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/p index 56b788157b7e374eb5613934b662d8c6b50c1765..7e9b19dc5827d6b6ec5cd56527000a71c2ea66c6 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/p +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/0.orig/solid/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/g b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/regionProperties index 7beb25122efd83931b2bee7c2ae81e62b9cd155b..8f7068021687165122659e140e575374030bf757 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/solid/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/solid/thermophysicalProperties index 363eaa88a953a4643b1e14261635b2d6a2a9467c..c3ca9b2a7ba8c0ff46e823d2b9faebdb38b38e35 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/solid/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/constant/solid/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------* \ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/controlDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/controlDict index 5d959db171e935e09f10d4916f87c14d61584c41..d7f90f1a75e7b2737feebc3560349ed7857f74cc 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/decomposeParDict index a1a1da626bd1ed4145dee7bfce761b4d52d35c42..fc04e0b67c670130122760a82774414e423a0be5 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/fvSolution index 89752614220bf4a0513d36ba77854b39b605ba0f..821bad3a2aa3ab57cb958c39ef5954297ca52b1a 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/blockMeshDict index aef1ee229afba792e009d6ffb468ddafb0b087d5..8d59a66a5c98522f22661a31a072ba8403da92a1 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvOptions b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvOptions index 51edfa95d305e9a82d6990eda2aedbc3fec2316b..c5748a52389e0cc45be278786b1078de3f2c43c6 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvOptions +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvSchemes index e1aaea4e6364ea885e76b7eb70289206bb7715f6..7d70f3c62857c764ca962d2d49e7d552c5090efb 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvSolution index 74f3b1965805955213710fa5f59475b948919dd7..e0055a83721718c5718dd3634cedb7053d389e82 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/G b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/G index a8512c9c6b86eca0694d3dc0529bc27076bf1b7b..829e96f0d2f8c3ff85862eb466447dc5fa8e602e 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/G +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/IDefault b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/IDefault index b532d8b6bb504c7b417d4d8cbdb7fe494f161905..74cddb60225910e68f1539c177efdb2750f31a60 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/IDefault +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/IDefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/T b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/T index cbd09bd7582f3b7a20b41b85d0d82ab3cf68b263..0d4d86b92b13c8113111e1c3e99437f85abb5208 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/T +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/U b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/U index 496844e7b514a485fab3977a25fc844de2dc31a1..04e35841e89bb6f78beae8f5e6856a7c0a5ad77c 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/U +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/epsilon b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/epsilon index b4b21992c6126db0524eecf1d40434fbced1210d..2f1130493ae281bd074b723b08bcd3c833260501 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/k b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/k index 063eb9085ad94dabf20f25a7b3ffefd48133abe8..730c16bf201f8ffda9905e26ef264acec1263383 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/k +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/p b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/p index 9a430fd79f327a6a8321fd7f56f6069715b6ff5c..bbbea634dee840322c26a100337790dff120dbd5 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/p +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/p_rgh b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/p_rgh index ec657884eacadd60b587c1f1706d47bfd864c2b6..207d8cfaa6a354a6f61f1e0ba89009782b3d4a9e 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/qr b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/qr index cb29c61201f85789bf9c39644def39ff51cbd044..f5f72ca76d25ce939340059d6c2c43951fa22a75 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/qr +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/0.orig/qr @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/boundaryRadiationProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/boundaryRadiationProperties index 0a38db4800071943b3a0f5128c5e6abcd3db98b2..94e835e99aa81a4b5079356eaffdd66a331b31b5 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/boundaryRadiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/radiationProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/radiationProperties index b81e66641a4096b32ee72f61cd2dc6fd3dde9a04..9680f1cc94e5ca140fedb23abd15f73400bdc25d 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/turbulenceProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/turbulenceProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/viewFactorsDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/viewFactorsDict index cc87aed0fe3ee8474a0ef53ceb3b5176dd107bd2..6fe5266c248b4c79c507d5ef14a5fbd388d642fc 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/viewFactorsDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/viewFactorsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/g b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/radiationProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/radiationProperties index 4f5d9fc28162baaa14998048f1f2cdef3936b067..4966d56d6fb714a3f65c2c64698037cd62cb245b 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/thermophysicalProperties index 604d11c91ab22cd5d1ba9f96bf70ab948e5c7f10..58e39ac4d76685741496dc57ec1e8d2f29595fed 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------* \ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/regionProperties index 889bb2cbeed96dbd04dbc9332d9bac8b5067bd14..d8463c3d423579d7a5fdcc0f598687523d278ecb 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/topAir/boundaryRadiationProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/topAir/boundaryRadiationProperties index 6d9a3a1c68e771664b8bfac7788768901a20db90..06d9c58dd9130e38030a05553e818b25baab9ebf 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/topAir/boundaryRadiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/topAir/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/topAir/viewFactorsDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/topAir/viewFactorsDict index af1a3f59618368c104b1425beeaa4e255c75da2d..d9acc61a61edd190f34ce9feaaaa9f6a3fdcbaa4 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/topAir/viewFactorsDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/topAir/viewFactorsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/blockMeshDict index c4f51efc628fce49ed7fe16af6289b93bdf88ff1..e12efd24f2cea79e67759e0873af7ae7ff67067c 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/changeDictionaryDict index a85bb0883985baca18b0fdf166690d36d753d3f9..3d41d9b1b605af30a1b19efc6bb14e6919d7eb5f 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/fvSchemes index cc397d887cb8df6a99ba8e5637d9f32c27c53b37..9972466ee9fa268c7b5788b82af67cf6d018510b 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/fvSolution index 043f70fec760cd6ed29e59bbcf65edb10bd294cd..5823f5a9a592d45324659c148282a8ce04046b1a 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/bottomAir/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/controlDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/controlDict index 8df62d8b0b870baab37bd7143ac1f817663853d2..a64433080c528756a22b6440bda011d90f799d1c 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/decomposeParDict index 7ffd26e8296f8856de3331bbb0eef624ca6fc9d8..9a00a559f49348c8a9347c6580374c3bb9585a0b 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/fvSolution index c67ffe5d2e00fedacf0926fef11262ee89d4096d..db196f13cfb9190243b984fc047ea9bda542b967 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/changeDictionaryDict index abcc66bf172cc0a35c473f84d8a9e9364541ad15..d84424e7f04998c47baa3c3864620e8f51e3e7e9 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/fvSchemes b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/fvSchemes index b7acf35fd7cdc632df5a3bbdca6628d9be43070f..0839a98bd96b5a6cfe4dbc037378bb645cd25c22 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/fvSolution index 50512b4aa5cbde62f26224b0916e40313596626a..3c7b8f4bb2a654a6875c5710973c6ebbe615ca50 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/heater/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/leftSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/leftSolid/changeDictionaryDict index 29285941710ac68061162bbb7a1a94acf396b48d..aa7ed0df0d4c14ca3c65bb7d29d2ecd0c589a598 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/leftSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/leftSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/leftSolid/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/leftSolid/fvSolution index 50512b4aa5cbde62f26224b0916e40313596626a..3c7b8f4bb2a654a6875c5710973c6ebbe615ca50 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/leftSolid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/leftSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/rightSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/rightSolid/changeDictionaryDict index 1f350398bae2aff554e156ab8312be77ab7d94e2..931385a34dc18113db3e10aecbf76709e631d3f2 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/rightSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/rightSolid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/rightSolid/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/rightSolid/fvSolution index 50512b4aa5cbde62f26224b0916e40313596626a..3c7b8f4bb2a654a6875c5710973c6ebbe615ca50 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/rightSolid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/rightSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topAir/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topAir/changeDictionaryDict index 74a580c1125db6a7d72b8fb5eae37f43a82356dc..ed3c58a2dc59022d95e98e6c1926b45383012c42 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topAir/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topAir/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topAir/fvSolution b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topAir/fvSolution index 043f70fec760cd6ed29e59bbcf65edb10bd294cd..5823f5a9a592d45324659c148282a8ce04046b1a 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topAir/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topAir/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topoSetDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topoSetDict index e175b6c6d8c29f7d5e67463099a416ebc1ff1297..e923d3017a1c62367a2585adf0fd2b71f765b640 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/solid/T b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/solid/T index 21e5dad813e928bd03bddb5d2c14b391414deca3..ccd7d3141092b6354a2fb439087775341349e9bc 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/solid/T +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/solid/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/solid/p b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/solid/p index 4e7415afbd42f5d700c17191741d1e22c89ba04a..7617d2ea3a8a2b5f92c7fe0ff27bc58ccd0a72d5 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/solid/p +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/solid/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/T.gas b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/T.gas index 925499b8c7b3fe94cded06489f409b9e015d77d9..be22c8577988c2a9f7df162c62d31423c07289ab 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/T.gas +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/T.gas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/T.liquid b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/T.liquid index 8a85d0b3ca8dd32edc7b507d886eefb8ce8c1f99..c43c7e404455c8f9eb3c43e64f23906c4b38b3da 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/T.liquid +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/T.liquid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/U.gas b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/U.gas index 82d7864858cb4d25f79de691ee6925b3e3b1438c..a6706e59c4bfadf501d4a40c54997235ff51e576 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/U.gas +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/U.gas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/U.liquid b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/U.liquid index fa23c9c6fa10af4b52c8eabaa1f1565143d90936..53abab16df81002523d26595eb8a23a3d1022058 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/U.liquid +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/U.liquid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alpha.gas b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alpha.gas index 4cd64c8ac00575390584c8786bf5efb386d8d38a..f503599832bca4698c215d4b9b59ac19c85acf98 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alpha.gas +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alpha.gas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alpha.liquid b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alpha.liquid index 0d028ade94cb24b5f0068e3c30ce3b8e667bbbc6..395334e525f8a01c81aeb9c326365531654adb1d 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alpha.liquid +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alpha.liquid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alphat.gas b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alphat.gas index dd1adf1b32d2ae688a9a3d708c34df228babc74e..d8f53182bfdefd178688c1058d282503d9c6cc12 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alphat.gas +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alphat.gas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alphat.liquid b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alphat.liquid index be7940df8e2ad263e0365b76bccaf18726de5bc2..f0f051ea960b3037bfedbfec24e1fbf17789db85 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alphat.liquid +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/alphat.liquid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/epsilon.gas b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/epsilon.gas index da06223e8918a636943ad7a0820ab7c066fe70a8..fc708fe25ef4929920460ea4d4a65ef223050fe2 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/epsilon.gas +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/epsilon.gas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/epsilon.liquid b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/epsilon.liquid index 0ec178c1f6f816e57da9de8027d04e9605a2bc03..51850af2515a5d3d61ff197f35a96b10aee503c4 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/epsilon.liquid +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/epsilon.liquid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/f.gas.bubbles b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/f.gas.bubbles index 39323eda966fbdd0437dc68e47eec0e82ab85717..410ab6dbab86e3ed2ca9b9c94a1eda7ce335b341 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/f.gas.bubbles +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/f.gas.bubbles @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/k.gas b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/k.gas index a41dd74dcedcb5bfe37ee121f7f5edac65b4569d..ba56901ab61fa9be3386c3ab3b66321ad4cb334c 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/k.gas +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/k.gas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/k.liquid b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/k.liquid index 0eadb03ece0ec01adaa22ee693d9123180d2482d..a5a22a67293b09c11703f403796bf1266b000eb5 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/k.liquid +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/k.liquid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/nut.gas b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/nut.gas index de608ff647d2a633af09501ae1a909ca0c2f1236..d219f64751477efbf3f3f6c88b349c7f36e94b0e 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/nut.gas +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/nut.gas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/nut.liquid b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/nut.liquid index 73b19caf482fd198513f312135fb5661363c7ac9..79d1416f0fa11f7d6c66ad34b3dea11b98788c58 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/nut.liquid +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/nut.liquid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/p b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/p index 7586cd6718b0d3f603fda6166c3376f80161cd5d..857f2a6882a81ca55585d376e7273684a5d15581 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/p +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/p_rgh b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/p_rgh index 68423bc5cbabf1049c52a0a23008dcd662dee9de..167d47079b7dd1f5ebe2430088e311ae63aef69f 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/0.orig/water/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/g b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/g +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/regionProperties b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/regionProperties index 4e54237e96ea1dece4a5e9f86c6c6bedb09f01f4..3bcd6c1402918f1ca6567703790a6a3dbc0a7d4c 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/regionProperties +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/solid/radiationProperties b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/solid/radiationProperties index 439eaa9c891f0a40a0d772dfe1b6c76b82d848f9..faa5b9558b5b73137b2176bbd94034da064401a3 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/solid/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/solid/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/solid/thermophysicalProperties b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/solid/thermophysicalProperties index 2dba787cdb81675d2a4b678729cb7dd39e3456c5..d817bee3b0ef6d80e702b49048142545923bded8 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/solid/thermophysicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/solid/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/fvOptions b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/fvOptions index dcf7094a062ac479a9c598f530dcdbac08e573e1..c3b2eb75cd1ded5e098a4299f4f8e7b9f1dc58f3 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/fvOptions +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/phaseProperties b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/phaseProperties index acc71f7e9860565c0b63f153601e4c196196a044..ba637ac600ee3b90dce8aa5c89973094fe059191 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/phaseProperties +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/phaseProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/thermophysicalProperties.gas b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/thermophysicalProperties.gas index 8d6d9d935c0d12200e8cf511e487bca5a16ec2a8..f8b41508a771a4abe4bd9b4f9ed4c91076022e0f 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/thermophysicalProperties.gas +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/thermophysicalProperties.gas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/thermophysicalProperties.liquid b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/thermophysicalProperties.liquid index 462ac05490c2c94f58723bb5440584042542d71b..17e5b27580554a2598c3b67e0c66a5858bb5d7f1 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/thermophysicalProperties.liquid +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/thermophysicalProperties.liquid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/turbulenceProperties.gas b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/turbulenceProperties.gas index 3d87c37520412e10a68562df653ae5cccb82cbe8..efdf24bec1fcfe4d2a12593dbb5c1004f1f58993 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/turbulenceProperties.gas +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/turbulenceProperties.gas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/turbulenceProperties.liquid b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/turbulenceProperties.liquid index 71c60c8be40ff389048aaa3733a0e3350b909ec2..455f370fc254123ba05d6130d13b9d4422658b52 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/turbulenceProperties.liquid +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/constant/water/turbulenceProperties.liquid @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/blockMeshDict index 4e6c7f587e0911be67f5418db6373c794fdb4018..42349ab46eb057c363df9170eb7fd3f71518337c 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/controlDict b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/controlDict index f7d793558f97a0df9ccf19e5653e1b556062aa4b..f922378de5f57044f360a4e718b3c7acf0a8c6f6 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/controlDict +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/decomposeParDict b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/decomposeParDict index f64c40843ff9925b832c1f4147a5f4ee7c18ad04..b70a66be9dfc479cf54c4ab8083a9b12206abb56 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/decomposeParDict +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/fvSchemes b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/fvSolution b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/fvSolution index 2f5abd0344d1365a722c1328ebaa037dfb164d2f..77a0889c827145fa2a2f73b85f8503f9cc3f08da 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/changeDictionaryDict index 3d49d60a23dbea2f726a52028c055c7a56cfc049..a65c9b91ee0390fd0e6881ecb3bcfc9efa8d8998 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/fvSchemes b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/fvSchemes index 97b96c4d7c82b5685490d65840e9f6fe4560a174..9129a42d09476043e608abb7639221faccdb22bc 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/fvSolution b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/fvSolution index 735ce18dc6ce9cbc64ec9c30310da61a807030ba..868f702458bd53a60729b457d231ef817dcd464c 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/solid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/topoSetDict b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/topoSetDict index a3c539c10b06452f83e0d981ac0bb097891a82a6..776cb5428fca4ba6c196b932e1b504a7e05f3d88 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/topoSetDict +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/changeDictionaryDict index b4959c353d7c017d33a3bf255080d51ee789903d..414575425034c744025eb6264f8d0b36e9f5a7a8 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/fvSchemes b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/fvSchemes index e313be084d5d1cf665b7db683be28d3948e40982..28e3f40c6488712f5ccfea33cf67ac735941ff3d 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/fvSchemes +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/fvSolution b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/fvSolution index 3384866b35c61f24f6d1b78174d09442af312ef4..a0463d2a8c9ae870b87304f3d636a3c47221d17e 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/fvSolution +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/setFieldsDict b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/setFieldsDict index 089bfdeea3d1bc6a1cbcffce7b8e11885bf4eb55..5cf0e68e197e31cda2e2c7e108fb953fa29df00a 100644 --- a/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/setFieldsDict +++ b/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/water/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/T b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/T index 5786b193f9dc5266fb74467eef46b4f43b2880a8..466297528304e17d3a94c812849f3696ccbd7a63 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/T +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/U b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/U index d5a63115f6c6af22448253e489b59a35d4ef268f..1efef848d066b59c3f6e1b5e53a3124e0f64e9a3 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/U +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/alphat b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/alphat index 1d4f799eb6f86388398c194c2b7f4c0e7b98d2d9..c8f6ad7fe955c5315e281fb42159f5d2d455f302 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/alphat +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/epsilon b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/epsilon index 5b3e7b2533006e29ee19057e038d7487b99e78ea..7db964893676085c6a8557e278c9bf5364f1238e 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/epsilon +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/k b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/k index 2f3c0c8e9a8b0d27f3f28b82356fda7b61c4bbcf..348d56ed0f55c68e16f03b3df029b60de44d7aaa 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/k +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/nut b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/nut index f766da71807f82abb6ab9554e582856234ed892a..a4923a8f751b946120763609866d6103b5bc0b51 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/nut +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/p b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/p index 5d9f90800e165def7cde4e396949bc1c5b3c5aba..826cb622f7fdf820f1d636700d473d691ac9a52c 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/p +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/p_rgh b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/p_rgh index eac944c426200fa42540e915acfce0106585828b..2cb3e1b49f81384813a37e390d9e252bfa1bf601 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/p_rgh +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/pointDisplacement b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/pointDisplacement index 39a5fb6f1f47ca5a49861fd8e35ae39e7793205e..a2980d906cff28a6c2998a676545327b738757b6 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/pointDisplacement +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/zoneID b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/zoneID index 0e4c18e83fbe45bf60b5ce091932b7f556556706..05716dbe71e8480324d5ad8dfafe5ea839224183 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/zoneID +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/dynamicMeshDict b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/dynamicMeshDict index 61d26fa0b5138e89c162da37de928766d25a3dec..f00475ceea292fb86d3d9e6b5f721812c6084f55 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/dynamicMeshDict +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/g b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/g +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/thermophysicalProperties b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/thermophysicalProperties index b1c082c71301b9c143c0ef0e5633ca5a589b6826..77cb2d8862693e72e29bea92bfd6cae2d1b6d9e0 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/turbulenceProperties b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/turbulenceProperties index 494299f02d9302c2036d737b2b225eece0f0ad28..3879592d09d90e434588db582429d6613e077026 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/turbulenceProperties +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/blockMeshDict b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/blockMeshDict index 417740d98fa11d48dacc61bd43fc5d663144a470..42bad60a65f4c7e7aa5e4993448c1c0bd2c4bd97 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/blockMeshDict +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/controlDict b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/controlDict index 16feb8af3d86a582a464e3d0c6c5506f30250796..3abca1ffef7756f926f585d9e0d37eaf81bc82d5 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/controlDict +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/decomposeParDict b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/decomposeParDict index cf6d208f01a50c2c6befc08ed6e7872db2ad0cea..99b3f6a0d2b8487757d08f552a0110e469e76f1b 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/decomposeParDict +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/fvSchemes b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/fvSchemes index d1ef7fee8f173f73236f09bb3eef2277f09152a3..38d82964885d47a701255c9e0b9c6933e9515926 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/fvSchemes +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/fvSolution b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/fvSolution index e1b385a08fc65020fc1ed88132ec8d029cee2422..33a43e801950171111d0ea31a8abad58db6af02a 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/fvSolution +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/setFieldsDict b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/setFieldsDict index 99bee0020b6652fbf0f2f06f638aca8ff38253e5..623e20cd2b73d7f8d4b33e26ca4066e7b746c9d0 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/setFieldsDict +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/topoSetDict b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/topoSetDict index 57550201bfe6c04310edf7354d325aab19225ae8..978cac8ef2d26110f06f5ea61c387eee29ab9944 100644 --- a/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/topoSetDict +++ b/tutorials/heatTransfer/overBuoyantPimpleDyMFoam/movingBox/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/solidFoam/movingCone/0/T b/tutorials/heatTransfer/solidFoam/movingCone/0/T index b04df55b1572bcf258afb67d41d07ca093b13896..b0c205e45a52a7d4098f28a0dd8620857c980bf7 100644 --- a/tutorials/heatTransfer/solidFoam/movingCone/0/T +++ b/tutorials/heatTransfer/solidFoam/movingCone/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/solidFoam/movingCone/0/U b/tutorials/heatTransfer/solidFoam/movingCone/0/U index 4b5baa6359a5aaf09217429663b41f05c1d9c0b6..e13734dcdbc778d1277d56e6088a38f911549acb 100644 --- a/tutorials/heatTransfer/solidFoam/movingCone/0/U +++ b/tutorials/heatTransfer/solidFoam/movingCone/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/solidFoam/movingCone/0/p b/tutorials/heatTransfer/solidFoam/movingCone/0/p index 51a0f872ac0160cd407a613698fca5a7cc88d263..38696b78958464e63831263288b9d2b521fdacc9 100644 --- a/tutorials/heatTransfer/solidFoam/movingCone/0/p +++ b/tutorials/heatTransfer/solidFoam/movingCone/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/solidFoam/movingCone/0/pointMotionUx b/tutorials/heatTransfer/solidFoam/movingCone/0/pointMotionUx index a4079e8dd73baad1de0f4fad49c074b63866c9c9..7b1f79028741c8aced769a6be22d7bf304f9f514 100644 --- a/tutorials/heatTransfer/solidFoam/movingCone/0/pointMotionUx +++ b/tutorials/heatTransfer/solidFoam/movingCone/0/pointMotionUx @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/solidFoam/movingCone/constant/dynamicMeshDict b/tutorials/heatTransfer/solidFoam/movingCone/constant/dynamicMeshDict index a31c84ecfb1e22cb2643f0215850d24a68b41199..828c8be96641f18d413a1b65765f4ab16b8b893d 100644 --- a/tutorials/heatTransfer/solidFoam/movingCone/constant/dynamicMeshDict +++ b/tutorials/heatTransfer/solidFoam/movingCone/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/solidFoam/movingCone/constant/radiationProperties b/tutorials/heatTransfer/solidFoam/movingCone/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/heatTransfer/solidFoam/movingCone/constant/radiationProperties +++ b/tutorials/heatTransfer/solidFoam/movingCone/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/solidFoam/movingCone/constant/thermophysicalProperties b/tutorials/heatTransfer/solidFoam/movingCone/constant/thermophysicalProperties index a5347d57ffc57962d9e9393f9fa5f53c012d883a..16ef0b9b1dd83a950c340b7853bfc1ad0af398c0 100644 --- a/tutorials/heatTransfer/solidFoam/movingCone/constant/thermophysicalProperties +++ b/tutorials/heatTransfer/solidFoam/movingCone/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/solidFoam/movingCone/system/blockMeshDict b/tutorials/heatTransfer/solidFoam/movingCone/system/blockMeshDict index c381a7e0b6bc8a67c944b1d9802da8900d609135..166889d5efc26981554ba17083d760cc79328950 100644 --- a/tutorials/heatTransfer/solidFoam/movingCone/system/blockMeshDict +++ b/tutorials/heatTransfer/solidFoam/movingCone/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/solidFoam/movingCone/system/controlDict b/tutorials/heatTransfer/solidFoam/movingCone/system/controlDict index 9df0e6103b3fa9f5e8a648a552c8a79b294ab0b3..5337bada1ae2687a4e2664ad21dcd33af08fe5b6 100644 --- a/tutorials/heatTransfer/solidFoam/movingCone/system/controlDict +++ b/tutorials/heatTransfer/solidFoam/movingCone/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/solidFoam/movingCone/system/fvSchemes b/tutorials/heatTransfer/solidFoam/movingCone/system/fvSchemes index 57f867833b5187d55c4b398d6b75693a8d3e6281..725cc88b45f124db600143fdd9e8df98afc2c7d0 100644 --- a/tutorials/heatTransfer/solidFoam/movingCone/system/fvSchemes +++ b/tutorials/heatTransfer/solidFoam/movingCone/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/heatTransfer/solidFoam/movingCone/system/fvSolution b/tutorials/heatTransfer/solidFoam/movingCone/system/fvSolution index 8dcbf6657e62906866dd6221987dbea90161c316..ebf7b91fb2de75d3c3ca41152124057f9923d390 100644 --- a/tutorials/heatTransfer/solidFoam/movingCone/system/fvSolution +++ b/tutorials/heatTransfer/solidFoam/movingCone/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/Urel b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/Urel index 816e3cb822c8f0eea993c8cbb6ddde3c1ba206af..5b020febc76721db525f5b1fdde478dc641af032 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/Urel +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/Urel @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/epsilon b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/epsilon index 0d7c33b94b679b9e86adecf012abae389e9db9aa..ebd2c4f62c1779fcd6c0e260b9d90fc8a1700c0f 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/epsilon +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/k b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/k index 522c98c589f7aa221f80cf879749a7abfed6108f..f0c8d3339c8a51cbd879f5993d35903be4db37ac 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/k +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/nut b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/nut index 8b311b643b7d287f5411cb8a4185c412d9556a00..9200ce9f2bcda8637c7f2bd2619a4e91f6010d3a 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/nut +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/p b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/p index e5204bab9888b762f74d633533dffc8774d8845e..ddfb0a02c6513ca4430c3060825f2515ec69c496 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/p +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/SRFProperties b/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/SRFProperties index c3dc57a7bb3f0891c11f8ff6f78922731e2bcf61..509967cbe4a6ec1c55765f0bf221770fe26ab13c 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/SRFProperties +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/SRFProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/transportProperties b/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/transportProperties +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/turbulenceProperties b/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/turbulenceProperties +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/blockMeshDict.m4 b/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/blockMeshDict.m4 index c67a42dd71eadf54b2db6f8e0c386a40de7bbd18..06ed19cdc598896f8c2e5c2acbea741ff3e6dbb8 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/blockMeshDict.m4 +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/blockMeshDict.m4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/controlDict b/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/controlDict index 7fbbda31479d2e85f128872c5d0e9a487b832ef5..9138ea730efd000c10493bd0453181b54b464ad3 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/controlDict +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/fvSchemes b/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/fvSchemes index f2ae022b4509721838e6d70550f636418d5c7758..f86943d17498eb51b0e139a4f381fcd0fbb1ab6b 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/fvSchemes +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/fvSolution b/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/fvSolution index 8d0e1f8cf90bd0b7d9e02ea45cd8750ce9841270..41598d12663a2031fcf093a0d10ff4f14fc7368d 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/fvSolution +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/Urel b/tutorials/incompressible/SRFSimpleFoam/mixer/0/Urel index 4c0f049b80cbe3494855ed718be4d81c4ed73c00..9f6ab8ce2c68f4d05f1f1b4e7067467fc3590bed 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/Urel +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/Urel @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/epsilon b/tutorials/incompressible/SRFSimpleFoam/mixer/0/epsilon index f74858a6cb902ca79ffd4d835b07911c045abc0b..7a1b595a423639188c0e0523fe3be657864a537c 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/epsilon +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/k b/tutorials/incompressible/SRFSimpleFoam/mixer/0/k index 9193766b9bab13f23a1b9749933023db555f8017..d8bebd68e5e15334e34710065793358552c5728b 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/k +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/nut b/tutorials/incompressible/SRFSimpleFoam/mixer/0/nut index dbbe0182bb38b5df22c4595313cb6bd5e5914161..ed599c77fc0e7eda26a24fb18eb8068510a5e870 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/nut +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/omega b/tutorials/incompressible/SRFSimpleFoam/mixer/0/omega index de416da010f0cdc82351c8c8150f50d26e0d9be6..44170dda33dfe32d5aeb4a53e1a54d2192e07d75 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/omega +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/p b/tutorials/incompressible/SRFSimpleFoam/mixer/0/p index 68ff559f12eaea32c04588b91ff667250f811fcf..6b25b528bd47957ead250110703ff9dac99dd04a 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/p +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/constant/SRFProperties b/tutorials/incompressible/SRFSimpleFoam/mixer/constant/SRFProperties index 9c156f16c5e5f248f491d999123c7488d784cbcf..abbe6e9060d2452b6a8ac96f89cf53e2f2419b32 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/constant/SRFProperties +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/constant/SRFProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/constant/transportProperties b/tutorials/incompressible/SRFSimpleFoam/mixer/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/constant/transportProperties +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/constant/turbulenceProperties b/tutorials/incompressible/SRFSimpleFoam/mixer/constant/turbulenceProperties index c1d5ac10f3ff6401c6ced11b5eb7d12a818ee895..eb61d1626b61da0457322e05072c0235aed11840 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/constant/turbulenceProperties +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/system/blockMeshDict b/tutorials/incompressible/SRFSimpleFoam/mixer/system/blockMeshDict index 8458a6ba9b91ca2d52dfea2247516433f809a8d7..65552e629424b49f9a2b43f99a49ee21ec21016b 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/system/blockMeshDict +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/system/controlDict b/tutorials/incompressible/SRFSimpleFoam/mixer/system/controlDict index 9ea5622cd201ee8cb25ba8e0b551920d87e12c40..1d72f9860fcfd49566d4017121770d4461edf2c9 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/system/controlDict +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/system/fvSchemes b/tutorials/incompressible/SRFSimpleFoam/mixer/system/fvSchemes index 2f0112dd891d9397a376111e41a312f3be25992d..ff5dfb535b101e86941bf0f0297c64695338e259 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/system/fvSchemes +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/system/fvSolution b/tutorials/incompressible/SRFSimpleFoam/mixer/system/fvSolution index 4f2b3da0a02c0401dd4ddeb7b6bafff77be9f705..2abed808ecc8b70a0cd7f3fdbdb9c76053db76f6 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/system/fvSolution +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/U index 75f7136e70d1e074c39e4a1ab6529b4d926787e0..b6d3eab978ce87410e3bede4321c211d66491165 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/Ua index c3819681453dc6938e5bf635c8b85b4186590b1f..84abbb57f0b9af6465eb773593a36f08f86b7417 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/fixedInlet b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/fixedInlet index 125fbb7bc20e6e06b7203d3c70e0bc77b6db089c..0b9fd7ef7f399378c34ccc6a4f7c8f0d4e44c984 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/fixedInlet +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/fixedInlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/frontBackUpperPatches b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/frontBackUpperPatches index f17a37762cf61bf0ddd1eba9777f547f2d88f22a..fa7bc41e145dcb207d67d751d8b505f3a1c9356d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/frontBackUpperPatches +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/frontBackUpperPatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/initialConditions b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/initialConditions index 57eeb939a4ddf5ec0b9266ca8bf11e05d8e180aa..111faddea5e5dc0fcb71fd2e2686137808d5ccb5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/initialConditions +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nuTilda index 50e1881dd9964184a6a09f5e630c1eec76b757c3..ee0d9401010ce387624304ddc0de1caa8e06d84b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nuaTilda index c503c3cdb4095d026719ddeedb03033d6ae42fca..f81923550d293d09a313b7fbd57e4a41480a3c82 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nut index 6f4e2201c0b81ee9a696f4a466ebba15bcb2d294..47c2bd7459a8429bf4e06e4c9f7ac41019ac6d97 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/p index 29d63c931abe6de72ca82bcf83445f3140e94ba9..9f2c2adcf4789d9f68d544a1f9a4a43d7a23fea4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/pa index 672c43553fcd79cca90258b616c2cfc6f92530f9..c80240262a2139e22a6fa743ddb01c2aae0c33fd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/adjointRASProperties index ba5b7c44600c1b5f947fd2867c6b653bb58a3313..bc8fdb6e0946c1f9d7669a1c409c82d03d50039b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/turbulenceProperties index d4c98ceb159da3bf57588fbf8363f8b0f3050dbc..f948cef11346e8e4eeceb562da1b1db709bfb1ad 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/blockMeshDict index f4917ff1e296247958efac413496ab48e3335c5d..d4d2af2af075eb52c2773d9c8eaee12bf29f23be 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/controlDict index c362da910be470fca5a34a2be48df0eac3c8a833..af358c7a2d9d7b2b3d924b654e10b9e145f88b78 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/decomposeParDict.20 b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/decomposeParDict.20 index b339f02ae5774a0ebce6be081f734be52a7723e6..3ee658daebb7256f58d273f7da476803cdeb49bf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/decomposeParDict.20 +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/decomposeParDict.20 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/finite-area/faSchemes b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/finite-area/faSchemes index 0a1dd397109a23290150696e7f3949f5bfd1aede..0463644dbdecc5deb962a3706c1c4c27745d874f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/finite-area/faSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/finite-area/faSolution b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/finite-area/faSolution index 53d3e0a73ad31824d9260541bc66f7eb61bf5c10..292bb2df29c4956ce165f0e042615b91a3351fa8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/finite-area/faSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/fvSchemes index 4b4541dad9f44558079cc3c2dbbf25cf6a789588..c22964e99ad79e1fafa27b09ae13373e39805fb2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/fvSolution index 93b77d84e0136436e6f71c66cd1c831c58754de0..2ee028aecbd3660adf4c23df88d33f3ddd0c09a6 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/meshQualityDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/meshQualityDict index c5e4f5ec15c6034ff30f9db5de96234df3a6ec4e..ee087e0e5c7bf5fb3881011fb1598317d242cf71 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/meshQualityDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/optimisationDict index e3891131c7c3c1c5ef8abe60c6e246173c9d4669..3862a40f06777c02815565fd43ff67368a7b5cb8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/snappyHexMeshDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/snappyHexMeshDict index 5de18588eb3180e1e5399912749c275f3bdfc786..74ed0a3dffbcc88bb3b4058137bb9626426c0dad 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/snappyHexMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/surfaceFeatureExtractDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/surfaceFeatureExtractDict index 6a8f29e7874e69730a9d6905901d59bdbe0cce2d..afeb9d614ffe2f3b5b4fc56b4741a0bc7ef4f31f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/motorBike/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/U index 1421a47d3ca2b75f09e57c5821dda17c49d19474..124f2d5cd878195743505a65acb9e0a69a7a0478 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/Ua index 269baa0d67372c90db7bf0b1f67ed1b6ea105448..869fad72f3b63bc4ab7808d400e58c081fd66aeb 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/p index 50225904e7753b342252e2355746bfb2e4feed58..0e515f20eec42c270e3e75bce6b412c9d5b81e49 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/pa index e18e982dc6ab3045a1186f06b5b3127d359be90a..9a89fb7baddcbcf70340167825fa393b937596e9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/transportProperties index 0a8851c266d0df9231c3e83f3710160772cf0acb..6891050301420f07b9f0757df344e7e2d54e1d26 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/decomposeParDict index 198c2d71cff9da515f59eb43fac085a0ba23c11a..513677e24d0b31b4ba15d1c7fa8b67040653dae5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/fvSchemes index 24c883d1f4cd5211865b19b671c3c2fbe71b3654..48e47accf88c249a9c0b49e4b56af3f242adf6a2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/fvSolution index 4e36e6178580de6ae2b05c1933df21d8df3293b6..c6aa962dd743283fbdddc49e8ad9869e7e1cd356 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/optimisationDict index 9b28fe7b22a10b291444d9948ee4774bd6898f95..bc73c391dc8e21d53481d642f4e85044744596b6 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/drag/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/U index 1421a47d3ca2b75f09e57c5821dda17c49d19474..124f2d5cd878195743505a65acb9e0a69a7a0478 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/Ua index 269baa0d67372c90db7bf0b1f67ed1b6ea105448..869fad72f3b63bc4ab7808d400e58c081fd66aeb 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/p index 50225904e7753b342252e2355746bfb2e4feed58..0e515f20eec42c270e3e75bce6b412c9d5b81e49 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/pa index e18e982dc6ab3045a1186f06b5b3127d359be90a..9a89fb7baddcbcf70340167825fa393b937596e9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/transportProperties index 0a8851c266d0df9231c3e83f3710160772cf0acb..6891050301420f07b9f0757df344e7e2d54e1d26 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/decomposeParDict index 198c2d71cff9da515f59eb43fac085a0ba23c11a..513677e24d0b31b4ba15d1c7fa8b67040653dae5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/fvSchemes index 24c883d1f4cd5211865b19b671c3c2fbe71b3654..48e47accf88c249a9c0b49e4b56af3f242adf6a2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/fvSolution index 4e36e6178580de6ae2b05c1933df21d8df3293b6..c6aa962dd743283fbdddc49e8ad9869e7e1cd356 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/optimisationDict index 31cb417773c1540a4ba5d1e0aac3b15d2a2c5ad9..5832ed4584e0b42eaa734a1921c9aad80d6f5b25 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/lift/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/U index 1421a47d3ca2b75f09e57c5821dda17c49d19474..124f2d5cd878195743505a65acb9e0a69a7a0478 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/Ua index 269baa0d67372c90db7bf0b1f67ed1b6ea105448..869fad72f3b63bc4ab7808d400e58c081fd66aeb 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/p index 50225904e7753b342252e2355746bfb2e4feed58..0e515f20eec42c270e3e75bce6b412c9d5b81e49 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/pa index e18e982dc6ab3045a1186f06b5b3127d359be90a..9a89fb7baddcbcf70340167825fa393b937596e9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/transportProperties index 0a8851c266d0df9231c3e83f3710160772cf0acb..6891050301420f07b9f0757df344e7e2d54e1d26 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/decomposeParDict index 198c2d71cff9da515f59eb43fac085a0ba23c11a..513677e24d0b31b4ba15d1c7fa8b67040653dae5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/fvSchemes index 24c883d1f4cd5211865b19b671c3c2fbe71b3654..48e47accf88c249a9c0b49e4b56af3f242adf6a2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/fvSolution index 4e36e6178580de6ae2b05c1933df21d8df3293b6..c6aa962dd743283fbdddc49e8ad9869e7e1cd356 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/optimisationDict index 1a35a7d29547e0c0ef3f1d30512fd1fa3d758aa6..bf3a7e64922d0bb1ce998d1c7df0af58ae0f2c5d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/laminar/moment/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/U index b038e0544fdd2cd6561c7d9da0723553311361f2..640a7fe9c56250b82c2bead33003131774b404a2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/Ua index 269baa0d67372c90db7bf0b1f67ed1b6ea105448..869fad72f3b63bc4ab7808d400e58c081fd66aeb 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nuTilda index e2a940d921cef631b1e992877ca983159dce9571..45f6e0119e51713f79b358be1bda063737a6eaed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nuaTilda index f46aa08c11baaf805a76f969302370f926961e3e..474409e29404e374cbbd70e089f2923f8b346072 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nut index 459f614f91e7ec58acc481ec01213624a797702d..0816b2fbf533abd2ff79a0d2985661f0e8cd9a44 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/p index 50225904e7753b342252e2355746bfb2e4feed58..0e515f20eec42c270e3e75bce6b412c9d5b81e49 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/pa index e18e982dc6ab3045a1186f06b5b3127d359be90a..9a89fb7baddcbcf70340167825fa393b937596e9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/adjointRASProperties index a5b6e457df49d2829ae15227cc5519afa0985ec5..f4039a43fc12974095cc1a31fd6cc0bcafeb5054 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/transportProperties index debc2981385ad46c203d62e8a4b08ec71da64706..69783f86bed5a993b335f16a84c8a994f9c96286 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/decomposeParDict index 198c2d71cff9da515f59eb43fac085a0ba23c11a..513677e24d0b31b4ba15d1c7fa8b67040653dae5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/fvSchemes index b80e59a2c2c9aecce953151956e0f92da56cf68a..928722e91a5efc9ccec35a6acd98ce59f27e1447 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/fvSolution index f5b8b594a24f525586c9cf89e5a937533d4a0dff..ff376a2fbf649347ecc710c0b90d6f3c23563533 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/optimisationDict index c2c27f3452d498881fbc5a87e18d09a1fc6e839f..08e018433378d0737f26f222d0295a33f40ca7a0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftFullSetup/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/U index b038e0544fdd2cd6561c7d9da0723553311361f2..640a7fe9c56250b82c2bead33003131774b404a2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/Ua index 269baa0d67372c90db7bf0b1f67ed1b6ea105448..869fad72f3b63bc4ab7808d400e58c081fd66aeb 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nuTilda index e2a940d921cef631b1e992877ca983159dce9571..45f6e0119e51713f79b358be1bda063737a6eaed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nuaTilda index f46aa08c11baaf805a76f969302370f926961e3e..474409e29404e374cbbd70e089f2923f8b346072 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nut index 459f614f91e7ec58acc481ec01213624a797702d..0816b2fbf533abd2ff79a0d2985661f0e8cd9a44 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/p index 50225904e7753b342252e2355746bfb2e4feed58..0e515f20eec42c270e3e75bce6b412c9d5b81e49 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/pa index e18e982dc6ab3045a1186f06b5b3127d359be90a..9a89fb7baddcbcf70340167825fa393b937596e9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/adjointRASProperties index 7cf6a792b9369ca7ca83cf55290a452980a48d74..3b44440ff67995667e7fe31fe7403d139f935666 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/transportProperties index debc2981385ad46c203d62e8a4b08ec71da64706..69783f86bed5a993b335f16a84c8a994f9c96286 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/decomposeParDict index 198c2d71cff9da515f59eb43fac085a0ba23c11a..513677e24d0b31b4ba15d1c7fa8b67040653dae5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/fvSchemes index b80e59a2c2c9aecce953151956e0f92da56cf68a..928722e91a5efc9ccec35a6acd98ce59f27e1447 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/fvSolution index f5b8b594a24f525586c9cf89e5a937533d4a0dff..ff376a2fbf649347ecc710c0b90d6f3c23563533 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/optimisationDict index 1262abb5d64bd293ec815273154c1556c8f901a2..4a3c36dc7df025be3db56af53c48ad00589afdf0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/naca0012/turbulent/liftMinimumSetup/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/U index 1f7cee56a7bf0b5abe4d1158f971f85eb67a964b..def0f630d063d517f3248e61bde9daabeb19db90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/ma b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/ma index f6c553d3458b1a3ae263ab31900f13bba7aedd8d..88167e4edd77144532a6786a9ba4a5abbe191d11 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/ma +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/ma @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/fvSchemes index 7e569858c592794c0443d14b31de3f912389d98c..d2bdf9b6b3f19a61ef6210ff1b46f7a9728e73e1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/fvSolution index 0de721c687e235264061eece7eeaabcc33a14e24..d3a22f7083be8dcee884e56abbe182939edcd183 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/optimisationDict index 82a62d49a2f8df54a4599f0da3bc54aa1037e79f..2d5e9005b86e1208b94546d2f580c560fde3120f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/laminar/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/U index 6885b21a9883f8898f1cb1bdffc79f2ddb12aea0..ea3f3617e442807762e066ac498ceff4bf1f2dfd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nut index a6372ffaeaabffb47b7b56a722f996e3e9d511d3..f773be2c883d91624d640c713619361579786c3c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/adjointRASProperties index 7cf6a792b9369ca7ca83cf55290a452980a48d74..3b44440ff67995667e7fe31fe7403d139f935666 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/fvSchemes index e5fbafe5a7f43ef5fbcef9c16c600437d54c0e33..ca6679e1aca5b1fa9735a74125f991c4866a17c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/fvSolution index cd9e178c77517147341f5aa4064aeaadea6d3dd1..fc3d865b7e7030a429f17fd885c19cc3045713e8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/optimisationDict index 3a723a79737e79a16b18cc0512982947b53f68de..a1f4f7624683a7ff4312489b5f90d40606b97c16 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/highRe/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/U index d0bd9865debd89a4286581a2e86b8b32f1c2dcfc..1f9cf4c17034dd5107174b7e8a7a8e1e94e9ca38 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/Up2 b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/Up2 index 6d420622c18b108aeb53ad2103d03864ceae186a..0b61a906fcee8ea4c785df53b80b8644a292820f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/Up2 +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/Up2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nut index 00542f74fcdc658e94737bab0a963f03e0a59fad..7c470d7c05d63986f001874cca5713776a3b0a83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/adjointRASProperties index 7cf6a792b9369ca7ca83cf55290a452980a48d74..3b44440ff67995667e7fe31fe7403d139f935666 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/controlDict index 180db73f3fe4e7d3bb192d04a179d5aa93800901..ad9375935009c84a0a4c7d01d022f92cb41a17c3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/fvSchemes index 559d66e3d2c91de4451fc4859717cfd2731593d1..129d71c598784f86b11d4a6a656e34323713abfe 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/fvSolution index a9827057e143e493ede3da95cfb96f44f4c5bb74..6118faf954b1ec61e9ede469fd2101a73f183bf4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/optimisationDict index 8401feaa149667c9ca33b93dd1050242fa98ee2f..5536c9f289af34daccca161facb17a9d8d9a98b3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/multiPoint/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/U index 6885b21a9883f8898f1cb1bdffc79f2ddb12aea0..ea3f3617e442807762e066ac498ceff4bf1f2dfd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nut index 00542f74fcdc658e94737bab0a963f03e0a59fad..7c470d7c05d63986f001874cca5713776a3b0a83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/adjointRASProperties index 7cf6a792b9369ca7ca83cf55290a452980a48d74..3b44440ff67995667e7fe31fe7403d139f935666 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/fvSchemes index e5fbafe5a7f43ef5fbcef9c16c600437d54c0e33..ca6679e1aca5b1fa9735a74125f991c4866a17c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/fvSolution index cd9e178c77517147341f5aa4064aeaadea6d3dd1..fc3d865b7e7030a429f17fd885c19cc3045713e8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/optimisationDict index 3a723a79737e79a16b18cc0512982947b53f68de..a1f4f7624683a7ff4312489b5f90d40606b97c16 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/sensitivityMaps/sbend/turbulent/lowRe/singlePoint/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/U index f93635b506756c60b412a93f75ad26bf3aff2d7e..5b2c02b789121c7a940d5cdcc5bdd7827cefb306 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/Ua index 8249c7705c958c87b3f0f18f54a74e88ce734916..f2b85cc538bd66585ccab9d4ff5b3b98c09401f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/p index ce309bf789b4d9fd8732df2899d16849cde234d8..4eeddaa6ec34fa799388d7a65c645dc5a4abfe32 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/pa index d8862c9cd5f104ec02ae6ee124aa9e7203777a44..e87d9f0e8d84e7a593ae5562837a39b67e63f31a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/dynamicMeshDict index f87feb9c558aca64f8ab5dd005d4e5ba676d780d..0ae0c3c2a16b143b44b682dc5bf868552a9570ab 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/transportProperties index 8fe942f7b8876989468f19d347cb255e79373c43..b758d6d29bd64d4ae7ad626993cadef8b50fb8df 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/turbulenceProperties index f0c14e0b36b0fbba454fc551ecfd76fba5351058..bd671808c9fa08a172a41e34eaf0ab8e6a373113 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/blockMeshDict index 578393c5b1a33c9347591195a90c5000ccbf9083..9d187fe0b2c61a131d94db4eb5ac14066b754d8d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/controlDict index 7b0183eb8b6e26c6117d66bfbc90c38b7844cf00..e483bcd07f3aebcbca22bfcc45f9f7512006016f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/decomposeParDict index f96bcd1dbe2992decf57eac62e3df5f7baee1093..7268d948e68c499c5271512a831dab46d17444f4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/fvSchemes index c53836447c8ef38783ce6fe1c59c7154afbdf574..28315d4f4b426c44357caa6584c4ce3a4af60716 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/fvSolution index 672ebaed512d7d718549d13010046b6efdf9f90b..dcca9500aa63764456de47d32ba752055dc909be 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/optimisationDict index 77f31538783004c78389e92fe1e763cebf9ec20b..4f3d025696b70c497e56b73ad7f3e99d326e53d5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRate/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight -1; // maximize type flowRate; patches (outlet1); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/U index f93635b506756c60b412a93f75ad26bf3aff2d7e..5b2c02b789121c7a940d5cdcc5bdd7827cefb306 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/Ua index 8249c7705c958c87b3f0f18f54a74e88ce734916..f2b85cc538bd66585ccab9d4ff5b3b98c09401f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/p index ce309bf789b4d9fd8732df2899d16849cde234d8..4eeddaa6ec34fa799388d7a65c645dc5a4abfe32 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/pa index d8862c9cd5f104ec02ae6ee124aa9e7203777a44..e87d9f0e8d84e7a593ae5562837a39b67e63f31a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/dynamicMeshDict index 2b73195cebbf45984c246cd4ccbfb56312a0fe03..35ade36cf6fe565f89445399a113ff2c705042b3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/transportProperties index 8fe942f7b8876989468f19d347cb255e79373c43..b758d6d29bd64d4ae7ad626993cadef8b50fb8df 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/turbulenceProperties index f0c14e0b36b0fbba454fc551ecfd76fba5351058..bd671808c9fa08a172a41e34eaf0ab8e6a373113 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/blockMeshDict index 578393c5b1a33c9347591195a90c5000ccbf9083..9d187fe0b2c61a131d94db4eb5ac14066b754d8d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/controlDict index 673bbcf8c0c221a26dabea1bad1b0e607ccba340..0e2fab72c97193287c1fcff294269eab2277188e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/decomposeParDict index f96bcd1dbe2992decf57eac62e3df5f7baee1093..7268d948e68c499c5271512a831dab46d17444f4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/fvSchemes index c53836447c8ef38783ce6fe1c59c7154afbdf574..28315d4f4b426c44357caa6584c4ce3a4af60716 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/fvSolution index 672ebaed512d7d718549d13010046b6efdf9f90b..dcca9500aa63764456de47d32ba752055dc909be 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/optimisationDict index 860e466c1fa33ede24f1d3465bdd2c1a022068d7..24d75a7f989fc8bc3eaa628f256533e6982ed2b2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/flowRatePartition/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -67,7 +67,7 @@ adjointManagers // Optional entry. If abscent, inlet flow rate will // be partitioned equally between outlets // targetFractions (0.5 0.5); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/U index f93635b506756c60b412a93f75ad26bf3aff2d7e..5b2c02b789121c7a940d5cdcc5bdd7827cefb306 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/Ua index 8249c7705c958c87b3f0f18f54a74e88ce734916..f2b85cc538bd66585ccab9d4ff5b3b98c09401f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/p index ce309bf789b4d9fd8732df2899d16849cde234d8..4eeddaa6ec34fa799388d7a65c645dc5a4abfe32 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/pa index d8862c9cd5f104ec02ae6ee124aa9e7203777a44..e87d9f0e8d84e7a593ae5562837a39b67e63f31a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/dynamicMeshDict index 2b73195cebbf45984c246cd4ccbfb56312a0fe03..35ade36cf6fe565f89445399a113ff2c705042b3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/transportProperties index 8fe942f7b8876989468f19d347cb255e79373c43..b758d6d29bd64d4ae7ad626993cadef8b50fb8df 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/turbulenceProperties index f0c14e0b36b0fbba454fc551ecfd76fba5351058..bd671808c9fa08a172a41e34eaf0ab8e6a373113 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/blockMeshDict index 578393c5b1a33c9347591195a90c5000ccbf9083..9d187fe0b2c61a131d94db4eb5ac14066b754d8d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/controlDict index 7b0183eb8b6e26c6117d66bfbc90c38b7844cf00..e483bcd07f3aebcbca22bfcc45f9f7512006016f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/decomposeParDict index f96bcd1dbe2992decf57eac62e3df5f7baee1093..7268d948e68c499c5271512a831dab46d17444f4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/fvSchemes index c53836447c8ef38783ce6fe1c59c7154afbdf574..28315d4f4b426c44357caa6584c4ce3a4af60716 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/fvSolution index 672ebaed512d7d718549d13010046b6efdf9f90b..dcca9500aa63764456de47d32ba752055dc909be 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/optimisationDict index 8bb2c1894b8c12d577c47103f044557a55d6198d..dcdd9ac1b89eac3270f76a6181bd4a33480f67ff 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/fork-uneven/uniformityPatch/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1; type uniformityPatch; patches (outlet2); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/U index 75f7136e70d1e074c39e4a1ab6529b4d926787e0..b6d3eab978ce87410e3bede4321c211d66491165 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/Ua index c3819681453dc6938e5bf635c8b85b4186590b1f..84abbb57f0b9af6465eb773593a36f08f86b7417 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/fixedInlet b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/fixedInlet index 125fbb7bc20e6e06b7203d3c70e0bc77b6db089c..0b9fd7ef7f399378c34ccc6a4f7c8f0d4e44c984 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/fixedInlet +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/fixedInlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/frontBackUpperPatches b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/frontBackUpperPatches index f17a37762cf61bf0ddd1eba9777f547f2d88f22a..fa7bc41e145dcb207d67d751d8b505f3a1c9356d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/frontBackUpperPatches +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/frontBackUpperPatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/initialConditions b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/initialConditions index 57eeb939a4ddf5ec0b9266ca8bf11e05d8e180aa..111faddea5e5dc0fcb71fd2e2686137808d5ccb5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/initialConditions +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nuTilda index 50e1881dd9964184a6a09f5e630c1eec76b757c3..ee0d9401010ce387624304ddc0de1caa8e06d84b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nuaTilda index c503c3cdb4095d026719ddeedb03033d6ae42fca..f81923550d293d09a313b7fbd57e4a41480a3c82 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nut index 6f4e2201c0b81ee9a696f4a466ebba15bcb2d294..47c2bd7459a8429bf4e06e4c9f7ac41019ac6d97 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/p index 29d63c931abe6de72ca82bcf83445f3140e94ba9..9f2c2adcf4789d9f68d544a1f9a4a43d7a23fea4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/pa index 672c43553fcd79cca90258b616c2cfc6f92530f9..c80240262a2139e22a6fa743ddb01c2aae0c33fd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/adjointRASProperties index 0a6b25ed83500de5f72676839da87fbbb9ce2443..14e853b0461c3a1e8d0077120c083010ee1fd9af 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/controlPoints.org/boxcpsBsplines0 b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/controlPoints.org/boxcpsBsplines0 index 906bd5c361046941c615daf813fade15c60151e8..c97afb114c4b6eb3814bdc2e29c99ac3f7681fc7 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/controlPoints.org/boxcpsBsplines0 +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/controlPoints.org/boxcpsBsplines0 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/dynamicMeshDict index 07f9a92a27d46982385de2ed215515e8c32cf045..22df54fe7ae4e6865d4447b4c7192c8335b3eb15 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/blockMeshDict index be4121d46111fb6efb89275f4a307c1b119f19aa..7725f81d5d8e9b93d42ac73aae9aa04ae950838f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/controlDict index b54d0f1f104b129a6218f2336aa9ec905aac0c4a..d2ba79f7304d329b7508ea07c9c8f69e480031e1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/decomposeParDict.20 b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/decomposeParDict.20 index edff09e96cab0001d45c8e6ec1a115bb3e217769..fb601960aeaf32ec4f1008efb68a0fdb2f535e3f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/decomposeParDict.20 +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/decomposeParDict.20 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/fvSchemes index 4b4541dad9f44558079cc3c2dbbf25cf6a789588..c22964e99ad79e1fafa27b09ae13373e39805fb2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/fvSolution index 807003097f79b60017700585db3a06005a820b50..9d94680e35bb5e639a0c5b35c235c4660bee9218 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/meshQualityDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/meshQualityDict index c5e4f5ec15c6034ff30f9db5de96234df3a6ec4e..ee087e0e5c7bf5fb3881011fb1598317d242cf71 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/meshQualityDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/optimisationDict index 06b3acacd75c5a89c1f3cf98df82afa3b64ab562..515d356b9af7c45d0fb40b47656c50b6a75fae05 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/snappyHexMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/snappyHexMeshDict index 5de18588eb3180e1e5399912749c275f3bdfc786..74ed0a3dffbcc88bb3b4058137bb9626426c0dad 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/snappyHexMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/surfaceFeatureExtractDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/surfaceFeatureExtractDict index 6a8f29e7874e69730a9d6905901d59bdbe0cce2d..afeb9d614ffe2f3b5b4fc56b4741a0bc7ef4f31f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/motorBike/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/U index a83a2ceb25f59891da3a7351ad8be595d0348e3f..82cd75ea4f2a26eb97feab0fe38bab7a0f38b173 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/Ua index 48ef08308677349869e219bf3d36ad1171669974..2d6ce53accebe3f1c4dd49c87ed444f16fb6ff27 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/k b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/k index 659e5a128bf007d3581f8c0836de17797129d520..dff1ed64f53df47f12e28795ebb725c41df74f3b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/k +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/ka b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/ka index 8cd621a95d9bd6ee3be802abc63f4c8f4e299a42..926794641afd6f5a6fa463bceced7aaf58639a99 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/ka +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/ka @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/nut index 5f5b06be86c87e52fdf35f8482d261353d60776a..e17a5ea5f4d450ee81d90db839f09aa1cd8c021b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/omega b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/omega index 8797f65faedaeb46fc0c3f8cfddcc1ee1b59a2ea..5d278ae37586763eeca4f57a0d2fef3647155bb2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/omega +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/p index 309ab77ff65010ce5680a73ab98b33bf1cc08504..4541fe593a8d98d086f5c2fb441cc5cd648197d4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/pa index 7a90b746fabd1f69aa0d95975874053c04466cf0..05ff46d1a116d55c73fbc97645c8a62def91c16f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/wa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/wa index d1aa233d21e6a10f7941335f540ecf45d61ada4f..405eb7229d5807c6a928d4e4f63f6926224289af 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/wa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/0/wa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/adjointRASProperties index 0385759c9105accdf8cebdf5f6a7d593c937f79e..7ccaeaf1d1c4c5f23b0e53547ab313a890834939 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/dynamicMeshDict index e720dcae682e41ee558a50df503c11ad7713ed42..7a96fada56a15d0e2dc781f7c7dbb0ca51b9ff3c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/transportProperties index 88586a8d2c65c7e554aff0c48fe8a778542a55bb..b3d9c1c2496d539cff9e640231d23ba6f1792258 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/turbulenceProperties index 4fb82b713a9c67e34f5bc75137b8e26ec0b8c4d7..d650b6a363ef60ddafcae187c2e7b42c985e4d9c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/controlDict index 6f25668a74e5b5643db432b1e8c182f2345e3d9a..e970806195d1b21c54813d5911a38dce4c6ca39f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/decomposeParDict index f6b7521e86f3f8b949669a855db2294941e6a7f9..a6208c775a46f329fc64c7346c8f1de72f7a9240 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/fvSchemes index 57073201af8700c62f3891f0b2e57f070476d588..8a2220fbe54348eb2583d5a5a7a9a6f3a8980dc1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/fvSolution index 0c67b0762de177ea61fd130a789b26b7c569c26c..fd2d021887bb37e5c1b94b60bcf173d2275e2197 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/optimisationDict index 32de9d8a178bc765604f3b8e590b37976cfe4ec9..23aaa68aec3e8116704d1101f3fea75f36bd96a8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/kOmegaSST/lift/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/U index 1421a47d3ca2b75f09e57c5821dda17c49d19474..124f2d5cd878195743505a65acb9e0a69a7a0478 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/Ua index 269baa0d67372c90db7bf0b1f67ed1b6ea105448..869fad72f3b63bc4ab7808d400e58c081fd66aeb 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/p index 50225904e7753b342252e2355746bfb2e4feed58..0e515f20eec42c270e3e75bce6b412c9d5b81e49 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/pa index e18e982dc6ab3045a1186f06b5b3127d359be90a..9a89fb7baddcbcf70340167825fa393b937596e9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/dynamicMeshDict index 359a636574610a5263bb2ef0229e0a9c5b72abbb..f53766bd77f357049f4647383e2ecbdad38b9b29 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/transportProperties index 0a8851c266d0df9231c3e83f3710160772cf0acb..6891050301420f07b9f0757df344e7e2d54e1d26 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/decomposeParDict index 198c2d71cff9da515f59eb43fac085a0ba23c11a..513677e24d0b31b4ba15d1c7fa8b67040653dae5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/fvSchemes index 24c883d1f4cd5211865b19b671c3c2fbe71b3654..48e47accf88c249a9c0b49e4b56af3f242adf6a2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/fvSolution index 4e36e6178580de6ae2b05c1933df21d8df3293b6..c6aa962dd743283fbdddc49e8ad9869e7e1cd356 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/optimisationDict index 07e8d6dadbcccad03ad17d89e34a9944f68f8db5..fc4aabb0f450e69859770c6e793a11cef42ab256 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/drag/primalAdjoint/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/U index 1421a47d3ca2b75f09e57c5821dda17c49d19474..124f2d5cd878195743505a65acb9e0a69a7a0478 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/Ua index 269baa0d67372c90db7bf0b1f67ed1b6ea105448..869fad72f3b63bc4ab7808d400e58c081fd66aeb 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/p index 50225904e7753b342252e2355746bfb2e4feed58..0e515f20eec42c270e3e75bce6b412c9d5b81e49 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/pa index e18e982dc6ab3045a1186f06b5b3127d359be90a..9a89fb7baddcbcf70340167825fa393b937596e9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/dynamicMeshDict index 6c2c59ef1077d8bafde8bb57142d667092af85fb..baa89e170b9538d7acc861392bc5a8a382e1b485 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/transportProperties index 0a8851c266d0df9231c3e83f3710160772cf0acb..6891050301420f07b9f0757df344e7e2d54e1d26 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/controlDict index 65209703406c197dd969b879c2c2b71c3b8a954c..0564992ce008b17eebda9e11fa029d381d0e7483 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/decomposeParDict index 198c2d71cff9da515f59eb43fac085a0ba23c11a..513677e24d0b31b4ba15d1c7fa8b67040653dae5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/fvSchemes index c2ab46b96ed1a555ea81424db78d310f6fa7361f..c937aa76f69af10cb04a1dda621ac7343b43af57 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/fvSolution index 4e36e6178580de6ae2b05c1933df21d8df3293b6..c6aa962dd743283fbdddc49e8ad9869e7e1cd356 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/optimisationDict index bab19274b8600bba0464e9c658a10d863f390e6b..44c9013f7058a33c51b0ef993167ba0bd90879eb 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/lift/opt/constraintProjection/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/U index 1421a47d3ca2b75f09e57c5821dda17c49d19474..124f2d5cd878195743505a65acb9e0a69a7a0478 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/Ua index 269baa0d67372c90db7bf0b1f67ed1b6ea105448..869fad72f3b63bc4ab7808d400e58c081fd66aeb 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/p index 50225904e7753b342252e2355746bfb2e4feed58..0e515f20eec42c270e3e75bce6b412c9d5b81e49 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/pa index e18e982dc6ab3045a1186f06b5b3127d359be90a..9a89fb7baddcbcf70340167825fa393b937596e9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/dynamicMeshDict index 359a636574610a5263bb2ef0229e0a9c5b72abbb..f53766bd77f357049f4647383e2ecbdad38b9b29 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/transportProperties index 0a8851c266d0df9231c3e83f3710160772cf0acb..6891050301420f07b9f0757df344e7e2d54e1d26 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/decomposeParDict index 198c2d71cff9da515f59eb43fac085a0ba23c11a..513677e24d0b31b4ba15d1c7fa8b67040653dae5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/fvSchemes index 24c883d1f4cd5211865b19b671c3c2fbe71b3654..48e47accf88c249a9c0b49e4b56af3f242adf6a2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/fvSolution index 4e36e6178580de6ae2b05c1933df21d8df3293b6..c6aa962dd743283fbdddc49e8ad9869e7e1cd356 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/optimisationDict index b189972a871790b4ef5ea17e1d4d56bd91aa1d9a..119925cab8fdea9ca6d3708b378dbf404e15abbc 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/moment/primalAdjoint/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/U index 26267a1abb19a44c002ae8db67e4d8efb872faf8..56c6b924f7cc9e1fcffe1a8555f64a794260b054 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/Ua index 48ef08308677349869e219bf3d36ad1171669974..2d6ce53accebe3f1c4dd49c87ed444f16fb6ff27 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/p index 309ab77ff65010ce5680a73ab98b33bf1cc08504..4541fe593a8d98d086f5c2fb441cc5cd648197d4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/pa index 7a90b746fabd1f69aa0d95975874053c04466cf0..05ff46d1a116d55c73fbc97645c8a62def91c16f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/adjointRASProperties index 77ed736d9d03b28e718cf4d0593431e350849c64..e165c9573a4ed0210ed9fbf9d467e334f1e98460 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/dynamicMeshDict index 63dd12a154d12fe6c0622305639490eb831a3096..2b1e850250e6e6dd6599f0a6d4475ab0b8a9226c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/transportProperties index 8eca6c9ec251fab95abb69d67be0280beac30cc6..db910a40782af5afc364a7d0c4f554af56cce728 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/turbulenceProperties index f0c14e0b36b0fbba454fc551ecfd76fba5351058..bd671808c9fa08a172a41e34eaf0ab8e6a373113 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/controlDict index 3042aebd950c2787f5db86851ce183e30f0e0b57..e801b7aa46c673af083298843cd423b4a753e618 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/decomposeParDict index 02a42243aa3ba0448f9236433530260dd14f0754..8b1737e81023a708cf33de02d7d6b0e259fa8951 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/fvSchemes index 903e326fbc1ed5c22b0c8c5aa4d357ef02a75580..70c94e5c5e7958b88a8321fb3082281b34751b2d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/fvSolution index 56314e9f2f629d142db1c8aec980d4f43fcb4cf6..aa725353cc1e8dea52b12bf981061b6f45bdc1fc 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/optimisationDict index 8492685921dacd6ceed1dad9380cc71a7aa0c75e..d79ed36b4fc36aaeb67a191d9cfb1de6fc2384fe 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/naca0012/laminar/multipleConstraints/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -70,7 +70,7 @@ adjointManagers Aref 2.; rhoInf 1.225; UInf 6; - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/U index 1f7cee56a7bf0b5abe4d1158f971f85eb67a964b..def0f630d063d517f3248e61bde9daabeb19db90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/controlDict index d8d83ebadc4a334c769f80bab7fadee9cd6eca01..5af2ccbe898c6f4edd2a90771cd8ebf5927db179 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/fvSchemes index 72252a24e9b3a3c4e9b7a9b9074c73250fd4c3b2..aafa6c0d21422dd0e43110d014d9c5465ce90fb8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/fvSolution index 1931b02f8db739074abb8a29521f83f19c8865a9..893928e2703a74c0ee8803b75f6498ed9accb755 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/optimisationDict index 67cb4d4c2d5d0ddc3cbebfc1e0bde4f3dbf32084..bae7f5ab301fc59563afd9107ad80b316105b97f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/constrained/SQP/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/U index 1f7cee56a7bf0b5abe4d1158f971f85eb67a964b..def0f630d063d517f3248e61bde9daabeb19db90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/dynamicMeshDict index 722f14122155ff893a00ec62e368b60b9286f27e..23e0599b9de88f7d257c80917e63ae5807ebe16a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/controlDict index d8d83ebadc4a334c769f80bab7fadee9cd6eca01..5af2ccbe898c6f4edd2a90771cd8ebf5927db179 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/fvSchemes index 72252a24e9b3a3c4e9b7a9b9074c73250fd4c3b2..aafa6c0d21422dd0e43110d014d9c5465ce90fb8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/fvSolution index 0de721c687e235264061eece7eeaabcc33a14e24..d3a22f7083be8dcee884e56abbe182939edcd183 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/optimisationDict index 13b8ba7cbc4053e83c3e831d85ead5cd1d6c6b70..1f292e647adc476672196efbf9f58a926f493762 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS-transformBox/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/U index 1f7cee56a7bf0b5abe4d1158f971f85eb67a964b..def0f630d063d517f3248e61bde9daabeb19db90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/controlDict index d8d83ebadc4a334c769f80bab7fadee9cd6eca01..5af2ccbe898c6f4edd2a90771cd8ebf5927db179 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/fvSchemes index 72252a24e9b3a3c4e9b7a9b9074c73250fd4c3b2..aafa6c0d21422dd0e43110d014d9c5465ce90fb8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/fvSolution index 0de721c687e235264061eece7eeaabcc33a14e24..d3a22f7083be8dcee884e56abbe182939edcd183 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/optimisationDict index 13b8ba7cbc4053e83c3e831d85ead5cd1d6c6b70..1f292e647adc476672196efbf9f58a926f493762 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/BFGS/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/U index 1f7cee56a7bf0b5abe4d1158f971f85eb67a964b..def0f630d063d517f3248e61bde9daabeb19db90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/controlDict index d8d83ebadc4a334c769f80bab7fadee9cd6eca01..5af2ccbe898c6f4edd2a90771cd8ebf5927db179 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/fvSchemes index 72252a24e9b3a3c4e9b7a9b9074c73250fd4c3b2..aafa6c0d21422dd0e43110d014d9c5465ce90fb8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/fvSolution index 0de721c687e235264061eece7eeaabcc33a14e24..d3a22f7083be8dcee884e56abbe182939edcd183 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/optimisationDict index 16a6353add9dbdf52b1c8ad88768922a88e4add6..bc2c2cb380061617e14f46634e48c96d613d3c2c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/losses/SD/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/U index 1f7cee56a7bf0b5abe4d1158f971f85eb67a964b..def0f630d063d517f3248e61bde9daabeb19db90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/controlDict index e50f62c7f1a326731c8f16bb519b55510db35d5f..6b5f73750083732ff3071ee851635805c2c2eb3c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/fvSchemes index 72252a24e9b3a3c4e9b7a9b9074c73250fd4c3b2..aafa6c0d21422dd0e43110d014d9c5465ce90fb8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/fvSolution index 0de721c687e235264061eece7eeaabcc33a14e24..d3a22f7083be8dcee884e56abbe182939edcd183 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/optimisationDict index 53bc3710cc17600c924766faea452820e0150c0b..6fd811f8d2e323d9335a9dff0c997c3e14e00d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/topoSetDict index 72c29444d24ac3b84bed86bab139ffd37dc3dbe3..55ebce4c7b30682fd15538ba7c70a9fe07d2dbfd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/opt/unconstrained/uniformityCellZone/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/U index 1f7cee56a7bf0b5abe4d1158f971f85eb67a964b..def0f630d063d517f3248e61bde9daabeb19db90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/ma b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/ma index 59ae8aeb677598b95cc01386a5e9fd56081cc1ca..0c4368a5c963c8c6f9f85952d3e64cf352923c8a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/ma +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/ma @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/adjointRASProperties index 28deb7451fb676921e95cb9c1a2d3216eb08611b..ffdbf71df7b6db8e2610d5a7f096c0cd65b55419 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/fvSchemes index 72252a24e9b3a3c4e9b7a9b9074c73250fd4c3b2..aafa6c0d21422dd0e43110d014d9c5465ce90fb8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/fvSolution index 0de721c687e235264061eece7eeaabcc33a14e24..d3a22f7083be8dcee884e56abbe182939edcd183 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/optimisationDict index 55cc4f77ea11d1898742d1deb87588f43845f478..0e8495c287f917d68cfb9ed1366a32be6761c6f6 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/laminar/primalAdjoint/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/U index 6885b21a9883f8898f1cb1bdffc79f2ddb12aea0..ea3f3617e442807762e066ac498ceff4bf1f2dfd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nut index 00542f74fcdc658e94737bab0a963f03e0a59fad..7c470d7c05d63986f001874cca5713776a3b0a83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/adjointRASProperties index 7cf6a792b9369ca7ca83cf55290a452980a48d74..3b44440ff67995667e7fe31fe7403d139f935666 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/controlDict index 35bdc89fe10f7a1b1a6b09925b2ddfeb66f7340a..cc80784627d98383fd9dec50735a2a7f7b57093c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/fvSchemes index e88761b3039e7c90eddd344bd9f861f53cf88dd3..10eb1299b2eb7e4bd26a14f3b708e6cab1440154 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/fvSolution index cd9e178c77517147341f5aa4064aeaadea6d3dd1..fc3d865b7e7030a429f17fd885c19cc3045713e8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/optimisationDict index 29a7c1f667c5339606c83d801727b3350e64dfdb..ac1f70536d1f7e94507f9b3c7b9baca5de47cc15 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-continuation/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/U index 6885b21a9883f8898f1cb1bdffc79f2ddb12aea0..ea3f3617e442807762e066ac498ceff4bf1f2dfd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nut index 00542f74fcdc658e94737bab0a963f03e0a59fad..7c470d7c05d63986f001874cca5713776a3b0a83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/adjointRASProperties index 7cf6a792b9369ca7ca83cf55290a452980a48d74..3b44440ff67995667e7fe31fe7403d139f935666 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/controlDict index e50f62c7f1a326731c8f16bb519b55510db35d5f..6b5f73750083732ff3071ee851635805c2c2eb3c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/fvSchemes index e88761b3039e7c90eddd344bd9f861f53cf88dd3..10eb1299b2eb7e4bd26a14f3b708e6cab1440154 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/fvSolution index cd9e178c77517147341f5aa4064aeaadea6d3dd1..fc3d865b7e7030a429f17fd885c19cc3045713e8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/optimisationDict index 29a7c1f667c5339606c83d801727b3350e64dfdb..ac1f70536d1f7e94507f9b3c7b9baca5de47cc15 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS-oneGo/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/U index d0bd9865debd89a4286581a2e86b8b32f1c2dcfc..1f9cf4c17034dd5107174b7e8a7a8e1e94e9ca38 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/Up2 b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/Up2 index 6d420622c18b108aeb53ad2103d03864ceae186a..0b61a906fcee8ea4c785df53b80b8644a292820f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/Up2 +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/Up2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nut index 00542f74fcdc658e94737bab0a963f03e0a59fad..7c470d7c05d63986f001874cca5713776a3b0a83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/adjointRASProperties index 7cf6a792b9369ca7ca83cf55290a452980a48d74..3b44440ff67995667e7fe31fe7403d139f935666 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/controlDict index d8d83ebadc4a334c769f80bab7fadee9cd6eca01..5af2ccbe898c6f4edd2a90771cd8ebf5927db179 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/fvSchemes index 559d66e3d2c91de4451fc4859717cfd2731593d1..129d71c598784f86b11d4a6a656e34323713abfe 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/fvSolution index a9827057e143e493ede3da95cfb96f44f4c5bb74..6118faf954b1ec61e9ede469fd2101a73f183bf4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/optimisationDict index fb7fed2084b289385e27fb815cf3f37834b7c63b..0c9bb9d0ae19c5e686b1f24f63846a5b15ae3bf5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/multiPoint/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/U index 9b5bba9e496bc4b95df31a32797c3bf5bbe37884..2cb5228c87c7dbb4a09644c6707bf2a59e1fc14d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nut index 00542f74fcdc658e94737bab0a963f03e0a59fad..7c470d7c05d63986f001874cca5713776a3b0a83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/adjointRASProperties index 7cf6a792b9369ca7ca83cf55290a452980a48d74..3b44440ff67995667e7fe31fe7403d139f935666 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/controlDict index d8d83ebadc4a334c769f80bab7fadee9cd6eca01..5af2ccbe898c6f4edd2a90771cd8ebf5927db179 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/fvSchemes index e5fbafe5a7f43ef5fbcef9c16c600437d54c0e33..ca6679e1aca5b1fa9735a74125f991c4866a17c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/fvSolution index cd9e178c77517147341f5aa4064aeaadea6d3dd1..fc3d865b7e7030a429f17fd885c19cc3045713e8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/optimisationDict index 0ddfe959d4b934a03a0ebaeb6c4ca567ee082d1b..a3396f69776f4b4a3c796523c6f16a370ce31248 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op1/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/U index 6d420622c18b108aeb53ad2103d03864ceae186a..0b61a906fcee8ea4c785df53b80b8644a292820f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nut index 00542f74fcdc658e94737bab0a963f03e0a59fad..7c470d7c05d63986f001874cca5713776a3b0a83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/adjointRASProperties index 7cf6a792b9369ca7ca83cf55290a452980a48d74..3b44440ff67995667e7fe31fe7403d139f935666 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/controlDict index d8d83ebadc4a334c769f80bab7fadee9cd6eca01..5af2ccbe898c6f4edd2a90771cd8ebf5927db179 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/fvSchemes index e5fbafe5a7f43ef5fbcef9c16c600437d54c0e33..ca6679e1aca5b1fa9735a74125f991c4866a17c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/fvSolution index cd9e178c77517147341f5aa4064aeaadea6d3dd1..fc3d865b7e7030a429f17fd885c19cc3045713e8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/optimisationDict index 13b8ba7cbc4053e83c3e831d85ead5cd1d6c6b70..1f292e647adc476672196efbf9f58a926f493762 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/losses/BFGS/op2/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/U index 6885b21a9883f8898f1cb1bdffc79f2ddb12aea0..ea3f3617e442807762e066ac498ceff4bf1f2dfd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nut index 00542f74fcdc658e94737bab0a963f03e0a59fad..7c470d7c05d63986f001874cca5713776a3b0a83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/adjointRASProperties index 31621008adf439ab8bacb5e8674832fa1ad96f4e..4c999a9ca3ee35c98cc61f42c7406135f1f61285 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/dynamicMeshDict index 78fb56e1b0aaecf3cee2de779e361bb498a3a8e7..107724cb068f330a0dea7fb88dbd80bfed204fd1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/transportProperties index c74cd1d01039d8d5ec8db009cc446c7f931648fa..b5110e76d6701ca694f8e13c816bbc0e9e2c7afa 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/controlDict index d8d83ebadc4a334c769f80bab7fadee9cd6eca01..5af2ccbe898c6f4edd2a90771cd8ebf5927db179 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/decomposeParDict index e9c6b0c12f90cd0613cf02ad6d0329d270a4ce0f..4506e819c2f639dc34621e620283aa269493fb22 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/fvSchemes index 96aaebf9c63b07433600051f74dd9070f2636ac1..da4b46f45d2f98c8fd3e40251126289417c7fcbc 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/fvSolution index 2e4ead44c439305a745aba79877784798be780da..237be01391452bfc99fcc4bd21516facc662510a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/optimisationDict index 8dd663385bda06992f0001bd9bf65d9b1dc228e4..21de6a99a3806c25d1e5f6a8f904a43deb67a540 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/topoSetDict index 1b69b79b209d6f4c52b4031292bad2453b81468c..ebeecf636dd50fcb15b88eec50e49f4ff0507192 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/nutSqr/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/U index 6885b21a9883f8898f1cb1bdffc79f2ddb12aea0..ea3f3617e442807762e066ac498ceff4bf1f2dfd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nut index 00542f74fcdc658e94737bab0a963f03e0a59fad..7c470d7c05d63986f001874cca5713776a3b0a83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/adjointRASProperties index 31621008adf439ab8bacb5e8674832fa1ad96f4e..4c999a9ca3ee35c98cc61f42c7406135f1f61285 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/dynamicMeshDict index 78fb56e1b0aaecf3cee2de779e361bb498a3a8e7..107724cb068f330a0dea7fb88dbd80bfed204fd1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/transportProperties index c74cd1d01039d8d5ec8db009cc446c7f931648fa..b5110e76d6701ca694f8e13c816bbc0e9e2c7afa 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/controlDict index d8d83ebadc4a334c769f80bab7fadee9cd6eca01..5af2ccbe898c6f4edd2a90771cd8ebf5927db179 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/decomposeParDict index e9c6b0c12f90cd0613cf02ad6d0329d270a4ce0f..4506e819c2f639dc34621e620283aa269493fb22 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/fvSchemes index 96aaebf9c63b07433600051f74dd9070f2636ac1..da4b46f45d2f98c8fd3e40251126289417c7fcbc 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/fvSolution index 2e4ead44c439305a745aba79877784798be780da..237be01391452bfc99fcc4bd21516facc662510a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/optimisationDict index 76f5e63c504a0fdfe90f66c8097eeee9975d8200..9f9adb0a473739c81f5a812f99e6bdc8b96c8e4a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/topoSetDict index 7bf84f991e6a99a569bf3d4359f116478e1b6a5a..c15d92be1a4a4df305a9ea6b650f4126230c70c6 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/opt/powerDissipation/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/U index 6885b21a9883f8898f1cb1bdffc79f2ddb12aea0..ea3f3617e442807762e066ac498ceff4bf1f2dfd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nut index 00542f74fcdc658e94737bab0a963f03e0a59fad..7c470d7c05d63986f001874cca5713776a3b0a83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/adjointRASProperties index 7cf6a792b9369ca7ca83cf55290a452980a48d74..3b44440ff67995667e7fe31fe7403d139f935666 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/fvSchemes index e5fbafe5a7f43ef5fbcef9c16c600437d54c0e33..ca6679e1aca5b1fa9735a74125f991c4866a17c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/fvSolution index cd9e178c77517147341f5aa4064aeaadea6d3dd1..fc3d865b7e7030a429f17fd885c19cc3045713e8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/optimisationDict index 55cc4f77ea11d1898742d1deb87588f43845f478..0e8495c287f917d68cfb9ed1366a32be6761c6f6 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjoint/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/U index 6885b21a9883f8898f1cb1bdffc79f2ddb12aea0..ea3f3617e442807762e066ac498ceff4bf1f2dfd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/Ua index 3bba3512fed140ad26aa04f234ea74190aacd738..d09cceb4cffe4d9f1a675b962009cb3360369ec4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nuTilda index a95436be6c4bbea88b5df0cfced8d47d278c6194..81ee5b87ceb764f0232038c91406a20b78acd6f5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nuaTilda index 06e223e84def8f51133bddca5a5d874c169e6fb0..ab5316acd9fa4ed14f2fb245f69a5fa8ffbeb357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nut index 00542f74fcdc658e94737bab0a963f03e0a59fad..7c470d7c05d63986f001874cca5713776a3b0a83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/p index 2b4693c201f6e37a93dba51aa729dc6f2c0b15f9..128bfd6253b04882473a655c6e277d23a7335fd3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/pa index 24fbb0e3c84a1ce282c713608fa90807ea9d07c7..fe7ade545f46f2505c36aedb9c4b8095412a36c2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/adjointRASProperties index 7cf6a792b9369ca7ca83cf55290a452980a48d74..3b44440ff67995667e7fe31fe7403d139f935666 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/dynamicMeshDict index 0c0a629615a4afff5ce761f5c8c90a89db2e3f41..76636c6b26e1a09d2fe72d0d9690d78355289d2e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/controlDict index 421188c200b4452ae927463bfebb083a49bf0497..b19c62460ba9af76fae254cc4368129ccad7f683 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/decomposeParDict index 1b1675d4cd65aa92471551f00590fecb70baeb74..9369d14ba567abc5055e8fbcbf4d3531d2eb0f5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/fvSchemes index e5fbafe5a7f43ef5fbcef9c16c600437d54c0e33..ca6679e1aca5b1fa9735a74125f991c4866a17c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/fvSolution index cd9e178c77517147341f5aa4064aeaadea6d3dd1..fc3d865b7e7030a429f17fd885c19cc3045713e8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/optimisationDict index fff8e83ada32f540ea78c024b4d29e2a2770420d..253b1fa83b88ea2ff4a4fc22fd24add66d7efaac 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/SA/primalAdjointFullSetup/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/U index 751f3b2b826b2345b1064f13ee3f3e622e7ef6e7..ae34a4c763cf01d5b99a398d7438c71a06fcec2d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/Ua index 089864bf396ea4f47e32529f864dade1bbbc0376..78405bf7edf1723b635222b6c85e949ce0c72139 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/k b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/k index 51da6530338b0eb42b868f90883d39dddec977e3..6fde94ff601f890f1596d9840b07633d653f7954 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/k +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/ka b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/ka index f056f26de0dceeac063589e587f6d65d85cccbbc..7fd2033e8eecae000993d96f043a73257c374ef1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/ka +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/ka @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/nut b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/nut index 98dd0759979ccb9d122f55bed7aaf9756f664a71..828ee19703441188232c31b7df3e86491895dab9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/omega b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/omega index 46602ab73511175f66c96a3961996c801159e6ce..7ed7cd0ad9a7a201f5fcf40ab359e2759fa4168d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/omega +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/p index 9ea08e7c2e615c29b3717a6f7ca6e9590b19cfde..53009786affaf6f8597a8e337a2befdb5173bde1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/pa index af411bc6a084ebc283df3ec73c39f0e93f645784..c7775f77f965217ccceae8ab82732f9d4efc6566 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/wa b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/wa index a098ca459de3d44cc5d03c42033e198fe7c4b02b..f15cf545a654cf06531021e4b9516a36ac9f50d1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/wa +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/0.orig/wa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/adjointRASProperties index 0385759c9105accdf8cebdf5f6a7d593c937f79e..7ccaeaf1d1c4c5f23b0e53547ab313a890834939 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/dynamicMeshDict index 78fb56e1b0aaecf3cee2de779e361bb498a3a8e7..107724cb068f330a0dea7fb88dbd80bfed204fd1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/transportProperties index c74cd1d01039d8d5ec8db009cc446c7f931648fa..b5110e76d6701ca694f8e13c816bbc0e9e2c7afa 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/turbulenceProperties index 4fb82b713a9c67e34f5bc75137b8e26ec0b8c4d7..d650b6a363ef60ddafcae187c2e7b42c985e4d9c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/controlDict index d8d83ebadc4a334c769f80bab7fadee9cd6eca01..5af2ccbe898c6f4edd2a90771cd8ebf5927db179 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/decomposeParDict index e9c6b0c12f90cd0613cf02ad6d0329d270a4ce0f..4506e819c2f639dc34621e620283aa269493fb22 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/fvSchemes index eb14d6a115a490783105764bd2ec4e2fe4061627..ba109b51abd858cb4ce30511d2346ba2eafa1695 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/fvSolution index 7023f742513722a2a1f1f1e27b9280f07f9ae2b1..ae568e34f460741c229fba83d7f63226245f7a3d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/optimisationDict index a05e46cca5826c607d2effdb7a386f1ebc020312..701fef9163614a652f2369de679f6641eeb15911 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/shapeOptimisation/sbend/turbulent/kOmegaSST/opt/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/U index 874af8846365dc8cfb81c7bada82949b585b2373..b530b9cfb570866f413e37d0352fedea0fbdbf88 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/Ua index d7d34bb6f803e2dc94864acd0f880532a7a71544..fb7034d992bed745f497bc123b807916de509fe8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/p index f65b4a99627e3bea096566bc2384712dd662a750..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/pa index bc7f17f326e2b17d5a3a377d217b41c1cc8dc4c9..f769c3fad78461a63acbf623e2e3f47d5386058d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/U index c923720500163f7557b43bdd2130e1957b6bfb24..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/Ua index f500ee00c8dda0e4f3ebabebda441373d5cf25b5..fef9377d4a28b673cf026f9a71c0842d4d028b72 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/p index c62028952b0ebddce60b2195a84b8e297b1ef846..a0dd7dbec959da3b819e28fa5fc59dc050689d4b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/pa index ab9a180d582ca9894f5a4e01baa7d653760b822d..83151072e1c5cd0678d416bdf0f4df71c826875e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/fvSchemes index 8da9c9bef3158f74b3325e904954bce40bca499a..3fa363a6a0c547e5fcfc4e970fe1748c852aa132 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/optimisationDict index 3030be7f9715c73108499e0ed5448b9c1e8a00d4..71efaddeb90460c7e62be0ae4f431cc1f474b25a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/controlDict index a298d749e51ac74db85e7164ff1349ab3f36e766..bd32cbb86fcbf3c0ebd5a43fd2c6cadea185a0f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvOptions index 06a7f12f544faf67e1d550dd1d465f7f9b1d85a7..bf76efad182a76b5726648b0b8520a906acd42a1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvSchemes index 8da9c9bef3158f74b3325e904954bce40bca499a..3fa363a6a0c547e5fcfc4e970fe1748c852aa132 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/optimisationDict index 2529a623222dfc352021dacb1017c219ef8155a7..b13e0cb1367413ade554225f817c1214091dcd66 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -61,7 +61,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_01x/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/U index 874af8846365dc8cfb81c7bada82949b585b2373..b530b9cfb570866f413e37d0352fedea0fbdbf88 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/Ua index d7d34bb6f803e2dc94864acd0f880532a7a71544..fb7034d992bed745f497bc123b807916de509fe8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/p index f65b4a99627e3bea096566bc2384712dd662a750..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/pa index bc7f17f326e2b17d5a3a377d217b41c1cc8dc4c9..f769c3fad78461a63acbf623e2e3f47d5386058d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/U index c923720500163f7557b43bdd2130e1957b6bfb24..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/Ua index f500ee00c8dda0e4f3ebabebda441373d5cf25b5..fef9377d4a28b673cf026f9a71c0842d4d028b72 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/p index c62028952b0ebddce60b2195a84b8e297b1ef846..a0dd7dbec959da3b819e28fa5fc59dc050689d4b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/pa index ab9a180d582ca9894f5a4e01baa7d653760b822d..83151072e1c5cd0678d416bdf0f4df71c826875e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/fvSchemes index 8da9c9bef3158f74b3325e904954bce40bca499a..3fa363a6a0c547e5fcfc4e970fe1748c852aa132 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/optimisationDict index 3030be7f9715c73108499e0ed5448b9c1e8a00d4..71efaddeb90460c7e62be0ae4f431cc1f474b25a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/controlDict index a298d749e51ac74db85e7164ff1349ab3f36e766..bd32cbb86fcbf3c0ebd5a43fd2c6cadea185a0f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvOptions index 06a7f12f544faf67e1d550dd1d465f7f9b1d85a7..bf76efad182a76b5726648b0b8520a906acd42a1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvSchemes index 8da9c9bef3158f74b3325e904954bce40bca499a..3fa363a6a0c547e5fcfc4e970fe1748c852aa132 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/optimisationDict index ed859431e378075f1924de612fd8d00c654fe1fa..48cef2d56ec64d00f020a92273b49d127aa7d366 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -61,7 +61,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_05x_NB_02x/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/U index 874af8846365dc8cfb81c7bada82949b585b2373..b530b9cfb570866f413e37d0352fedea0fbdbf88 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/Ua index d7d34bb6f803e2dc94864acd0f880532a7a71544..fb7034d992bed745f497bc123b807916de509fe8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/p index f65b4a99627e3bea096566bc2384712dd662a750..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/pa index bc7f17f326e2b17d5a3a377d217b41c1cc8dc4c9..f769c3fad78461a63acbf623e2e3f47d5386058d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/U index c923720500163f7557b43bdd2130e1957b6bfb24..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/Ua index f500ee00c8dda0e4f3ebabebda441373d5cf25b5..fef9377d4a28b673cf026f9a71c0842d4d028b72 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/p index c62028952b0ebddce60b2195a84b8e297b1ef846..a0dd7dbec959da3b819e28fa5fc59dc050689d4b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/pa index ab9a180d582ca9894f5a4e01baa7d653760b822d..83151072e1c5cd0678d416bdf0f4df71c826875e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/fvSchemes index 8da9c9bef3158f74b3325e904954bce40bca499a..3fa363a6a0c547e5fcfc4e970fe1748c852aa132 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/optimisationDict index 3030be7f9715c73108499e0ed5448b9c1e8a00d4..71efaddeb90460c7e62be0ae4f431cc1f474b25a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/controlDict index a298d749e51ac74db85e7164ff1349ab3f36e766..bd32cbb86fcbf3c0ebd5a43fd2c6cadea185a0f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvOptions index 06a7f12f544faf67e1d550dd1d465f7f9b1d85a7..bf76efad182a76b5726648b0b8520a906acd42a1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvSchemes index 8da9c9bef3158f74b3325e904954bce40bca499a..3fa363a6a0c547e5fcfc4e970fe1748c852aa132 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/optimisationDict index ba85225672e33f3f3a15edce1a48ad73bada5ffb..a56260f4198b5ad7fb7342231e8429985c6546a0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -61,7 +61,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_01x/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/U index 874af8846365dc8cfb81c7bada82949b585b2373..b530b9cfb570866f413e37d0352fedea0fbdbf88 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/Ua index d7d34bb6f803e2dc94864acd0f880532a7a71544..fb7034d992bed745f497bc123b807916de509fe8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/p index f65b4a99627e3bea096566bc2384712dd662a750..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/pa index bc7f17f326e2b17d5a3a377d217b41c1cc8dc4c9..f769c3fad78461a63acbf623e2e3f47d5386058d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/U index c923720500163f7557b43bdd2130e1957b6bfb24..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/Ua index f500ee00c8dda0e4f3ebabebda441373d5cf25b5..fef9377d4a28b673cf026f9a71c0842d4d028b72 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/p index c62028952b0ebddce60b2195a84b8e297b1ef846..a0dd7dbec959da3b819e28fa5fc59dc050689d4b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/pa index ab9a180d582ca9894f5a4e01baa7d653760b822d..83151072e1c5cd0678d416bdf0f4df71c826875e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/fvSchemes index 8da9c9bef3158f74b3325e904954bce40bca499a..3fa363a6a0c547e5fcfc4e970fe1748c852aa132 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/optimisationDict index 3030be7f9715c73108499e0ed5448b9c1e8a00d4..71efaddeb90460c7e62be0ae4f431cc1f474b25a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/controlDict index a298d749e51ac74db85e7164ff1349ab3f36e766..bd32cbb86fcbf3c0ebd5a43fd2c6cadea185a0f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvOptions index 06a7f12f544faf67e1d550dd1d465f7f9b1d85a7..bf76efad182a76b5726648b0b8520a906acd42a1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvSchemes index 8da9c9bef3158f74b3325e904954bce40bca499a..3fa363a6a0c547e5fcfc4e970fe1748c852aa132 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/optimisationDict index 6233efe7a74b914de3b14d8a3b3c9a119e8ecb86..202f894be562e08a2519069292fe2ef45e0d946c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -61,7 +61,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/levelSet/R_10x_NB_02x/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/U index 874af8846365dc8cfb81c7bada82949b585b2373..b530b9cfb570866f413e37d0352fedea0fbdbf88 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/Ua index d7d34bb6f803e2dc94864acd0f880532a7a71544..fb7034d992bed745f497bc123b807916de509fe8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/p index f65b4a99627e3bea096566bc2384712dd662a750..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/pa index bc7f17f326e2b17d5a3a377d217b41c1cc8dc4c9..f769c3fad78461a63acbf623e2e3f47d5386058d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/U index c923720500163f7557b43bdd2130e1957b6bfb24..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/Ua index f500ee00c8dda0e4f3ebabebda441373d5cf25b5..fef9377d4a28b673cf026f9a71c0842d4d028b72 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/p index c62028952b0ebddce60b2195a84b8e297b1ef846..a0dd7dbec959da3b819e28fa5fc59dc050689d4b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/pa index ab9a180d582ca9894f5a4e01baa7d653760b822d..83151072e1c5cd0678d416bdf0f4df71c826875e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/fvSchemes index 6a5f34082860c1dc866e03fad71aae1949c0e4bb..e00cd83564bc009a64b5cc5a3961452de0360124 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/optimisationDict index 3030be7f9715c73108499e0ed5448b9c1e8a00d4..71efaddeb90460c7e62be0ae4f431cc1f474b25a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/controlDict index b1f966f654aa093938462386f124d215b560ea0b..a64eea2ca8416d0fe43e8f00a6a77552e1fff947 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvOptions index 06a7f12f544faf67e1d550dd1d465f7f9b1d85a7..bf76efad182a76b5726648b0b8520a906acd42a1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvSchemes index 6a5f34082860c1dc866e03fad71aae1949c0e4bb..e00cd83564bc009a64b5cc5a3961452de0360124 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/optimisationDict index 501ae31ba1730166acc0a449fd090576d77361e3..f93c33be1584113403b4b9d40f3dd45d9fc6991b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -61,7 +61,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_05x/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/U new file mode 100644 index 0000000000000000000000000000000000000000..b530b9cfb570866f413e37d0352fedea0fbdbf88 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/U @@ -0,0 +1,70 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0.001 0.001 0); + +boundaryField +{ + frontBack + { + type empty; + } + + designWall + { + type fixedValue; + value uniform (0 0 0); + } + + IEntranceWall + { + type fixedValue; + value uniform (0 0 0); + } + + OEntranceWall + { + type fixedValue; + value uniform (0 0 0); + } + + OREntranceWall + { + type fixedValue; + value uniform (0 0 0); + } + + inlet + { + type fixedValue; + value uniform (1 0 0); + } + + outlet + { + type zeroGradient; + } + + outlet-right + { + type zeroGradient; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/Ua new file mode 100644 index 0000000000000000000000000000000000000000..fb7034d992bed745f497bc123b807916de509fe8 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/Ua @@ -0,0 +1,72 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + object Ua; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + frontBack + { + type empty; + } + + designWall + { + type adjointWallVelocity; + value uniform (0 0 0); + } + + IEntranceWall + { + type adjointWallVelocity; + value uniform (0 0 0); + } + + OEntranceWall + { + type adjointWallVelocity; + value uniform (0 0 0); + } + + OREntranceWall + { + type adjointWallVelocity; + value uniform (0 0 0); + } + + inlet + { + type adjointInletVelocity; + value uniform (0 0 0); + } + + outlet + { + type adjointOutletVelocity; + value uniform (0 0 0); + } + + outlet-right + { + type adjointOutletVelocity; + value uniform (0 0 0); + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/alpha b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/alpha new file mode 100644 index 0000000000000000000000000000000000000000..47a9307a0b379f9a3b202c513de76c453fb5a128 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/alpha @@ -0,0 +1,62 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 2406 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + arch "LSB;label=32;scalar=64"; + class volScalarField; + location "0"; + object alpha; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 0 0 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + designWall + { + type zeroGradient; + } + IEntranceWall + { + type zeroGradient; + } + OEntranceWall + { + type zeroGradient; + } + OREntranceWall + { + type zeroGradient; + } + inlet + { + type zeroGradient; + } + outlet + { + type fixedValue; + value uniform 0; + } + outlet-right + { + type fixedValue; + value uniform 0; + } + frontBack + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/p new file mode 100644 index 0000000000000000000000000000000000000000..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/p @@ -0,0 +1,67 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object p; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + frontBack + { + type empty; + } + + designWall + { + type zeroGradient; + } + + IEntranceWall + { + type zeroGradient; + } + + OEntranceWall + { + type zeroGradient; + } + + OREntranceWall + { + type zeroGradient; + } + + inlet + { + type zeroGradient; + } + + outlet + { + type fixedValue; + value uniform 0.0; + } + + outlet-right + { + type fixedValue; + value uniform 0.0; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/pa new file mode 100644 index 0000000000000000000000000000000000000000..f769c3fad78461a63acbf623e2e3f47d5386058d --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/0.orig/pa @@ -0,0 +1,67 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object pa; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + frontBack + { + type empty; + } + + designWall + { + type zeroGradient; + } + + IEntranceWall + { + type zeroGradient; + } + + OEntranceWall + { + type zeroGradient; + } + + OREntranceWall + { + type zeroGradient; + } + + inlet + { + type zeroGradient; + } + + outlet + { + type adjointOutletPressure; + value uniform 0.0; + } + + outlet-right + { + type adjointOutletPressure; + value uniform 0.0; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/Allclean b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/Allclean new file mode 100755 index 0000000000000000000000000000000000000000..0500adda7aba9fe1fb065ed02845eec2fe667c1e --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/Allclean @@ -0,0 +1,14 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions +#------------------------------------------------------------------------------ + +cleanCase0 +if [ -d "reEval" ] +then + cd reEval + ./Allclean + cd .. +fi + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/Allrun b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/Allrun new file mode 100755 index 0000000000000000000000000000000000000000..8339d57e08f2e32d957e2c01fbfd3ceef750495f --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/Allrun @@ -0,0 +1,23 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + +restore0Dir + +runApplication blockMesh +runApplication topoSet +runApplication setsToZones -noFlipMap +runApplication setFields +runApplication decomposePar +runParallel $(getApplication) + +if [[ ! -z $(which cartesian2DMesh) ]] +then + echo "Re-evaluating topO solution on a body-fitted grid" + cd reEval + ./AllrunReEval > log.AllrunReEval 2>&1 && echo "End" >> log.AllrunReEval + cd .. +fi + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/constant/adjointRASProperties new file mode 100644 index 0000000000000000000000000000000000000000..11ad2362bfd78a40bd7bd6697715756ddad2dd86 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/constant/adjointRASProperties @@ -0,0 +1,23 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object adjointRASProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +adjointRASModel adjointLaminar; + +adjointTurbulence on; + +printCoeffs off; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..e6a2b5f9a069a7be02861534421e5a8f05a3535f --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/constant/transportProperties @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +transportModel Newtonian; + +nu [0 2 -1 0 0 0 0] 1e-03; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/constant/turbulenceProperties new file mode 100644 index 0000000000000000000000000000000000000000..1bf68b453b0f4c239bc037a23e5b63d874e544c0 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/constant/turbulenceProperties @@ -0,0 +1,28 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType laminar; + +RAS +{ + RASModel laminar; + + turbulence on; + + printCoeffs on; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/U new file mode 100644 index 0000000000000000000000000000000000000000..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/U @@ -0,0 +1,76 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0.001 0.001 0); + +boundaryField +{ + frontBack + { + type empty; + } + + designWall + { + type fixedValue; + value uniform (0 0 0); + } + + topOPatch + { + type fixedValue; + value uniform (0 0 0); + } + + IEntranceWall + { + type fixedValue; + value uniform (0 0 0); + } + + OEntranceWall + { + type fixedValue; + value uniform (0 0 0); + } + + OREntranceWall + { + type fixedValue; + value uniform (0 0 0); + } + + inlet + { + type fixedValue; + value uniform (1 0 0); + } + + outlet + { + type zeroGradient; + } + + outlet-right + { + type zeroGradient; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/Ua new file mode 100644 index 0000000000000000000000000000000000000000..fef9377d4a28b673cf026f9a71c0842d4d028b72 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/Ua @@ -0,0 +1,78 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + object Ua; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + frontBack + { + type empty; + } + + designWall + { + type adjointWallVelocity; + value uniform (0 0 0); + } + + topOPatch + { + type adjointWallVelocity; + value uniform (0 0 0); + } + + IEntranceWall + { + type adjointWallVelocity; + value uniform (0 0 0); + } + + OEntranceWall + { + type adjointWallVelocity; + value uniform (0 0 0); + } + + OREntranceWall + { + type adjointWallVelocity; + value uniform (0 0 0); + } + + inlet + { + type adjointInletVelocity; + value uniform (0 0 0); + } + + outlet + { + type adjointOutletVelocity; + value uniform (0 0 0); + } + + outlet-right + { + type adjointOutletVelocity; + value uniform (0 0 0); + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/p new file mode 100644 index 0000000000000000000000000000000000000000..a0dd7dbec959da3b819e28fa5fc59dc050689d4b --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/p @@ -0,0 +1,72 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object p; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + frontBack + { + type empty; + } + + designWall + { + type zeroGradient; + } + + topOPatch + { + type zeroGradient; + } + + IEntranceWall + { + type zeroGradient; + } + + OEntranceWall + { + type zeroGradient; + } + + OREntranceWall + { + type zeroGradient; + } + + inlet + { + type zeroGradient; + } + + outlet + { + type fixedValue; + value uniform 0.0; + } + + outlet-right + { + type fixedValue; + value uniform 0.0; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/pa new file mode 100644 index 0000000000000000000000000000000000000000..83151072e1c5cd0678d416bdf0f4df71c826875e --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/0/pa @@ -0,0 +1,72 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object pa; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + frontBack + { + type empty; + } + + designWall + { + type zeroGradient; + } + + topOPatch + { + type zeroGradient; + } + + IEntranceWall + { + type zeroGradient; + } + + OEntranceWall + { + type zeroGradient; + } + + OREntranceWall + { + type zeroGradient; + } + + inlet + { + type zeroGradient; + } + + outlet + { + type adjointOutletPressure; + value uniform 0.0; + } + + outlet-right + { + type adjointOutletPressure; + value uniform 0.0; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/Allclean b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/Allclean new file mode 100755 index 0000000000000000000000000000000000000000..4be93bec56369444f4b6b5bc27d314f920a9e758 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/Allclean @@ -0,0 +1,10 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions +#------------------------------------------------------------------------------ + +cleanCase +rm -f *.stl *.fms +foamDictionary system/meshDict -entry surfaceFile -set fileName > /dev/null + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/AllrunReEval b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/AllrunReEval new file mode 100755 index 0000000000000000000000000000000000000000..5f644be54759dd5311976ff36c763e446f9a8225 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/AllrunReEval @@ -0,0 +1,18 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + +time=$(foamDictionary ../system/controlDict -entry endTime -value) +cp ../optimisation/topOIsoSurfaces/topOIsoSurface$time.stl . +runApplication surfaceToFMS topOIsoSurface$time.stl +foamDictionary system/meshDict -entry surfaceFile -set topOIsoSurface$time.fms > /dev/null +sed -i 's/empty/wall/g' topOIsoSurface$time.fms +sed -i 's/inlet wall/inlet patch/g' topOIsoSurface$time.fms +sed -i 's/outlet wall/outlet patch/g' topOIsoSurface$time.fms +sed -i 's/outlet-right wall/outlet-right patch/g' topOIsoSurface$time.fms +runApplication cartesian2DMesh +runApplication decomposePar +runParallel $(getApplication) + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/constant/adjointRASProperties new file mode 100644 index 0000000000000000000000000000000000000000..11ad2362bfd78a40bd7bd6697715756ddad2dd86 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/constant/adjointRASProperties @@ -0,0 +1,23 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object adjointRASProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +adjointRASModel adjointLaminar; + +adjointTurbulence on; + +printCoeffs off; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..e6a2b5f9a069a7be02861534421e5a8f05a3535f --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/constant/transportProperties @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +transportModel Newtonian; + +nu [0 2 -1 0 0 0 0] 1e-03; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/constant/turbulenceProperties new file mode 100644 index 0000000000000000000000000000000000000000..1bf68b453b0f4c239bc037a23e5b63d874e544c0 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/constant/turbulenceProperties @@ -0,0 +1,28 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType laminar; + +RAS +{ + RASModel laminar; + + turbulence on; + + printCoeffs on; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..950ef55251075e0c9ddfff264faabf128fad7068 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/controlDict @@ -0,0 +1,47 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application adjointOptimisationFoam; + +startFrom latestTime; + +startTime 0; + +stopAt endTime; + +endTime 100; + +deltaT 1; + +writeControl timeStep; + +writeInterval 3000; + +purgeWrite 1; + +writeFormat ascii; + +writePrecision 6; + +writeCompression yes; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable yes; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/decomposeParDict new file mode 100644 index 0000000000000000000000000000000000000000..5a9fca91e0a8174b5f4f66095659aa5a299f2737 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/decomposeParDict @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +numberOfSubdomains 4; + +method scotch; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..e00cd83564bc009a64b5cc5a3961452de0360124 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/fvSchemes @@ -0,0 +1,51 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default steadyState; +} + +gradSchemes +{ + default Gauss linear; + gradConv cellLimited Gauss linear 1; +} + +divSchemes +{ + default Gauss linear; + div(phi,U) bounded Gauss linearUpwind gradConv; + div(-phi,Ua) bounded Gauss linearUpwind gradConv; +} + +interpolationSchemes +{ + default linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +snGradSchemes +{ + default corrected; +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..819fb7bd417fb7105bc33695c5cb04daf5c2a866 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/fvSolution @@ -0,0 +1,56 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +SIMPLE +{ + nNonOrthogonalCorrectors 0; +} + +solvers +{ + "p|pa.*|bTilda" + { + solver PCG; + preconditioner DIC; + tolerance 1e-09; + relTol 0.1; + } + + "U|Ua.*" + { + solver PBiCGStab; + preconditioner DILU; + tolerance 1e-9; + relTol 0.1; + }; +} + +relaxationFactors +{ + fields + { + p 0.3; + "pa.*" 0.2; + } + equations + { + U 0.7; + "Ua.*" 0.5; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/meshDict new file mode 100644 index 0000000000000000000000000000000000000000..1706f62fa8e5bdff844124dcb86fcd167acc8b88 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/meshDict @@ -0,0 +1,38 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 2406 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +FoamFile +{ + version 2; + format ascii; + class dictionary; + object meshDict; +} + +maxCellSize 0.006; + +surfaceFile fileName; + +boundaryCellSize 0.004; + +boundaryCellSizeRefinementThickness 0.015; + +boundaryLayers +{ + patchBoundaryLayers + { + "lower.*|upper.*|left.*|right.*|topOPatch" + { + nLayers 5; + thicknessRatio 1.8; + } + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/optimisationDict new file mode 100644 index 0000000000000000000000000000000000000000..71efaddeb90460c7e62be0ae4f431cc1f474b25a --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/reEval/system/optimisationDict @@ -0,0 +1,91 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object optimisationDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +optimisationManager singleRun; + +primalSolvers +{ + op1 + { + active true; + type incompressible; + solver simple; + solutionControls + { + nIters 3000; + residualControl + { + "p.*" 5.e-7; + "U.*" 5.e-7; + } + } + } +} + +adjointManagers +{ + adjManager1 + { + primalSolver op1; + adjointSolvers + { + as1 + { + // choose adjoint solver + //---------------------- + active false; + type incompressible; + solver adjointSimple; + computeSensitivities false; + // manage objectives + //------------------ + objectives + { + type incompressible; + objectiveNames + { + losses + { + weight 1.; + type PtLosses; + patches (inlet "outlet.*"); + normalise true; + } + } + } + // ATC treatment + //-------------- + ATCModel + { + ATCModel standard; + } + // solution control + //------------------ + solutionControls + { + nIters 300; + residualControl + { + "pa.*" 5.e-7; + "Ua.*" 5.e-7; + } + } + } + } + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..0172ed407470f3cf700dcdae61ab353000061fbf --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/blockMeshDict @@ -0,0 +1,209 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +scale 1; + +vertices +( + (0 0 0) //0 + (0 0.3 0) //1 + (0 0.5 0) //2 + (0 0.55 0) //3 + (0 0.75 0) //4 + (0 1 0) //5 + (0.5 0 0) //6 + (0.5 0.3 0) //7 + (0.5 0.5 0) //8 + (0.5 0.55 0) //9 + (0.5 0.75 0) //10 + (0.5 1 0) //11 + (0.7 0 0) //12 + (0.7 0.3 0) //13 + (0.7 0.5 0) //14 + (0.7 0.55 0) //15 + (0.7 0.75 0) //16 + (0.7 1 0) //17 + (1 0 0) //18 + (1 0.3 0) //19 + (1 0.5 0) //20 + (1 0.55 0) //21 + (1 0.75 0) //22 + (1 1 0) //23 + (0 0 0.1) //24 + (0 0.3 0.1) //25 + (0 0.5 0.1) //26 + (0 0.55 0.1) //27 + (0 0.75 0.1) //28 + (0 1 0.1) //29 + (0.5 0 0.1) //30 + (0.5 0.3 0.1) //31 + (0.5 0.5 0.1) //32 + (0.5 0.55 0.1) //33 + (0.5 0.75 0.1) //34 + (0.5 1 0.1) //35 + (0.7 0 0.1) //36 + (0.7 0.3 0.1) //37 + (0.7 0.5 0.1) //38 + (0.7 0.55 0.1) //39 + (0.7 0.75 0.1) //40 + (0.7 1 0.1) //41 + (1 0 0.1) //42 + (1 0.3 0.1) //43 + (1 0.5 0.1) //44 + (1 0.55 0.1) //45 + (1 0.75 0.1) //46 + (1 1 0.1) //47 + + (-0.5 0.3 0) //48 + (-0.5 0.5 0) //49 + (-0.5 0.3 0.1) //50 + (-0.5 0.5 0.1) //51 + + (0.5 -0.5 0) //52 + (0.7 -0.5 0) //53 + (0.5 -0.5 0.1) //54 + (0.7 -0.5 0.1) //55 + + (1.5 0.55 0) //56 + (1.5 0.75 0) //57 + (1.5 0.55 0.1) //58 + (1.5 0.75 0.1) //59 +); + +blocks +( + hex (48 50 25 1 49 51 26 2 ) (1 50 20) simpleGrading (1 1 1) //0 + hex (0 24 30 6 1 25 31 7 ) (1 50 30) simpleGrading (1 1 1) //1 + hex (1 25 31 7 2 26 32 8 ) (1 50 20) simpleGrading (1 1 1) //2 + hex (2 26 32 8 3 27 33 9 ) (1 50 5) simpleGrading (1 1 1) //3 + hex (3 27 33 9 4 28 34 10) (1 50 20) simpleGrading (1 1 1) //4 + hex (4 28 34 10 5 29 35 11) (1 50 25) simpleGrading (1 1 1) //5 + hex (6 30 36 12 7 31 37 13) (1 20 30) simpleGrading (1 1 1) //6 + hex (7 31 37 13 8 32 38 14) (1 20 20) simpleGrading (1 1 1) //7 + hex (8 32 38 14 9 33 39 15) (1 20 5) simpleGrading (1 1 1) //8 + hex (9 33 39 15 10 34 40 16) (1 20 20) simpleGrading (1 1 1) //9 + hex (10 34 40 16 11 35 41 17) (1 20 25) simpleGrading (1 1 1) //10 + hex (12 36 42 18 13 37 43 19) (1 30 30) simpleGrading (1 1 1) //11 + hex (13 37 43 19 14 38 44 20) (1 30 20) simpleGrading (1 1 1) //12 + hex (14 38 44 20 15 39 45 21) (1 30 5) simpleGrading (1 1 1) //13 + hex (15 39 45 21 16 40 46 22) (1 30 20) simpleGrading (1 1 1) //14 + hex (16 40 46 22 17 41 47 23) (1 30 25) simpleGrading (1 1 1) //15 + hex (52 54 55 53 6 30 36 12) (1 20 50) simpleGrading (1 1 1) //16 + hex (21 45 58 56 22 46 59 57) (1 50 20) simpleGrading (1 1 1) //17 +); + +edges +( +); + +patches +( + wall designWall + ( + (1 0 24 25) + (3 2 26 27) + (4 3 27 28) + (5 4 28 29) + (11 5 29 35) + (17 11 35 41) + (23 17 41 47) + (22 23 47 46) + (20 21 45 44) + (19 20 44 43) + (18 19 43 42) + (0 6 30 24) + (12 18 42 36) + ) + + wall IEntranceWall + ( + (48 1 25 50) + (51 26 2 49) + ) + + wall OEntranceWall + ( + (6 52 54 30) + (12 36 55 53) + ) + + wall OREntranceWall + ( + (22 46 59 57) + (21 56 58 45) + ) + + patch inlet + ( + (49 48 50 51) + ) + patch outlet + ( + (52 53 55 54) + ) + patch outlet-right + ( + (56 57 59 58) + ) + empty frontBack + ( + (51 50 25 26) + (49 2 1 48) + + (30 54 55 36) + (6 12 53 52) + (46 45 58 59) + (22 57 56 21) + + (0 1 7 6) + (1 2 8 7) + (2 3 9 8) + (3 4 10 9) + (4 5 11 10) + (6 7 13 12) + (7 8 14 13) + (8 9 15 14) + (9 10 16 15) + (10 11 17 16) + (12 13 19 18) + (13 14 20 19) + (14 15 21 20) + (15 16 22 21) + (16 17 23 22) + + (24 30 31 25) + (25 31 32 26) + (26 32 33 27) + (27 33 34 28) + (28 34 35 29) + (30 36 37 31) + (31 37 38 32) + (32 38 39 33) + (33 39 40 34) + (34 40 41 35) + (36 42 43 37) + (37 43 44 38) + (38 44 45 39) + (39 45 46 40) + (40 46 47 41) + ) +); + +mergePatchPairs +( +); + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..bd32cbb86fcbf3c0ebd5a43fd2c6cadea185a0f1 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/controlDict @@ -0,0 +1,47 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application adjointOptimisationFoam; + +startFrom latestTime; + +startTime 0; + +stopAt endTime; + +endTime 50; + +deltaT 1; + +writeControl timeStep; + +writeInterval 50; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression yes; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable yes; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/decomposeParDict new file mode 100644 index 0000000000000000000000000000000000000000..5a9fca91e0a8174b5f4f66095659aa5a299f2737 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/decomposeParDict @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +numberOfSubdomains 4; + +method scotch; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/fvOptions new file mode 100644 index 0000000000000000000000000000000000000000..bf76efad182a76b5726648b0b8520a906acd42a1 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/fvOptions @@ -0,0 +1,26 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvOptions; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +momSource +{ + type topOSource; + names (U Ua); + function linear; + interpolationField beta; +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..e00cd83564bc009a64b5cc5a3961452de0360124 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/fvSchemes @@ -0,0 +1,51 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default steadyState; +} + +gradSchemes +{ + default Gauss linear; + gradConv cellLimited Gauss linear 1; +} + +divSchemes +{ + default Gauss linear; + div(phi,U) bounded Gauss linearUpwind gradConv; + div(-phi,Ua) bounded Gauss linearUpwind gradConv; +} + +interpolationSchemes +{ + default linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +snGradSchemes +{ + default corrected; +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..819fb7bd417fb7105bc33695c5cb04daf5c2a866 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/fvSolution @@ -0,0 +1,56 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +SIMPLE +{ + nNonOrthogonalCorrectors 0; +} + +solvers +{ + "p|pa.*|bTilda" + { + solver PCG; + preconditioner DIC; + tolerance 1e-09; + relTol 0.1; + } + + "U|Ua.*" + { + solver PBiCGStab; + preconditioner DILU; + tolerance 1e-9; + relTol 0.1; + }; +} + +relaxationFactors +{ + fields + { + p 0.3; + "pa.*" 0.2; + } + equations + { + U 0.7; + "Ua.*" 0.5; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/optimisationDict new file mode 100644 index 0000000000000000000000000000000000000000..6b0f36eb35fb51bc6316a32bf7d8c1fd25c37b44 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/optimisationDict @@ -0,0 +1,140 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object optimisationDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +optimisationManager steadyOptimisation; + +primalSolvers +{ + op1 + { + active true; + type incompressible; + solver simple; + solutionControls + { + nIters 300; + residualControl + { + "p.*" 5.e-7; + "U.*" 5.e-7; + } + } + } +} + +adjointManagers +{ + adjManager1 + { + primalSolver op1; + adjointSolvers + { + as1 + { + // choose adjoint solver + //---------------------- + active true; + type incompressible; + solver adjointSimple; + // manage objectives + //------------------ + objectives + { + type incompressible; + objectiveNames + { + losses + { + weight 1.; + type PtLosses; + patches (inlet "outlet.*"); + normalise true; + } + } + } + // ATC treatment + //-------------- + ATCModel + { + ATCModel standard; + } + // solution control + //------------------ + solutionControls + { + nIters 300; + residualControl + { + "pa.*" 5.e-7; + "Ua.*" 5.e-7; + } + } + } + vol + { + // choose adjoint solver + //---------------------- + active true; + type null; + isConstraint true; + // manage objectives + //------------------ + objectives + { + type geometric; + objectiveNames + { + vol + { + weight 1.; + type topOVolume; + percentage 0.462; + } + } + } + } + } + } +} + +optimisation +{ + designVariables + { + type topO; + sensitivityType topO; + fixedZeroPorousZones (IEntranceSet OEntranceSet OREntranceSet); + regularisation + { + regularise true; + growFromWalls true; + meanRadiusMult 10; + function tanh; + b 20; + } + betaMax 2500; + maxInitChange 0.2; + } + updateMethod + { + method ISQP; + preconditioner ShermanMorrison; + includeExtraVars true; + c 2; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/setFieldsDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/setFieldsDict new file mode 100644 index 0000000000000000000000000000000000000000..fe2815574ac7d9540015dd1d812a4e9a333b8f13 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/setFieldsDict @@ -0,0 +1,35 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2206 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object setFieldsDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +defaultFieldValues +( + volScalarFieldValue alpha 0 +); + +regions +( + boxToCell + { + box (0.0 0.0 0.0)(0.35 0.15 1.0); + + fieldValues + ( + volScalarFieldValue alpha 1 + ); + } +); + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/topoSetDict new file mode 100644 index 0000000000000000000000000000000000000000..60918337c20f2a5b3311204692c4cdd1260e2f9c --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x-init/system/topoSetDict @@ -0,0 +1,82 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object topoSetDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +actions +( + // Inlet + { + name IEntranceSet; + type cellSet; + action new; + source boxToCell; + sourceInfo + { + box (-1.0 0.0 0.0)(0.0 1.0 1.0); + } + } + + // Outlet + { + name OEntranceSet; + type cellSet; + action new; + source boxToCell; + sourceInfo + { + box (-1.0 -1.0 0.0)(1.0 0.0 1.0); + } + } + + // Outlet-right + { + name OREntranceSet; + type cellSet; + action new; + source boxToCell; + sourceInfo + { + box (1.0 0.0 0.0)(2.0 1.0 1.0); + } + } + + // Design space + { + name designSpace; + type cellSet; + action new; + source boxToCell; + sourceInfo + { + box (0.0 0.0 0.0)(0.1 0.1 1.0); + } + } + + // Initialisation + /* + { + name init; + type cellSet; + action new; + source boxToCell; + sourceInfo + { + box (0.0 0.0 0.0)(0.45 0.25 1.0); + } + } + */ +); + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/U index 874af8846365dc8cfb81c7bada82949b585b2373..b530b9cfb570866f413e37d0352fedea0fbdbf88 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/Ua index d7d34bb6f803e2dc94864acd0f880532a7a71544..fb7034d992bed745f497bc123b807916de509fe8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/p index f65b4a99627e3bea096566bc2384712dd662a750..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/pa index bc7f17f326e2b17d5a3a377d217b41c1cc8dc4c9..f769c3fad78461a63acbf623e2e3f47d5386058d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/U index c923720500163f7557b43bdd2130e1957b6bfb24..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/Ua index f500ee00c8dda0e4f3ebabebda441373d5cf25b5..fef9377d4a28b673cf026f9a71c0842d4d028b72 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/p index c62028952b0ebddce60b2195a84b8e297b1ef846..a0dd7dbec959da3b819e28fa5fc59dc050689d4b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/pa index ab9a180d582ca9894f5a4e01baa7d653760b822d..83151072e1c5cd0678d416bdf0f4df71c826875e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/fvSchemes index 6a5f34082860c1dc866e03fad71aae1949c0e4bb..e00cd83564bc009a64b5cc5a3961452de0360124 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/optimisationDict index 3030be7f9715c73108499e0ed5448b9c1e8a00d4..71efaddeb90460c7e62be0ae4f431cc1f474b25a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/controlDict index a298d749e51ac74db85e7164ff1349ab3f36e766..bd32cbb86fcbf3c0ebd5a43fd2c6cadea185a0f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvOptions index 06a7f12f544faf67e1d550dd1d465f7f9b1d85a7..bf76efad182a76b5726648b0b8520a906acd42a1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvSchemes index 6a5f34082860c1dc866e03fad71aae1949c0e4bb..e00cd83564bc009a64b5cc5a3961452de0360124 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/optimisationDict index 7a683158017c28a7063237185527a573af419bcf..e8d69839f3ebfb0cecd98fa278195d4d1f1d9d6d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -61,7 +61,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_10x/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/U index 874af8846365dc8cfb81c7bada82949b585b2373..b530b9cfb570866f413e37d0352fedea0fbdbf88 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/Ua index d7d34bb6f803e2dc94864acd0f880532a7a71544..fb7034d992bed745f497bc123b807916de509fe8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/p index f65b4a99627e3bea096566bc2384712dd662a750..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/pa index bc7f17f326e2b17d5a3a377d217b41c1cc8dc4c9..f769c3fad78461a63acbf623e2e3f47d5386058d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/U index c923720500163f7557b43bdd2130e1957b6bfb24..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/Ua index f500ee00c8dda0e4f3ebabebda441373d5cf25b5..fef9377d4a28b673cf026f9a71c0842d4d028b72 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/p index c62028952b0ebddce60b2195a84b8e297b1ef846..a0dd7dbec959da3b819e28fa5fc59dc050689d4b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/pa index ab9a180d582ca9894f5a4e01baa7d653760b822d..83151072e1c5cd0678d416bdf0f4df71c826875e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/fvSchemes index 6a5f34082860c1dc866e03fad71aae1949c0e4bb..e00cd83564bc009a64b5cc5a3961452de0360124 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/optimisationDict index 3030be7f9715c73108499e0ed5448b9c1e8a00d4..71efaddeb90460c7e62be0ae4f431cc1f474b25a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/controlDict index a298d749e51ac74db85e7164ff1349ab3f36e766..bd32cbb86fcbf3c0ebd5a43fd2c6cadea185a0f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvOptions index 06a7f12f544faf67e1d550dd1d465f7f9b1d85a7..bf76efad182a76b5726648b0b8520a906acd42a1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvSchemes index 6a5f34082860c1dc866e03fad71aae1949c0e4bb..e00cd83564bc009a64b5cc5a3961452de0360124 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/optimisationDict index de3ddadfcf7bc6a6f5dcd7e5d1ab505939b2b6c7..2820b86bf7542f303acb7c9c3a33a3e6fba0834d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -61,7 +61,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/U index 874af8846365dc8cfb81c7bada82949b585b2373..b530b9cfb570866f413e37d0352fedea0fbdbf88 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/Ua index d7d34bb6f803e2dc94864acd0f880532a7a71544..fb7034d992bed745f497bc123b807916de509fe8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/p index f65b4a99627e3bea096566bc2384712dd662a750..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/pa index bc7f17f326e2b17d5a3a377d217b41c1cc8dc4c9..f769c3fad78461a63acbf623e2e3f47d5386058d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/U index c923720500163f7557b43bdd2130e1957b6bfb24..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/Ua index f500ee00c8dda0e4f3ebabebda441373d5cf25b5..fef9377d4a28b673cf026f9a71c0842d4d028b72 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/p index c62028952b0ebddce60b2195a84b8e297b1ef846..a0dd7dbec959da3b819e28fa5fc59dc050689d4b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/pa index ab9a180d582ca9894f5a4e01baa7d653760b822d..83151072e1c5cd0678d416bdf0f4df71c826875e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/fvSchemes index 6a5f34082860c1dc866e03fad71aae1949c0e4bb..e00cd83564bc009a64b5cc5a3961452de0360124 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/optimisationDict index a994d088fc91fa2d4e454651d3017e3bb0764f5b..5917470274b2e6b28b8d90826b6170b2a1286315 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/controlDict index a298d749e51ac74db85e7164ff1349ab3f36e766..bd32cbb86fcbf3c0ebd5a43fd2c6cadea185a0f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvOptions index 9904a74a0a949d834cb470d0cfe1e0e1b93f0143..882e014cd85235d4bbfcc84a98333328d9d6089a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvSchemes index 6a5f34082860c1dc866e03fad71aae1949c0e4bb..e00cd83564bc009a64b5cc5a3961452de0360124 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvSolution index 4858ac70b355bff4075d19da5b42d84553367fdd..819fb7bd417fb7105bc33695c5cb04daf5c2a866 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/optimisationDict index bfc58c35883bf803000c1fd73e1a31211b8e79c8..e20519b07ae457e14ed7637c3cffd0b26cd2c8e2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -61,7 +61,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } @@ -105,7 +105,7 @@ adjointManagers inletPatches (inlet); outletPatches (outlet outlet-right); targetFractions (0.5 0.5); - normalize true; + normalise true; target 1.e-5; } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet/porosityBased/R_20x_massConstr/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/U index b7621807bc5808ec8d4ac881e4d6e511d3ef0845..1f61f3dab12c779f959ba6561a355416b2cf74f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/Ua index d7d34bb6f803e2dc94864acd0f880532a7a71544..fb7034d992bed745f497bc123b807916de509fe8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/p index f65b4a99627e3bea096566bc2384712dd662a750..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/pa index bc7f17f326e2b17d5a3a377d217b41c1cc8dc4c9..f769c3fad78461a63acbf623e2e3f47d5386058d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/turbulenceProperties index f0c14e0b36b0fbba454fc551ecfd76fba5351058..bd671808c9fa08a172a41e34eaf0ab8e6a373113 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/U index c923720500163f7557b43bdd2130e1957b6bfb24..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/Ua index f500ee00c8dda0e4f3ebabebda441373d5cf25b5..fef9377d4a28b673cf026f9a71c0842d4d028b72 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/p index c62028952b0ebddce60b2195a84b8e297b1ef846..a0dd7dbec959da3b819e28fa5fc59dc050689d4b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/pa index 315b81f5221ce56b0178145a427700714b3ebe39..a6e3457ffd8fd40be67259740cb314544eb1f3bd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/fvSchemes index 1bbabaef0fa9cfa1bf03752ebb957fd1df70024d..86054cb57b53a55c1d2cfd5029d4811627957c7d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/fvSolution index b42c0591cb2ecef9e74fcf23cccc5d25de26e551..8ae1bc6426ac673ade86868cc1e0146fa749d44a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/optimisationDict index a994d088fc91fa2d4e454651d3017e3bb0764f5b..5917470274b2e6b28b8d90826b6170b2a1286315 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/blockMeshDict index 905a5f26304d2056057068c47a44fcf13b5398a0..dcad20479a5e38be248ead111dd4836cfc205265 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/controlDict index eaa31402d0353fefaab1bc50aaf319e5667ca2f6..78e91cf0592a11bc5a0467b1d7f945baada95ca1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvOptions index defa657351bb165bdf638e448dee5663d9d689f1..9c66999debe5880785694001c2aa1f72f74c6ad0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvSchemes index 622cac11da1a3e2fdf7a908a4c5e03791ea7cac0..3ac6a58c04cc9c35a73d4edb2b5627cb356bc02e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvSolution index 93ba6b4a4cf32658e69f40a6228f91e8cf785724..88b28396b56b6b90038f0aa1e5cd85f27dae083c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/optimisationDict index 8e6dadcc1a19ffa2107acfa66e295e730243ce91..33c506fd73392016324398fc5d0e9d4fc3f331a2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } @@ -110,7 +110,7 @@ adjointManagers outletPatches (outlet outlet-right); targetFractions (0.3 0.7); target 1.e-05; - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/topoSetDict index 22abc338193c968b0812adbb866f3399567d5dda..0c4ab4d68ddb14a7b0e2989bc525361d4e3ee02f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-30-70/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/U index b7621807bc5808ec8d4ac881e4d6e511d3ef0845..1f61f3dab12c779f959ba6561a355416b2cf74f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/Ua index d7d34bb6f803e2dc94864acd0f880532a7a71544..fb7034d992bed745f497bc123b807916de509fe8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/p index f65b4a99627e3bea096566bc2384712dd662a750..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/pa index bc7f17f326e2b17d5a3a377d217b41c1cc8dc4c9..f769c3fad78461a63acbf623e2e3f47d5386058d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/turbulenceProperties index f0c14e0b36b0fbba454fc551ecfd76fba5351058..bd671808c9fa08a172a41e34eaf0ab8e6a373113 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/U index c923720500163f7557b43bdd2130e1957b6bfb24..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/Ua index f500ee00c8dda0e4f3ebabebda441373d5cf25b5..fef9377d4a28b673cf026f9a71c0842d4d028b72 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/p index c62028952b0ebddce60b2195a84b8e297b1ef846..a0dd7dbec959da3b819e28fa5fc59dc050689d4b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/pa index 315b81f5221ce56b0178145a427700714b3ebe39..a6e3457ffd8fd40be67259740cb314544eb1f3bd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/fvSchemes index 1bbabaef0fa9cfa1bf03752ebb957fd1df70024d..86054cb57b53a55c1d2cfd5029d4811627957c7d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/fvSolution index b42c0591cb2ecef9e74fcf23cccc5d25de26e551..8ae1bc6426ac673ade86868cc1e0146fa749d44a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/optimisationDict index a994d088fc91fa2d4e454651d3017e3bb0764f5b..5917470274b2e6b28b8d90826b6170b2a1286315 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/blockMeshDict index 905a5f26304d2056057068c47a44fcf13b5398a0..dcad20479a5e38be248ead111dd4836cfc205265 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/controlDict index eebc8a367812d5dc7f41fab5f051666251dd78d5..2908d440165631b43607889ab4bd65116a38a58c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvOptions index defa657351bb165bdf638e448dee5663d9d689f1..9c66999debe5880785694001c2aa1f72f74c6ad0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvSchemes index 622cac11da1a3e2fdf7a908a4c5e03791ea7cac0..3ac6a58c04cc9c35a73d4edb2b5627cb356bc02e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvSolution index 93ba6b4a4cf32658e69f40a6228f91e8cf785724..88b28396b56b6b90038f0aa1e5cd85f27dae083c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/optimisationDict index aa99fd41ed3c7ac26843e9b4216e04bdd3097330..a2e78523d34640833160e9e907defcb2d4be8309 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } @@ -110,7 +110,7 @@ adjointManagers outletPatches (outlet outlet-right); targetFractions (0.5 0.5); target 1.e-05; - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/topoSetDict index 22abc338193c968b0812adbb866f3399567d5dda..0c4ab4d68ddb14a7b0e2989bc525361d4e3ee02f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-50-50/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/U index b7621807bc5808ec8d4ac881e4d6e511d3ef0845..1f61f3dab12c779f959ba6561a355416b2cf74f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/Ua index d7d34bb6f803e2dc94864acd0f880532a7a71544..fb7034d992bed745f497bc123b807916de509fe8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/p index f65b4a99627e3bea096566bc2384712dd662a750..7296b2ca9bdd4e02cd18f257b6f09959a5346c90 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/pa index bc7f17f326e2b17d5a3a377d217b41c1cc8dc4c9..f769c3fad78461a63acbf623e2e3f47d5386058d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/turbulenceProperties index f0c14e0b36b0fbba454fc551ecfd76fba5351058..bd671808c9fa08a172a41e34eaf0ab8e6a373113 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/U index c923720500163f7557b43bdd2130e1957b6bfb24..a629c1b4ba54e0982844ea94cff6fbca7fc34e08 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/Ua index f500ee00c8dda0e4f3ebabebda441373d5cf25b5..fef9377d4a28b673cf026f9a71c0842d4d028b72 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/p index c62028952b0ebddce60b2195a84b8e297b1ef846..a0dd7dbec959da3b819e28fa5fc59dc050689d4b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/pa index 315b81f5221ce56b0178145a427700714b3ebe39..a6e3457ffd8fd40be67259740cb314544eb1f3bd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/fvSchemes index 1bbabaef0fa9cfa1bf03752ebb957fd1df70024d..86054cb57b53a55c1d2cfd5029d4811627957c7d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/fvSolution index b42c0591cb2ecef9e74fcf23cccc5d25de26e551..8ae1bc6426ac673ade86868cc1e0146fa749d44a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/optimisationDict index a994d088fc91fa2d4e454651d3017e3bb0764f5b..5917470274b2e6b28b8d90826b6170b2a1286315 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/blockMeshDict index 905a5f26304d2056057068c47a44fcf13b5398a0..dcad20479a5e38be248ead111dd4836cfc205265 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/controlDict index eebc8a367812d5dc7f41fab5f051666251dd78d5..2908d440165631b43607889ab4bd65116a38a58c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvOptions index defa657351bb165bdf638e448dee5663d9d689f1..9c66999debe5880785694001c2aa1f72f74c6ad0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvSchemes index 622cac11da1a3e2fdf7a908a4c5e03791ea7cac0..3ac6a58c04cc9c35a73d4edb2b5627cb356bc02e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvSolution index 93ba6b4a4cf32658e69f40a6228f91e8cf785724..88b28396b56b6b90038f0aa1e5cd85f27dae083c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/optimisationDict index 39495b23f7f56f91abead3082663109ce4b3951d..9edb07a4f625e344be49c18b523c833fa59d50d5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } @@ -110,7 +110,7 @@ adjointManagers outletPatches (outlet outlet-right); targetFractions (0.7 0.3); target 1.e-05; - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/topoSetDict index 22abc338193c968b0812adbb866f3399567d5dda..0c4ab4d68ddb14a7b0e2989bc525361d4e3ee02f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/1_Inlet_2_Outlet_Dual_Bottleneck/losses-mass-70-30/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/U new file mode 100644 index 0000000000000000000000000000000000000000..ee4f7c4a52de48389f1d6aa79843af7def6f5815 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/U @@ -0,0 +1,44 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + "wall|fixedWalls" + { + type fixedValue; + value uniform (0 0 0); + } + inlet + { + type surfaceNormalFixedValue; + refValue uniform -10; + value uniform (0 0 0); + } + "outlet.*" + { + type zeroGradient; + } + symmetry + { + type symmetry; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/Ua new file mode 100644 index 0000000000000000000000000000000000000000..f4fb9ab8580323975031c53cc853e002288f02c1 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/Ua @@ -0,0 +1,44 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + "wall|fixedWalls" + { + type fixedValue; + value uniform (0 0 0); + } + inlet + { + type adjointInletVelocity; + value uniform (0 0 0); + } + "outlet.*" + { + type adjointOutletVelocityFlux; + value uniform (0 0 0); + } + symmetry + { + type symmetry; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/p new file mode 100644 index 0000000000000000000000000000000000000000..9cb7f2d0c6b77e62ea795e24340bbf43b9f9b61f --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/p @@ -0,0 +1,42 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object p; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + "wall|fixedWalls" + { + type zeroGradient; + } + inlet + { + type zeroGradient; + } + "outlet.*" + { + type fixedValue; + value uniform 0; + } + symmetry + { + type symmetry; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/pa new file mode 100644 index 0000000000000000000000000000000000000000..227808f1d183cb3c02e340ca57bf057e7f8d2ccd --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/0.orig/pa @@ -0,0 +1,42 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object p; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + "wall|fixedWalls" + { + type zeroGradient; + } + inlet + { + type zeroGradient; + } + "outlet.*" + { + type adjointOutletPressure; + value uniform 0; + } + symmetry + { + type symmetry; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/Allclean b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/Allclean new file mode 100755 index 0000000000000000000000000000000000000000..1fc5ecb533eb350b9d5548e526b7879d6b8b05ba --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/Allclean @@ -0,0 +1,15 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions +#------------------------------------------------------------------------------ + +cleanCase0 + +if [ -d reEval ] +then + cd reEval + ./Allclean + cd .. +fi + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/Allrun b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/Allrun new file mode 100755 index 0000000000000000000000000000000000000000..6fa0be27e0ac443d77181ad0cfe38e7ff63775a5 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/Allrun @@ -0,0 +1,23 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + +runApplication blockMesh +runApplication -s 'refinementZones' topoSet +runApplication refineHexMesh -overwrite allIO +runApplication -s 'allZones' topoSet +runApplication setsToZones -noFlipMap +runApplication createPatch -overwrite +restore0Dir +runApplication decomposePar +runParallel $(getApplication) + +if [ -d reEval ] +then + cd reEval + ./AllrunReEval > log.AllrunReEval 2>&1 && echo "End" >> log.AllrunReEval + cd .. +fi + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/constant/adjointRASProperties new file mode 100644 index 0000000000000000000000000000000000000000..11ad2362bfd78a40bd7bd6697715756ddad2dd86 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/constant/adjointRASProperties @@ -0,0 +1,23 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object adjointRASProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +adjointRASModel adjointLaminar; + +adjointTurbulence on; + +printCoeffs off; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..e6a2b5f9a069a7be02861534421e5a8f05a3535f --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/constant/transportProperties @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +transportModel Newtonian; + +nu [0 2 -1 0 0 0 0] 1e-03; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/constant/turbulenceProperties new file mode 100644 index 0000000000000000000000000000000000000000..1bf68b453b0f4c239bc037a23e5b63d874e544c0 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/constant/turbulenceProperties @@ -0,0 +1,28 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType laminar; + +RAS +{ + RASModel laminar; + + turbulence on; + + printCoeffs on; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/U new file mode 100644 index 0000000000000000000000000000000000000000..843265c0a4a543705c784c6a53805531264c7d0f --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/U @@ -0,0 +1,45 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + "wall|fixedWalls|topOPatch" + { + type fixedValue; + value uniform (0 0 0); + } + inlet + { + type surfaceNormalFixedValue; + refValue uniform -10; + value uniform (0 0 0); + } + "outlet.*" + { + type zeroGradient; + } + symmetry + { + type symmetry; + } + #includeEtc "caseDicts/setConstraintTypes" +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/Ua new file mode 100644 index 0000000000000000000000000000000000000000..40deb6c146411921ebe94d4d672d28f7798f4357 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/Ua @@ -0,0 +1,45 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + "wall|fixedWalls|topOPatch" + { + type fixedValue; + value uniform (0 0 0); + } + inlet + { + type adjointInletVelocity; + value uniform (0 0 0); + } + "outlet.*" + { + type adjointOutletVelocityFlux; + value uniform (0 0 0); + } + symmetry + { + type symmetry; + } + #includeEtc "caseDicts/setConstraintTypes" +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/p new file mode 100644 index 0000000000000000000000000000000000000000..cc6cbf8ad1c8a2387241c0f69d10e3ed3b401c9f --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/p @@ -0,0 +1,43 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object p; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + "wall|fixedWalls|topOPatch" + { + type zeroGradient; + } + inlet + { + type zeroGradient; + } + "outlet.*" + { + type fixedValue; + value uniform 0; + } + symmetry + { + type symmetry; + } + #includeEtc "caseDicts/setConstraintTypes" +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/pa new file mode 100644 index 0000000000000000000000000000000000000000..d88fefb6eebeb7b65d5ef841a560e283036cb734 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/0.orig/pa @@ -0,0 +1,43 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object p; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + "wall|fixedWalls|topOPatch" + { + type zeroGradient; + } + inlet + { + type zeroGradient; + } + "outlet.*" + { + type adjointOutletPressure; + value uniform 0; + } + symmetry + { + type symmetry; + } + #includeEtc "caseDicts/setConstraintTypes" +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/Allclean b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/Allclean new file mode 100755 index 0000000000000000000000000000000000000000..39b3cdb14e2e19ea10c8f763448be8c47f378777 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/Allclean @@ -0,0 +1,22 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions +#------------------------------------------------------------------------------ + +cleanCase0 + +# Remove surface and features +rm -rf constant/extendedFeatureEdgeMesh +rm -rf constant/triSurface/* + +# Restore default entries in snappyHexMeshDict and surfaceFeatureExtractDict +foamDictionary system/snappyHexMeshDict -entry castellatedMeshControls.locationInMesh -remove +foamDictionary system/snappyHexMeshDict -entry castellatedMeshControls.locationInMesh -add "myLocationInMesh" + +topOEndTime=$(foamDictionary ../system/controlDict -entry 'endTime' -value) +fileName=topOIsoSurface$topOEndTime + +sed -i "s|$fileName|stlName|g" system/snappyHexMeshDict +sed -i "s|$fileName|stlName|g" system/surfaceFeatureExtractDict + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/AllrunReEval b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/AllrunReEval new file mode 100755 index 0000000000000000000000000000000000000000..3358572520f92fe8117212ca68eb8904e2d01cc7 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/AllrunReEval @@ -0,0 +1,31 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + +topOEndTime=$(foamDictionary ../system/controlDict -entry 'endTime' -value) +fileName=topOIsoSurface$topOEndTime + +# A bit ugly but expanding a stored variable of the form "(a b c)" seems tricky +locationInMesh="\(0.058 0.15 0.094\)" +sed -i "s|myLocationInMesh|$locationInMesh|g" system/snappyHexMeshDict +sed -i "s|stlName|$fileName|g" system/snappyHexMeshDict +sed -i "s|stlName|$fileName|g" system/surfaceFeatureExtractDict + +mkdir -p constant/triSurface +cp ../optimisation/topOIsoSurfaces/$fileName.stl constant/triSurface/. + +runApplication blockMesh + +runApplication surfaceFeatureExtract + +runApplication decomposePar + +runParallel snappyHexMesh -overwrite + +restore0Dir -processor + +runParallel $(getApplication) + + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/adjointRASProperties new file mode 100644 index 0000000000000000000000000000000000000000..11ad2362bfd78a40bd7bd6697715756ddad2dd86 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/adjointRASProperties @@ -0,0 +1,23 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object adjointRASProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +adjointRASModel adjointLaminar; + +adjointTurbulence on; + +printCoeffs off; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/dynamicMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..cf1c01f650a4d405f675e4459879ee98e3b0076d --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/dynamicMeshDict @@ -0,0 +1,48 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object dynamicMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dynamicFvMesh dynamicRefineFvMesh; + +dynamicRefineFvMeshCoeffs +{ + // How often to refine + refineInterval 1; + // Field to be refinement on + field mmagfi; + // Refine field inbetween lower..upper + lowerRefineLevel -0.003; + upperRefineLevel 0; + // If value < unrefineLevel unrefine + unrefineLevel -0.003; + // Have slower than 2:1 refinement + nBufferLayers 1; + // Refine cells only up to maxRefinement levels + maxRefinement 1; + // Stop refinement if maxCells reached + maxCells 500000; + // Flux field and corresponding velocity field. Fluxes on changed + // faces get recalculated by interpolating the velocity. Use 'none' + // on surfaceScalarFields that do not need to be reinterpolated. + correctFluxes + ( + // (phi U) + // (phia Ua) + ); + // Write the refinement level as a volScalarField + dumpLevel true; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..e6a2b5f9a069a7be02861534421e5a8f05a3535f --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/transportProperties @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +transportModel Newtonian; + +nu [0 2 -1 0 0 0 0] 1e-03; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/turbulenceProperties new file mode 100644 index 0000000000000000000000000000000000000000..1bf68b453b0f4c239bc037a23e5b63d874e544c0 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/constant/turbulenceProperties @@ -0,0 +1,28 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType laminar; + +RAS +{ + RASModel laminar; + + turbulence on; + + printCoeffs on; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..8199b1a48a0cd47db41ec5e19d003758f425392a --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/blockMeshDict @@ -0,0 +1,48 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +scale 1; + +vertices +( + (0 0 0) //0 + (0.3 0 0) //1 + (0.3 0.3 0) //2 + (0 0.3 0) //3 + (0 0 0.3) //4 + (0.3 0 0.3) //5 + (0.3 0.3 0.3) //6 + (0 0.3 0.3) //7 +); + +blocks +( + hex (0 1 2 3 4 5 6 7) (75 75 75) simpleGrading (1 1 1) +); + +edges +( +); + +patches +( +); + +mergePatchPairs +( +); + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..eec33d26efad62ce2589659774e4a07be230fb2d --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/controlDict @@ -0,0 +1,47 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application adjointOptimisationFoam; + +startFrom latestTime; + +startTime 0; + +stopAt endTime; + +endTime 100; + +deltaT 1; + +writeControl timeStep; + +writeInterval 3000; + +purgeWrite 0; + +writeFormat binary; + +writePrecision 6; + +writeCompression false; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable yes; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/decomposeParDict new file mode 100644 index 0000000000000000000000000000000000000000..bcd4b0971aa133d7c2f475cd2d394e550379c455 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/decomposeParDict @@ -0,0 +1,20 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +numberOfSubdomains 4; +method scotch; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..6322fbbdb86a02711f8abb6040edfa619ed03c7d --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/fvSchemes @@ -0,0 +1,53 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +ddtSchemes +{ + default steadyState; +} + +gradSchemes +{ + default Gauss linear; + gradUATC cellLimited Gauss linear 1; + grad(U) cellLimited Gauss linear 1; + gradUConv cellLimited Gauss linear 1; + gradUaConv cellLimited Gauss linear 1; +} + +divSchemes +{ + default Gauss linear; + div(phi,U) bounded Gauss linearUpwindV gradUConv; + div(-phi,Ua) bounded Gauss linearUpwindV gradUaConv; +} + +interpolationSchemes +{ + default linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +snGradSchemes +{ + default corrected; +} + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..b12af9c2338b483074301c55af18a0ffcc2c600f --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/fvSolution @@ -0,0 +1,54 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +SIMPLE +{ + nNonOrthogonalCorrectors 0; +} + +solvers +{ + "p|pa.*|bTilda" + { + solver PCG; + preconditioner DIC; + tolerance 1e-09; + relTol 0.1; + } + + "U|Ua.*" smoothSolver + { + smoother GaussSeidel; + tolerance 1e-9; + relTol 0.1; + }; +} + +relaxationFactors +{ + fields + { + p 0.6; + "pa.*" 0.7; + } + equations + { + U 0.8; + "Ua.*" 0.7; + } +} + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/optimisationDict new file mode 100644 index 0000000000000000000000000000000000000000..dd2e3f51ce40cc2a6c21498aed5be72b2e4d9844 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/optimisationDict @@ -0,0 +1,104 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object optimisationDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +optimisationManager singleRun; + +primalSolvers +{ + op1 + { + active true; + type incompressible; + solver simple; + solutionControls + { + nIters 3000; + residualControl + { + "p.*" 5.e-7; + "U.*" 5.e-7; + } + } + } +} + +adjointManagers +{ + adjManager1 + { + primalSolver op1; + adjointSolvers + { + as1 + { + // choose adjoint solver + //---------------------- + active false; + type incompressible; + solver adjointSimple; + computeSensitivities false; + // manage objectives + //------------------ + objectives + { + type incompressible; + objectiveNames + { + losses + { + weight 1.; + type PtLosses; + patches ("inlet.*" "outlet.*"); + } + uniformity + { + weight 1.; + type uniformityPatch; + patches (outlet1 outlet2); + } + mass + { + weight 1.; + type flowRatePartition; + inletPatches (inlet); + outletPatches (outlet1 outlet2); + targetFractions (0.5 0.5); + } + } + } + // ATC treatment + //-------------- + ATCModel + { + ATCModel standard; + } + // solution control + //------------------ + solutionControls + { + nIters 300; + residualControl + { + "pa.*" 5.e-7; + "Ua.*" 5.e-7; + } + } + } + } + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/snappyHexMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/snappyHexMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..ef732da86bd5ece80e5cf22b7c6ce50e24c85fef --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/snappyHexMeshDict @@ -0,0 +1,170 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +FoamFile +{ + version 2; + format ascii; + class dictionary; + object snappyHexMeshDict; +} + +castellatedMesh true; + +snap true; + +addLayers true; + +singleRegionName true; + +geometry +{ + stlName.stl + { + type triSurfaceMesh; + name duct; + regions + { + fixedWalls + { + name fixedWalls; + } + symmetry + { + name symmetry; + } + outlet1 + { + name outlet1; + } + outlet2 + { + name outlet2; + } + inlet + { + name inlet; + } + topOPatch + { + name topOPatch; + } + } + } +} + +castellatedMeshControls +{ + maxLocalCells 100000; + maxGlobalCells 2000000; + minRefinementCells 100; + maxLoadUnbalance 0.2; + nCellsBetweenLevels 2; + features ( { file stlName.eMesh ; level 2 ; } ); + refinementSurfaces + { + duct + { + level ( 2 2 ); + patchInfo + { + type patch; + } + regions + { + "topOPatch|fixedWalls" + { + level ( 2 2 ); + patchInfo + { + type wall; + inGroups ( ductWalls ); + } + } + symmetry + { + level ( 1 1 ); + patchInfo + { + type symmetry; + } + } + } + } + } + resolveFeatureAngle 30; + refinementRegions + { + } + allowFreeStandingZoneFaces true; + locationInMesh myLocationInMesh; +} + +snapControls +{ + nSmoothPatch 3; + tolerance 2; + nSolveIter 30; + nRelaxIter 5; + nFeatureSnapIter 10; + implicitFeatureSnap false; + explicitFeatureSnap true; + multiRegionFeatureSnap false; +} + +addLayersControls +{ + relativeSizes true; + layers + { + "topOPatch|fixedWalls" + { + nSurfaceLayers 2; + } + } + expansionRatio 1; + finalLayerThickness 0.3; + minThickness 0.1; + nGrow 0; + featureAngle 60; + slipFeatureAngle 30; + nRelaxIter 3; + nSmoothSurfaceNormals 1; + nSmoothNormals 3; + nSmoothThickness 10; + maxFaceThicknessRatio 0.5; + maxThicknessToMedialRatio 0.3; + minMedialAxisAngle 90; + nBufferCellsNoExtrude 0; + nLayerIter 50; +} + +meshQualityControls +{ + maxNonOrtho 65; + maxBoundarySkewness 20; + maxInternalSkewness 4; + maxConcave 80; + minVol 1e-13; + minTetQuality 1e-15; + minArea -1; + minTwist 0.02; + minDeterminant 0.001; + minFaceWeight 0.02; + minVolRatio 0.01; + minTriangleTwist -1; + nSmoothScale 4; + errorReduction 0.75; +} + +writeFlags ( scalarLevels layerSets layerFields ); + +mergeTolerance 1e-06; + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/surfaceFeatureExtractDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/surfaceFeatureExtractDict new file mode 100644 index 0000000000000000000000000000000000000000..fa859605665a76a23f3207246fe37e5c320f4b7e --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/reEval/system/surfaceFeatureExtractDict @@ -0,0 +1,43 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object surfaceFeatureExtractDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +stlName.stl +{ + // How to obtain raw features (extractFromFile || extractFromSurface) + extractionMethod extractFromSurface; + + // Mark edges whose adjacent surface normals are at an angle less + // than includedAngle as features + // - 0 : selects no edges + // - 180: selects all edges + includedAngle 120; + + subsetFeatures + { + // Keep nonManifold edges (edges with >2 connected faces) + nonManifoldEdges no; + + // Keep open edges (edges with 1 connected face) + openEdges yes; + } + + // Write options + + // Write features to obj format for postprocessing + writeObj yes; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..0d6c38f93300d36a58e5a48a7c393a795b15cf37 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/blockMeshDict @@ -0,0 +1,69 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +scale 1; + +vertices +( + (0 0 0) //0 + (0.2 0 0) //1 + (0.2 0.1 0) //2 + (0.2 0.2 0) //3 + (0.1 0.2 0) //4 + (0 0.1 0) //5 + (0 0 0.1) //6 + (0.2 0 0.1) //7 + (0.2 0.1 0.1) //8 + (0.2 0.2 0.1) //9 + (0.1 0.2 0.1) //10 + (0 0.1 0.1) //11 +); + +blocks +( + hex (0 1 2 5 6 7 8 11) (76 38 38) simpleGrading (1 1 1) + hex (5 2 3 4 11 8 9 10) (76 38 38) simpleGrading (1 1 1) +); + +edges +( +); + +patches +( + wall fixedWalls + ( + (0 1 2 5) + (7 1 2 8) + (6 0 5 11) + (0 1 7 6) + (5 2 3 4) + (8 2 3 9) + (11 5 4 10) + (4 3 9 10) + ) + symmetry symmetry + ( + (6 7 8 11) + (11 8 9 10) + ) +); + +mergePatchPairs +( +); + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..b643df7ade58ce369bac47678cf3219d41adfb7e --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/controlDict @@ -0,0 +1,47 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application adjointOptimisationFoam; + +startFrom latestTime; + +startTime 0; + +stopAt endTime; + +endTime 70; + +deltaT 1; + +writeControl timeStep; + +writeInterval 70; + +purgeWrite 0; + +writeFormat binary; + +writePrecision 6; + +writeCompression false; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable yes; + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/createPatchDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/createPatchDict new file mode 100644 index 0000000000000000000000000000000000000000..bf6245ce624d764376d9f58fd09cff9d1515e6a7 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/createPatchDict @@ -0,0 +1,91 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object createPatchDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// This application/dictionary controls: +// - optional: create new patches from boundary faces (either given as +// a set of patches or as a faceSet) +// - always: order faces on coupled patches such that they are opposite. This +// is done for all coupled faces, not just for any patches created. +// - optional: synchronise points on coupled patches. +// - always: remove zero-sized (non-coupled) patches (that were not added) + +// 1. Create cyclic: +// - specify where the faces should come from +// - specify the type of cyclic. If a rotational specify the rotationAxis +// and centre to make matching easier +// - always create both halves in one invocation with correct 'neighbourPatch' +// setting. +// - optionally pointSync true to guarantee points to line up. + +// 2. Correct incorrect cyclic: +// This will usually fail upon loading: +// "face 0 area does not match neighbour 2 by 0.0100005%" +// " -- possible face ordering problem." +// - in polyMesh/boundary file: +// - loosen matchTolerance of all cyclics to get case to load +// - or change patch type from 'cyclic' to 'patch' +// and regenerate cyclic as above + +// Do a synchronisation of coupled points after creation of any patches. +// Note: this does not work with points that are on multiple coupled patches +// with transformations (i.e. cyclics). +pointSync false; + +// Patches to create. +patches +( + { + name inlet; + patchInfo + { + type patch; + } + constructFrom set; + set inlet; + } + + { + // Name of new patch + name outlet1; + + // Dictionary to construct new patch from + patchInfo + { + type patch; + } + + constructFrom set; + + set outlet1; + } + + { + // Name of new patch + name outlet2; + + // Dictionary to construct new patch from + patchInfo + { + type patch; + } + + constructFrom set; + + set outlet2; + } +); + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/decomposeParDict new file mode 100644 index 0000000000000000000000000000000000000000..f341a82e87be854885d4d7ca2f79679b578c6d42 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/decomposeParDict @@ -0,0 +1,25 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +numberOfSubdomains 60; +method hierarchical; +coeffs +{ + n (5 4 3); +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/fvOptions new file mode 100644 index 0000000000000000000000000000000000000000..8091288e99009e02c7f7ddfbe07327f5402d7ed1 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/fvOptions @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvOptions; +} +momSource +{ + type topOSource; + names (U Uaas1 Uauniformity Uamass); + function BorrvallPetersson; + b 100; + interpolationField beta; +} diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..df76c1c25022c2a8e40ab36896d680bcb97d8ca2 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/fvSchemes @@ -0,0 +1,53 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +ddtSchemes +{ + default steadyState; +} + +gradSchemes +{ + default Gauss linear; + gradUATC cellLimited Gauss linear 1; + grad(U) cellLimited Gauss linear 1; + gradUConv cellLimited Gauss linear 1; + gradUaConv cellLimited Gauss linear 1; +} + +divSchemes +{ + default Gauss linear; + div(phi,U) bounded Gauss linearUpwindV gradUConv; + "div\(-phi,Ua.*\)" bounded Gauss linearUpwindV gradUaConv; +} + +interpolationSchemes +{ + default linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +snGradSchemes +{ + default corrected; +} + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..3802911fc06a5509750b83c038368dbf5dc84436 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/fvSolution @@ -0,0 +1,55 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +SIMPLE +{ + nNonOrthogonalCorrectors 0; +} + +solvers +{ + "p|pa.*|bTilda" + { + solver PCG; + preconditioner DIC; + tolerance 1e-12; + relTol 0.01; + } + + "U|Ua.*" + { + solver smoothSolver; + smoother GaussSeidel; + tolerance 1e-12; + relTol 0.1; + }; +} + +relaxationFactors +{ + fields + { + p 0.6; + "pa.*" 0.6; + } + equations + { + U 0.8; + "Ua.*" 0.6; + } +} + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/optimisationDict new file mode 100644 index 0000000000000000000000000000000000000000..20c8a9b1fd16e8a3e0bd8b35f78c8e1fb4653927 --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/optimisationDict @@ -0,0 +1,237 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object optimisationDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +optimisationManager steadyOptimisation; + +primalSolvers +{ + op1 + { + active true; + type incompressible; + solver simple; + solutionControls + { + nIters 300; + consistent true; + residualControl + { + "p.*" 1.e-6; + "U.*" 1.e-6; + } + } + } +} + +adjointManagers +{ + adjManager1 + { + primalSolver op1; + adjointSolvers + { + as1 + { + // choose adjoint solver + //---------------------- + active true; + type incompressible; + solver adjointSimple; + isConstraint true; + // manage objectives + //------------------ + objectives + { + type incompressible; + objectiveNames + { + losses + { + weight 1.; + type PtLosses; + patches ("inlet.*" "outlet.*"); + normalise true; + target 0.778; + normFactor 0.778; + } + } + } + // ATC treatment + //-------------- + ATCModel + { + ATCModel standard; + } + // solution control + //------------------ + solutionControls + { + nIters 300; + consistent true; + residualControl + { + "pa.*" 1.e-6; + "Ua.*" 1.e-6; + } + } + } + uniformity + { + // choose adjoint solver + //---------------------- + active true; + type incompressible; + solver adjointSimple; + // manage objectives + //------------------ + objectives + { + type incompressible; + objectiveNames + { + uniformity + { + weight 1.; + type uniformityPatch; + patches (outlet1 outlet2); + normalise true; + } + } + } + // ATC treatment + //-------------- + ATCModel + { + ATCModel standard; + } + // solution control + //------------------ + solutionControls + { + nIters 300; + consistent true; + residualControl + { + "pa.*" 1.e-6; + "Ua.*" 1.e-6; + } + } + } + vol + { + // choose adjoint solver + //---------------------- + active true; + type null; + isConstraint true; + // manage objectives + //------------------ + objectives + { + type geometric; + objectiveNames + { + vol + { + weight 1.; + type topOVolume; + percentage 0.1; + } + } + } + } + mass + { + // choose adjoint solver + //---------------------- + active true; + type incompressible; + solver adjointSimple; + isConstraint true; + // manage objectives + //------------------ + objectives + { + type incompressible; + objectiveNames + { + mass + { + weight 1.; + type flowRatePartition; + inletPatches (inlet); + outletPatches (outlet1 outlet2); + targetFractions (0.5 0.5); + normalise true; + target 1.e-5; + } + } + } + // ATC treatment + //-------------- + ATCModel + { + ATCModel standard; + } + // solution control + //------------------ + solutionControls + { + nIters 300; + consistent true; + residualControl + { + "pa.*" 1.e-6; + "Ua.*" 1.e-6; + } + } + } + } + } +} + +optimisation +{ + designVariables + { + type topO; + sensitivityType topO; + regularisation + { + regularise true; + growFromWalls true; + //meanRadiusMult 10; + radius 0.0380789; + function tanh; + b 20; + } + betaMaxType Darcy; + DarcyCoeffs + { + inletPatches (inlet); + } + maxInitChange 0.2; + } + updateMethod + { + method ISQP; + preconditioner ShermanMorrison; + includeExtraVars true; +// c 2; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/topoSetDict new file mode 100644 index 0000000000000000000000000000000000000000..b2605622cb48f83f48a0e8d8823fb2592ba1fabf --- /dev/null +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP-extraVars/system/topoSetDict @@ -0,0 +1,118 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object topoSetDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +actions +( + + { + name fixedWalls; + type faceSet; + action new; + source patchToFace; + patch fixedWalls; + } + + { + name inlet; + type faceSet; + action new; + source faceToFace; + set fixedWalls; + } + + { + name inlet; + type faceSet; + action subset; + source boxToFace; + sourceInfo + { + box (0.030 0.130 0.080) (0.070 0.170 0.120); + } + } + { + name inletZone; + type cellSet; + action new; + source faceToCell; + set inlet; + option any; + } + + { + name outlet1; + type faceSet; + action new; + source faceToFace; + set fixedWalls; + } + + { + name outlet1; + type faceSet; + action subset; + source boxToFace; + sourceInfo + { + box (0.199 0.088 0.02) (0.201 0.112 0.044); + } + } + { + name outlet1Zone; + type cellSet; + action new; + source faceToCell; + set outlet1; + option any; + } + + { + name outlet2; + type faceSet; + action new; + source faceToFace; + set fixedWalls; + } + + { + name outlet2; + type faceSet; + action subset; + source boxToFace; + sourceInfo + { + box (0.199 0.088 0.064) (0.201 0.112 0.088); + } + } + { + name outlet2Zone; + type cellSet; + action new; + source faceToCell; + set outlet2; + option any; + } + + { + name allIO; + type cellSet; + action new; + source cellToCell; + sets (inletZone outlet1Zone outlet2Zone); + } +); + +// ************************************************************************* // diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/U index ec1ccd7e1d3f322c99b5dc93d3f9c24a854382c6..ee4f7c4a52de48389f1d6aa79843af7def6f5815 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/Ua index e8e261eee87859bad56e6274e4059b41f64ed2b7..f4fb9ab8580323975031c53cc853e002288f02c1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/p index 0a914ca0f639715232089fe62e3534ba04c88745..9cb7f2d0c6b77e62ea795e24340bbf43b9f9b61f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/pa index caab4465f575b4591230ae32e9017a43820f8376..227808f1d183cb3c02e340ca57bf057e7f8d2ccd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/U index 7a24cbae041c1e11d3fa98444b0a664442f990b6..843265c0a4a543705c784c6a53805531264c7d0f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/Ua index 95b207592ee912f2774204968d25319c84c4eba3..40deb6c146411921ebe94d4d672d28f7798f4357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/p index f5c374a0e980167c149f01185c3d63c32c675497..cc6cbf8ad1c8a2387241c0f69d10e3ed3b401c9f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/pa index 339401ae9b626f5029f47840ea448e430057c1e6..d88fefb6eebeb7b65d5ef841a560e283036cb734 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/dynamicMeshDict index 53d35a787a4ab38425a3706ebfd7af3eebe919ec..cf1c01f650a4d405f675e4459879ee98e3b0076d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/blockMeshDict index 40d48395d5ebae4c23112917cab7975f71440360..8199b1a48a0cd47db41ec5e19d003758f425392a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/controlDict index 3a97ac4d2778e425d3d069af94b712feddeeba98..eec33d26efad62ce2589659774e4a07be230fb2d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/decomposeParDict index 7f6baac6ccc4034c1a31bde182bdfe2ec45a7ee0..bcd4b0971aa133d7c2f475cd2d394e550379c455 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/fvSchemes index 0673d46a7bb036f83815cfb6c2c82dbdba03c8db..6322fbbdb86a02711f8abb6040edfa619ed03c7d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/fvSolution index 7fb387c8a6ae8c3080a83bc4eb1ab1ac709e1f23..b12af9c2338b483074301c55af18a0ffcc2c600f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/optimisationDict index f6786be645f41f895c689b6db235408fe56ddcdf..dd2e3f51ce40cc2a6c21498aed5be72b2e4d9844 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/snappyHexMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/snappyHexMeshDict index f023e5b156275742d2035c42fb1cc1bada41b4be..ef732da86bd5ece80e5cf22b7c6ce50e24c85fef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/snappyHexMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/surfaceFeatureExtractDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/surfaceFeatureExtractDict index d9b3f3c64c8b6286159ba8e2b4603108dc1aabc0..fa859605665a76a23f3207246fe37e5c320f4b7e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/reEval/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/blockMeshDict index a98c9165fe7017fa75f75930cd660238e8c2f0bc..0d6c38f93300d36a58e5a48a7c393a795b15cf37 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/controlDict index 482b76738021ca09a3dc306b8c1a95fc0c0cc8ee..b643df7ade58ce369bac47678cf3219d41adfb7e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/createPatchDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/createPatchDict index 21a9f1f7dfe084f5dbcbccf4006b1be6d57ecb73..bf6245ce624d764376d9f58fd09cff9d1515e6a7 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/createPatchDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/decomposeParDict index 8106d6ec75693440e97d2992b576781de5026a53..f341a82e87be854885d4d7ca2f79679b578c6d42 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvOptions index a86363cde084a4521b4d0e3ead14ae445dbbb9e9..8091288e99009e02c7f7ddfbe07327f5402d7ed1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvSchemes index 9e8553999d7e931762aac04815d43b77b8e17bcc..df76c1c25022c2a8e40ab36896d680bcb97d8ca2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvSolution index 42f05896c0b6072c3961c2d0407df6638650b6ef..3802911fc06a5509750b83c038368dbf5dc84436 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/optimisationDict index a7abedacc42cf0ff62afccb9641fd3d07be2196d..012bea454244169672b1c997dc81d43bca4dffe9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches ("inlet.*" "outlet.*"); - normalize true; + normalise true; target 0.778; normFactor 0.778; } @@ -107,7 +107,7 @@ adjointManagers weight 1.; type uniformityPatch; patches (outlet1 outlet2); - normalize true; + normalise true; } } } @@ -175,7 +175,7 @@ adjointManagers inletPatches (inlet); outletPatches (outlet1 outlet2); targetFractions (0.5 0.5); - normalize true; + normalise true; target 1.e-5; } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/topoSetDict index 7d0884c2be48abf3f03f53815ac40d49fc0dfdef..b2605622cb48f83f48a0e8d8823fb2592ba1fabf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity-SQP/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/U index ec1ccd7e1d3f322c99b5dc93d3f9c24a854382c6..ee4f7c4a52de48389f1d6aa79843af7def6f5815 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/Ua index e8e261eee87859bad56e6274e4059b41f64ed2b7..f4fb9ab8580323975031c53cc853e002288f02c1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/p index 0a914ca0f639715232089fe62e3534ba04c88745..9cb7f2d0c6b77e62ea795e24340bbf43b9f9b61f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/pa index caab4465f575b4591230ae32e9017a43820f8376..227808f1d183cb3c02e340ca57bf057e7f8d2ccd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/U index 7a24cbae041c1e11d3fa98444b0a664442f990b6..843265c0a4a543705c784c6a53805531264c7d0f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/Ua index 95b207592ee912f2774204968d25319c84c4eba3..40deb6c146411921ebe94d4d672d28f7798f4357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/p index f5c374a0e980167c149f01185c3d63c32c675497..cc6cbf8ad1c8a2387241c0f69d10e3ed3b401c9f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/pa index 339401ae9b626f5029f47840ea448e430057c1e6..d88fefb6eebeb7b65d5ef841a560e283036cb734 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/dynamicMeshDict index 53d35a787a4ab38425a3706ebfd7af3eebe919ec..cf1c01f650a4d405f675e4459879ee98e3b0076d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/blockMeshDict index 40d48395d5ebae4c23112917cab7975f71440360..8199b1a48a0cd47db41ec5e19d003758f425392a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/controlDict index 3a97ac4d2778e425d3d069af94b712feddeeba98..eec33d26efad62ce2589659774e4a07be230fb2d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/decomposeParDict index 7f6baac6ccc4034c1a31bde182bdfe2ec45a7ee0..bcd4b0971aa133d7c2f475cd2d394e550379c455 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/fvSchemes index 0673d46a7bb036f83815cfb6c2c82dbdba03c8db..6322fbbdb86a02711f8abb6040edfa619ed03c7d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/fvSolution index 7fb387c8a6ae8c3080a83bc4eb1ab1ac709e1f23..b12af9c2338b483074301c55af18a0ffcc2c600f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/optimisationDict index f6786be645f41f895c689b6db235408fe56ddcdf..dd2e3f51ce40cc2a6c21498aed5be72b2e4d9844 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/snappyHexMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/snappyHexMeshDict index f023e5b156275742d2035c42fb1cc1bada41b4be..ef732da86bd5ece80e5cf22b7c6ce50e24c85fef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/snappyHexMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/surfaceFeatureExtractDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/surfaceFeatureExtractDict index d9b3f3c64c8b6286159ba8e2b4603108dc1aabc0..fa859605665a76a23f3207246fe37e5c320f4b7e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/reEval/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/blockMeshDict index a98c9165fe7017fa75f75930cd660238e8c2f0bc..0d6c38f93300d36a58e5a48a7c393a795b15cf37 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/controlDict index 482b76738021ca09a3dc306b8c1a95fc0c0cc8ee..b643df7ade58ce369bac47678cf3219d41adfb7e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/createPatchDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/createPatchDict index 21a9f1f7dfe084f5dbcbccf4006b1be6d57ecb73..bf6245ce624d764376d9f58fd09cff9d1515e6a7 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/createPatchDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/decomposeParDict index 8106d6ec75693440e97d2992b576781de5026a53..f341a82e87be854885d4d7ca2f79679b578c6d42 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvOptions index a86363cde084a4521b4d0e3ead14ae445dbbb9e9..8091288e99009e02c7f7ddfbe07327f5402d7ed1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvSchemes index 9e8553999d7e931762aac04815d43b77b8e17bcc..df76c1c25022c2a8e40ab36896d680bcb97d8ca2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvSolution index 42f05896c0b6072c3961c2d0407df6638650b6ef..3802911fc06a5509750b83c038368dbf5dc84436 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/optimisationDict index 4a598331800bc58da4a4d280ea61726475e525b0..18cb82ba2e2121671030873a3393719dd85bc6c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches ("inlet.*" "outlet.*"); - normalize true; + normalise true; target 0.778; normFactor 0.778; } @@ -107,7 +107,7 @@ adjointManagers weight 1.; type uniformityPatch; patches (outlet1 outlet2); - normalize true; + normalise true; } } } @@ -175,7 +175,7 @@ adjointManagers inletPatches (inlet); outletPatches (outlet1 outlet2); targetFractions (0.5 0.5); - normalize true; + normalise true; target 1.e-5; } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/topoSetDict index 7d0884c2be48abf3f03f53815ac40d49fc0dfdef..b2605622cb48f83f48a0e8d8823fb2592ba1fabf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass-uniformity/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/U index ec1ccd7e1d3f322c99b5dc93d3f9c24a854382c6..ee4f7c4a52de48389f1d6aa79843af7def6f5815 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/Ua index e8e261eee87859bad56e6274e4059b41f64ed2b7..f4fb9ab8580323975031c53cc853e002288f02c1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/p index 0a914ca0f639715232089fe62e3534ba04c88745..9cb7f2d0c6b77e62ea795e24340bbf43b9f9b61f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/pa index caab4465f575b4591230ae32e9017a43820f8376..227808f1d183cb3c02e340ca57bf057e7f8d2ccd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/U index 7a24cbae041c1e11d3fa98444b0a664442f990b6..843265c0a4a543705c784c6a53805531264c7d0f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/Ua index 95b207592ee912f2774204968d25319c84c4eba3..40deb6c146411921ebe94d4d672d28f7798f4357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/p index f5c374a0e980167c149f01185c3d63c32c675497..cc6cbf8ad1c8a2387241c0f69d10e3ed3b401c9f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/pa index 339401ae9b626f5029f47840ea448e430057c1e6..d88fefb6eebeb7b65d5ef841a560e283036cb734 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/dynamicMeshDict index 53d35a787a4ab38425a3706ebfd7af3eebe919ec..cf1c01f650a4d405f675e4459879ee98e3b0076d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/blockMeshDict index 40d48395d5ebae4c23112917cab7975f71440360..8199b1a48a0cd47db41ec5e19d003758f425392a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/controlDict index 3a97ac4d2778e425d3d069af94b712feddeeba98..eec33d26efad62ce2589659774e4a07be230fb2d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/decomposeParDict index 7f6baac6ccc4034c1a31bde182bdfe2ec45a7ee0..bcd4b0971aa133d7c2f475cd2d394e550379c455 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/fvSchemes index 0673d46a7bb036f83815cfb6c2c82dbdba03c8db..6322fbbdb86a02711f8abb6040edfa619ed03c7d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/fvSolution index 7fb387c8a6ae8c3080a83bc4eb1ab1ac709e1f23..b12af9c2338b483074301c55af18a0ffcc2c600f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/optimisationDict index f6786be645f41f895c689b6db235408fe56ddcdf..dd2e3f51ce40cc2a6c21498aed5be72b2e4d9844 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/snappyHexMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/snappyHexMeshDict index f023e5b156275742d2035c42fb1cc1bada41b4be..ef732da86bd5ece80e5cf22b7c6ce50e24c85fef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/snappyHexMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/surfaceFeatureExtractDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/surfaceFeatureExtractDict index d9b3f3c64c8b6286159ba8e2b4603108dc1aabc0..fa859605665a76a23f3207246fe37e5c320f4b7e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/reEval/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/blockMeshDict index a98c9165fe7017fa75f75930cd660238e8c2f0bc..0d6c38f93300d36a58e5a48a7c393a795b15cf37 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/controlDict index 482b76738021ca09a3dc306b8c1a95fc0c0cc8ee..b643df7ade58ce369bac47678cf3219d41adfb7e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/createPatchDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/createPatchDict index 21a9f1f7dfe084f5dbcbccf4006b1be6d57ecb73..bf6245ce624d764376d9f58fd09cff9d1515e6a7 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/createPatchDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/decomposeParDict index 8106d6ec75693440e97d2992b576781de5026a53..f341a82e87be854885d4d7ca2f79679b578c6d42 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvOptions index f5e110af8c361aae604fe81c929539e83a62fc15..78bf02bb7a6c7d31bb6ebf06c5080df8d30cd988 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvSchemes index 9e8553999d7e931762aac04815d43b77b8e17bcc..df76c1c25022c2a8e40ab36896d680bcb97d8ca2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvSolution index 42f05896c0b6072c3961c2d0407df6638650b6ef..3802911fc06a5509750b83c038368dbf5dc84436 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/optimisationDict index 020a054499b83d3443dd1dcda4d494f4d735bf87..c5624d163611de51dfd7c015306a65c3954155a2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches ("inlet.*" "outlet.*"); - normalize true; + normalise true; } uniformity { @@ -114,7 +114,7 @@ adjointManagers inletPatches (inlet); outletPatches (outlet1 outlet2); targetFractions (0.5 0.5); - normalize true; + normalise true; target 1.e-5; } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/topoSetDict index 7d0884c2be48abf3f03f53815ac40d49fc0dfdef..b2605622cb48f83f48a0e8d8823fb2592ba1fabf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses-mass/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/U index ec1ccd7e1d3f322c99b5dc93d3f9c24a854382c6..ee4f7c4a52de48389f1d6aa79843af7def6f5815 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/Ua index e8e261eee87859bad56e6274e4059b41f64ed2b7..f4fb9ab8580323975031c53cc853e002288f02c1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/p index 0a914ca0f639715232089fe62e3534ba04c88745..9cb7f2d0c6b77e62ea795e24340bbf43b9f9b61f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/pa index caab4465f575b4591230ae32e9017a43820f8376..227808f1d183cb3c02e340ca57bf057e7f8d2ccd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/U index 7a24cbae041c1e11d3fa98444b0a664442f990b6..843265c0a4a543705c784c6a53805531264c7d0f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/Ua index 95b207592ee912f2774204968d25319c84c4eba3..40deb6c146411921ebe94d4d672d28f7798f4357 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/p index f5c374a0e980167c149f01185c3d63c32c675497..cc6cbf8ad1c8a2387241c0f69d10e3ed3b401c9f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/pa index 339401ae9b626f5029f47840ea448e430057c1e6..d88fefb6eebeb7b65d5ef841a560e283036cb734 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/0.orig/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/adjointRASProperties index 907d7ff80155c510a465653b3f0ba95f8b4259b0..11ad2362bfd78a40bd7bd6697715756ddad2dd86 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/dynamicMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/dynamicMeshDict index 53d35a787a4ab38425a3706ebfd7af3eebe919ec..cf1c01f650a4d405f675e4459879ee98e3b0076d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/dynamicMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/transportProperties index bf55607ced7a5a58eb13822e780c62122c3b5707..e6a2b5f9a069a7be02861534421e5a8f05a3535f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/turbulenceProperties index 3885bb4d7bdec2a0079bb61902eb69bd11c492a8..1bf68b453b0f4c239bc037a23e5b63d874e544c0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/blockMeshDict index 40d48395d5ebae4c23112917cab7975f71440360..8199b1a48a0cd47db41ec5e19d003758f425392a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/controlDict index 3a97ac4d2778e425d3d069af94b712feddeeba98..eec33d26efad62ce2589659774e4a07be230fb2d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/decomposeParDict index 7f6baac6ccc4034c1a31bde182bdfe2ec45a7ee0..bcd4b0971aa133d7c2f475cd2d394e550379c455 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/fvSchemes index 0673d46a7bb036f83815cfb6c2c82dbdba03c8db..6322fbbdb86a02711f8abb6040edfa619ed03c7d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/fvSolution index 7fb387c8a6ae8c3080a83bc4eb1ab1ac709e1f23..b12af9c2338b483074301c55af18a0ffcc2c600f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/optimisationDict index f6786be645f41f895c689b6db235408fe56ddcdf..dd2e3f51ce40cc2a6c21498aed5be72b2e4d9844 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/snappyHexMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/snappyHexMeshDict index f023e5b156275742d2035c42fb1cc1bada41b4be..ef732da86bd5ece80e5cf22b7c6ce50e24c85fef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/snappyHexMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/surfaceFeatureExtractDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/surfaceFeatureExtractDict index d9b3f3c64c8b6286159ba8e2b4603108dc1aabc0..fa859605665a76a23f3207246fe37e5c320f4b7e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/reEval/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/blockMeshDict index a98c9165fe7017fa75f75930cd660238e8c2f0bc..0d6c38f93300d36a58e5a48a7c393a795b15cf37 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/controlDict index 482b76738021ca09a3dc306b8c1a95fc0c0cc8ee..b643df7ade58ce369bac47678cf3219d41adfb7e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/createPatchDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/createPatchDict index 21a9f1f7dfe084f5dbcbccf4006b1be6d57ecb73..bf6245ce624d764376d9f58fd09cff9d1515e6a7 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/createPatchDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/decomposeParDict index 8106d6ec75693440e97d2992b576781de5026a53..f341a82e87be854885d4d7ca2f79679b578c6d42 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvOptions index 2fddf85cd1927fabb131a9364dd12b0f5deb94d9..67e0dee37542f72291ee6b87b2c12e3eb01f9cff 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvSchemes index 9e8553999d7e931762aac04815d43b77b8e17bcc..df76c1c25022c2a8e40ab36896d680bcb97d8ca2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvSolution index 42f05896c0b6072c3961c2d0407df6638650b6ef..3802911fc06a5509750b83c038368dbf5dc84436 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/optimisationDict index 0d618dda27e156a0935cbf2385f9f592ab4642f4..5630a08bd65290dd287bd7a01c757c8849698f6c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches ("inlet.*" "outlet.*"); - normalize true; + normalise true; } uniformity { diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/topoSetDict index 7d0884c2be48abf3f03f53815ac40d49fc0dfdef..b2605622cb48f83f48a0e8d8823fb2592ba1fabf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/laminar/3DBox/losses/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/U index e11d846911a6c672a9c915ed591053928e950815..4383f7a233c8d6abd9f2b2b66f91d6e7250fb7ce 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/Ua index a2b8a355b121e8bcc9b9e3c88724a2be753f1e3f..13dfddc6cac342248c07c911c907911d1d1f8149 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nuTilda index 9d64ae58b5bbb58a0b6c991eb0627294d908158c..295ab3a69e3f67c85e074f3f86a3a1c0fda98e83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nuaTilda index f6c5d2c40e43b356903534d7c970cc2c667f39c2..d527e2e1b6a76a29e642a23476f1f4c9406a2fba 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nut index 3da02a2a8562372c56303cc10f301f7f4bdc259f..c249c6339104104433b4358a1e5acbdada426a1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/p index fd7e61069f73dd94e53110259aa72bd80b94e3c5..4a9ae25a7a6393cd47f067e81fe47eb317def1dd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/pa index 44cb694da459f3c2667572123f2b078e34d43d00..e61d6e611871dba8a58b3eaa85b28a8022c69a95 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/U index 1782bf63b73ce73dad7c27c3b539bf14617ec4b7..aab63e4186f70b9c9bde95af605926cf9d78cff4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/Ua index fe183dd330f6416889d3095c84e58bd231ab9f50..7f0c0fe0c2d30dae8e6dfe6f3d8419809d550d5a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nuTilda index 9590ac696e6952e3ba2903ef0dab47c35a1a2317..942b4a4c3d0a786e5b51ba7d43e8190fab44946a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nuaTilda index ca1c0c208f06fee3c00c44caca2c467f72fc86fa..6da0ab708ec5b434895daf01d7284b9010d07aed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nut index 58c82a16a9aa3986d4e30dafe57cf3852026d333..112f7fcdd4ee5243ecc8597d6f72a490c007897e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/p index 3887758e76b8365288959ae193a81bcfb8eb12f6..3cb99c18a417f633543bd8f8ee9b0780305d38a3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/pa index 0e509436a5d447d0312f09add47a95c9e4342804..80f4498e846617eef97024b5a968b67e8fbc515c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/fvSchemes index 3533182aa5bbca81c3fd919abe357d4eee0fec93..2078e6eabe8b0deeda098ec268aecd38244325ef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/optimisationDict index 1d4a32f01612f341c4c9a303580587f50ce66408..0c14f1ae289013dd51eedd43fa49362438d1b4d1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/blockMeshDict index 24cc899e02e59b83fe38ba6ba5742d6d38485231..a0f6d096e8a5fb5ee613bee504e1a63de11b620e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/controlDict index 7379158e3164e6ec76be7c95ce16fefedde25fc8..da7bb283faba1bd546794cae8ba9dfa78223dc03 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvOptions index fd6208f0d026c20023153907c4cea8039a099d4b..7916ec26db3b01c1f40013eb598709fb0817ef1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvSchemes index 3533182aa5bbca81c3fd919abe357d4eee0fec93..2078e6eabe8b0deeda098ec268aecd38244325ef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvSolution index 662ce874b225f41995a970786fa0c45669c52db9..198536b978192fc9de61e1571311ae52c8b496ed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/optimisationDict index 6b9b8dca75a34c35b9dd57b7576547efc62d71c9..cc2e572b83f0acb168fe08d69cea0f49e8635716 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_05x_NB_01/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/U index e11d846911a6c672a9c915ed591053928e950815..4383f7a233c8d6abd9f2b2b66f91d6e7250fb7ce 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/Ua index a2b8a355b121e8bcc9b9e3c88724a2be753f1e3f..13dfddc6cac342248c07c911c907911d1d1f8149 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nuTilda index 9d64ae58b5bbb58a0b6c991eb0627294d908158c..295ab3a69e3f67c85e074f3f86a3a1c0fda98e83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nuaTilda index f6c5d2c40e43b356903534d7c970cc2c667f39c2..d527e2e1b6a76a29e642a23476f1f4c9406a2fba 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nut index 3da02a2a8562372c56303cc10f301f7f4bdc259f..c249c6339104104433b4358a1e5acbdada426a1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/p index fd7e61069f73dd94e53110259aa72bd80b94e3c5..4a9ae25a7a6393cd47f067e81fe47eb317def1dd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/pa index 44cb694da459f3c2667572123f2b078e34d43d00..e61d6e611871dba8a58b3eaa85b28a8022c69a95 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/U index 1782bf63b73ce73dad7c27c3b539bf14617ec4b7..aab63e4186f70b9c9bde95af605926cf9d78cff4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/Ua index fe183dd330f6416889d3095c84e58bd231ab9f50..7f0c0fe0c2d30dae8e6dfe6f3d8419809d550d5a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nuTilda index 9590ac696e6952e3ba2903ef0dab47c35a1a2317..942b4a4c3d0a786e5b51ba7d43e8190fab44946a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nuaTilda index ca1c0c208f06fee3c00c44caca2c467f72fc86fa..6da0ab708ec5b434895daf01d7284b9010d07aed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nut index 58c82a16a9aa3986d4e30dafe57cf3852026d333..112f7fcdd4ee5243ecc8597d6f72a490c007897e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/p index 3887758e76b8365288959ae193a81bcfb8eb12f6..3cb99c18a417f633543bd8f8ee9b0780305d38a3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/pa index 0e509436a5d447d0312f09add47a95c9e4342804..80f4498e846617eef97024b5a968b67e8fbc515c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/fvSchemes index 3533182aa5bbca81c3fd919abe357d4eee0fec93..2078e6eabe8b0deeda098ec268aecd38244325ef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/optimisationDict index 1d4a32f01612f341c4c9a303580587f50ce66408..0c14f1ae289013dd51eedd43fa49362438d1b4d1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/blockMeshDict index 24cc899e02e59b83fe38ba6ba5742d6d38485231..a0f6d096e8a5fb5ee613bee504e1a63de11b620e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/controlDict index 7379158e3164e6ec76be7c95ce16fefedde25fc8..da7bb283faba1bd546794cae8ba9dfa78223dc03 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvOptions index fd6208f0d026c20023153907c4cea8039a099d4b..7916ec26db3b01c1f40013eb598709fb0817ef1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvSchemes index 3533182aa5bbca81c3fd919abe357d4eee0fec93..2078e6eabe8b0deeda098ec268aecd38244325ef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvSolution index 662ce874b225f41995a970786fa0c45669c52db9..198536b978192fc9de61e1571311ae52c8b496ed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/optimisationDict index 58e494a03311e639e5a729bd0400d72d13d36be3..220c4eb88a5d549867a6a09cb603e405b6fc5a29 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_01/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/U index e11d846911a6c672a9c915ed591053928e950815..4383f7a233c8d6abd9f2b2b66f91d6e7250fb7ce 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/Ua index a2b8a355b121e8bcc9b9e3c88724a2be753f1e3f..13dfddc6cac342248c07c911c907911d1d1f8149 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nuTilda index 9d64ae58b5bbb58a0b6c991eb0627294d908158c..295ab3a69e3f67c85e074f3f86a3a1c0fda98e83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nuaTilda index f6c5d2c40e43b356903534d7c970cc2c667f39c2..d527e2e1b6a76a29e642a23476f1f4c9406a2fba 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nut index 3da02a2a8562372c56303cc10f301f7f4bdc259f..c249c6339104104433b4358a1e5acbdada426a1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/p index fd7e61069f73dd94e53110259aa72bd80b94e3c5..4a9ae25a7a6393cd47f067e81fe47eb317def1dd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/pa index 44cb694da459f3c2667572123f2b078e34d43d00..e61d6e611871dba8a58b3eaa85b28a8022c69a95 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/U index 1782bf63b73ce73dad7c27c3b539bf14617ec4b7..aab63e4186f70b9c9bde95af605926cf9d78cff4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/Ua index fe183dd330f6416889d3095c84e58bd231ab9f50..7f0c0fe0c2d30dae8e6dfe6f3d8419809d550d5a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nuTilda index 9590ac696e6952e3ba2903ef0dab47c35a1a2317..942b4a4c3d0a786e5b51ba7d43e8190fab44946a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nuaTilda index ca1c0c208f06fee3c00c44caca2c467f72fc86fa..6da0ab708ec5b434895daf01d7284b9010d07aed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nut index 58c82a16a9aa3986d4e30dafe57cf3852026d333..112f7fcdd4ee5243ecc8597d6f72a490c007897e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/p index 3887758e76b8365288959ae193a81bcfb8eb12f6..3cb99c18a417f633543bd8f8ee9b0780305d38a3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/pa index 0e509436a5d447d0312f09add47a95c9e4342804..80f4498e846617eef97024b5a968b67e8fbc515c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/fvSchemes index 3533182aa5bbca81c3fd919abe357d4eee0fec93..2078e6eabe8b0deeda098ec268aecd38244325ef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/optimisationDict index 1d4a32f01612f341c4c9a303580587f50ce66408..0c14f1ae289013dd51eedd43fa49362438d1b4d1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/blockMeshDict index 24cc899e02e59b83fe38ba6ba5742d6d38485231..a0f6d096e8a5fb5ee613bee504e1a63de11b620e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/controlDict index 7379158e3164e6ec76be7c95ce16fefedde25fc8..da7bb283faba1bd546794cae8ba9dfa78223dc03 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvOptions index fd6208f0d026c20023153907c4cea8039a099d4b..7916ec26db3b01c1f40013eb598709fb0817ef1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvSchemes index 3533182aa5bbca81c3fd919abe357d4eee0fec93..2078e6eabe8b0deeda098ec268aecd38244325ef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvSolution index 662ce874b225f41995a970786fa0c45669c52db9..198536b978192fc9de61e1571311ae52c8b496ed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/optimisationDict index c95d1beb943738ff0b082fbf3f09b0477c4f1dec..00b061deb7aeb1d1949ab9c9bcdcf5580efe39c4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_10x_NB_02/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/U index e11d846911a6c672a9c915ed591053928e950815..4383f7a233c8d6abd9f2b2b66f91d6e7250fb7ce 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/Ua index a2b8a355b121e8bcc9b9e3c88724a2be753f1e3f..13dfddc6cac342248c07c911c907911d1d1f8149 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nuTilda index 9d64ae58b5bbb58a0b6c991eb0627294d908158c..295ab3a69e3f67c85e074f3f86a3a1c0fda98e83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nuaTilda index f6c5d2c40e43b356903534d7c970cc2c667f39c2..d527e2e1b6a76a29e642a23476f1f4c9406a2fba 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nut index 3da02a2a8562372c56303cc10f301f7f4bdc259f..c249c6339104104433b4358a1e5acbdada426a1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/p index fd7e61069f73dd94e53110259aa72bd80b94e3c5..4a9ae25a7a6393cd47f067e81fe47eb317def1dd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/pa index 44cb694da459f3c2667572123f2b078e34d43d00..e61d6e611871dba8a58b3eaa85b28a8022c69a95 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/U index 1782bf63b73ce73dad7c27c3b539bf14617ec4b7..aab63e4186f70b9c9bde95af605926cf9d78cff4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/Ua index fe183dd330f6416889d3095c84e58bd231ab9f50..7f0c0fe0c2d30dae8e6dfe6f3d8419809d550d5a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nuTilda index 9590ac696e6952e3ba2903ef0dab47c35a1a2317..942b4a4c3d0a786e5b51ba7d43e8190fab44946a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nuaTilda index ca1c0c208f06fee3c00c44caca2c467f72fc86fa..6da0ab708ec5b434895daf01d7284b9010d07aed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nut index 58c82a16a9aa3986d4e30dafe57cf3852026d333..112f7fcdd4ee5243ecc8597d6f72a490c007897e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/p index 3887758e76b8365288959ae193a81bcfb8eb12f6..3cb99c18a417f633543bd8f8ee9b0780305d38a3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/pa index 0e509436a5d447d0312f09add47a95c9e4342804..80f4498e846617eef97024b5a968b67e8fbc515c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/fvSchemes index 3533182aa5bbca81c3fd919abe357d4eee0fec93..2078e6eabe8b0deeda098ec268aecd38244325ef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/optimisationDict index 1d4a32f01612f341c4c9a303580587f50ce66408..0c14f1ae289013dd51eedd43fa49362438d1b4d1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/blockMeshDict index 24cc899e02e59b83fe38ba6ba5742d6d38485231..a0f6d096e8a5fb5ee613bee504e1a63de11b620e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/controlDict index 7379158e3164e6ec76be7c95ce16fefedde25fc8..da7bb283faba1bd546794cae8ba9dfa78223dc03 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvOptions index fd6208f0d026c20023153907c4cea8039a099d4b..7916ec26db3b01c1f40013eb598709fb0817ef1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvSchemes index 3533182aa5bbca81c3fd919abe357d4eee0fec93..2078e6eabe8b0deeda098ec268aecd38244325ef 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvSolution index 662ce874b225f41995a970786fa0c45669c52db9..198536b978192fc9de61e1571311ae52c8b496ed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/optimisationDict index 3968eb1e39644ee80daedb4c75afd33e4a5b4dc3..5a24a3f343c4d05b6e35527337f3db9ffefcb2df 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/levelSet/R_20x_NB_01/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/U index e11d846911a6c672a9c915ed591053928e950815..4383f7a233c8d6abd9f2b2b66f91d6e7250fb7ce 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/Ua index a2b8a355b121e8bcc9b9e3c88724a2be753f1e3f..13dfddc6cac342248c07c911c907911d1d1f8149 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nuTilda index 9d64ae58b5bbb58a0b6c991eb0627294d908158c..295ab3a69e3f67c85e074f3f86a3a1c0fda98e83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nuaTilda index f6c5d2c40e43b356903534d7c970cc2c667f39c2..d527e2e1b6a76a29e642a23476f1f4c9406a2fba 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nut index 3da02a2a8562372c56303cc10f301f7f4bdc259f..c249c6339104104433b4358a1e5acbdada426a1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/p index fd7e61069f73dd94e53110259aa72bd80b94e3c5..4a9ae25a7a6393cd47f067e81fe47eb317def1dd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/pa index 44cb694da459f3c2667572123f2b078e34d43d00..e61d6e611871dba8a58b3eaa85b28a8022c69a95 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/U index 1782bf63b73ce73dad7c27c3b539bf14617ec4b7..aab63e4186f70b9c9bde95af605926cf9d78cff4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/Ua index fe183dd330f6416889d3095c84e58bd231ab9f50..7f0c0fe0c2d30dae8e6dfe6f3d8419809d550d5a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nuTilda index 9590ac696e6952e3ba2903ef0dab47c35a1a2317..942b4a4c3d0a786e5b51ba7d43e8190fab44946a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nuaTilda index ca1c0c208f06fee3c00c44caca2c467f72fc86fa..6da0ab708ec5b434895daf01d7284b9010d07aed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nut index 58c82a16a9aa3986d4e30dafe57cf3852026d333..112f7fcdd4ee5243ecc8597d6f72a490c007897e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/p index 3887758e76b8365288959ae193a81bcfb8eb12f6..3cb99c18a417f633543bd8f8ee9b0780305d38a3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/pa index 0e509436a5d447d0312f09add47a95c9e4342804..80f4498e846617eef97024b5a968b67e8fbc515c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/fvSchemes index fac231650eb3aac1bd13b1cb9892b77d3510f045..d3d32f974d08efd848db3b752288ab13a600686c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/optimisationDict index 8e9a6bad1b85ae69a248eae70a9a9eaa933f8c58..a19329fec3d79e17a1d719134392ed5fd4cb7a73 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/controlDict index 254b5f569a4c424d5ff6289812d4272a0b23c0f4..1579b6da84693bdef89ffa844cfc4412e63f1ce6 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvOptions index c540cb524ba0590b5463e57051a15709b4531cfa..740c76701e4b5d5a3ab4121c8879582bf25ccda5 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvSchemes index 7f060d5f4f6b5294b543ba5ede7ca3806b13406c..1fb35512ba9651054b1bc79c62526214756fa395 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/optimisationDict index 7243df09fa7380a4dc576741bbf9c3f85ea6e608..f3bc07530dfa87f51a4db8c6d2df882265ba6efd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } uniformity { @@ -115,7 +115,7 @@ adjointManagers inletPatches (inlet); outletPatches (outlet outlet-right); targetFractions (0.5 0.5); - normalize true; + normalise true; target 1.e-5; } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses-massConstr/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/U index e11d846911a6c672a9c915ed591053928e950815..4383f7a233c8d6abd9f2b2b66f91d6e7250fb7ce 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/Ua index a2b8a355b121e8bcc9b9e3c88724a2be753f1e3f..13dfddc6cac342248c07c911c907911d1d1f8149 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nuTilda index 9d64ae58b5bbb58a0b6c991eb0627294d908158c..295ab3a69e3f67c85e074f3f86a3a1c0fda98e83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nuaTilda index f6c5d2c40e43b356903534d7c970cc2c667f39c2..d527e2e1b6a76a29e642a23476f1f4c9406a2fba 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nut index 3da02a2a8562372c56303cc10f301f7f4bdc259f..c249c6339104104433b4358a1e5acbdada426a1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/p index fd7e61069f73dd94e53110259aa72bd80b94e3c5..4a9ae25a7a6393cd47f067e81fe47eb317def1dd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/pa index 44cb694da459f3c2667572123f2b078e34d43d00..e61d6e611871dba8a58b3eaa85b28a8022c69a95 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/U index 1782bf63b73ce73dad7c27c3b539bf14617ec4b7..aab63e4186f70b9c9bde95af605926cf9d78cff4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/Ua index fe183dd330f6416889d3095c84e58bd231ab9f50..7f0c0fe0c2d30dae8e6dfe6f3d8419809d550d5a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nuTilda index 9590ac696e6952e3ba2903ef0dab47c35a1a2317..942b4a4c3d0a786e5b51ba7d43e8190fab44946a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nuaTilda index ca1c0c208f06fee3c00c44caca2c467f72fc86fa..6da0ab708ec5b434895daf01d7284b9010d07aed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nut index 58c82a16a9aa3986d4e30dafe57cf3852026d333..112f7fcdd4ee5243ecc8597d6f72a490c007897e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/p index 3887758e76b8365288959ae193a81bcfb8eb12f6..3cb99c18a417f633543bd8f8ee9b0780305d38a3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/pa index 0e509436a5d447d0312f09add47a95c9e4342804..80f4498e846617eef97024b5a968b67e8fbc515c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/fvSchemes index fac231650eb3aac1bd13b1cb9892b77d3510f045..d3d32f974d08efd848db3b752288ab13a600686c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/optimisationDict index 8e9a6bad1b85ae69a248eae70a9a9eaa933f8c58..a19329fec3d79e17a1d719134392ed5fd4cb7a73 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/controlDict index 254b5f569a4c424d5ff6289812d4272a0b23c0f4..1579b6da84693bdef89ffa844cfc4412e63f1ce6 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvOptions index 41afe8a211c7d7f8f01eb87780a6f9a689e07a58..e24fd675c90918d0f98d066efe15033dfba369fc 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvSchemes index fac231650eb3aac1bd13b1cb9892b77d3510f045..d3d32f974d08efd848db3b752288ab13a600686c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/optimisationDict index 21f3fc91541cc3c8648451ab060cd8fa485e9f69..8206a5db6581fbab0e9d2f53ee774d658dd77c96 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } mass { diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/losses/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/U index e11d846911a6c672a9c915ed591053928e950815..4383f7a233c8d6abd9f2b2b66f91d6e7250fb7ce 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/Ua index a2b8a355b121e8bcc9b9e3c88724a2be753f1e3f..13dfddc6cac342248c07c911c907911d1d1f8149 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nuTilda index 9d64ae58b5bbb58a0b6c991eb0627294d908158c..295ab3a69e3f67c85e074f3f86a3a1c0fda98e83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nuaTilda index f6c5d2c40e43b356903534d7c970cc2c667f39c2..d527e2e1b6a76a29e642a23476f1f4c9406a2fba 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nut index 3da02a2a8562372c56303cc10f301f7f4bdc259f..c249c6339104104433b4358a1e5acbdada426a1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/p index fd7e61069f73dd94e53110259aa72bd80b94e3c5..4a9ae25a7a6393cd47f067e81fe47eb317def1dd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/pa index 44cb694da459f3c2667572123f2b078e34d43d00..e61d6e611871dba8a58b3eaa85b28a8022c69a95 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/U index 1782bf63b73ce73dad7c27c3b539bf14617ec4b7..aab63e4186f70b9c9bde95af605926cf9d78cff4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/Ua index fe183dd330f6416889d3095c84e58bd231ab9f50..7f0c0fe0c2d30dae8e6dfe6f3d8419809d550d5a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nuTilda index 9590ac696e6952e3ba2903ef0dab47c35a1a2317..942b4a4c3d0a786e5b51ba7d43e8190fab44946a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nuaTilda index ca1c0c208f06fee3c00c44caca2c467f72fc86fa..6da0ab708ec5b434895daf01d7284b9010d07aed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nut index 58c82a16a9aa3986d4e30dafe57cf3852026d333..112f7fcdd4ee5243ecc8597d6f72a490c007897e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/p index 3887758e76b8365288959ae193a81bcfb8eb12f6..3cb99c18a417f633543bd8f8ee9b0780305d38a3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/pa index 0e509436a5d447d0312f09add47a95c9e4342804..80f4498e846617eef97024b5a968b67e8fbc515c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/fvSchemes index fac231650eb3aac1bd13b1cb9892b77d3510f045..d3d32f974d08efd848db3b752288ab13a600686c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/optimisationDict index 8e9a6bad1b85ae69a248eae70a9a9eaa933f8c58..a19329fec3d79e17a1d719134392ed5fd4cb7a73 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/controlDict index cc064cd532f5e5dfa900da44307187aae39a3aef..d9e6d1ea807d3fcc8768b971084f46de0e6594c7 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvOptions index 9949c3bf5fd06a5f7fdcf53bc3b9d222b0f3ec45..f834f1f51caeb29611410b9cd18151a535d01e14 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvSchemes index 7f060d5f4f6b5294b543ba5ede7ca3806b13406c..1fb35512ba9651054b1bc79c62526214756fa395 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/optimisationDict index 72d7895a4e28e362abb86f0629d040c03aa6021e..f8f53d8c814666d54cfa7791b48759006003fbb0 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -64,7 +64,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; target 0.0027; normFactor 0.005; } @@ -117,7 +117,7 @@ adjointManagers weight 1.; type uniformityPatch; patches (outlet outlet-right); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/BP/uniformity-losses/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/U index e11d846911a6c672a9c915ed591053928e950815..4383f7a233c8d6abd9f2b2b66f91d6e7250fb7ce 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/Ua index a2b8a355b121e8bcc9b9e3c88724a2be753f1e3f..13dfddc6cac342248c07c911c907911d1d1f8149 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nuTilda index 9d64ae58b5bbb58a0b6c991eb0627294d908158c..295ab3a69e3f67c85e074f3f86a3a1c0fda98e83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nuaTilda index f6c5d2c40e43b356903534d7c970cc2c667f39c2..d527e2e1b6a76a29e642a23476f1f4c9406a2fba 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nut index 3da02a2a8562372c56303cc10f301f7f4bdc259f..c249c6339104104433b4358a1e5acbdada426a1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/p index fd7e61069f73dd94e53110259aa72bd80b94e3c5..4a9ae25a7a6393cd47f067e81fe47eb317def1dd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/pa index 44cb694da459f3c2667572123f2b078e34d43d00..e61d6e611871dba8a58b3eaa85b28a8022c69a95 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/U index 1782bf63b73ce73dad7c27c3b539bf14617ec4b7..aab63e4186f70b9c9bde95af605926cf9d78cff4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/Ua index fe183dd330f6416889d3095c84e58bd231ab9f50..7f0c0fe0c2d30dae8e6dfe6f3d8419809d550d5a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nuTilda index 9590ac696e6952e3ba2903ef0dab47c35a1a2317..942b4a4c3d0a786e5b51ba7d43e8190fab44946a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nuaTilda index ca1c0c208f06fee3c00c44caca2c467f72fc86fa..6da0ab708ec5b434895daf01d7284b9010d07aed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nut index 58c82a16a9aa3986d4e30dafe57cf3852026d333..112f7fcdd4ee5243ecc8597d6f72a490c007897e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/p index 3887758e76b8365288959ae193a81bcfb8eb12f6..3cb99c18a417f633543bd8f8ee9b0780305d38a3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/pa index 0e509436a5d447d0312f09add47a95c9e4342804..80f4498e846617eef97024b5a968b67e8fbc515c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/fvSchemes index fac231650eb3aac1bd13b1cb9892b77d3510f045..d3d32f974d08efd848db3b752288ab13a600686c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/optimisationDict index a994d088fc91fa2d4e454651d3017e3bb0764f5b..5917470274b2e6b28b8d90826b6170b2a1286315 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/controlDict index a298d749e51ac74db85e7164ff1349ab3f36e766..bd32cbb86fcbf3c0ebd5a43fd2c6cadea185a0f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvOptions index 836042fd1818a2e34b28650099dacf450cd8e873..a22f79dd256220097b6f2a84de3f2c833f05054d 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvSchemes index 7f060d5f4f6b5294b543ba5ede7ca3806b13406c..1fb35512ba9651054b1bc79c62526214756fa395 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/optimisationDict index b5befe78054d09f498516b9a16376b761457a173..e9976e295c088882a4b8bfbcb4a139bf7bc4aec2 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } @@ -109,7 +109,7 @@ adjointManagers inletPatches (inlet); outletPatches (outlet outlet-right); targetFractions (0.5 0.5); - normalize true; + normalise true; target 1.e-5; } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses-massConstr/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/U index e11d846911a6c672a9c915ed591053928e950815..4383f7a233c8d6abd9f2b2b66f91d6e7250fb7ce 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/Ua index a2b8a355b121e8bcc9b9e3c88724a2be753f1e3f..13dfddc6cac342248c07c911c907911d1d1f8149 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nuTilda index 9d64ae58b5bbb58a0b6c991eb0627294d908158c..295ab3a69e3f67c85e074f3f86a3a1c0fda98e83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nuaTilda index f6c5d2c40e43b356903534d7c970cc2c667f39c2..d527e2e1b6a76a29e642a23476f1f4c9406a2fba 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nut index 3da02a2a8562372c56303cc10f301f7f4bdc259f..c249c6339104104433b4358a1e5acbdada426a1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/p index fd7e61069f73dd94e53110259aa72bd80b94e3c5..4a9ae25a7a6393cd47f067e81fe47eb317def1dd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/pa index 44cb694da459f3c2667572123f2b078e34d43d00..e61d6e611871dba8a58b3eaa85b28a8022c69a95 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/U index 1782bf63b73ce73dad7c27c3b539bf14617ec4b7..aab63e4186f70b9c9bde95af605926cf9d78cff4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/Ua index fe183dd330f6416889d3095c84e58bd231ab9f50..7f0c0fe0c2d30dae8e6dfe6f3d8419809d550d5a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nuTilda index 9590ac696e6952e3ba2903ef0dab47c35a1a2317..942b4a4c3d0a786e5b51ba7d43e8190fab44946a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nuaTilda index ca1c0c208f06fee3c00c44caca2c467f72fc86fa..6da0ab708ec5b434895daf01d7284b9010d07aed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nut index 58c82a16a9aa3986d4e30dafe57cf3852026d333..112f7fcdd4ee5243ecc8597d6f72a490c007897e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/p index 3887758e76b8365288959ae193a81bcfb8eb12f6..3cb99c18a417f633543bd8f8ee9b0780305d38a3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/pa index 0e509436a5d447d0312f09add47a95c9e4342804..80f4498e846617eef97024b5a968b67e8fbc515c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/fvSchemes index fac231650eb3aac1bd13b1cb9892b77d3510f045..d3d32f974d08efd848db3b752288ab13a600686c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/optimisationDict index 3030be7f9715c73108499e0ed5448b9c1e8a00d4..71efaddeb90460c7e62be0ae4f431cc1f474b25a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -62,7 +62,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/controlDict index b1f966f654aa093938462386f124d215b560ea0b..a64eea2ca8416d0fe43e8f00a6a77552e1fff947 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvOptions index 4ca5035c3b3efdea13c6456447f07ed33cf45f85..b20d85ddc92ccec8eb60310c13ffa903ed23a020 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvSchemes index fac231650eb3aac1bd13b1cb9892b77d3510f045..d3d32f974d08efd848db3b752288ab13a600686c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/optimisationDict index c19d5f127a2a8e0656b56bd97d22af19d549362c..47e00cefc004220192fe2bb1ed91fedf2aa7c92b 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -63,7 +63,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/losses/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/U index e11d846911a6c672a9c915ed591053928e950815..4383f7a233c8d6abd9f2b2b66f91d6e7250fb7ce 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/Ua index a2b8a355b121e8bcc9b9e3c88724a2be753f1e3f..13dfddc6cac342248c07c911c907911d1d1f8149 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nuTilda index 9d64ae58b5bbb58a0b6c991eb0627294d908158c..295ab3a69e3f67c85e074f3f86a3a1c0fda98e83 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nuaTilda index f6c5d2c40e43b356903534d7c970cc2c667f39c2..d527e2e1b6a76a29e642a23476f1f4c9406a2fba 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nut index 3da02a2a8562372c56303cc10f301f7f4bdc259f..c249c6339104104433b4358a1e5acbdada426a1a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/p index fd7e61069f73dd94e53110259aa72bd80b94e3c5..4a9ae25a7a6393cd47f067e81fe47eb317def1dd 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/pa index 44cb694da459f3c2667572123f2b078e34d43d00..e61d6e611871dba8a58b3eaa85b28a8022c69a95 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/U b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/U index 1782bf63b73ce73dad7c27c3b539bf14617ec4b7..aab63e4186f70b9c9bde95af605926cf9d78cff4 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/U +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/Ua b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/Ua index fe183dd330f6416889d3095c84e58bd231ab9f50..7f0c0fe0c2d30dae8e6dfe6f3d8419809d550d5a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/Ua +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nuTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nuTilda index 9590ac696e6952e3ba2903ef0dab47c35a1a2317..942b4a4c3d0a786e5b51ba7d43e8190fab44946a 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nuTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nuaTilda b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nuaTilda index ca1c0c208f06fee3c00c44caca2c467f72fc86fa..6da0ab708ec5b434895daf01d7284b9010d07aed 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nuaTilda +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nuaTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nut b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nut index 58c82a16a9aa3986d4e30dafe57cf3852026d333..112f7fcdd4ee5243ecc8597d6f72a490c007897e 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nut +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/p b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/p index 3887758e76b8365288959ae193a81bcfb8eb12f6..3cb99c18a417f633543bd8f8ee9b0780305d38a3 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/p +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/pa b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/pa index 0e509436a5d447d0312f09add47a95c9e4342804..80f4498e846617eef97024b5a968b67e8fbc515c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/pa +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/adjointRASProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/adjointRASProperties index 5791fa33d4ebf56638a804ad3b52684b4b34b0c5..04f25167da5549f9332c5f6da3aafd67beba55d8 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/adjointRASProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/adjointRASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/transportProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/transportProperties index d10dac0f657395de86ff7a3c534b0a470d5b8106..b27abd402b6eccc7c4484dd2e3782d9ddeccb6c9 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/transportProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/turbulenceProperties b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/turbulenceProperties index 1f713eefcdd5ecd30b7399ebe5e6bfb4b2410b10..a58411cde870c69454a1dd4e4a54f5e44fe0f28c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/controlDict index df2ed91b10f749775cb0a22ff1d68b36a5b329a2..950ef55251075e0c9ddfff264faabf128fad7068 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/decomposeParDict index b3ca37444acb5e610c911ddc9d50a8468d69c00c..ab7bcb307963c67056f088f72d98e276b01f3498 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/fvSchemes index fac231650eb3aac1bd13b1cb9892b77d3510f045..d3d32f974d08efd848db3b752288ab13a600686c 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/meshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/meshDict index 526669fa5d62f2bea8dbce1e3696e2561a2c35c2..53ee0a271e447c002e222d11f5983f620fc47931 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/meshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/meshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/optimisationDict index 52db99f73b1518f4e0f1282a79208d6ee862fba5..fac92f760812c2f74d918e7020bfbcdd6a17d4fc 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/reEval/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/blockMeshDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/blockMeshDict index 5af21380ed944a3119c4f2003a1088d0592d1790..0172ed407470f3cf700dcdae61ab353000061fbf 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/blockMeshDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/controlDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/controlDict index a298d749e51ac74db85e7164ff1349ab3f36e766..bd32cbb86fcbf3c0ebd5a43fd2c6cadea185a0f1 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/controlDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/decomposeParDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/decomposeParDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvOptions b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvOptions index 56a511417e94e7dcf5923b795909f9c3c1592aca..0142f72192ab8ffcfa0f367dd12b234ca229279f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvOptions +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvSchemes b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvSchemes index 7f060d5f4f6b5294b543ba5ede7ca3806b13406c..1fb35512ba9651054b1bc79c62526214756fa395 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvSchemes +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvSolution b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvSolution index 9fafdad68fdcb607ae1427905a0873a125d463d1..2a089912ec33ee47200f197c5c77ab5472e68d89 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvSolution +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/optimisationDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/optimisationDict index 90b3016d26822810f42672cf8cb869176dc75c9c..91665d1732ca3966c402df3086a4ac75ba216b56 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/optimisationDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/optimisationDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -64,7 +64,7 @@ adjointManagers weight 1.; type PtLosses; patches (inlet "outlet.*"); - normalize true; + normalise true; target 0.003; normFactor 0.00499815; } @@ -109,7 +109,7 @@ adjointManagers weight 1.; type uniformityPatch; patches (outlet outlet-right); - normalize true; + normalise true; } } } diff --git a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/topoSetDict b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/topoSetDict index 11c11dae52cf5e07f86c3453f8c917a172a1bc03..d3ad88a99a2daa1100a8c6470dcb15730901fc5f 100644 --- a/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/topoSetDict +++ b/tutorials/incompressible/adjointOptimisationFoam/topologyOptimisation/monoFluidAero/turbulent/1_Inlet_2_Outlet/porosityBased/linear/uniformity-losses/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/U b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/U index cae9674e7734f412ed4501cd23b83d22689308b8..529392a47fde7689ff79aeb53cff91a977e67c65 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/U +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/Ua b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/Ua index ccf7d77c80bed8d52bba66820587ef62a2c4750f..0d61fdda1503ee3582ba62283caadda0a177fbdd 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/Ua +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/Ua @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/epsilon b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/epsilon index 1a502e4e3216f4b741f25385d4cdd93cdb1185a2..f514c6f744aaf748a344820ad9746237dd4cb309 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/epsilon +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/k b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/k index 59ed527364c05064b22483402bfe3c14f345b880..82d6b5c41354c1e3bd2dfae70f09a3b23acc805a 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/k +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/nut b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/nut index bde67bdc7fe6c4c6b87aab0a422c52efe372b68d..752093bde2203b10704b98010292b6ae7d685ddd 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/nut +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/p b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/p index eca7aa93a8f5ec660e9941f4dbcb7eab7d8de019..783fd80e14d2b3c9848f444ee15f135e319946db 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/p +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/pa b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/pa index 2cbd4676bc4582176fd378fce1fde7ff76a6e0a4..cbe7fe9acee476d42ea8993f3e03effa8bb62eac 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/pa +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/0/pa @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/transportProperties b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/transportProperties index 7191d4b648b560d6a25734e7cb724039eef3b981..978d9ec84439e8e900d3d091ce0e1ba8026d3276 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/transportProperties +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/turbulenceProperties b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/turbulenceProperties +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/blockMeshDict b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/blockMeshDict index 7709136f71bf3d75aabe2e4fe84e823e3769b6d2..1dd07e2117d137ed392c80db2629404a955e7fc2 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/blockMeshDict +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/controlDict b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/controlDict index 5d4b91e3f52059f1958d1873414271d34d1226e3..f21504b8c290dd1d3a9b163af69b5a689336ba98 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/controlDict +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/fvSchemes b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/fvSchemes index c81030882017ab65083ab57ed1859403f00a63a4..8d78ebfabf5ef4cd59fdf516b564381ed8cc36f3 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/fvSchemes +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/fvSolution b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/fvSolution index afba473610f7f14d738f43f4ca4d2f1c01fd1cbf..3f461c8e6f4f5ac3eb1a3361671278bdf913b6a4 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/fvSolution +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/LaunderSharmaKE-nutkWallFunction/0.orig/nut b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/LaunderSharmaKE-nutkWallFunction/0.orig/nut index 7e25c4c4d720475329cd7a23ea47e3dfa4b6029d..d64ba0142018424052ba87769cbf6954f4c83edb 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/LaunderSharmaKE-nutkWallFunction/0.orig/nut +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/LaunderSharmaKE-nutkWallFunction/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/LaunderSharmaKE-nutkWallFunction/constant/turbulenceProperties b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/LaunderSharmaKE-nutkWallFunction/constant/turbulenceProperties index 43f16675b4a46f10504d32f1041ea4c3f22fd529..5267c47501604c5f51769668d77b135bbfa011c3 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/LaunderSharmaKE-nutkWallFunction/constant/turbulenceProperties +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/LaunderSharmaKE-nutkWallFunction/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/U b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/U index f530b76cbd546f816867b948467138ff790cb043..b6835c19832660cd9ebd293c16d8b151f4692bf2 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/U +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/epsilon b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/epsilon index 6eee4e3901b7391d48bc803436c65a76eaee5d9f..8e2980b28940c23b202a44e6588e4906bd5f2052 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/epsilon +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/k b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/k index c6149949b9d25f64fddfb6363f8a4f1d83b38ccf..85af129800f21bfdd681cefd520500a96ad53282 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/k +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/nuTilda b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/nuTilda index 8426c87fc052eb880e3818b0eadeaa296419b014..bdbf3bed84e751da4cefc19d4189fcbdbc5a2f64 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/nuTilda +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/omega b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/omega index 71546d75af35922d10a21698c62b44881877e93b..f32f8d58c7eea4b2747d65ee2d07da7201b480f6 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/omega +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/constant/transportProperties.template b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/constant/transportProperties.template index 3d8dfe88dd45dbd06115a57ec577bf9a0c2acb18..49b90a8a934d382af4827e29d6a37261e7798a37 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/constant/transportProperties.template +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/constant/transportProperties.template @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/blockMeshDict b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/blockMeshDict index c29d253f17e4aa0b944e9b0a48fc935056dfb27f..24983e5069aa748f95bff01d7dfd0d0146a73f63 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/blockMeshDict +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/controlDict b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/controlDict index 3476a3ec008a848506a46c99beb5c095490bdba8..ebf7cfe191fdf3dd77bf9916809bc565a700480b 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/controlDict +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/decomposeParDict b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/decomposeParDict index b254304d91c32b6cac1768cd4d13e106cfd09b13..969727423b6cdf0341a897f296db544ec2dcd381 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/decomposeParDict +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/fvSchemes b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/fvSchemes index d686a0ecec099885d5ebd138981fb0803cce253c..f854db2e8b6f858acc67afca4b666a3748c8ea95 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/fvSchemes +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/fvSolution b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/fvSolution index 7761d5b81e247f18bb7517318708d20be3a4e335..76c08f3d19c75cd0106b14647fe00969449d00e0 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/fvSolution +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/common/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/kEpsilon-nutkWallFunction/0.orig/nut b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/kEpsilon-nutkWallFunction/0.orig/nut index 7e25c4c4d720475329cd7a23ea47e3dfa4b6029d..d64ba0142018424052ba87769cbf6954f4c83edb 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/kEpsilon-nutkWallFunction/0.orig/nut +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/kEpsilon-nutkWallFunction/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/kEpsilon-nutkWallFunction/constant/turbulenceProperties b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/kEpsilon-nutkWallFunction/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/kEpsilon-nutkWallFunction/constant/turbulenceProperties +++ b/tutorials/incompressible/boundaryFoam/steadyBoundaryLayer/setups.orig/kEpsilon-nutkWallFunction/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavity/0/U b/tutorials/incompressible/icoFoam/cavity/cavity/0/U index e9ce88a98387ad09ba8f383acbbce03ce5f7d6a6..573a1e93859582036ab7e3284ccf6bae466c0e21 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavity/0/U +++ b/tutorials/incompressible/icoFoam/cavity/cavity/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavity/0/p b/tutorials/incompressible/icoFoam/cavity/cavity/0/p index 1160434c0147040beee61fe88aac3e1862acfb98..861ece3fd25189915bfe37d0afee4ba65f3a11d6 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavity/0/p +++ b/tutorials/incompressible/icoFoam/cavity/cavity/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavity/constant/transportProperties b/tutorials/incompressible/icoFoam/cavity/cavity/constant/transportProperties index 80ab6e271d387f5dd52ad4510b6511b10d11b3f0..f0d68f134dd5843eea73fa135fa790e5c2d3ed03 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavity/constant/transportProperties +++ b/tutorials/incompressible/icoFoam/cavity/cavity/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavity/system/PDRblockMeshDict b/tutorials/incompressible/icoFoam/cavity/cavity/system/PDRblockMeshDict index bc5ee6d9ae9d4f004f88b72d7dc88091838414f7..1dbf38c687c221be513e9ac35eea282d5d33a1b3 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavity/system/PDRblockMeshDict +++ b/tutorials/incompressible/icoFoam/cavity/cavity/system/PDRblockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavity/system/blockMeshDict b/tutorials/incompressible/icoFoam/cavity/cavity/system/blockMeshDict index 346dc02de8308d88abdc16217a3514c137eba842..4d19616448661f169ff6658af408c1fff03b8e1c 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavity/system/blockMeshDict +++ b/tutorials/incompressible/icoFoam/cavity/cavity/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavity/system/controlDict b/tutorials/incompressible/icoFoam/cavity/cavity/system/controlDict index f9dcab818049f8a4cc5bb72315f1ab8002202295..f27c6f5964eace0d84afaf6afd371474dcce34f5 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavity/system/controlDict +++ b/tutorials/incompressible/icoFoam/cavity/cavity/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavity/system/decomposeParDict b/tutorials/incompressible/icoFoam/cavity/cavity/system/decomposeParDict index ce4ddaf2be4aaf6eae9008656cc529f7709f1119..c275e4c9fb4c01bc793c051263cdef1f518385bd 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavity/system/decomposeParDict +++ b/tutorials/incompressible/icoFoam/cavity/cavity/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavity/system/fvSchemes b/tutorials/incompressible/icoFoam/cavity/cavity/system/fvSchemes index 51808e9ee6d8127afb334d4da45540edfc913135..578009903f1c2e680e170200a7091f359e392c23 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavity/system/fvSchemes +++ b/tutorials/incompressible/icoFoam/cavity/cavity/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavity/system/fvSolution b/tutorials/incompressible/icoFoam/cavity/cavity/system/fvSolution index 92417b46fdf134b38c441c55f9686cd8eb3dbd6d..983794c202f08dc20d592af4f53a22779319774a 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavity/system/fvSolution +++ b/tutorials/incompressible/icoFoam/cavity/cavity/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityClipped/0/U b/tutorials/incompressible/icoFoam/cavity/cavityClipped/0/U index 578625091077770d926badcff475327defa6beba..b5eb6a24e794ca6bd2310d0fb30dff0934d72a7a 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityClipped/0/U +++ b/tutorials/incompressible/icoFoam/cavity/cavityClipped/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityClipped/0/p b/tutorials/incompressible/icoFoam/cavity/cavityClipped/0/p index 24c537f58b8e3d4ee79e620421dd401aaf2bda7a..ad4f6cf23bc7c4a05232d59cba648cd90212ead6 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityClipped/0/p +++ b/tutorials/incompressible/icoFoam/cavity/cavityClipped/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityClipped/constant/transportProperties b/tutorials/incompressible/icoFoam/cavity/cavityClipped/constant/transportProperties index 80ab6e271d387f5dd52ad4510b6511b10d11b3f0..f0d68f134dd5843eea73fa135fa790e5c2d3ed03 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityClipped/constant/transportProperties +++ b/tutorials/incompressible/icoFoam/cavity/cavityClipped/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/blockMeshDict b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/blockMeshDict index 9b0eb110ac3451ff706f599224d6baea432468d9..b3103e1959e16344bb9109544ad17b11eed2e737 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/blockMeshDict +++ b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/controlDict b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/controlDict index 4697ca789cdcf9c6f63179484f86583f53e50969..e23e09a3e2992c7dc2c9121124245aee90dfe7a6 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/controlDict +++ b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/fvSchemes b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/fvSchemes index 8f749cbbffab223c71e1b6ff6cd40c32f0f95b48..b992d2e3608954a5d07ec50669c45dcc18a7523f 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/fvSchemes +++ b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/fvSolution b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/fvSolution index 92417b46fdf134b38c441c55f9686cd8eb3dbd6d..983794c202f08dc20d592af4f53a22779319774a 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/fvSolution +++ b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/mapFieldsDict b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/mapFieldsDict index 8825a74572c30654349cff0187720fe680fd99dd..6bd36a147adf421d447d7e89b3beba406dc7063a 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/mapFieldsDict +++ b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/mapFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityGrade/0/U b/tutorials/incompressible/icoFoam/cavity/cavityGrade/0/U index e9ce88a98387ad09ba8f383acbbce03ce5f7d6a6..573a1e93859582036ab7e3284ccf6bae466c0e21 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityGrade/0/U +++ b/tutorials/incompressible/icoFoam/cavity/cavityGrade/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityGrade/0/p b/tutorials/incompressible/icoFoam/cavity/cavityGrade/0/p index 1160434c0147040beee61fe88aac3e1862acfb98..861ece3fd25189915bfe37d0afee4ba65f3a11d6 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityGrade/0/p +++ b/tutorials/incompressible/icoFoam/cavity/cavityGrade/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityGrade/constant/transportProperties b/tutorials/incompressible/icoFoam/cavity/cavityGrade/constant/transportProperties index 80ab6e271d387f5dd52ad4510b6511b10d11b3f0..f0d68f134dd5843eea73fa135fa790e5c2d3ed03 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityGrade/constant/transportProperties +++ b/tutorials/incompressible/icoFoam/cavity/cavityGrade/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/blockMeshDict b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/blockMeshDict index be6f2f561421769f6d0bcddc14a2e0457659c97e..f9596f980fc3369bc446376292a12991140fc1f4 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/blockMeshDict +++ b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/controlDict b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/controlDict index d881fe5be7fd64c234c69ab3fae45bce9a2bff8b..a06e37e06fd1d038a485df26d444a42a3f0c3299 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/controlDict +++ b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/fvSchemes b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/fvSchemes index 45a7ac782405cdfe96d1a42295edda255ab4770f..359ecad45efde54f92b54705ffa5c252ecaf8cf4 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/fvSchemes +++ b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/fvSolution b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/fvSolution index 92417b46fdf134b38c441c55f9686cd8eb3dbd6d..983794c202f08dc20d592af4f53a22779319774a 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/fvSolution +++ b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/mapFieldsDict b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/mapFieldsDict index 9fb219c56acac5322d7c446d549125f3a86240d5..591b01a38999f2a8f5921d96b007f7aa798c850f 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/mapFieldsDict +++ b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/mapFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/0.orig/U b/tutorials/incompressible/icoFoam/cavityMappingTest/0.orig/U index 45de4e358322047556741f656e4cef4bd16c8538..e3e55f6e7de68551d334693767da32a0fda3d122 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/0.orig/U +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/0.orig/p b/tutorials/incompressible/icoFoam/cavityMappingTest/0.orig/p index 1160434c0147040beee61fe88aac3e1862acfb98..861ece3fd25189915bfe37d0afee4ba65f3a11d6 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/0.orig/p +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/constant/transportProperties b/tutorials/incompressible/icoFoam/cavityMappingTest/constant/transportProperties index 80ab6e271d387f5dd52ad4510b6511b10d11b3f0..f0d68f134dd5843eea73fa135fa790e5c2d3ed03 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/constant/transportProperties +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.coarse b/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.coarse index 0dc3596084b2b6ef54c00ae4ef238764a0378e62..13db438a08e42d2dca222d24a8bb048daaa56af3 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.coarse +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.coarse @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.fine b/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.fine index 8a534a57a6af885f15c19511bc3827499e167b83..3bd08185dbea7078676c306bb5a95320bf64e6c1 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.fine +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.fine @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/decomposeParDict b/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/decomposeParDict index 981b319d65d313f3b12e6871ea6fafb6f959296e..03f739d330cafd14f8ba3def80ca4f01342ef49d 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/decomposeParDict +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/fvSchemes b/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/fvSchemes +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/fvSolution b/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..7f27acc8aafdc9c654d77e52adddcb26c0aa112e 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/fvSolution +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/system/coarseMesh/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/system/controlDict b/tutorials/incompressible/icoFoam/cavityMappingTest/system/controlDict index 1f981136b8a54246e88344d43c7f3460a030ff78..4b96542d45ea03a8f1b7daa42e4481ddf34e79d1 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/system/controlDict +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/system/decomposeParDict b/tutorials/incompressible/icoFoam/cavityMappingTest/system/decomposeParDict index 981b319d65d313f3b12e6871ea6fafb6f959296e..03f739d330cafd14f8ba3def80ca4f01342ef49d 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/system/decomposeParDict +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/system/fvSchemes b/tutorials/incompressible/icoFoam/cavityMappingTest/system/fvSchemes index 51808e9ee6d8127afb334d4da45540edfc913135..578009903f1c2e680e170200a7091f359e392c23 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/system/fvSchemes +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/system/fvSolution b/tutorials/incompressible/icoFoam/cavityMappingTest/system/fvSolution index 92417b46fdf134b38c441c55f9686cd8eb3dbd6d..983794c202f08dc20d592af4f53a22779319774a 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/system/fvSolution +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/elbow/0.orig/U b/tutorials/incompressible/icoFoam/elbow/0.orig/U index 84431d779ac1b23ad583aae033c2a44362438475..796c0bb2265f09469317a424b970d205b0136d29 100644 --- a/tutorials/incompressible/icoFoam/elbow/0.orig/U +++ b/tutorials/incompressible/icoFoam/elbow/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/elbow/0.orig/p b/tutorials/incompressible/icoFoam/elbow/0.orig/p index 8d3768b36df375258afec70a4e5b458a455e7bce..e3eedf0d4a8d73e8e19b3c95ace2bd8734898c49 100644 --- a/tutorials/incompressible/icoFoam/elbow/0.orig/p +++ b/tutorials/incompressible/icoFoam/elbow/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/elbow/constant/transportProperties b/tutorials/incompressible/icoFoam/elbow/constant/transportProperties index 80ab6e271d387f5dd52ad4510b6511b10d11b3f0..f0d68f134dd5843eea73fa135fa790e5c2d3ed03 100644 --- a/tutorials/incompressible/icoFoam/elbow/constant/transportProperties +++ b/tutorials/incompressible/icoFoam/elbow/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/elbow/system/controlDict b/tutorials/incompressible/icoFoam/elbow/system/controlDict index 4801fb6d58b576b3432a2c354cb6988030fed5e2..b4c0ebb1f3d8a7c3cb92f6b828019f91cd2cfa7b 100644 --- a/tutorials/incompressible/icoFoam/elbow/system/controlDict +++ b/tutorials/incompressible/icoFoam/elbow/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/elbow/system/foamDataToFluentDict b/tutorials/incompressible/icoFoam/elbow/system/foamDataToFluentDict index d149fcce8c3e0557a511edfe680f63d7d312cec6..840b6114bc98ac2260dbf4093995e2b2591fd0ac 100644 --- a/tutorials/incompressible/icoFoam/elbow/system/foamDataToFluentDict +++ b/tutorials/incompressible/icoFoam/elbow/system/foamDataToFluentDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/elbow/system/fvSchemes b/tutorials/incompressible/icoFoam/elbow/system/fvSchemes index 0dd1bb23ef3963db0ed02af9d3402140e70cdf50..07d4897f7d891a8f19b83c63d97639472338b2bf 100644 --- a/tutorials/incompressible/icoFoam/elbow/system/fvSchemes +++ b/tutorials/incompressible/icoFoam/elbow/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/icoFoam/elbow/system/fvSolution b/tutorials/incompressible/icoFoam/elbow/system/fvSolution index d82d0006cf860c6a9e543d121ed4203f5deeb1ec..ddc0a5c578f2c518ca1bb820bae3eb39586cbebe 100644 --- a/tutorials/incompressible/icoFoam/elbow/system/fvSolution +++ b/tutorials/incompressible/icoFoam/elbow/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/Allrun b/tutorials/incompressible/lumpedPointMotion/bridge/Allrun index 18bd324aef396563e363fb5b00c4120f5ad52220..3e9f437129e0a8d57419753dc843d2f120cb10e5 100755 --- a/tutorials/incompressible/lumpedPointMotion/bridge/Allrun +++ b/tutorials/incompressible/lumpedPointMotion/bridge/Allrun @@ -35,9 +35,13 @@ then copyParallelPointDisplacement "$caseName" "$latestTime" # Adjust application (from simpleFoam -> pimpleFoam) - foamDictionary transient/system/controlDict \ + foamDictionary "$caseName"/system/controlDict \ -entry application -set pimpleFoam + # Adjust dynamicMeshDict (from static -> dynamicMotionSolver) + foamDictionary "$caseName"/constant/dynamicMeshDict \ + -entry dynamicFvMesh -set dynamicMotionSolverFvMesh + # Copy/link support files linkFiles files "$caseName" diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/U b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/U index 01e4140f64119b082891cb912f6e307a3a8f2fe4..9a5942c5dbbbb86942522a3c4f5bd729bf4f6f15 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/U +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/epsilon b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/epsilon index 6cd5d46640aef11b03c5140d4b30b609ca08ebbe..73e874b9569b72771807e8cae588fab46506d5e3 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/epsilon +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/controllers b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/controllers index 7c27d2d289876adb1d5e60bc660003fcfc8d4d8d..d3d8a5f5002c21fa6e7f2a31e2a838805cfd4f82 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/controllers +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/controllers @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/environ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/environ index 59436b203cafbc93118b9e52eeada0147518b353..88cf104d0bdee947554923441e0577021abde592 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/environ +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/environ @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/initialConditions b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/initialConditions index 20f65257fdd09984976c564566ce8385c9d32677..88478858676eb0768247856b5704ab5ac9252f8b 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/initialConditions +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/k b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/k index dac9ef00779914d7b8e2f979029ac25e07b74c13..f74761f36ee3d31f81dd4334972cfcd7f604db70 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/k +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/nut b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/nut index 88549ab4c245f6baac474a62ee6d27885a4897be..ae1803040da562fae9370ee670e8b9f4c58c4655 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/nut +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/omega b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/omega index fbde5adbcc329eb82ccb1c5f29fcecf88116abab..c81de09e8e8f7883a2080ca1bec8bc05629aa15c 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/omega +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/p b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/p index 99c49b45dda512c0d841769255825fc58d76455c..a25188812e20165b50f30c431a58a28cea737d33 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/p +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/pointDisplacement b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/pointDisplacement index edf6d54920f894493f0cfed76996dddcde7a1bde..4066ad9adb6fd34da72e7d64d7003195e5ec5bfc 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/pointDisplacement +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/dynamicMeshDict b/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/dynamicMeshDict index 1da3195647894f8fde5985b6e3fde4baa09a618a..663bb77467fc79807afc917172afbaa3cf37fb92 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/dynamicMeshDict +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -20,7 +20,7 @@ updateControl runTime; updateInterval 0.001; -dynamicFvMesh dynamicMotionSolverFvMesh; +dynamicFvMesh staticFvMesh; motionSolverLibs (fvMotionSolvers); diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/transportProperties b/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/transportProperties index fe20d9bac29b48929d5ea44b362bc995416d1e97..dd27a2baae39543014255c996ee6e99ef9960ff8 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/transportProperties +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/turbulenceProperties b/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/turbulenceProperties index d0c455f6b4d72ae914c82ff25b60e5c122c6860a..6c8f6417b28566dbed94c7aa349df8977ab2c248 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/turbulenceProperties +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/PDRblockMeshDict b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/PDRblockMeshDict index 741e9be48f90552f27f9004e2b526dc2e3784a15..8525bf8b8e56a6c17143ca6321e233b2b5a0453d 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/PDRblockMeshDict +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/PDRblockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/blockMeshDict b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/blockMeshDict index fdf4dbaef8f1dda0c5e6081684c15deecddcf265..888512fefcd6e909308e02332951df444934d1ef 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/blockMeshDict +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/controlDict b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/controlDict index ea9454798e6c4002f7a97b4debea395ee186a3f3..cc47daf8f6a639d27728c02fbc27814555f67ad0 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/controlDict +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/decomposeParDict b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/decomposeParDict index 7d128fb5d8439e5656f5380cbf6c90612a6e27c5..d51c39412b88c297dd5d58f896024b7e4f1be19e 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/decomposeParDict +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/fvSchemes b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/fvSchemes index 1b8a2806f56b85464c04609e0614692bfc9d55dd..1c1cfe68ea2c845a02e3a28c4e3bf76013147d60 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/fvSchemes +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/fvSolution b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/fvSolution index d93b794eca74d4f3bd3f84b14981cf905176fb8f..017948090a83e52d03fbc94a327c08c3108b937b 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/fvSolution +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/lumpedPointControllers b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/lumpedPointControllers index 57f7350441820dd3608140ced191509c070185e2..6bb76f10adca3b7273b924f8b08bbea4353c8291 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/lumpedPointControllers +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/lumpedPointControllers @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/lumpedPointMovement b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/lumpedPointMovement index fcfab32f33fee0d9829b85fd730a8a6c4b74fcdb..c3f3015ada4fb2eb7961c8dee8e732d726c6a691 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/lumpedPointMovement +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/lumpedPointMovement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/meshQualityDict b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/meshQualityDict index c5e4f5ec15c6034ff30f9db5de96234df3a6ec4e..ee087e0e5c7bf5fb3881011fb1598317d242cf71 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/meshQualityDict +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/snappyHexMeshDict b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/snappyHexMeshDict index 406618a08cffa67b78a8995c8ff836f56642f43d..d5cc11735278f9553184b54a65ed5514ba069633 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/snappyHexMeshDict +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/surfaceFeatureExtractDict b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/surfaceFeatureExtractDict index c049e7df5caaeb8160b04b4db96fa4f7193cfd3a..cdd96297a685ce87aa3e0f6069bacb3b076f2dde 100644 --- a/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/lumpedPointMotion/bridge/steady/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/Allrun b/tutorials/incompressible/lumpedPointMotion/building/Allrun index db3fdc34c5483dcc80d550dd5ac641765835cc14..5c7abf3e7d52ad1d5dd8eb4e6c6f44ee6647e3a2 100755 --- a/tutorials/incompressible/lumpedPointMotion/building/Allrun +++ b/tutorials/incompressible/lumpedPointMotion/building/Allrun @@ -37,6 +37,10 @@ then foamDictionary "$caseName"/system/controlDict \ -entry application -set pimpleFoam + # Adjust dynamicMeshDict (from static -> dynamicMotionSolver) + foamDictionary "$caseName"/constant/dynamicMeshDict \ + -entry dynamicFvMesh -set dynamicMotionSolverFvMesh + # Copy/link support files linkFiles files "$caseName" diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/U b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/U index 44de0a16a3e76d502e3313b3dc2b1e30370778f3..66f9b14b0814f93991da5599cff9d686fa92bc85 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/U +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/epsilon b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/epsilon index 71d2ce11571ef86f8a0d4f9eb665f33937f90622..43f5b01049573a88515f83a667a08830a081017f 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/epsilon +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/environ b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/environ index b1898c7afa6003086de236d776c5c323e55f16d8..7f43e28cda2ea3388e0e58ff078010491c91613e 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/environ +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/environ @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/fixedInlet b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/fixedInlet index 125fbb7bc20e6e06b7203d3c70e0bc77b6db089c..0b9fd7ef7f399378c34ccc6a4f7c8f0d4e44c984 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/fixedInlet +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/fixedInlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/initialConditions b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/initialConditions index 20f65257fdd09984976c564566ce8385c9d32677..88478858676eb0768247856b5704ab5ac9252f8b 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/initialConditions +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/k b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/k index a4a9b58037e87744d921b2fbf1d9ad262cd83f15..00967c0b9c9d403ccf5d2f9d2040c51aa9650423 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/k +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/nut b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/nut index 21d08b47cc7628edd3fdd1e64d361f2bd58fb297..69192a1b6bd08e41e120b381f9a032da266975c8 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/nut +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/omega b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/omega index d0c8c6c4b786b9ff305d1d669dacab8d79888a17..331a6ada1df898c76f42b30a5b81e0745772faa6 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/omega +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/p b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/p index b95c43f6046dbf22932cb586a23e0dda8fe13d32..5b2138561a891e882239ddfbb2fbf17991dd1053 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/p +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/pointDisplacement b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/pointDisplacement index e1718eb08ac571d0eca971aa3fb327c4214c1bd3..aa745a89ff314b52c898a879e07dae0f4cfcd555 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/pointDisplacement +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/constant/dynamicMeshDict b/tutorials/incompressible/lumpedPointMotion/building/steady/constant/dynamicMeshDict index e32136eef7a8659bcfa8b657f97085fe13771751..b908e2e672eff23fd121cae1e8ada28b3a22246b 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/constant/dynamicMeshDict +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -20,7 +20,7 @@ updateControl runTime; updateInterval 0.001; -dynamicFvMesh dynamicMotionSolverFvMesh; +dynamicFvMesh staticFvMesh; motionSolverLibs (fvMotionSolvers); diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/constant/transportProperties b/tutorials/incompressible/lumpedPointMotion/building/steady/constant/transportProperties index fe20d9bac29b48929d5ea44b362bc995416d1e97..dd27a2baae39543014255c996ee6e99ef9960ff8 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/constant/transportProperties +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/constant/turbulenceProperties b/tutorials/incompressible/lumpedPointMotion/building/steady/constant/turbulenceProperties index d0c455f6b4d72ae914c82ff25b60e5c122c6860a..6c8f6417b28566dbed94c7aa349df8977ab2c248 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/constant/turbulenceProperties +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/system/blockMeshDict b/tutorials/incompressible/lumpedPointMotion/building/steady/system/blockMeshDict index 6b9b5bcf8af8bc78c8ebf6ea7222ddf33cf77692..10caa521d27552a709f2bad6a9bba2a8c90f2302 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/system/blockMeshDict +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/system/controlDict b/tutorials/incompressible/lumpedPointMotion/building/steady/system/controlDict index ea9454798e6c4002f7a97b4debea395ee186a3f3..cc47daf8f6a639d27728c02fbc27814555f67ad0 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/system/controlDict +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/system/decomposeParDict b/tutorials/incompressible/lumpedPointMotion/building/steady/system/decomposeParDict index 55e820d31832a769d0cab7a6c433e5b449bcd0ae..6a35e293f1b53a8c59a4118f64db5eded181f958 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/system/decomposeParDict +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/system/fvSchemes b/tutorials/incompressible/lumpedPointMotion/building/steady/system/fvSchemes index 1b8a2806f56b85464c04609e0614692bfc9d55dd..1c1cfe68ea2c845a02e3a28c4e3bf76013147d60 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/system/fvSchemes +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/system/fvSolution b/tutorials/incompressible/lumpedPointMotion/building/steady/system/fvSolution index d93b794eca74d4f3bd3f84b14981cf905176fb8f..017948090a83e52d03fbc94a327c08c3108b937b 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/system/fvSolution +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/system/lumpedPointControllers b/tutorials/incompressible/lumpedPointMotion/building/steady/system/lumpedPointControllers index c3a1db4388193c85f84dbaed1893bc59d5fc084a..ebf6171d77236e0cad2dea8d865858245e4f7c7e 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/system/lumpedPointControllers +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/system/lumpedPointControllers @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/system/lumpedPointMovement b/tutorials/incompressible/lumpedPointMotion/building/steady/system/lumpedPointMovement index 3768ed66c6304bcf3107ef50a735873d522ae97e..baea3eb5a879ab20820b6f30d43e565dffcb0a3b 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/system/lumpedPointMovement +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/system/lumpedPointMovement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/system/meshQualityDict b/tutorials/incompressible/lumpedPointMotion/building/steady/system/meshQualityDict index c5e4f5ec15c6034ff30f9db5de96234df3a6ec4e..ee087e0e5c7bf5fb3881011fb1598317d242cf71 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/system/meshQualityDict +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/system/snappyHexMeshDict b/tutorials/incompressible/lumpedPointMotion/building/steady/system/snappyHexMeshDict index f3c61b27b8d7a1c2d0d36b5296e57032bd8c3530..9119c8753269c64be7067080dfa99c8efc70416e 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/system/snappyHexMeshDict +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/system/surfaceFeatureExtractDict b/tutorials/incompressible/lumpedPointMotion/building/steady/system/surfaceFeatureExtractDict index 2e448af4a7e783d06e5c016ed555099bc5176e9b..6221542d83f449292f509ffe477015cdb1a72daf 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/0/U b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/0/U index 8c7727d9647f93f8e770f97e37f67880356a6622..be873465480b9fe3e3d0dee84e6a63763159d4e6 100644 --- a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/0/U +++ b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/0/p b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/0/p index 68b8c189ae4b15b2ec3fcc04415bf51df8a917b6..07d83f257e5b47a76814750582b01effe489b44c 100644 --- a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/0/p +++ b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/constant/transportProperties b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/constant/transportProperties index 4d4927836b5bd793f4048389e614984b4687ca94..114608e7fea09f4b13bb5aac4a7621ac065e65fe 100644 --- a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/constant/transportProperties +++ b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/blockMeshDict b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/blockMeshDict index 9b359ee6ae37f9c3c6c175b2962717799d5bae74..ca5d8f3354343a79ffc8b6f46ee599c1a2bc23aa 100644 --- a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/blockMeshDict +++ b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/controlDict b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/controlDict index 06ba029e1c9882cc49c442c826350d0f28b74244..9be84a3967b3b9d4e6b2c699269e338472de9abc 100644 --- a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/controlDict +++ b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/fvSchemes b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/fvSchemes index 2ccb6c4c3be683d5f2b8b4397ff809823869f61e..f2f6b9ccbfdde01ecc59ac8d73296ed0d8c49da6 100644 --- a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/fvSchemes +++ b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/fvSolution b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/fvSolution index c998c76a0e1d3d5b4c5ef21e42b1d4b76d3f044c..07486faefcecdcacb04a588d26584d9b1afad0eb 100644 --- a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/fvSolution +++ b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/U b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/U index 081cc87a38f33132d39e7ec3868c3c5ab2fa4e8d..3711c21c8a85d8afb365942ad544143954b002d5 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/U +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/cellDisplacement b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/cellDisplacement index a066de81559a7f9dbf79ea38d2d0fd324fd34e68..5357ecc830574f769fee5113f06afeb8edcaf3f0 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/cellDisplacement +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/cellDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/epsilon b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/epsilon index a90448d0ca8b24b1509cfb1fb18c99071c151122..1120fed938474ee9dade5fbf86af73eb87957144 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/epsilon +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/include/fixedInlet b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/include/fixedInlet index 125fbb7bc20e6e06b7203d3c70e0bc77b6db089c..0b9fd7ef7f399378c34ccc6a4f7c8f0d4e44c984 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/include/fixedInlet +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/include/fixedInlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions index f3f15cc69b69c89b19135426da81f46d089049b4..8dd65719bf090b623e2d23928ddfdd8b45082aa3 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/k b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/k index 2a06cf8f9ef19b4f6cad1e13ec0ca0376cc329de..037e4d42bb38e75723febaf6073a0a7f641c0925 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/k +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/nut b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/nut index b19a55ecb93eb02bedf0d8cfee65c6dd47c576ec..667fd0dfa171bf6f9c60f4487068078a23fc2a66 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/nut +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/p b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/p index cf85a548e42bbde868772fad9ad8b0b2a09bf323..30b1f734713a4d15024c0a263eac7c2cf8b25bed 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/p +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/pointDisplacement b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/pointDisplacement index 3867f092bc11fc4a5a3e13aaae0b5b59b5d5377b..01a677dc805a227e8a3ae3cb6bc453d05889476d 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/pointDisplacement +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/zoneID b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/zoneID index e9a37ab02757081951921dca4024e1f1a550ce5b..df7dbc2230d1c106cfcdb2add3850846d8573309 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/zoneID +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict index 92d80b3ad547034b45fd7409bd91aafa8c24349d..6001b253ce30964ca1998814d20ae2f8336ec89a 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/transportProperties b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/transportProperties index bb3c8dc3c511358fc255fbc1b213d57fcac7be86..3d2a837d9e68bbff81441d78ca22c5ad104108b0 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/transportProperties +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/turbulenceProperties b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/turbulenceProperties +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/blockMeshDict b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/blockMeshDict index 343d07e959ff9285c0fcdc81a15e9fafd4a31cd0..77fb65f7c16f6635671d2503513b35c5b8bab98c 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/blockMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/controlDict b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/controlDict index f43d7feb1ad453e1a8c53b125e6b03fa67e49e5d..9bdaf21481449ac8e6079fa9b904db5e453e82b6 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/controlDict +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/decomposeParDict b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/decomposeParDict index a63bb992de12519c8682a8b273f146e5fb1ba88b..9a4c1b1ae1414ce50bd386d6fcaecee46bcad07b 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/decomposeParDict +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/fvSchemes b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/fvSchemes index 16602732190319ce1cba74021c4fc12610aa6351..4a0fcb351bd045ff0e0ccd3ce3d0d78f15bd2969 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/fvSchemes +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/fvSolution b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/fvSolution index 1224b294260b1b29b38a8fa93b507e83d7f734b3..19787f4de0ac274580dd5d0b5f9c2aca18b6d710 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/fvSolution +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/setFieldsDict b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/setFieldsDict index 99bee0020b6652fbf0f2f06f638aca8ff38253e5..623e20cd2b73d7f8d4b33e26ca4066e7b746c9d0 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/setFieldsDict +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/topoSetDict b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/topoSetDict index 7d3eb46bbfb5366551edd2b267ef815d9f6815ab..f168e3b775d574cfe28af96d235e4cf30091dfb1 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/topoSetDict +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/controlDict b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/controlDict index 797c9b8151fc6f0b7c185fafee77efe10c4eecdb..bae8ab0749ed375f5ddd77dce075e111439a6ef3 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/controlDict +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/createPatchDict b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/createPatchDict index 33cd684446d6f5e0e7c2f866c5cb30d665d08c7f..9c81d2bc4becd1c61086a3c9c490efb5dd673b28 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/createPatchDict +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/extrudeMeshDict b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/extrudeMeshDict index 0fe6dc40eaca0bb22f2aa420760fd20ed1d7c83b..a7609180e9ab1b2b0f5c4729892c0690f79649b4 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/extrudeMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/fvSchemes b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/fvSchemes index 3fa9554999413a138d591843a92d769c5a5c76d7..9ea9e7330d26a8e648ccd2090229607b2a243984 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/fvSchemes +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/fvSolution b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/fvSolution index 1d53156d12a2a0bf6b92f35c6928b02a060115f6..523fbec531808b7bd55b6633f6141305badcbfc6 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/fvSolution +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderMesh/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/U b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/U index 8a1e4e5e8ca4a782e1b7160a97ebae15e3ac17cb..048451f2628eefa9c660b99ad01123791b8e8fc0 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/U +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/epsilon b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/epsilon index 2b0b94633dd0681f6b2fc47c1cfacc9fdbfb15e4..dfc8f1775149e63ca86d0c71a37229af6750dac7 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/epsilon +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/k b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/k index ef4a258c22d86f5554da5e81cc2be0a80fd81024..e051f3e924d20490f3a1d9eee3c6a63105291149 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/k +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/nuTilda b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/nuTilda index 7807369f4c4971eab9b4c449820b6c1e31f88e1c..08f0724650358dca899754bd1b7fc7d773d8dc70 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/nuTilda +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/nut b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/nut index 93b90a879f298676e60a33d41b1f17bd903efd0d..53cefe92bf6c82ce12fc613d5edd1e1dcaeba1fd 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/nut +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/p b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/p index c477b4fb95b6b0af65a8697fd630d6b7ed900c36..587af549ceba81e386882e1b1000cad47604e5f9 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/p +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/pointDisplacement b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/pointDisplacement index 8145c7dd63cad9e538bd4bf82f91a5b71dfa9daa..bb5ffbdfc00abd842e7f318b102a31c89a5da812 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/pointDisplacement +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/zoneID b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/zoneID index bc6adf2c188ebd64a9e69b47b2e5a8566f21b103..cc7f5ce443e5a3bcfb11ee063782edf77843cc77 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/zoneID +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/dynamicMeshDict b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/dynamicMeshDict index 2c17519c81edff740ca7cfd074346c51e32402ab..d476769d62f9d6c876cd2a11bd5237dcec06ea3a 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/dynamicMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/fvOptions b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/fvOptions index 1051eb1c12d1e21a4755003dd31f46fedeaacfe6..d14f1601d9cb49f0c8c9263e2e7827a9a321d44a 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/fvOptions +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/transportProperties b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/transportProperties +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/turbulenceProperties b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/turbulenceProperties +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/blockMeshDict b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/blockMeshDict index 8cadfaaf3b020960facd14de35b435c5628d5db8..de967c4461acf582caa66395ac5005ce13d76560 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/blockMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/controlDict b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/controlDict index 4389a71d9bce29de064bbfe9bfcdec58b5c14be0..0e5412493c3d3a7d9a99525502d2b5e13c745b82 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/controlDict +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/decomposeParDict b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/decomposeParDict index db924e3eff77c1b8f82fca691e8a85de39d8de48..ed72d381e423327d538b1db02501d07cb7a7b98f 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/decomposeParDict +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/fvSchemes b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/fvSchemes index 5cbe81bb2bab94a392402203be682d5bc23940df..453c180760df2921b24dfb0b98e41fc7b3978804 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/fvSchemes +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/fvSolution b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/fvSolution index f32b783bd2ec7f570ac198c22567f3a4aaad6911..cc3281b9af78faf1094ead8483ed7f0a808c7425 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/fvSolution +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/setFieldsDict b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/setFieldsDict index 99bee0020b6652fbf0f2f06f638aca8ff38253e5..623e20cd2b73d7f8d4b33e26ca4066e7b746c9d0 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/setFieldsDict +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/topoSetDict b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/topoSetDict index df619b76a8ede32e5756815550878636ee97d2a5..6cc90b0c2b363d78a3d95ef26eb7cf473f9bfa5e 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/topoSetDict +++ b/tutorials/incompressible/overPimpleDyMFoam/rotatingSquare/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/U b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/U index be5f8e42ee2c0e14e4dba57c633d38c6808e34d1..b058a7d9c896bcdd54b5b3257693467d55592123 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/U +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/epsilon b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/epsilon index b56fd80b61780b5001a862e8659cfc74dd7d4aff..b69e0bbe1c8412abe8a923125331e448acf57b5c 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/epsilon +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/k b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/k index 118d28645870d4a3911ada496253f4aaba661b55..7fe6886418cc428fcfd7ed59e410503bc6218367 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/k +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/nuTilda b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/nuTilda index 9a42ccd86c133e0ada4fa7d3670c01b8944f3ae1..9f99a7a7248c83da3d8d8a0a8542aaea0374afac 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/nuTilda +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/nut b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/nut index e6ffcffc3d44ce21f4a585446fff0eb447b651e4..c3b2437586f824b81660c8cede771509ee1c7ffb 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/nut +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/p b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/p index 5c21a8e54cfa5590c131dcae65461dc992eaddcf..15074d3696d93901baf13772db316a681b799c36 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/p +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/pointDisplacement b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/pointDisplacement index 8145c7dd63cad9e538bd4bf82f91a5b71dfa9daa..bb5ffbdfc00abd842e7f318b102a31c89a5da812 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/pointDisplacement +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/zoneID b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/zoneID index 9b9ef321eec12b961ecb68e22792096d203ac65c..44e1e4eb5cdf03af9f9704511a811148da99b0d4 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/zoneID +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/dynamicMeshDict b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/dynamicMeshDict index 1b9d48a6c052bf94da9c72f80be8ce8fad460582..8a75d3e50f35085a9d2e2351f654ca07bb5f43ed 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/dynamicMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/transportProperties b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/transportProperties index 332bba5bae17a000b05f3eb16678547b5e4ee104..c22d93167815a80d720e6accb0ac3a470a9a83d1 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/transportProperties +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/turbulenceProperties b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/turbulenceProperties +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/blockMeshDict b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/blockMeshDict index 6599c42ad7792190c6c65d6251977c5f6ee63e85..26cb027090ca8c76985acbb6d8d46f5928c5d92c 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/blockMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/controlDict b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/controlDict index ded571a4078c9918ae3b11e3e70313fdd7eff05a..7854ce0fc996a7bde36ddb4027e407af0a86568f 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/controlDict +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/decomposeParDict b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/decomposeParDict index db924e3eff77c1b8f82fca691e8a85de39d8de48..ed72d381e423327d538b1db02501d07cb7a7b98f 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/decomposeParDict +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/fvSchemes b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/fvSchemes index f2bb67cf641845a92f3dafa6c571715384fc8e49..7a00cb2cbce65d03a3e3bf89b1efd87bfba09a37 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/fvSchemes +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/fvSolution b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/fvSolution index 69cfc7717c96f857104b3dfaaf5e020ea0cb0aae..4cc3f468013c5de2a3cc1ae96f7c93a4d4f051ea 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/fvSolution +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/setFieldsDict b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/setFieldsDict index 99bee0020b6652fbf0f2f06f638aca8ff38253e5..623e20cd2b73d7f8d4b33e26ca4066e7b746c9d0 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/setFieldsDict +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/topoSetDict b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/topoSetDict index d3931fab722e059d03a0eb58c18186bc70786881..1fb2f7cb5de29c6ba39d9a809abc0771177f430a 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/topoSetDict +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/U b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/U index 4a58051b99e4f593a77eb24bdebdef496f290c2d..18850f275b33ea598c6d7cc37e2827a461ca668f 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/U +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/epsilon b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/epsilon index 3847fd33ca442966f695f4a979f8e02275e060fc..d117aebe9e7c16b7f0ef4ab7abba3d8df95797f3 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/epsilon +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/k b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/k index 1d5d76257c1c93658598d4265fa1b3077f25c448..d57b1284aa027cfdcdc784903a82b8c6ef08b0aa 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/k +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/nut b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/nut index 45d3461b4206301449e3c70e8ddf8f36f53210a6..5af48b85408e390b139f3078a7a4b1070c4aa450 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/nut +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/p b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/p index c9233d27825e877f59e9ebebd54cfe9893a79e30..b9a7d0d0c8d6d53c784f13ef58ffe8da32646f8b 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/p +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/pointDisplacement b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/pointDisplacement index ad920620f1496576f04853fcdbe3dfe05ad3e474..4dfdd3ca9ca126977055a5b53336afbe23420676 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/pointDisplacement +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/zoneID b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/zoneID index e9a37ab02757081951921dca4024e1f1a550ce5b..df7dbc2230d1c106cfcdb2add3850846d8573309 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/zoneID +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/dynamicMeshDict b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/dynamicMeshDict index d828f61a0d0f1032bb2c677fa037fece98b5d872..ba3a20b878b3218c0142d2c2c9b0008d9792857c 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/dynamicMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/transportProperties b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/transportProperties index 64f3d0f289b4998e5f1bc5d1adfe2141e7c5b136..842d8c3e055d7e58d5e580edd05090b0d78b8cd4 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/transportProperties +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/turbulenceProperties b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/turbulenceProperties index e1ca4a2c6a89a28ef76c661e769d0e84a661d595..af2cafe1fbb039d492b34039055702e0568768d8 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/turbulenceProperties +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict index c8eaeab21aceca27864ceedc358ac516e6667280..6317e140a83cf22b29ede55d90461291fccb842d 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/controlDict b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/controlDict index 798e49d537cceff8d04a2af94d7a8dfb702c12ba..7055ecfe8b55abcc39612733e0f5c85d5cc5d820 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/controlDict +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/decomposeParDict b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/decomposeParDict index db924e3eff77c1b8f82fca691e8a85de39d8de48..ed72d381e423327d538b1db02501d07cb7a7b98f 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/decomposeParDict +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/fvSchemes b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/fvSchemes index 9f3d27bf061e7dac80fdd97bb347d6ee6db6fc22..86186bb875b90086f209c2780ec874ef0054f44c 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/fvSchemes +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/fvSolution b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/fvSolution index 883ba562966168939987430da05174973606f71b..75dece1ad87abab5ab08a160725f4b200022d284 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/fvSolution +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/setFieldsDict b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/setFieldsDict index 52762e81b08b2a6d26d2fa3b64232785c63f39ca..a19bc18d86a6fe11030b8103ab04007e537a7d33 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/setFieldsDict +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/topoSetDict b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/topoSetDict index c6a95595af3aaac88a8af8f64501380f3a8dfbea..26c93e5478b44cc365805691e37886209d46c93d 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/topoSetDict +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/constant/transportProperties b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/constant/transportProperties index df722c1634a36e66d6caac3f7d617781ac8a7d46..f89482896a789d28a5d26f636dadbca324f36272 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/constant/transportProperties +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/constant/turbulenceProperties b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/constant/turbulenceProperties index c1d5ac10f3ff6401c6ced11b5eb7d12a818ee895..eb61d1626b61da0457322e05072c0235aed11840 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/constant/turbulenceProperties +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/controlDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/controlDict index 8b7d0e99718649d58abbc65c5434ddaa42123ea9..e3db4b84ff89e8833e70cbb6ba2abf9bf6c5cc80 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/controlDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/createPatchDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/createPatchDict index 9489edba25adeabd487b8704847f61dfc094fed5..5721a704bc19414ff1911803690adbaed6175a23 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/createPatchDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/extrudeMeshDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/extrudeMeshDict index 656ca1ef04fe932ed32cf7a5d10c4102308d1d73..a090f93b4d8eabab8d54e5e44c0616b03d7ffe59 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/extrudeMeshDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/fvSchemes b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/fvSchemes index 49e5fdcab28a13fa0a668418b4e7c63542d8495c..1c7c8c95f8fbb4d8426592c0fe099415b70c492b 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/fvSchemes +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/fvSolution b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/fvSolution index 5728437b241ed460faf72d3c58f2d157ad322203..c9340ddbba51d1ab610fbd07839893ec455d7704 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/fvSolution +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_overset/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/blockMeshDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/blockMeshDict index 042c32b95f1d08879dc2c2b44d8dcaa6b47954fc..74627df6772800fc5687a711d1d59d6429f6f825 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/blockMeshDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/controlDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/controlDict index ed9631ddc745f8aff1feb7c576ab93405d2f7738..0f3f632136984cefa5ca359c83c62960796d0eaf 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/controlDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/decomposeParDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/decomposeParDict index f8149fa5687105e7693ddc1c258c7d4cef06d724..a3c04b433e21e88b9afca40a46ea7225d9de0c63 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/decomposeParDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/fvSchemes b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/fvSchemes index 3fa9554999413a138d591843a92d769c5a5c76d7..9ea9e7330d26a8e648ccd2090229607b2a243984 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/fvSchemes +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/fvSolution b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/fvSolution index 1d53156d12a2a0bf6b92f35c6928b02a060115f6..523fbec531808b7bd55b6633f6141305badcbfc6 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/fvSolution +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/snappyHexMeshDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/snappyHexMeshDict index d3f0cd205a94e6121e123dec9970b849baa71860..38295cbe9deff923f8e4a004977e173537208d11 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/snappyHexMeshDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/U b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/U index 1d1a0c1f8eaac94feec1fd5e1a5539ac5edfdf1d..75bfcfb45b315a6731ec438f9400d701e341982e 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/U +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/epsilon b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/epsilon index f1b0d845b3e5e7992c2985beeea87c65c6d8e5f7..b00492fde01207a464429b0683bfbb87b3f9582d 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/epsilon +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/include/frontBackTopBottomfreePatches b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/include/frontBackTopBottomfreePatches index 0b2551e09be052c442a8e2894ef1132a4b616909..cab8f4019f8f36927b99b5b16d21cde72be75a30 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/include/frontBackTopBottomfreePatches +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/include/frontBackTopBottomfreePatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/include/initialConditions b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/include/initialConditions index 7ef8b427224f3dd04d2dd5a58d76bce137e79264..05d35e0c6760459fd7ccbbbb54f987b569f555ca 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/include/initialConditions +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/k b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/k index d4798f701977d57b4ae588bfe9629c4a6db65458..7d51ded1aa2cd91881f52abcc9f320195ef95a1b 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/k +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/nuTilda b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/nuTilda index 01ddda679f6065eba6458417ab921593165ee5ab..50a4666f404b30d7fdebc61fb5bb9f1dcee538cb 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/nuTilda +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/nut b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/nut index 2b55b1c2f1ebe2e8268f74554c7b52ae21e5dc33..05168af4426b1082b5bd9479449a6b5aa411d915 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/nut +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/omega b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/omega index 96830836664a861fb7732fe5f2782d8a973be079..fbf6d36e07441d8217c9b4a452a1253fdf819321 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/omega +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/p b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/p index 45494e9fd1aad3ce6994ce267e8a7051b1b5e25b..24efdbde2169b3472b83c7f21d638f21ca2c1f35 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/p +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/pointDisplacement b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/pointDisplacement index 5443644eb088a68e253f6ef1367a9ac4cba19ceb..b075775ff6700fcb2d13b57469912333e34aeb55 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/pointDisplacement +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/zoneID b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/zoneID index ddd5588393d668e9bf3ba07a808b385180ba89bb..df167f88bd094612130fd31a807580193f7b297c 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/zoneID +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/0.orig/zoneID @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/RASProperties b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/RASProperties index 1f35270793644da8168b6df95eefa571ff8c6c55..8aafeecef741a19af57fb174d89da631da900bd1 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/RASProperties +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/RASProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/dynamicMeshDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/dynamicMeshDict index 92d80b3ad547034b45fd7409bd91aafa8c24349d..6001b253ce30964ca1998814d20ae2f8336ec89a 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/dynamicMeshDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/transportProperties b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/transportProperties index 3552c4ea269b2583303f3001b95d601acb471bb6..c66e8d8249345ca785babef4c7e68eedfe64afa5 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/transportProperties +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/turbulenceProperties b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/turbulenceProperties index 81ca0c8886e74a65a5a8079d77913748ec118290..d4aa285efcea23706220cca733bad76ef5baaa4f 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/turbulenceProperties +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/blockMeshDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/blockMeshDict index 98bfe59c37f25a527c2bf678b1a7bbab3e73c5c4..8b6099d3ab0bb95290ea186161fa6b6e26a08a21 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/blockMeshDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/controlDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/controlDict index ec9dd69d00aee5cbf7c3c1d874adf6b7f4cdf1db..6d1da762161f7f22e1bfb6e5d9252f92e7ce7181 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/controlDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/createPatchDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/createPatchDict index 8c5b4080157152357e84451c38c6a644eefbd431..ec2c640ec3dfe5b9a2b3075921e48f4712166544 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/createPatchDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/decomposeParDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/decomposeParDict index 0e2d9cd99d6091d07706d15caee8af43920d6fb1..c444b0617559eb9e29b5de9f320c49952e47f3b3 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/decomposeParDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/extrudeMeshDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/extrudeMeshDict index 2cff2f73bbc88fa273b2c9ac08627b2a84702e75..278cc844a5654070b2eb046c20e5c99198bb078e 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/extrudeMeshDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/fvSchemes b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/fvSchemes index 96e6e7b22124cfbcc819ebb432cdebab6fd44896..c4e29b1fdc6adbbb2f16df120a54ed7ccad1a479 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/fvSchemes +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/fvSolution b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/fvSolution index c789d530ad843d788ec1e2d0823bb7c0f5c6d4a7..8b17361e5236112f70267ae2989a227f1503631f 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/fvSolution +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/postProcessingDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/postProcessingDict index 0022cb32e01317837f245dc032efc4524c99070f..68f05e50a512fed45e2ff1d810a3b733fa0301e3 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/postProcessingDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/postProcessingDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/setFieldsDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/setFieldsDict index 2f92137b3f093c78adfa4cd8edfacf6c60603e6c..8a279cb61d2761f6a1ac71047a82fcc9e65d3de0 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/setFieldsDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/topoSetDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/topoSetDict index 0dabcc2fab06bfa99b9ed4551da784be38966e92..2576d74a5f5f30de09962be1b61dbbcd50030346 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/topoSetDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/blockMeshDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/blockMeshDict index b747c89c6f029c4c1c81f4721da188f1b41ab4ff..97e02de2ee5e019e7d035e4700ee290a2ac3b9e1 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/blockMeshDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/controlDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/controlDict index ed9631ddc745f8aff1feb7c576ab93405d2f7738..0f3f632136984cefa5ca359c83c62960796d0eaf 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/controlDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/fvSchemes b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/fvSchemes index 8f354d602cf40e372d06c4d94702a7594f4d8724..1138b4db09b9449b6d8509dbeb0e59894d2490bc 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/fvSchemes +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/fvSolution b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/fvSolution index 5ac1cebad06a8787e4573aed8c77bd535667f10d..61e28b904ef4b7c12cbc37ba5a785609c63a126c 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/fvSolution +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/snappyHexMeshDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/snappyHexMeshDict index abfb2bdc6278b89dbc1df705d7476eed4c21ebff..3f2bf83662072e761af99d0a4c8b94f51c8ac46e 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/snappyHexMeshDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/U b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/U new file mode 100644 index 0000000000000000000000000000000000000000..aa47f7c536cf7371de0544fff8c39b9744d645c6 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/U @@ -0,0 +1,54 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// calculate inflow velocity vector +AoA 13.87; +Ux #eval{ cos(degToRad($AoA)) }; +Uz #eval{ sin(degToRad($AoA)) }; + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform ($Ux 0 $Uz); + +boundaryField +{ + inlet + { + type inletOutlet; + inletValue uniform ($Ux 0 $Uz); + value uniform ($Ux 0 $Uz); + } + + outlet + { + type inletOutlet; + inletValue uniform ($Ux 0 $Uz); + value uniform ($Ux 0 $Uz); + } + + aerofoil + { + type fixedValue; + value uniform (0 0 0); + } + + "yPeriodic_.*" + { + type cyclic; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/k b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/k new file mode 100644 index 0000000000000000000000000000000000000000..eebcac47cb65fa32be5fc94ee5e97238b1c6eeae --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/k @@ -0,0 +1,50 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + location "0"; + object k; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform #eval{ 1.5*sqr(0.00086) }; + +boundaryField +{ + inlet + { + type inletOutlet; + inletValue $internalField; + value $internalField; + } + + outlet + { + type inletOutlet; + inletValue $internalField; + value $internalField; + } + + aerofoil + { + type kqRWallFunction; + value $internalField; + } + + "yPeriodic_.*" + { + type cyclic; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/nuTilda b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/nuTilda new file mode 100644 index 0000000000000000000000000000000000000000..852822d5ea2bdbfa43a1f0c4b3a42a26d20f6204 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/nuTilda @@ -0,0 +1,49 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object nuTilda; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -1 0 0 0 0]; + +internalField uniform #eval{ 3.0/1520000.0 }; + +boundaryField +{ + inlet + { + type inletOutlet; + inletValue $internalField; + value $internalField; + } + + outlet + { + type inletOutlet; + inletValue $internalField; + value $internalField; + } + + aerofoil + { + type fixedValue; + value uniform 0; + } + + "yPeriodic_.*" + { + type cyclic; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/nut b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/nut new file mode 100644 index 0000000000000000000000000000000000000000..4ca49ad2d569c3e72f3ac6421785da4518b0abf7 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/nut @@ -0,0 +1,49 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + location "0"; + object nut; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -1 0 0 0 0]; + +internalField uniform #eval{ 3.0/1520000.0 }; + +boundaryField +{ + inlet + { + type calculated; + value $internalField; + } + + outlet + { + type calculated; + value $internalField; + } + + aerofoil + { + type nutUSpaldingWallFunction; + value $internalField; + tolerance 1e-9; + } + + "yPeriodic_.*" + { + type cyclic; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/omega b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/omega new file mode 100644 index 0000000000000000000000000000000000000000..c16c99402dd03a1755ce138f3185e505b42de6ba --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/omega @@ -0,0 +1,50 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + location "0"; + object omega; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 0 -1 0 0 0 0]; + +internalField uniform #eval{ 1.5*sqr(0.00086)*1520000.0/0.009 }; + +boundaryField +{ + inlet + { + type inletOutlet; + inletValue $internalField; + value $internalField; + } + + outlet + { + type inletOutlet; + inletValue $internalField; + value $internalField; + } + + aerofoil + { + type omegaWallFunction; + value $internalField; + } + + "yPeriodic_.*" + { + type cyclic; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/p b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/p new file mode 100644 index 0000000000000000000000000000000000000000..ae32a2082b7f089d87a3e4eb24eb903a13ef9547 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/p @@ -0,0 +1,48 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object p; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + inlet + { + type outletInlet; + outletValue uniform 0; + value uniform 0; + } + + outlet + { + type outletInlet; + outletValue uniform 0; + value uniform 0; + } + + aerofoil + { + type zeroGradient; + } + + "yPeriodic_.*" + { + type cyclic; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allclean b/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allclean new file mode 100755 index 0000000000000000000000000000000000000000..78c9484352b2f0f47642ecf74ba73d667cd0f535 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allclean @@ -0,0 +1,11 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions +#------------------------------------------------------------------------------ + +cleanCase0 + +rm -f constant/turbulenceProperties +rm -f fig_* + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun b/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun new file mode 100755 index 0000000000000000000000000000000000000000..fab6e5abc77e242bf546ec51866e6fe32bfc884f --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun @@ -0,0 +1,15 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + +./Allrun.pre + +runApplication $(getApplication) + +if notTest "$@" +then + ./plot +fi + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun-parallel b/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun-parallel new file mode 100755 index 0000000000000000000000000000000000000000..6080d2bc39034565331a4d451ce382159a98f585 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun-parallel @@ -0,0 +1,19 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + +./Allrun.pre + +runApplication decomposePar + +runParallel $(getApplication) + +runApplication reconstructPar + +if notTest "$@" +then + ./plot +fi + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun.pre b/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun.pre new file mode 100755 index 0000000000000000000000000000000000000000..3fd98ad76dac13e0d127c7a45c860d135bc09066 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun.pre @@ -0,0 +1,40 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + +# SA-DDES, std. shielding +#LESModel="SpalartAllmarasDDES" +#LESDelta="maxDeltaxyz" +#LESCoeffs="" + +# SA-sigma-DDES, std. shielding +#LESModel="SpalartAllmarasDDES" +#LESDelta="DeltaOmegaTilde" +#LESCoeffs="useSigma true;" + +# SA-DDES, ZDES mode 2 shielding +LESModel="SpalartAllmarasDDES" +LESDelta="maxDeltaxyz" +LESCoeffs="shielding ZDES2020;" + +# SA-sigma-DDES, ZDES mode 2 shielding +#LESModel="SpalartAllmarasDDES" +#LESDelta="DeltaOmegaTilde" +#LESCoeffs="useSigma true; shielding ZDES2020;" + + +sed -e "s|LES_MODEL|$LESModel|g" -e "s|LES_DELTA|$LESDelta|g" \ + -e "s|LES_COEFFS|$LESCoeffs|g" \ + constant/turbulenceProperties.template \ + > constant/turbulenceProperties + +restore0Dir + +touch case.foam + +runApplication blockMesh + +runApplication applyBoundaryLayer -ybl 0.02 + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/README.md b/tutorials/incompressible/pimpleFoam/LES/NACA4412/README.md new file mode 100644 index 0000000000000000000000000000000000000000..3090615a40f60a06d288677a4207645dbb8aa3fa --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/README.md @@ -0,0 +1,20 @@ +<!------------------------------------------------------------------------- --> + +## 2D NACA4412 with trailing edge configuration + +- Essentially incompressible case is computed for free field conditions. +- Experimental data publicly available from (16/07/2024): +https://turbmodels.larc.nasa.gov/naca4412sep_val.html +- References: + + Coles, D. and Wadcock, A. J., + "Flying-Hot-Wire Study of Flow Past an NACA 4412 Airfoil at Maximum Lift. + AIAA Journal, Vol. 17, No. 4, April 1979, pp. 321-329, + DOI:10.2514/3.61127 + + Wadcock, A. J., + Structure of the Turbulent Separated Flow Around a Stalled Airfoil. + NASA-CR-152263, February 1979, https://ntrs.nasa.gov/citations/19790012839. + + +<!------------------------------------------------------------------------- --> diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/constant/geometry/NACA4412.stl.gz b/tutorials/incompressible/pimpleFoam/LES/NACA4412/constant/geometry/NACA4412.stl.gz new file mode 100644 index 0000000000000000000000000000000000000000..cddc19e5f626db5f15cebcc7ac282421bfc57b77 Binary files /dev/null and b/tutorials/incompressible/pimpleFoam/LES/NACA4412/constant/geometry/NACA4412.stl.gz differ diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/constant/transportProperties b/tutorials/incompressible/pimpleFoam/LES/NACA4412/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..73b51cd69006a764f1b63a4efbb7625ce6051eb7 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/constant/transportProperties @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +transportModel Newtonian; + +nu #eval{ 1.0/1520000.0 }; + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/constant/turbulenceProperties.template b/tutorials/incompressible/pimpleFoam/LES/NACA4412/constant/turbulenceProperties.template new file mode 100644 index 0000000000000000000000000000000000000000..67991f09981468a93d0948474d5501ea1e08a2e0 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/constant/turbulenceProperties.template @@ -0,0 +1,34 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType LES; + +LES +{ + LESModel LES_MODEL; + LES_MODELCoeffs + { + LES_COEFFS + } + + delta LES_DELTA; + + turbulence on; + printCoeffs on; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/plot b/tutorials/incompressible/pimpleFoam/LES/NACA4412/plot new file mode 100755 index 0000000000000000000000000000000000000000..e176e787a3f61969dc4dae479f8166488dc461ef --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/plot @@ -0,0 +1,147 @@ +#!/bin/bash +cd "${0%/*}" || exit # Run from this directory + +timeOpts="-latestTime" + +[ -d "processor0" ] && timeOpts="$timeOpts -processor" + +time="$(foamListTimes $timeOpts)" + +echo "Creating plots for time $time" + +resultsDir="postProcessing/sample.lines/$time" +resultsDirCp="postProcessing/sample.aerofoil/$time" + +# Mapping between OpenFOAM and experimental datasets +declare -A of_vs_exp +of_vs_exp[0.68]="001" +of_vs_exp[0.73]="002" +of_vs_exp[0.79]="003" +of_vs_exp[0.84]="004" +of_vs_exp[0.90]="005" +of_vs_exp[0.95]="006" + + +plotLines() +{ + pos=$1 + exp=$2 + +cat<<EOF + set terminal pngcairo enhanced color font "arial,16" size 600,600 + set ylabel "(y-y_0)/c" + set yrange [0:0.2] + set grid + + U0=1 + c=1 + normCFD = 0.93 + + m = 0.01*4 + p = 0.1*4 + t = 0.01*12 + yc = (m/(1.0-p)**2)*((1.0-2.0*p) + 2.0*p*${pos} - ${pos}**2) + dzcdx = (2.0*m/((1.0-p)**2))*(p - ${pos}) + theta = atan(dzcdx); + ys = 5.0*t*(0.2969*sqrt(${pos}) - (0.1260*${pos}) - (0.3516*(${pos}**2)) + (0.2843*(${pos}**3)) - (0.1036*(${pos}**4))) + y0 = yc + ys*cos(theta) + + colExp="black" + colOF="royalblue" + colCFL3D="light-red" + + set key left top + set xlabel "U_x/U_0" + set xrange [-0.2:1.4] + set output "fig_Ux_at_xbyc${pos}.png" + plot \ + "validation/exptData/exp_vel_xbyc${pos}.dat" \ + u 3:(\$2-y0) every 2 w points pt 7 ps 1.5 lc rgb colExp lw 2 t "Experiment", \ + "$resultsDir/xbyc${pos}_columnAverage(UMean)_columnAverage(UPrime2Mean).xy" \ + u (\$2/U0/normCFD):((\$1-y0)/c) w lines lc rgb colOF lw 2 t "OpenFOAM", \ + "validation/cfdData/cfl3d_vel_sa_xbyc${pos}.dat" \ + u 3:(\$2-y0) w lines lc rgb colCFL3D lw 2 t "CFL3D" + + set key left top + set xlabel "U_y/U_0" + set xrange [-0.2:0.1] + set output "fig_Uy_at_xbyc${pos}.png" + plot \ + "validation/exptData/exp_vel_xbyc${pos}.dat" \ + u 4:(\$2-y0) every 2 w points pt 7 ps 1.5 lc rgb colExp lw 2 t "Experiment", \ + "$resultsDir/xbyc${pos}_columnAverage(UMean)_columnAverage(UPrime2Mean).xy" \ + u (\$4/U0/normCFD):((\$1-y0)/c) w lines lc rgb colOF lw 2 t "OpenFOAM", \ + "validation/cfdData/cfl3d_vel_sa_xbyc${pos}.dat" \ + u 4:(\$2-y0) w lines lc rgb colCFL3D lw 2 t "CFL3D" +EOF +} + + +plotCp() +{ +cat<<EOF + set terminal pngcairo enhanced color font "arial,16" size 600,600 + set ylabel "C_p" + set yrange [2:-8] + set grid + + U0=1 + c=1 + p0=0 + + colExp="black" + colOF="royalblue" + colCFL3D="light-red" + + set key right top + set xlabel "x/c" + set xrange [0:1] + set output "fig_Cp_at_aerofoil.png" + plot \ + "validation/exptData/exp_cp.dat" \ + u 1:3 w points pt 7 ps 1.5 lc rgb colExp lw 2 t "Experiment", \ + "$resultsDirCp/pMean_aerofoil.raw" \ + u (\$1/c):(2.0*(\$4-p0)/U0/U0) w points pt 64 ps 1 lc rgb colOF lw 2 t "OpenFOAM", \ + "validation/cfdData/cfl3d_cp_sa.dat" \ + u 1:2 w lines lc rgb colCFL3D lw 2 t "CFL3D" +EOF +} + + +plotCf() +{ +cat<<EOF + set terminal pngcairo enhanced color font "arial,16" size 600,600 + set ylabel "C_f" + set yrange [-0.01:0.06] + set grid + + U0=1 + c=1 + + colOF="royalblue" + colCFL3D="light-red" + + set key right top + set xlabel "x/c" + set xrange [0:1] + set output "fig_Cf_at_aerofoil.png" + plot \ + "$resultsDirCp/wallShearStressMean_aerofoil.raw" \ + u (\$1/c):(\$3 > 0 ? (\$1 > 0.4 ? 2.0*sgn(\$6)*((\$4**2+\$5**2+\$6**2)**0.5)/U0/U0 : 2.0*((\$4**2+\$5**2+\$6**2)**0.5)/U0/U0) : 1/0) w points pt 64 ps 1 lc rgb colOF lw 2 t "OpenFOAM", \ + "validation/cfdData/cfl3d_cfupper_sa.dat" \ + u 1:2 w lines lc rgb colCFL3D lw 2 t "CFL3D" +EOF +} + + +for i in "${!of_vs_exp[@]}" +do + exp=${of_vs_exp[$i]} + gnuplot<<<$(plotLines $i $exp) +done + +gnuplot<<<$(plotCp) +gnuplot<<<$(plotCf) + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..75ce8a62f818bedc2699556cd50a415b9c5d96d3 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/blockMeshDict @@ -0,0 +1,320 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// scaling to desired chord length, 1.0 means Lchord = 1m +scale 1.0; + +// max coordinate in the streamwise direction (relative to Lchord) +xMax 10; + +// radial extent of domain (relative to Lchord) +rMax 10; + +// anker points of aerofoil at leading and trailing edges +xLead 0; +zLead 0; +xTrail 1; +zTrail 0; + +// anker points for middle block +xUpper 0.3; +zUpper 0.06; +xLower 0.3; +zLower -0.06; + +// spacings +dxLE 0.0005; // at leading edge +dxMidUp 0.0025; // at middle of aerofoil (upper surface) +dxMidLow 0.05; // at middle of aerofoil (lower surface) +dxTE 0.002; // at trailing edge +dzaerofoil 0.00002; // near-wall spacing at airfoil +dy $dxTE; // spanwise spacing + +// compute number of cells and total cell spacing in the radial direction (from aerofoil to far-field) +zCells 64; +zGrading 82205.8; + +// compute number of cells and total cell spacing in the streamwise direction +// from leading edge to middle of aerofoil (upper surface) +xUUpCells 241; +leadUpGrading 0.2; + +// compute number of cells and total cell spacing in the streamwise direction +// from leading edge to middle of aerofoil (lower surface) +xULowCells 26; +leadLowGrading 0.01; + +// compute number of cells and total cell spacing in the streamwise direction +// from trailing edge to middle of aerofoil (upper surface) +xMUpCells 312; +xMUpGrading 1.25; + +// compute number of cells and total cell spacing in the streamwise direction +// from trailing edge to middle of aerofoil (lower surface) +xMLowCells 46; +xMLowGrading 25; + +// compute number of cells and total cell spacing in the streamwise direction (from trailing edge to outlet, centreline) +xDCells 38; +xDGrading 831.626; + +// compute total cell spacing in the streamwise direction +// from far-field inlet to middle of airfoil (lower surface) +xUffLowGrading 0.051377; + +// compute total cell spacing in the streamwise direction +// from middle of airfoil to trailing edge (lower surface) +xMffLowGrading 7.54248; + +// compute total cell spacing in the streamwise direction +// from trailing edge to far-field outlet (upper surface) +xDffUpGrading 32.5263; + +// compute total cell spacing in the streamwise direction +// from trailing edge to far-field outlet (lower surface) +xDffLowGrading 8.68445; + +// min/max coordinates in the spanwise direction (relative to Lchord) +yMin -0.002; +yMax 0.002; + +// number of cells in the spanwise direction (y) +yCells 2; + + +geometry +{ + aerofoil + { + type triSurfaceMesh; + file "NACA4412.stl"; + } + cylinder + { + type cylinder; + point1 ($xTrail -1e3 0); + point2 ($xTrail 1e3 0); + radius $rMax; + } +} + +vertices +( + // all vertices on yMin-plane + ( + #eval{$xTrail - sin(degToRad((1.0-$xLower)*90))*$rMax} + $yMin + #eval{$zTrail - cos(degToRad((1.0-$xLower)*90))*$rMax} + ) // v 0 + ($xTrail $yMin #eval{ $zLead - $rMax }) // v 1 + (#eval{ $xTrail + $xMax } $yMin #eval{ $zLead - $rMax }) // v 2 + project (#eval{ $xLead-$rMax } $yMin $zLead ) (cylinder) // v 3 + project ($xLead $yMin $zLead ) (aerofoil) // v 4 + project ($xTrail $yMin $zTrail ) (aerofoil) // v 5 + (#eval{ $xTrail + $xMax } $yMin $zTrail ) // v 6 + project ($xLower $yMin $zLower ) (aerofoil) // v 7 + project ($xUpper $yMin $zUpper ) (aerofoil) // v 8 + ( + #eval{$xTrail - sin(degToRad($xMUpCells*90/($xUUpCells+$xMUpCells)))*$rMax} + $yMin + #eval{$zTrail + cos(degToRad($xMUpCells*90/($xUUpCells+$xMUpCells)))*$rMax} + ) // v 9 + project ($xTrail $yMin #eval{ $zLead + $rMax }) (aerofoil) // v 10 + (#eval{ $xTrail + $xMax } $yMin #eval{ $zLead + $rMax }) // v 11 + + // all vertices on yMax-plane + ( + #eval{$xTrail - sin(degToRad((1.0-$xLower)*90))*$rMax} + $yMax + #eval{$zTrail - cos(degToRad((1.0-$xLower)*90))*$rMax} + ) // v 12 + ($xTrail $yMax #eval{ $zLead - $rMax }) // v 13 + (#eval{ $xTrail + $xMax } $yMax #eval{ $zLead - $rMax }) // v 14 + project (#eval{ $xLead-$rMax } $yMax $zLead ) (cylinder) // v 15 + project ($xLead $yMax $zLead ) (aerofoil) // v 16 + project ($xTrail $yMax $zTrail ) (aerofoil) // v 17 + (#eval{ $xTrail + $xMax } $yMax $zTrail ) // v 18 + project ($xLower $yMax $zLower ) (aerofoil) // v 19 + project ($xUpper $yMax $zUpper ) (aerofoil) // v 20 + ( + #eval{$xTrail - sin(degToRad($xMUpCells*90/($xUUpCells+$xMUpCells)))*$rMax} + $yMax + #eval{$zTrail + cos(degToRad($xMUpCells*90/($xUUpCells+$xMUpCells)))*$rMax} + ) // v 21 + project ($xTrail $yMax #eval{ $zLead + $rMax }) (aerofoil) // v 22 + (#eval{ $xTrail + $xMax } $yMax #eval{ $zLead + $rMax }) // v 23 +); + +blocks +( + // block 0 + hex ( 7 4 16 19 0 3 15 12) + ($xULowCells $yCells $zCells) + edgeGrading + ( + $leadLowGrading $leadLowGrading $xUffLowGrading $xUffLowGrading + 1 1 1 1 + $zGrading $zGrading $zGrading $zGrading + ) + + // block 1 + hex ( 5 7 19 17 1 0 12 13) + ($xMLowCells $yCells $zCells) + edgeGrading + ( + $xMLowGrading $xMLowGrading $xMffLowGrading $xMffLowGrading + 1 1 1 1 + $zGrading $zGrading $zGrading $zGrading + ) + + // block 2 + hex ( 17 18 6 5 13 14 2 1) + ($xDCells $yCells $zCells) + edgeGrading + ( + $xDGrading $xDGrading $xDffLowGrading $xDffLowGrading + 1 1 1 1 + $zGrading $zGrading $zGrading $zGrading + ) + + // block 3 + hex ( 20 16 4 8 21 15 3 9) + ($xUUpCells $yCells $zCells) + edgeGrading + ( + $leadUpGrading $leadUpGrading 1 1 + 1 1 1 1 + $zGrading $zGrading $zGrading $zGrading + ) + + // block 4 + hex ( 17 20 8 5 22 21 9 10) + ($xMUpCells $yCells $zCells) + edgeGrading + ( + $xMUpGrading $xMUpGrading 1 1 + 1 1 1 1 + $zGrading $zGrading $zGrading $zGrading + ) + + // block 5 + hex ( 5 6 18 17 10 11 23 22) + ($xDCells $yCells $zCells) + edgeGrading + ( + $xDGrading $xDGrading $xDffUpGrading $xDffUpGrading + 1 1 1 1 + $zGrading $zGrading $zGrading $zGrading + ) +); + +edges +( + project 4 7 (aerofoil) + project 7 5 (aerofoil) + project 4 8 (aerofoil) + project 8 5 (aerofoil) + + project 16 19 (aerofoil) + project 19 17 (aerofoil) + project 16 20 (aerofoil) + project 20 17 (aerofoil) + + project 3 0 (cylinder) + project 3 9 (cylinder) + project 15 12 (cylinder) + project 15 21 (cylinder) + + project 0 1 (cylinder) + project 9 10 (cylinder) + project 12 13 (cylinder) + project 21 22 (cylinder) +); + +boundary +( + aerofoil + { + type wall; + faces + ( + (4 7 19 16) + (7 5 17 19) + (5 8 20 17) + (8 4 16 20) + ); + } + + inlet + { + type patch; + faces + ( + (3 0 12 15) + (0 1 13 12) + (1 2 14 13) + (11 10 22 23) + (10 9 21 22) + (9 3 15 21) + ); + } + + outlet + { + type patch; + faces + ( + (2 6 18 14) + (6 11 23 18) + ); + } + + yPeriodic_half0 + { + type cyclic; + neighbourPatch yPeriodic_half1; + faces + ( + (3 4 7 0) + (7 5 1 0) + (5 6 2 1) + (3 9 8 4) + (9 10 5 8) + (10 11 6 5) + ); + } + + yPeriodic_half1 + { + type cyclic; + neighbourPatch yPeriodic_half0; + faces + ( + (15 16 19 12) + (19 17 13 12) + (17 18 14 13) + (15 16 20 21) + (20 17 22 21) + (17 18 23 22) + ); + } +); + + +// Cleanup +#remove ( domain aerofoil ) + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/columnAverage b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/columnAverage new file mode 100644 index 0000000000000000000000000000000000000000..6f5425bca22ad5838f2188be6509a27eecff1387 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/columnAverage @@ -0,0 +1,32 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +columnAverage +{ + // Mandatory entries + type columnAverage; + libs (fieldFunctionObjects); + + // Note: include processorCyclics! + patches ( yPeriodic_half0 "proc.*throughyPeriodic_half0" ); + fields + ( + UMean + UPrime2Mean + ); + + // Inherited entries + region region0; + enabled true; + log true; + timeStart $tStartAvg; + executeControl writeTime; + writeControl none; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/controlDict b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..4bc8ea1bc08886359afd79f584e595aeba74d1e1 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/controlDict @@ -0,0 +1,61 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application pimpleFoam; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 30; + +deltaT 0.0025; + +writeControl timeStep; + +writeInterval 400; + +purgeWrite 1; + +writeFormat binary; + +writePrecision 6; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable true; + +// user-defined variables +tStartAvg 20; + +functions +{ + #include "volFields" + #include "wallFields" + #include "fieldAverage" + #include "forceCoeffs" + #include "columnAverage" + #include "sampleDict" +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/decomposeParDict new file mode 100644 index 0000000000000000000000000000000000000000..1e24243dde1609653c17d3d71c31bdc5d339a786 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/decomposeParDict @@ -0,0 +1,26 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +numberOfSubdomains 16; + +method hierarchical; + +coeffs +{ + n (16 1 1); +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/fieldAverage b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/fieldAverage new file mode 100644 index 0000000000000000000000000000000000000000..b78eb30f234de707f3209eb5dbdcfe568ef74860 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/fieldAverage @@ -0,0 +1,54 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +fieldAverage +{ + type fieldAverage; + libs (fieldFunctionObjects); + + enabled true; + writeControl writeTime; + + timeStart $tStartAvg; + + fields + ( + U + { + mean on; + prime2Mean on; + base time; + } + p + { + mean on; + prime2Mean off; + base time; + } + nut + { + mean on; + prime2Mean off; + base time; + } + nuTilda + { + mean on; + prime2Mean off; + base time; + } + wallShearStress + { + mean on; + prime2Mean off; + base time; + } + ); +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/forceCoeffs b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/forceCoeffs new file mode 100644 index 0000000000000000000000000000000000000000..ac88001fe7c5c946a9fa79ffdf2b9c556b4702fb --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/forceCoeffs @@ -0,0 +1,43 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +forceCoeffs +{ + type forceCoeffs; + + libs (forces); + + writeControl timeStep; + timeInterval 1; + + log no; + + AoA 13.87; // Angle-of-attack + magUInf 1.0; // Freestream velocity + lRef 1.0; // Chord length + Aref #eval{ $lRef*0.004 }; // Chord length times span width + + patches (aerofoil); + rho rhoInf; // Indicates incompressible + rhoInf 1; // Required when rho = rhoInf + liftDir ( + #eval{-sin(degToRad($AoA))} + 0 + #eval{cos(degToRad($AoA))} + ); + dragDir ( + #eval{cos(degToRad($AoA))} + 0 + #eval{sin(degToRad($AoA))} + ); + CofR (0.25 0 0); // Aerodynamic center point + pitchAxis (0 1 0); +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/fvSchemes b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..fd999871fac2a011a73c9a225146e9236e12e2bd --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/fvSchemes @@ -0,0 +1,73 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default backward; +} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{ + default Gauss linear; + + div(phi,U) Gauss DEShybrid + linear // scheme 1 + linearUpwind grad(U) // scheme 2 + delta // LES delta name, e.g. 'delta', 'hmax' + 0.65 // CDES coefficient + 1.0 // Reference velocity scale + 1.0 // Reference length scale + 0.0 // Minimum sigma limit (0-1) + 1.0 // Maximum sigma limit (0-1) + 1.0 // Limiter of B function + 10.0; // nut limiter (if > 1, GAM extension is active) + + turbulence Gauss limitedLinear 1; + div(phi,k) $turbulence; + div(phi,omega) $turbulence; + div(phi,epsilon) $turbulence; + div(phi,nuTilda) $turbulence; + + div((nuEff*dev2(T(grad(U))))) Gauss linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + +wallDist +{ + method exactDistance; + nRequired yes; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/fvSolution b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..bffbb6e08c2146ed3ab4fcc21a05c4ed8d1cd5d3 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/fvSolution @@ -0,0 +1,75 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + p + { + solver GAMG; + smoother DICGaussSeidel; + tolerance 1e-06; + relTol 0.05; + minIter 1; + maxIter 10; + } + + pFinal + { + $p; + relTol 0.01; + } + + "(U|k|omega|nuTilda)" + { + solver PBiCG; + preconditioner DILU; + tolerance 1e-05; + relTol 0.1; + minIter 1; + } + + "(U|k|omega|nuTilda)Final" + { + $U; + relTol 0; + } +} + +PIMPLE +{ + nOuterCorrectors 2; + nCorrectors 1; + nNonOrthogonalCorrectors 0; + finalOnLastPimpleIterOnly true; + turbOnFinalIterOnly false; +} + +relaxationFactors +{ + fields + { + "(p|pFinal)" 0.3; + } + equations + { + "(U|UFinal)" 0.7; + "(k|kFinal)" 0.7; + "(omega|omegaFinal)" 0.7; + "(nuTilda|nuTildaFinal)" 0.7; + } +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/sampleDict b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/sampleDict new file mode 100644 index 0000000000000000000000000000000000000000..06844fa54d6c08b6dbda9cc92f97724fc92aa65d --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/sampleDict @@ -0,0 +1,98 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +sample.lines +{ + type sets; + libs (sampling); + writeControl writeTime; + timeStart $tStartAvg; + + interpolationScheme cellPoint; + setFormat raw; + + sets + ( + xbyc0.68 + { + type face; + axis z; + start (6.753000021E-01 0.0001 7.061254978E-02); + end (7.216045260E-01 0.0001 3.526125550E-01); + } + xbyc0.73 + { + type face; + axis z; + start (7.307999730E-01 0.0001 6.140028313E-02); + end (7.803474069E-01 0.0001 3.434002697E-01); + } + xbyc0.79 + { + type face; + axis z; + start (7.863000035E-01 0.0001 5.103440955E-02); + end (8.403753638E-01 0.0001 3.330343962E-01); + } + xbyc0.84 + { + type face; + axis z; + start (8.417999744E-01 0.0001 3.950987384E-02); + end (8.998869658E-01 0.0001 3.215098679E-01); + } + xbyc0.90 + { + type face; + axis z; + start (8.973000050E-01 0.0001 2.680198476E-02); + end (9.618465304E-01 0.0001 3.088019788E-01); + } + xbyc0.95 + { + type face; + axis z; + start (9.527999759E-01 0.0001 1.286614314E-02); + end (1.022162795E+00 0.0001 2.928661406E-01); + } + ); + + fields + ( + columnAverage(UMean) + columnAverage(UPrime2Mean) + ); +} + +sample.aerofoil +{ + type surfaces; + libs (sampling); + writeControl writeTime; + timeStart $tStartAvg; + + interpolationScheme cell; + surfaceFormat raw; + + fields + ( + pMean + wallShearStressMean + ); + + surfaces + ( + aerofoil + { + type patch; + patches ( "aerofoil" ); + } + ); +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/volFields b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/volFields new file mode 100644 index 0000000000000000000000000000000000000000..81a4e5ae8acc79cb435099de35e74d411d73e415 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/volFields @@ -0,0 +1,68 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +CourantNo +{ + type CourantNo; + libs (fieldFunctionObjects); + + enabled true; + writeControl writeTime; +} + +vorticity +{ + type vorticity; + libs (fieldFunctionObjects); + + enabled true; + writeControl writeTime; +} + +Q +{ + type Q; + libs (fieldFunctionObjects); + + enabled true; + writeControl writeTime; +} + +DESModelRegions +{ + type DESModelRegions; + libs (fieldFunctionObjects); + + enabled true; + writeControl writeTime; + result DESField; +} + +blendingFactor +{ + type blendingFactor; + libs (fieldFunctionObjects); + + field U; + + enabled true; + writeControl writeTime; + log false; +} + +turbulenceFields +{ + type turbulenceFields; + libs (fieldFunctionObjects); + field fd; + + enabled true; + writeControl writeTime; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/wallFields b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/wallFields new file mode 100644 index 0000000000000000000000000000000000000000..0bec5f407abd1599edc025199bdf71ff5d45133c --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/system/wallFields @@ -0,0 +1,31 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +wallShearStress +{ + type wallShearStress; + libs (fieldFunctionObjects); + + enabled true; + writeControl writeTime; + + patches ( aerofoil ); +} + +yPlus +{ + type yPlus; + libs (fieldFunctionObjects); + + enabled true; + writeControl writeTime; + + patches ( aerofoil ); +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_cfupper_sa.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_cfupper_sa.dat new file mode 100644 index 0000000000000000000000000000000000000000..33ec645e28eee6816d7f3dc5b5d8c21828bf47b9 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_cfupper_sa.dat @@ -0,0 +1,254 @@ +# variables="x","cf" +# zone, t="Cf results, SA, CFL3D, 897 grid, upper surface" + -0.300215208E-03 0.520296954E-01 + -0.299679232E-03 0.519004650E-01 + -0.298475701E-03 0.517944582E-01 + -0.296462793E-03 0.516391732E-01 + -0.293677091E-03 0.515194647E-01 + -0.290010095E-03 0.513722003E-01 + -0.285390677E-03 0.511891693E-01 + -0.279784348E-03 0.510855354E-01 + -0.273050100E-03 0.509018973E-01 + -0.265073963E-03 0.506535582E-01 + -0.255770690E-03 0.504522398E-01 + -0.244996452E-03 0.502555445E-01 + -0.232593811E-03 0.500289872E-01 + -0.218391418E-03 0.497836806E-01 + -0.202203242E-03 0.495600849E-01 + -0.183828088E-03 0.492945798E-01 + -0.162961602E-03 0.489461161E-01 + -0.139413183E-03 0.486237742E-01 + -0.112867208E-03 0.483246632E-01 + -0.830134013E-04 0.479706377E-01 + -0.494437700E-04 0.475594029E-01 + -0.118173057E-04 0.471549146E-01 + 0.303119032E-04 0.467480086E-01 + 0.774177824E-04 0.463286415E-01 + 0.130014727E-03 0.458562002E-01 + 0.188744467E-03 0.453349985E-01 + 0.254125218E-03 0.448392592E-01 + 0.326920010E-03 0.442983694E-01 + 0.407848827E-03 0.437292382E-01 + 0.497698842E-03 0.431496948E-01 + 0.597398961E-03 0.425287522E-01 + 0.707842119E-03 0.419016667E-01 + 0.830086763E-03 0.412580706E-01 + 0.965213520E-03 0.405941717E-01 + 0.111442222E-02 0.399245098E-01 + 0.127896213E-02 0.392302461E-01 + 0.146025384E-02 0.385085829E-01 + 0.165968772E-02 0.377873108E-01 + 0.187884353E-02 0.370576866E-01 + 0.211935421E-02 0.363138951E-01 + 0.238296925E-02 0.355671421E-01 + 0.267152721E-02 0.348099098E-01 + 0.298700971E-02 0.340385213E-01 + 0.333145703E-02 0.332686193E-01 + 0.370701938E-02 0.325040296E-01 + 0.411599968E-02 0.317299813E-01 + 0.456080539E-02 0.309557877E-01 + 0.504391594E-02 0.301869959E-01 + 0.556801818E-02 0.294177458E-01 + 0.613584183E-02 0.286547132E-01 + 0.675031310E-02 0.279000439E-01 + 0.741444994E-02 0.271533020E-01 + 0.813146960E-02 0.264114700E-01 + 0.890471786E-02 0.256814528E-01 + 0.973765645E-02 0.249689464E-01 + 0.106340041E-01 0.242659971E-01 + 0.115976157E-01 0.235775858E-01 + 0.126325209E-01 0.229078624E-01 + 0.137430029E-01 0.222531538E-01 + 0.149335312E-01 0.216157548E-01 + 0.162088145E-01 0.209972654E-01 + 0.175738093E-01 0.203979630E-01 + 0.190337263E-01 0.198178813E-01 + 0.205940846E-01 0.192555841E-01 + 0.222606752E-01 0.187128820E-01 + 0.240395926E-01 0.181908272E-01 + 0.259372946E-01 0.176869705E-01 + 0.279605929E-01 0.172015429E-01 + 0.301166419E-01 0.167358872E-01 + 0.324130282E-01 0.162881874E-01 + 0.348577611E-01 0.158577804E-01 + 0.374592766E-01 0.154445507E-01 + 0.402265228E-01 0.150476014E-01 + 0.431689098E-01 0.146664511E-01 + 0.462964140E-01 0.143002057E-01 + 0.496195517E-01 0.139482785E-01 + 0.531494506E-01 0.136096599E-01 + 0.568978637E-01 0.132836690E-01 + 0.608771965E-01 0.129696084E-01 + 0.651005805E-01 0.126664806E-01 + 0.695818588E-01 0.123735210E-01 + 0.743356869E-01 0.120899258E-01 + 0.793775097E-01 0.118148932E-01 + 0.847236738E-01 0.115474779E-01 + 0.903914198E-01 0.112869106E-01 + 0.963989496E-01 0.110324258E-01 + 0.102765486E+00 0.107832532E-01 + 0.109511293E+00 0.105385017E-01 + 0.116657786E+00 0.102973357E-01 + 0.124227509E+00 0.100590624E-01 + 0.132244244E+00 0.982277561E-02 + 0.140733093E+00 0.958765578E-02 + 0.149720430E+00 0.935295038E-02 + 0.159234062E+00 0.911777467E-02 + 0.169303283E+00 0.888128486E-02 + 0.179958835E+00 0.864262041E-02 + 0.191233084E+00 0.840087514E-02 + 0.203160003E+00 0.815506279E-02 + 0.215775266E+00 0.790417567E-02 + 0.229116291E+00 0.764716649E-02 + 0.243222237E+00 0.738282362E-02 + 0.258134156E+00 0.710981246E-02 + 0.273894936E+00 0.682660146E-02 + 0.290549338E+00 0.653150119E-02 + 0.308144122E+00 0.622206694E-02 + 0.326727927E+00 0.589551963E-02 + 0.346351355E+00 0.554451626E-02 + 0.367066890E+00 0.516386563E-02 + 0.387786448E+00 0.476704910E-02 + 0.407450289E+00 0.439839624E-02 + 0.426136523E+00 0.409791898E-02 + 0.443916082E+00 0.385038787E-02 + 0.460852712E+00 0.362774311E-02 + 0.477004498E+00 0.342413364E-02 + 0.492424339E+00 0.323621533E-02 + 0.507160723E+00 0.306076440E-02 + 0.521257877E+00 0.289561506E-02 + 0.534756422E+00 0.273915287E-02 + 0.547693729E+00 0.259018806E-02 + 0.560103893E+00 0.244779582E-02 + 0.572018623E+00 0.231124554E-02 + 0.583467066E+00 0.217998144E-02 + 0.594475985E+00 0.205353904E-02 + 0.605070293E+00 0.193153927E-02 + 0.615273118E+00 0.181370717E-02 + 0.625105798E+00 0.169981434E-02 + 0.634588242E+00 0.158967997E-02 + 0.643738806E+00 0.148317160E-02 + 0.652574778E+00 0.138019444E-02 + 0.661112130E+00 0.128068007E-02 + 0.669365942E+00 0.118458655E-02 + 0.677350104E+00 0.109188748E-02 + 0.685077727E+00 0.100256992E-02 + 0.692561090E+00 0.916637073E-03 + 0.699811697E+00 0.834096281E-03 + 0.706840277E+00 0.754955225E-03 + 0.713656962E+00 0.679231831E-03 + 0.720271349E+00 0.606939720E-03 + 0.726692319E+00 0.538097986E-03 + 0.732928336E+00 0.472748070E-03 + 0.738987386E+00 0.410940469E-03 + 0.744876981E+00 0.352758274E-03 + 0.750604212E+00 0.298279105E-03 + 0.756175756E+00 0.247550750E-03 + 0.761597931E+00 0.200563707E-03 + 0.766876817E+00 0.157215793E-03 + 0.772018075E+00 0.117323041E-03 + 0.777027011E+00 0.806296594E-04 + 0.781908810E+00 0.468687831E-04 + 0.786668360E+00 0.157865488E-04 + 0.791310191E+00 -0.128374841E-04 + 0.795838773E+00 -0.391724898E-04 + 0.800258160E+00 -0.633725576E-04 + 0.804572403E+00 -0.855705439E-04 + 0.808785260E+00 -0.105885549E-03 + 0.812900305E+00 -0.124440674E-03 + 0.816920996E+00 -0.141352240E-03 + 0.820850551E+00 -0.156737835E-03 + 0.824692190E+00 -0.170709405E-03 + 0.828448832E+00 -0.183371303E-03 + 0.832123280E+00 -0.194826862E-03 + 0.835718393E+00 -0.205175340E-03 + 0.839236617E+00 -0.214509928E-03 + 0.842680573E+00 -0.222914867E-03 + 0.846052587E+00 -0.230470323E-03 + 0.849354923E+00 -0.237256580E-03 + 0.852589846E+00 -0.243342656E-03 + 0.855759382E+00 -0.248790748E-03 + 0.858865559E+00 -0.253666949E-03 + 0.861910343E+00 -0.258024986E-03 + 0.864895523E+00 -0.261914334E-03 + 0.867822945E+00 -0.265384529E-03 + 0.870694339E+00 -0.268477539E-03 + 0.873511255E+00 -0.271230732E-03 + 0.876275361E+00 -0.273681100E-03 + 0.878988087E+00 -0.275859900E-03 + 0.881650984E+00 -0.277792511E-03 + 0.884265363E+00 -0.279507280E-03 + 0.886832714E+00 -0.281024579E-03 + 0.889354229E+00 -0.282362453E-03 + 0.891831219E+00 -0.283540052E-03 + 0.894264817E+00 -0.284572394E-03 + 0.896656334E+00 -0.285471731E-03 + 0.899006784E+00 -0.286249997E-03 + 0.901317298E+00 -0.286919152E-03 + 0.903588891E+00 -0.287488685E-03 + 0.905822575E+00 -0.287967152E-03 + 0.908019423E+00 -0.288364914E-03 + 0.910180271E+00 -0.288692856E-03 + 0.912306070E+00 -0.288959680E-03 + 0.914397657E+00 -0.289176736E-03 + 0.916455984E+00 -0.289356889E-03 + 0.918481827E+00 -0.289512449E-03 + 0.920475960E+00 -0.289657852E-03 + 0.922439158E+00 -0.289809628E-03 + 0.924372256E+00 -0.289983291E-03 + 0.926275849E+00 -0.290197058E-03 + 0.928150713E+00 -0.290470605E-03 + 0.929997504E+00 -0.290822325E-03 + 0.931816876E+00 -0.291272328E-03 + 0.933609486E+00 -0.291841105E-03 + 0.935375929E+00 -0.292548997E-03 + 0.937116861E+00 -0.293416233E-03 + 0.938832760E+00 -0.294462283E-03 + 0.940524280E+00 -0.295706413E-03 + 0.942191958E+00 -0.297167921E-03 + 0.943836272E+00 -0.298865692E-03 + 0.945457816E+00 -0.300818385E-03 + 0.947057009E+00 -0.303044741E-03 + 0.948634386E+00 -0.305563910E-03 + 0.950190365E+00 -0.308395916E-03 + 0.951725483E+00 -0.311561889E-03 + 0.953240097E+00 -0.315084035E-03 + 0.954734743E+00 -0.318985723E-03 + 0.956209779E+00 -0.323292275E-03 + 0.957665622E+00 -0.328030728E-03 + 0.959102631E+00 -0.333229575E-03 + 0.960521281E+00 -0.338917045E-03 + 0.961921871E+00 -0.345120643E-03 + 0.963304818E+00 -0.351868279E-03 + 0.964670420E+00 -0.359184283E-03 + 0.966019094E+00 -0.367087458E-03 + 0.967351139E+00 -0.375591393E-03 + 0.968666911E+00 -0.384699350E-03 + 0.969966710E+00 -0.394402450E-03 + 0.971250832E+00 -0.404678198E-03 + 0.972519577E+00 -0.415484916E-03 + 0.973773301E+00 -0.426758459E-03 + 0.975012243E+00 -0.438408810E-03 + 0.976236641E+00 -0.450317602E-03 + 0.977446914E+00 -0.462340075E-03 + 0.978643179E+00 -0.474304572E-03 + 0.979825795E+00 -0.486013945E-03 + 0.980994940E+00 -0.497254718E-03 + 0.982150972E+00 -0.507808756E-03 + 0.983294010E+00 -0.517471635E-03 + 0.984424353E+00 -0.526082702E-03 + 0.985542238E+00 -0.533566403E-03 + 0.986647844E+00 -0.539986475E-03 + 0.987741470E+00 -0.545613060E-03 + 0.988823235E+00 -0.551001925E-03 + 0.989893436E+00 -0.557064137E-03 + 0.990952194E+00 -0.565123453E-03 + 0.991999805E+00 -0.576828665E-03 + 0.993036389E+00 -0.593985431E-03 + 0.994062185E+00 -0.617379614E-03 + 0.995077312E+00 -0.645336870E-03 + 0.996082067E+00 -0.665129628E-03 + 0.997076511E+00 -0.654931471E-03 + 0.998060882E+00 -0.364484644E-03 + 0.999035299E+00 0.645089941E-02 + 0.100000000E+01 0.581762521E-02 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_cp_sa.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_cp_sa.dat new file mode 100644 index 0000000000000000000000000000000000000000..a6605942c96cdf64028c3ad83aca11ac54751387 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_cp_sa.dat @@ -0,0 +1,515 @@ +# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model +# variables="x","cp" + 0.10000E+01 -0.30446E-01 + 0.99900E+00 -0.95178E-02 + 0.99798E+00 -0.22917E-02 + 0.99696E+00 0.46548E-02 + 0.99592E+00 0.12455E-01 + 0.99487E+00 0.20020E-01 + 0.99381E+00 0.26966E-01 + 0.99274E+00 0.33221E-01 + 0.99165E+00 0.38813E-01 + 0.99055E+00 0.43920E-01 + 0.98944E+00 0.48630E-01 + 0.98832E+00 0.53074E-01 + 0.98718E+00 0.57313E-01 + 0.98603E+00 0.61360E-01 + 0.98486E+00 0.65275E-01 + 0.98368E+00 0.69028E-01 + 0.98249E+00 0.72663E-01 + 0.98128E+00 0.76195E-01 + 0.98006E+00 0.79610E-01 + 0.97882E+00 0.82921E-01 + 0.97757E+00 0.86144E-01 + 0.97630E+00 0.89293E-01 + 0.97502E+00 0.92369E-01 + 0.97372E+00 0.95386E-01 + 0.97240E+00 0.98330E-01 + 0.97107E+00 0.10121E+00 + 0.96972E+00 0.10404E+00 + 0.96836E+00 0.10682E+00 + 0.96697E+00 0.10956E+00 + 0.96557E+00 0.11225E+00 + 0.96415E+00 0.11490E+00 + 0.96272E+00 0.11751E+00 + 0.96126E+00 0.12010E+00 + 0.95978E+00 0.12263E+00 + 0.95829E+00 0.12514E+00 + 0.95678E+00 0.12763E+00 + 0.95524E+00 0.13009E+00 + 0.95369E+00 0.13252E+00 + 0.95211E+00 0.13493E+00 + 0.95051E+00 0.13732E+00 + 0.94889E+00 0.13967E+00 + 0.94725E+00 0.14203E+00 + 0.94559E+00 0.14435E+00 + 0.94390E+00 0.14666E+00 + 0.94219E+00 0.14896E+00 + 0.94046E+00 0.15124E+00 + 0.93870E+00 0.15349E+00 + 0.93692E+00 0.15576E+00 + 0.93511E+00 0.15799E+00 + 0.93328E+00 0.16022E+00 + 0.93142E+00 0.16244E+00 + 0.92953E+00 0.16466E+00 + 0.92762E+00 0.16685E+00 + 0.92567E+00 0.16906E+00 + 0.92370E+00 0.17125E+00 + 0.92170E+00 0.17343E+00 + 0.91967E+00 0.17561E+00 + 0.91761E+00 0.17779E+00 + 0.91552E+00 0.17995E+00 + 0.91340E+00 0.18213E+00 + 0.91124E+00 0.18429E+00 + 0.90905E+00 0.18646E+00 + 0.90683E+00 0.18862E+00 + 0.90457E+00 0.19078E+00 + 0.90228E+00 0.19295E+00 + 0.89995E+00 0.19511E+00 + 0.89758E+00 0.19727E+00 + 0.89517E+00 0.19944E+00 + 0.89273E+00 0.20162E+00 + 0.89025E+00 0.20378E+00 + 0.88772E+00 0.20596E+00 + 0.88516E+00 0.20813E+00 + 0.88255E+00 0.21033E+00 + 0.87990E+00 0.21252E+00 + 0.87720E+00 0.21471E+00 + 0.87446E+00 0.21691E+00 + 0.87167E+00 0.21913E+00 + 0.86883E+00 0.22134E+00 + 0.86594E+00 0.22356E+00 + 0.86301E+00 0.22580E+00 + 0.86002E+00 0.22805E+00 + 0.85698E+00 0.23030E+00 + 0.85388E+00 0.23255E+00 + 0.85072E+00 0.23483E+00 + 0.84751E+00 0.23711E+00 + 0.84424E+00 0.23941E+00 + 0.84091E+00 0.24172E+00 + 0.83752E+00 0.24404E+00 + 0.83407E+00 0.24638E+00 + 0.83054E+00 0.24874E+00 + 0.82695E+00 0.25111E+00 + 0.82329E+00 0.25349E+00 + 0.81956E+00 0.25589E+00 + 0.81576E+00 0.25832E+00 + 0.81188E+00 0.26075E+00 + 0.80792E+00 0.26321E+00 + 0.80389E+00 0.26568E+00 + 0.79977E+00 0.26818E+00 + 0.79556E+00 0.27070E+00 + 0.79127E+00 0.27323E+00 + 0.78689E+00 0.27580E+00 + 0.78241E+00 0.27838E+00 + 0.77784E+00 0.28100E+00 + 0.77317E+00 0.28363E+00 + 0.76840E+00 0.28631E+00 + 0.76352E+00 0.28901E+00 + 0.75853E+00 0.29173E+00 + 0.75343E+00 0.29448E+00 + 0.74822E+00 0.29728E+00 + 0.74288E+00 0.30009E+00 + 0.73742E+00 0.30296E+00 + 0.73183E+00 0.30584E+00 + 0.72611E+00 0.30879E+00 + 0.72025E+00 0.31176E+00 + 0.71425E+00 0.31478E+00 + 0.70810E+00 0.31785E+00 + 0.70180E+00 0.32096E+00 + 0.69534E+00 0.32412E+00 + 0.68871E+00 0.32734E+00 + 0.68191E+00 0.33061E+00 + 0.67494E+00 0.33395E+00 + 0.66778E+00 0.33734E+00 + 0.66042E+00 0.34081E+00 + 0.65287E+00 0.34434E+00 + 0.64511E+00 0.34796E+00 + 0.63713E+00 0.35167E+00 + 0.62893E+00 0.35545E+00 + 0.62049E+00 0.35934E+00 + 0.61181E+00 0.36334E+00 + 0.60287E+00 0.36745E+00 + 0.59367E+00 0.37169E+00 + 0.58418E+00 0.37606E+00 + 0.57440E+00 0.38058E+00 + 0.56432E+00 0.38527E+00 + 0.55392E+00 0.39016E+00 + 0.54318E+00 0.39523E+00 + 0.53209E+00 0.40056E+00 + 0.52063E+00 0.40614E+00 + 0.50878E+00 0.41203E+00 + 0.49653E+00 0.41825E+00 + 0.48385E+00 0.42487E+00 + 0.47072E+00 0.43197E+00 + 0.45711E+00 0.43959E+00 + 0.44300E+00 0.44795E+00 + 0.42836E+00 0.45686E+00 + 0.41315E+00 0.46870E+00 + 0.39736E+00 0.48176E+00 + 0.38094E+00 0.49296E+00 + 0.36386E+00 0.50411E+00 + 0.34607E+00 0.51618E+00 + 0.32754E+00 0.52898E+00 + 0.30907E+00 0.54124E+00 + 0.29161E+00 0.55343E+00 + 0.27510E+00 0.56612E+00 + 0.25949E+00 0.57883E+00 + 0.24473E+00 0.59181E+00 + 0.23077E+00 0.60507E+00 + 0.21758E+00 0.61869E+00 + 0.20510E+00 0.63267E+00 + 0.19330E+00 0.64702E+00 + 0.18214E+00 0.66178E+00 + 0.17158E+00 0.67692E+00 + 0.16161E+00 0.69243E+00 + 0.15217E+00 0.70834E+00 + 0.14325E+00 0.72458E+00 + 0.13481E+00 0.74113E+00 + 0.12683E+00 0.75798E+00 + 0.11929E+00 0.77506E+00 + 0.11216E+00 0.79230E+00 + 0.10542E+00 0.80969E+00 + 0.99046E-01 0.82710E+00 + 0.93022E-01 0.84446E+00 + 0.87328E-01 0.86170E+00 + 0.81947E-01 0.87868E+00 + 0.76862E-01 0.89530E+00 + 0.72057E-01 0.91141E+00 + 0.67518E-01 0.92688E+00 + 0.63230E-01 0.94152E+00 + 0.59181E-01 0.95514E+00 + 0.55358E-01 0.96753E+00 + 0.51748E-01 0.97843E+00 + 0.48342E-01 0.98760E+00 + 0.45127E-01 0.99474E+00 + 0.42095E-01 0.99949E+00 + 0.39236E-01 0.10015E+01 + 0.36541E-01 0.10004E+01 + 0.34002E-01 0.99577E+00 + 0.31610E-01 0.98706E+00 + 0.29359E-01 0.97380E+00 + 0.27240E-01 0.95540E+00 + 0.25248E-01 0.93131E+00 + 0.23376E-01 0.90086E+00 + 0.21618E-01 0.86342E+00 + 0.19968E-01 0.81830E+00 + 0.18422E-01 0.76478E+00 + 0.16973E-01 0.70219E+00 + 0.15617E-01 0.62989E+00 + 0.14350E-01 0.54720E+00 + 0.13166E-01 0.45353E+00 + 0.12063E-01 0.34852E+00 + 0.11035E-01 0.23168E+00 + 0.10079E-01 0.10283E+00 + 0.91919E-02 -0.38040E-01 + 0.83691E-02 -0.19077E+00 + 0.76075E-02 -0.35505E+00 + 0.69037E-02 -0.53023E+00 + 0.62546E-02 -0.71553E+00 + 0.56569E-02 -0.90972E+00 + 0.51074E-02 -0.11118E+01 + 0.46033E-02 -0.13204E+01 + 0.41417E-02 -0.15334E+01 + 0.37196E-02 -0.17499E+01 + 0.33343E-02 -0.19680E+01 + 0.29833E-02 -0.21857E+01 + 0.26638E-02 -0.24021E+01 + 0.23736E-02 -0.26155E+01 + 0.21103E-02 -0.28245E+01 + 0.18717E-02 -0.30281E+01 + 0.16556E-02 -0.32252E+01 + 0.14603E-02 -0.34159E+01 + 0.12838E-02 -0.35985E+01 + 0.11244E-02 -0.37733E+01 + 0.98066E-03 -0.39408E+01 + 0.85103E-03 -0.40987E+01 + 0.73416E-03 -0.42489E+01 + 0.62886E-03 -0.43913E+01 + 0.53398E-03 -0.45257E+01 + 0.44852E-03 -0.46525E+01 + 0.37153E-03 -0.47727E+01 + 0.30219E-03 -0.48851E+01 + 0.23970E-03 -0.49921E+01 + 0.18343E-03 -0.50929E+01 + 0.13271E-03 -0.51861E+01 + 0.86972E-04 -0.52765E+01 + 0.45758E-04 -0.53611E+01 + 0.85722E-05 -0.54394E+01 + -0.25014E-04 -0.55158E+01 + -0.55304E-04 -0.55884E+01 + -0.82649E-04 -0.56557E+01 + -0.10735E-03 -0.57203E+01 + -0.12967E-03 -0.57823E+01 + -0.14981E-03 -0.58410E+01 + -0.16800E-03 -0.58966E+01 + -0.18443E-03 -0.59494E+01 + -0.19926E-03 -0.59992E+01 + -0.21267E-03 -0.60482E+01 + -0.22473E-03 -0.60959E+01 + -0.23559E-03 -0.61378E+01 + -0.24540E-03 -0.61822E+01 + -0.25415E-03 -0.62232E+01 + -0.26201E-03 -0.62623E+01 + -0.26899E-03 -0.63009E+01 + -0.27521E-03 -0.63387E+01 + -0.28063E-03 -0.63740E+01 + -0.28540E-03 -0.64105E+01 + -0.28942E-03 -0.64453E+01 + -0.29284E-03 -0.64780E+01 + -0.29558E-03 -0.65132E+01 + -0.29770E-03 -0.65442E+01 + -0.29919E-03 -0.65786E+01 + -0.30002E-03 -0.66094E+01 + -0.30022E-03 -0.66427E+01 + -0.29968E-03 -0.66740E+01 + -0.29848E-03 -0.67057E+01 + -0.29646E-03 -0.67382E+01 + -0.29368E-03 -0.67682E+01 + -0.29001E-03 -0.68019E+01 + -0.28539E-03 -0.68321E+01 + -0.27978E-03 -0.68637E+01 + -0.27305E-03 -0.68972E+01 + -0.26507E-03 -0.69285E+01 + -0.25577E-03 -0.69597E+01 + -0.24500E-03 -0.69919E+01 + -0.23259E-03 -0.70239E+01 + -0.21839E-03 -0.70558E+01 + -0.20220E-03 -0.70869E+01 + -0.18383E-03 -0.71199E+01 + -0.16296E-03 -0.71513E+01 + -0.13941E-03 -0.71811E+01 + -0.11287E-03 -0.72114E+01 + -0.83013E-04 -0.72417E+01 + -0.49444E-04 -0.72705E+01 + -0.11817E-04 -0.72971E+01 + 0.30312E-04 -0.73236E+01 + 0.77418E-04 -0.73476E+01 + 0.13001E-03 -0.73717E+01 + 0.18874E-03 -0.73916E+01 + 0.25413E-03 -0.74089E+01 + 0.32692E-03 -0.74252E+01 + 0.40785E-03 -0.74361E+01 + 0.49770E-03 -0.74450E+01 + 0.59740E-03 -0.74492E+01 + 0.70784E-03 -0.74488E+01 + 0.83009E-03 -0.74442E+01 + 0.96521E-03 -0.74341E+01 + 0.11144E-02 -0.74186E+01 + 0.12790E-02 -0.73979E+01 + 0.14603E-02 -0.73707E+01 + 0.16597E-02 -0.73368E+01 + 0.18788E-02 -0.72970E+01 + 0.21194E-02 -0.72502E+01 + 0.23830E-02 -0.71968E+01 + 0.26715E-02 -0.71369E+01 + 0.29870E-02 -0.70703E+01 + 0.33315E-02 -0.69967E+01 + 0.37070E-02 -0.69171E+01 + 0.41160E-02 -0.68318E+01 + 0.45608E-02 -0.67402E+01 + 0.50439E-02 -0.66437E+01 + 0.55680E-02 -0.65422E+01 + 0.61358E-02 -0.64362E+01 + 0.67503E-02 -0.63264E+01 + 0.74144E-02 -0.62133E+01 + 0.81315E-02 -0.60974E+01 + 0.89047E-02 -0.59788E+01 + 0.97377E-02 -0.58587E+01 + 0.10634E-01 -0.57375E+01 + 0.11598E-01 -0.56150E+01 + 0.12633E-01 -0.54925E+01 + 0.13743E-01 -0.53701E+01 + 0.14934E-01 -0.52480E+01 + 0.16209E-01 -0.51268E+01 + 0.17574E-01 -0.50067E+01 + 0.19034E-01 -0.48882E+01 + 0.20594E-01 -0.47714E+01 + 0.22261E-01 -0.46563E+01 + 0.24040E-01 -0.45433E+01 + 0.25937E-01 -0.44327E+01 + 0.27961E-01 -0.43243E+01 + 0.30117E-01 -0.42184E+01 + 0.32413E-01 -0.41150E+01 + 0.34858E-01 -0.40141E+01 + 0.37459E-01 -0.39158E+01 + 0.40227E-01 -0.38201E+01 + 0.43169E-01 -0.37269E+01 + 0.46296E-01 -0.36363E+01 + 0.49620E-01 -0.35481E+01 + 0.53149E-01 -0.34625E+01 + 0.56898E-01 -0.33791E+01 + 0.60877E-01 -0.32981E+01 + 0.65101E-01 -0.32193E+01 + 0.69582E-01 -0.31426E+01 + 0.74336E-01 -0.30679E+01 + 0.79378E-01 -0.29952E+01 + 0.84724E-01 -0.29243E+01 + 0.90391E-01 -0.28551E+01 + 0.96399E-01 -0.27875E+01 + 0.10277E+00 -0.27214E+01 + 0.10951E+00 -0.26566E+01 + 0.11666E+00 -0.25930E+01 + 0.12423E+00 -0.25305E+01 + 0.13224E+00 -0.24689E+01 + 0.14073E+00 -0.24080E+01 + 0.14972E+00 -0.23477E+01 + 0.15923E+00 -0.22879E+01 + 0.16930E+00 -0.22283E+01 + 0.17996E+00 -0.21688E+01 + 0.19123E+00 -0.21092E+01 + 0.20316E+00 -0.20493E+01 + 0.21578E+00 -0.19889E+01 + 0.22912E+00 -0.19277E+01 + 0.24322E+00 -0.18655E+01 + 0.25813E+00 -0.18020E+01 + 0.27389E+00 -0.17369E+01 + 0.29055E+00 -0.16699E+01 + 0.30814E+00 -0.16004E+01 + 0.32673E+00 -0.15282E+01 + 0.34635E+00 -0.14541E+01 + 0.36707E+00 -0.13775E+01 + 0.38779E+00 -0.12993E+01 + 0.40745E+00 -0.12196E+01 + 0.42614E+00 -0.11457E+01 + 0.44392E+00 -0.10842E+01 + 0.46085E+00 -0.10294E+01 + 0.47700E+00 -0.97909E+00 + 0.49242E+00 -0.93267E+00 + 0.50716E+00 -0.88949E+00 + 0.52126E+00 -0.84912E+00 + 0.53476E+00 -0.81119E+00 + 0.54769E+00 -0.77543E+00 + 0.56010E+00 -0.74162E+00 + 0.57202E+00 -0.70954E+00 + 0.58347E+00 -0.67906E+00 + 0.59448E+00 -0.65002E+00 + 0.60507E+00 -0.62233E+00 + 0.61527E+00 -0.59588E+00 + 0.62511E+00 -0.57058E+00 + 0.63459E+00 -0.54639E+00 + 0.64374E+00 -0.52321E+00 + 0.65257E+00 -0.50103E+00 + 0.66111E+00 -0.47976E+00 + 0.66937E+00 -0.45941E+00 + 0.67735E+00 -0.43989E+00 + 0.68508E+00 -0.42123E+00 + 0.69256E+00 -0.40335E+00 + 0.69981E+00 -0.38626E+00 + 0.70684E+00 -0.36993E+00 + 0.71366E+00 -0.35433E+00 + 0.72027E+00 -0.33943E+00 + 0.72669E+00 -0.32525E+00 + 0.73293E+00 -0.31172E+00 + 0.73899E+00 -0.29886E+00 + 0.74488E+00 -0.28663E+00 + 0.75060E+00 -0.27502E+00 + 0.75618E+00 -0.26401E+00 + 0.76160E+00 -0.25357E+00 + 0.76688E+00 -0.24370E+00 + 0.77202E+00 -0.23437E+00 + 0.77703E+00 -0.22555E+00 + 0.78191E+00 -0.21724E+00 + 0.78667E+00 -0.20941E+00 + 0.79131E+00 -0.20203E+00 + 0.79584E+00 -0.19509E+00 + 0.80026E+00 -0.18857E+00 + 0.80457E+00 -0.18243E+00 + 0.80879E+00 -0.17668E+00 + 0.81290E+00 -0.17127E+00 + 0.81692E+00 -0.16621E+00 + 0.82085E+00 -0.16146E+00 + 0.82469E+00 -0.15700E+00 + 0.82845E+00 -0.15283E+00 + 0.83212E+00 -0.14892E+00 + 0.83572E+00 -0.14525E+00 + 0.83924E+00 -0.14181E+00 + 0.84268E+00 -0.13859E+00 + 0.84605E+00 -0.13557E+00 + 0.84935E+00 -0.13273E+00 + 0.85259E+00 -0.13007E+00 + 0.85576E+00 -0.12756E+00 + 0.85887E+00 -0.12521E+00 + 0.86191E+00 -0.12300E+00 + 0.86490E+00 -0.12091E+00 + 0.86782E+00 -0.11895E+00 + 0.87069E+00 -0.11710E+00 + 0.87351E+00 -0.11536E+00 + 0.87628E+00 -0.11372E+00 + 0.87899E+00 -0.11216E+00 + 0.88165E+00 -0.11068E+00 + 0.88427E+00 -0.10929E+00 + 0.88683E+00 -0.10796E+00 + 0.88935E+00 -0.10670E+00 + 0.89183E+00 -0.10550E+00 + 0.89426E+00 -0.10437E+00 + 0.89666E+00 -0.10330E+00 + 0.89901E+00 -0.10227E+00 + 0.90132E+00 -0.10128E+00 + 0.90359E+00 -0.10035E+00 + 0.90582E+00 -0.99455E-01 + 0.90802E+00 -0.98601E-01 + 0.91018E+00 -0.97792E-01 + 0.91231E+00 -0.97012E-01 + 0.91440E+00 -0.96261E-01 + 0.91646E+00 -0.95555E-01 + 0.91848E+00 -0.94863E-01 + 0.92048E+00 -0.94215E-01 + 0.92244E+00 -0.93582E-01 + 0.92437E+00 -0.92979E-01 + 0.92628E+00 -0.92405E-01 + 0.92815E+00 -0.91846E-01 + 0.93000E+00 -0.91316E-01 + 0.93182E+00 -0.90816E-01 + 0.93361E+00 -0.90315E-01 + 0.93538E+00 -0.89844E-01 + 0.93712E+00 -0.89403E-01 + 0.93883E+00 -0.88961E-01 + 0.94052E+00 -0.88534E-01 + 0.94219E+00 -0.88122E-01 + 0.94384E+00 -0.87725E-01 + 0.94546E+00 -0.87342E-01 + 0.94706E+00 -0.86960E-01 + 0.94863E+00 -0.86592E-01 + 0.95019E+00 -0.86239E-01 + 0.95173E+00 -0.85871E-01 + 0.95324E+00 -0.85517E-01 + 0.95473E+00 -0.85164E-01 + 0.95621E+00 -0.84826E-01 + 0.95767E+00 -0.84473E-01 + 0.95910E+00 -0.84105E-01 + 0.96052E+00 -0.83751E-01 + 0.96192E+00 -0.83383E-01 + 0.96330E+00 -0.83001E-01 + 0.96467E+00 -0.82603E-01 + 0.96602E+00 -0.82206E-01 + 0.96735E+00 -0.81779E-01 + 0.96867E+00 -0.81323E-01 + 0.96997E+00 -0.80852E-01 + 0.97125E+00 -0.80352E-01 + 0.97252E+00 -0.79807E-01 + 0.97377E+00 -0.79233E-01 + 0.97501E+00 -0.78615E-01 + 0.97624E+00 -0.77953E-01 + 0.97745E+00 -0.77232E-01 + 0.97864E+00 -0.76466E-01 + 0.97983E+00 -0.75627E-01 + 0.98099E+00 -0.74715E-01 + 0.98215E+00 -0.73744E-01 + 0.98329E+00 -0.72684E-01 + 0.98442E+00 -0.71566E-01 + 0.98554E+00 -0.70359E-01 + 0.98665E+00 -0.69078E-01 + 0.98774E+00 -0.67724E-01 + 0.98882E+00 -0.66311E-01 + 0.98989E+00 -0.64840E-01 + 0.99095E+00 -0.63309E-01 + 0.99200E+00 -0.61779E-01 + 0.99304E+00 -0.60263E-01 + 0.99406E+00 -0.58820E-01 + 0.99508E+00 -0.57584E-01 + 0.99608E+00 -0.56569E-01 + 0.99708E+00 -0.56436E-01 + 0.99806E+00 -0.56333E-01 + 0.99904E+00 -0.62367E-01 + 0.10000E+01 -0.58040E-01 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.68.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.68.dat new file mode 100644 index 0000000000000000000000000000000000000000..90412e58664f04776beca8a5b9f8a767df824560 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.68.dat @@ -0,0 +1,201 @@ +# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model +# x = x/c +# y = y/c +# u = (u/Uinf)/0.93 +# v = (v/Uinf)/0.93 +# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil) +# VARIABLES = "x","y","u","v" +# ZONE T="x=.6753" + 6.753000021E-01 7.061254978E-02 2.055161400E-03 -3.195479221E-04 + 6.753003001E-01 7.061452419E-02 3.877276089E-03 -6.021498120E-04 + 6.753006577E-01 7.061649859E-02 5.694410764E-03 -8.849718142E-04 + 6.753009558E-01 7.061848789E-02 7.549980655E-03 -1.172565506E-03 + 6.753013134E-01 7.062049210E-02 9.398180991E-03 -1.460292377E-03 + 6.753016114E-01 7.062251866E-02 1.130526885E-02 -1.755643170E-03 + 6.753019691E-01 7.062456012E-02 1.320601255E-02 -2.051657764E-03 + 6.753023267E-01 7.062663883E-02 1.519586705E-02 -2.359522972E-03 + 6.753026843E-01 7.062875479E-02 1.717087813E-02 -2.667313209E-03 + 6.753030419E-01 7.063090801E-02 1.925722510E-02 -2.989686560E-03 + 6.753033996E-01 7.063310593E-02 2.132353932E-02 -3.311683424E-03 + 6.753037572E-01 7.063535601E-02 2.351100184E-02 -3.649999853E-03 + 6.753041148E-01 7.063765824E-02 2.570368536E-02 -3.990965895E-03 + 6.753045321E-01 7.064002752E-02 2.801882103E-02 -4.349649884E-03 + 6.753048897E-01 7.064246386E-02 3.038337454E-02 -4.716385156E-03 + 6.753053069E-01 7.064497471E-02 3.283577785E-02 -5.097184330E-03 + 6.753057241E-01 7.064756751E-02 3.541290015E-02 -5.495664664E-03 + 6.753062010E-01 7.065024227E-02 3.802571818E-02 -5.902057048E-03 + 6.753066182E-01 7.065301389E-02 4.080183804E-02 -6.331386976E-03 + 6.753070951E-01 7.065588981E-02 4.366992041E-02 -6.776055321E-03 + 6.753076315E-01 7.065887004E-02 4.665757343E-02 -7.239742670E-03 + 6.753081083E-01 7.066196203E-02 4.981493205E-02 -7.727477234E-03 + 6.753086448E-01 7.066518068E-02 5.306605250E-02 -8.232004009E-03 + 6.753091812E-01 7.066853344E-02 5.648797750E-02 -8.762251586E-03 + 6.753097773E-01 7.067202032E-02 6.011452153E-02 -9.322374128E-03 + 6.753103733E-01 7.067565620E-02 6.385587156E-02 -9.902628139E-03 + 6.753109694E-01 7.067944854E-02 6.779123843E-02 -1.051231101E-02 + 6.753116250E-01 7.068340480E-02 7.197237015E-02 -1.115791686E-02 + 6.753123403E-01 7.068753988E-02 7.632680237E-02 -1.183198672E-02 + 6.753129959E-01 7.069186121E-02 8.087197691E-02 -1.253640279E-02 + 6.753137708E-01 7.069637626E-02 8.572165668E-02 -1.328536961E-02 + 6.753145456E-01 7.070109993E-02 9.082055837E-02 -1.407236420E-02 + 6.753153801E-01 7.070604712E-02 9.612641484E-02 -1.489389595E-02 + 6.753162146E-01 7.071122527E-02 1.017149314E-01 -1.575882919E-02 + 6.753171086E-01 7.071664929E-02 1.076551899E-01 -1.667511091E-02 + 6.753180027E-01 7.072233409E-02 1.138894409E-01 -1.763647608E-02 + 6.753190160E-01 7.072828710E-02 1.203824133E-01 -1.864042133E-02 + 6.753200293E-01 7.073453069E-02 1.271809936E-01 -1.969132572E-02 + 6.753211021E-01 7.074107230E-02 1.343411952E-01 -2.079558186E-02 + 6.753222346E-01 7.074794173E-02 1.418502480E-01 -2.195238136E-02 + 6.753234267E-01 7.075513899E-02 1.496480852E-01 -2.315449901E-02 + 6.753246784E-01 7.076269388E-02 1.577261984E-01 -2.440125495E-02 + 6.753259301E-01 7.077062130E-02 1.660430878E-01 -2.568425797E-02 + 6.753273010E-01 7.077894360E-02 1.746630073E-01 -2.701062150E-02 + 6.753287315E-01 7.078767568E-02 1.834919751E-01 -2.836808749E-02 + 6.753302813E-01 7.079684734E-02 1.924875230E-01 -2.975131944E-02 + 6.753318310E-01 7.080647349E-02 2.015652359E-01 -3.114852123E-02 + 6.753334999E-01 7.081657648E-02 2.105953991E-01 -3.253719956E-02 + 6.753352284E-01 7.082719356E-02 2.195792347E-01 -3.391608223E-02 + 6.753370762E-01 7.083833963E-02 2.284602821E-01 -3.527642041E-02 + 6.753389835E-01 7.085005194E-02 2.371621579E-01 -3.660792112E-02 + 6.753410101E-01 7.086235285E-02 2.456242889E-01 -3.790270910E-02 + 6.753431559E-01 7.087527215E-02 2.537840009E-01 -3.915010020E-02 + 6.753453612E-01 7.088883966E-02 2.614563107E-01 -4.032046720E-02 + 6.753476858E-01 7.090310007E-02 2.687946260E-01 -4.143615067E-02 + 6.753501892E-01 7.091808319E-02 2.757886052E-01 -4.249630123E-02 + 6.753527522E-01 7.093381882E-02 2.824301422E-01 -4.350046068E-02 + 6.753554940E-01 7.095035911E-02 2.887450755E-01 -4.445340857E-02 + 6.753582954E-01 7.096773386E-02 2.947424054E-01 -4.535612836E-02 + 6.753613353E-01 7.098598778E-02 3.003441393E-01 -4.619567469E-02 + 6.753644943E-01 7.100518048E-02 3.057054877E-01 -4.699545354E-02 + 6.753677726E-01 7.102534175E-02 3.108584285E-01 -4.776016250E-02 + 6.753712296E-01 7.104652375E-02 3.158307672E-01 -4.849493131E-02 + 6.753749251E-01 7.106878608E-02 3.206504881E-01 -4.920413345E-02 + 6.753787398E-01 7.109218836E-02 3.253353536E-01 -4.989115894E-02 + 6.753827929E-01 7.111677527E-02 3.298802078E-01 -5.055404827E-02 + 6.753870249E-01 7.114262134E-02 3.343148530E-01 -5.119726434E-02 + 6.753914952E-01 7.116977870E-02 3.386988342E-01 -5.182896554E-02 + 6.753962040E-01 7.119832188E-02 3.430429995E-01 -5.245159566E-02 + 6.754010916E-01 7.122831792E-02 3.473579586E-01 -5.306676030E-02 + 6.754062772E-01 7.125984132E-02 3.516545296E-01 -5.367647856E-02 + 6.754117012E-01 7.129298151E-02 3.559438288E-01 -5.428222194E-02 + 6.754174232E-01 7.132780552E-02 3.602041900E-01 -5.487991124E-02 + 6.754234433E-01 7.136441022E-02 3.644785285E-01 -5.547579005E-02 + 6.754297614E-01 7.140287757E-02 3.687837422E-01 -5.607178807E-02 + 6.754364371E-01 7.144331187E-02 3.731223345E-01 -5.666882172E-02 + 6.754434109E-01 7.148580253E-02 3.774980903E-01 -5.726727098E-02 + 6.754507422E-01 7.153046876E-02 3.819134235E-01 -5.786795542E-02 + 6.754584312E-01 7.157741487E-02 3.863732517E-01 -5.847091600E-02 + 6.754665375E-01 7.162676007E-02 3.908559680E-01 -5.907216296E-02 + 6.754750609E-01 7.167862356E-02 3.954029083E-01 -5.967741460E-02 + 6.754840016E-01 7.173313200E-02 4.000172317E-01 -6.028686464E-02 + 6.754934192E-01 7.179042697E-02 4.047002494E-01 -6.090087816E-02 + 6.755033135E-01 7.185064256E-02 4.094553292E-01 -6.151966006E-02 + 6.755136847E-01 7.191393524E-02 4.142808020E-01 -6.214343384E-02 + 6.755245924E-01 7.198046148E-02 4.191781878E-01 -6.277129054E-02 + 6.755360961E-01 7.205038518E-02 4.241363406E-01 -6.340088695E-02 + 6.755481362E-01 7.212388515E-02 4.291901886E-01 -6.403657794E-02 + 6.755608320E-01 7.220113277E-02 4.343409538E-01 -6.467851996E-02 + 6.755741835E-01 7.228232920E-02 4.395916760E-01 -6.532701850E-02 + 6.755881906E-01 7.236767560E-02 4.449473321E-01 -6.598234177E-02 + 6.756029129E-01 7.245738059E-02 4.504062533E-01 -6.664466113E-02 + 6.756184101E-01 7.255166769E-02 4.559702277E-01 -6.731271744E-02 + 6.756346822E-01 7.265076786E-02 4.616361558E-01 -6.798529625E-02 + 6.756517887E-01 7.275493443E-02 4.674401581E-01 -6.866648793E-02 + 6.756697297E-01 7.286442071E-02 4.733831584E-01 -6.935658306E-02 + 6.756886840E-01 7.297950238E-02 4.794730246E-01 -7.005620748E-02 + 6.757085323E-01 7.310046256E-02 4.857172668E-01 -7.076579332E-02 + 6.757293940E-01 7.322760671E-02 4.921181798E-01 -7.148589194E-02 + 6.757513285E-01 7.336124033E-02 4.986787140E-01 -7.221505046E-02 + 6.757743955E-01 7.350170612E-02 5.054087043E-01 -7.295361161E-02 + 6.757986546E-01 7.364934683E-02 5.123453736E-01 -7.370541990E-02 + 6.758241057E-01 7.380452752E-02 5.194910765E-01 -7.447098196E-02 + 6.758509278E-01 7.396764308E-02 5.268598795E-01 -7.525132596E-02 + 6.758790612E-01 7.413908839E-02 5.344646573E-01 -7.604729384E-02 + 6.759086251E-01 7.431929559E-02 5.423110723E-01 -7.685964555E-02 + 6.759397388E-01 7.450871170E-02 5.504084229E-01 -7.768724114E-02 + 6.759724617E-01 7.470779866E-02 5.587786436E-01 -7.853143662E-02 + 6.760067940E-01 7.491706312E-02 5.674570203E-01 -7.939575613E-02 + 6.760429144E-01 7.513701916E-02 5.764538050E-01 -8.028116822E-02 + 6.760808825E-01 7.536821812E-02 5.857877135E-01 -8.118883520E-02 + 6.761207581E-01 7.561122626E-02 5.954779387E-01 -8.211990446E-02 + 6.761627197E-01 7.586664706E-02 6.055357456E-01 -8.307533711E-02 + 6.762068272E-01 7.613512129E-02 6.159757376E-01 -8.405398577E-02 + 6.762531400E-01 7.641731948E-02 6.268358827E-01 -8.505810052E-02 + 6.763018370E-01 7.671392709E-02 6.381489635E-01 -8.609081805E-02 + 6.763530374E-01 7.702569664E-02 6.499336362E-01 -8.715327084E-02 + 6.764068604E-01 7.735339552E-02 6.622154117E-01 -8.824669570E-02 + 6.764634252E-01 7.769784331E-02 6.750211716E-01 -8.937233686E-02 + 6.765228510E-01 7.805988193E-02 6.883707047E-01 -9.053123742E-02 + 6.765853167E-01 7.844042033E-02 7.022811770E-01 -9.172160923E-02 + 6.766510010E-01 7.884040475E-02 7.168113589E-01 -9.294606000E-02 + 6.767200232E-01 7.926083356E-02 7.319871187E-01 -9.420713037E-02 + 6.767926216E-01 7.970273495E-02 7.478365898E-01 -9.550555795E-02 + 6.768688560E-01 8.016721904E-02 7.643917203E-01 -9.684205800E-02 + 6.769490242E-01 8.065544069E-02 7.816852331E-01 -9.821719676E-02 + 6.770333052E-01 8.116860688E-02 7.997464538E-01 -9.963125736E-02 + 6.771218777E-01 8.170799166E-02 8.185831308E-01 -1.010795310E-01 + 6.772149801E-01 8.227493614E-02 8.382542729E-01 -1.025628895E-01 + 6.773127913E-01 8.287085593E-02 8.587782979E-01 -1.040822491E-01 + 6.774156690E-01 8.349721879E-02 8.801777959E-01 -1.056357548E-01 + 6.775237918E-01 8.415558934E-02 9.024706483E-01 -1.072208211E-01 + 6.776373982E-01 8.484759927E-02 9.256691337E-01 -1.088335440E-01 + 6.777568460E-01 8.557496965E-02 9.497807026E-01 -1.104676574E-01 + 6.778823733E-01 8.633950353E-02 9.747370481E-01 -1.121071726E-01 + 6.780143380E-01 8.714310825E-02 1.000501633E+00 -1.137470976E-01 + 6.781530380E-01 8.798776567E-02 1.027033210E+00 -1.153795123E-01 + 6.782987714E-01 8.887559175E-02 1.054236889E+00 -1.169900298E-01 + 6.784520149E-01 8.980877697E-02 1.081976652E+00 -1.185606197E-01 + 6.786130667E-01 9.078964591E-02 1.110064745E+00 -1.200689375E-01 + 6.787824035E-01 9.182063490E-02 1.138211966E+00 -1.214820817E-01 + 6.789603233E-01 9.290430695E-02 1.165697336E+00 -1.227266714E-01 + 6.791473627E-01 9.404335171E-02 1.192037582E+00 -1.237684563E-01 + 6.793439388E-01 9.524059296E-02 1.216579318E+00 -1.245553493E-01 + 6.795505881E-01 9.649901092E-02 1.238398433E+00 -1.250141561E-01 + 6.797677875E-01 9.782173485E-02 1.256536722E+00 -1.250757873E-01 + 6.799960732E-01 9.921204299E-02 1.270007610E+00 -1.246750951E-01 + 6.802359819E-01 1.006733850E-01 1.278468966E+00 -1.238067076E-01 + 6.804882288E-01 1.022094041E-01 1.282033086E+00 -1.225042343E-01 + 6.807532907E-01 1.038239077E-01 1.283030748E+00 -1.209514737E-01 + 6.810319424E-01 1.055209115E-01 1.282942414E+00 -1.192517653E-01 + 6.813248396E-01 1.073046178E-01 1.282541633E+00 -1.174557135E-01 + 6.816326976E-01 1.091794744E-01 1.282240629E+00 -1.155849546E-01 + 6.819562912E-01 1.111501232E-01 1.282114387E+00 -1.136425063E-01 + 6.822963953E-01 1.132214740E-01 1.282071829E+00 -1.116209105E-01 + 6.826539040E-01 1.153986603E-01 1.282020807E+00 -1.095153615E-01 + 6.830296516E-01 1.176870912E-01 1.281943083E+00 -1.073205248E-01 + 6.834245920E-01 1.200924516E-01 1.281845212E+00 -1.050321385E-01 + 6.838397384E-01 1.226207241E-01 1.281731367E+00 -1.026464179E-01 + 6.842761040E-01 1.252781898E-01 1.281608105E+00 -1.001621187E-01 + 6.847347617E-01 1.280714273E-01 1.281476259E+00 -9.757677466E-02 + 6.852168441E-01 1.310074031E-01 1.281334877E+00 -9.488787502E-02 + 6.857236028E-01 1.340934038E-01 1.281174898E+00 -9.209544957E-02 + 6.862561703E-01 1.373370737E-01 1.280990958E+00 -8.919128776E-02 + 6.868160367E-01 1.407464892E-01 1.280791044E+00 -8.616703749E-02 + 6.874044538E-01 1.443301290E-01 1.280572891E+00 -8.302295208E-02 + 6.880229712E-01 1.480968595E-01 1.280333519E+00 -7.976059616E-02 + 6.886730790E-01 1.520560831E-01 1.280066133E+00 -7.637504488E-02 + 6.893563867E-01 1.562175900E-01 1.279766798E+00 -7.286295295E-02 + 6.900746226E-01 1.605917513E-01 1.279433727E+00 -6.923290342E-02 + 6.908295751E-01 1.651894003E-01 1.279067993E+00 -6.547722220E-02 + 6.916230917E-01 1.700219959E-01 1.278667331E+00 -6.159230694E-02 + 6.924571395E-01 1.751015037E-01 1.278216481E+00 -5.757072568E-02 + 6.933338046E-01 1.804405749E-01 1.277724504E+00 -5.341639370E-02 + 6.942552924E-01 1.860524565E-01 1.277188420E+00 -4.912788048E-02 + 6.952238083E-01 1.919510812E-01 1.276605368E+00 -4.470296204E-02 + 6.962418556E-01 1.981510967E-01 1.275950313E+00 -4.013487324E-02 + 6.973119378E-01 2.046679258E-01 1.275237441E+00 -3.543442488E-02 + 6.984366775E-01 2.115177512E-01 1.274462938E+00 -3.059941716E-02 + 6.996188760E-01 2.187175751E-01 1.273617029E+00 -2.562763914E-02 + 7.008615136E-01 2.262852788E-01 1.272687554E+00 -2.051649615E-02 + 7.021676302E-01 2.342396826E-01 1.271682858E+00 -1.527262386E-02 + 7.035405040E-01 2.426005304E-01 1.270599008E+00 -9.897452779E-03 + 7.049834728E-01 2.513885796E-01 1.269402862E+00 -4.395565949E-03 + 7.065002322E-01 2.606256902E-01 1.268113971E+00 1.228710869E-03 + 7.080944777E-01 2.703347802E-01 1.266730905E+00 6.971372757E-03 + 7.097701430E-01 2.805399597E-01 1.265229344E+00 1.283563673E-02 + 7.115314603E-01 2.912665904E-01 1.263620615E+00 1.881091483E-02 + 7.133827806E-01 3.025413454E-01 1.261907578E+00 2.490236424E-02 + 7.153286934E-01 3.143922091E-01 1.260057688E+00 3.110618144E-02 + 7.173740864E-01 3.268485963E-01 1.258076310E+00 3.736085072E-02 + 7.195239067E-01 3.399414718E-01 1.255965114E+00 4.369297996E-02 + 7.217836380E-01 3.537033498E-01 1.253717899E+00 5.010820925E-02 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.73.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.73.dat new file mode 100644 index 0000000000000000000000000000000000000000..ed837e0fe222a251f2dad503d8281ce9f0857a4a --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.73.dat @@ -0,0 +1,201 @@ +# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model +# x = x/c +# y = y/c +# u = (u/Uinf)/0.93 +# v = (v/Uinf)/0.93 +# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil) +# VARIABLES = "x","y","u","v" +# ZONE T="x=.7308" + 7.307999730E-01 6.140028313E-02 6.508523948E-04 -1.145524366E-04 + 7.308003306E-01 6.140225381E-02 1.446120907E-03 -2.548194898E-04 + 7.308006883E-01 6.140422821E-02 2.270576078E-03 -3.998979519E-04 + 7.308010459E-01 6.140621379E-02 3.088965081E-03 -5.441304529E-04 + 7.308014035E-01 6.140821055E-02 3.932722379E-03 -6.926000351E-04 + 7.308017612E-01 6.141022965E-02 4.780756310E-03 -8.419270162E-04 + 7.308021188E-01 6.141227484E-02 5.656776484E-03 -9.960859315E-04 + 7.308024764E-01 6.141434982E-02 6.549824029E-03 -1.153170597E-03 + 7.308028340E-01 6.141645461E-02 7.457661442E-03 -1.312977518E-03 + 7.308031917E-01 6.141860411E-02 8.404050022E-03 -1.479237573E-03 + 7.308036089E-01 6.142079830E-02 9.360593744E-03 -1.647712663E-03 + 7.308040261E-01 6.142304465E-02 1.038151979E-02 -1.826799824E-03 + 7.308043838E-01 6.142534688E-02 1.139671262E-02 -2.005516784E-03 + 7.308048010E-01 6.142770872E-02 1.248921547E-02 -2.197061898E-03 + 7.308052182E-01 6.143014133E-02 1.358384266E-02 -2.389657078E-03 + 7.308056951E-01 6.143264845E-02 1.475156471E-02 -2.594650025E-03 + 7.308061123E-01 6.143523380E-02 1.595578529E-02 -2.806023695E-03 + 7.308065891E-01 6.143790856E-02 1.720352843E-02 -3.025343874E-03 + 7.308071256E-01 6.144067645E-02 1.854996197E-02 -3.261133330E-03 + 7.308076024E-01 6.144354120E-02 1.990795881E-02 -3.499706043E-03 + 7.308081388E-01 6.144651771E-02 2.135560475E-02 -3.753683064E-03 + 7.308086753E-01 6.144960597E-02 2.288690768E-02 -4.021888133E-03 + 7.308092117E-01 6.145282090E-02 2.446709014E-02 -4.299222026E-03 + 7.308098078E-01 6.145616248E-02 2.615196258E-02 -4.594450351E-03 + 7.308104038E-01 6.145964563E-02 2.793205157E-02 -4.906071816E-03 + 7.308110595E-01 6.146327406E-02 2.978448756E-02 -5.230871029E-03 + 7.308117151E-01 6.146705896E-02 3.175479546E-02 -5.575972609E-03 + 7.308124304E-01 6.147101149E-02 3.386559710E-02 -5.944963545E-03 + 7.308131456E-01 6.147513911E-02 3.605123609E-02 -6.327807438E-03 + 7.308139205E-01 6.147945300E-02 3.837997839E-02 -6.735545583E-03 + 7.308146954E-01 6.148396060E-02 4.087404162E-02 -7.171310950E-03 + 7.308155298E-01 6.148868054E-02 4.350501299E-02 -7.631161250E-03 + 7.308164239E-01 6.149361655E-02 4.627458006E-02 -8.115598001E-03 + 7.308173180E-01 6.149878725E-02 4.922350869E-02 -8.631194010E-03 + 7.308182716E-01 6.150420010E-02 5.239295959E-02 -9.184224531E-03 + 7.308192253E-01 6.150987372E-02 5.573928729E-02 -9.768245742E-03 + 7.308202982E-01 6.151581928E-02 5.926953629E-02 -1.038481481E-02 + 7.308213711E-01 6.152205169E-02 6.303081661E-02 -1.104143076E-02 + 7.308225632E-01 6.152858585E-02 6.705367565E-02 -1.174294669E-02 + 7.308237553E-01 6.153543666E-02 7.134630531E-02 -1.249044202E-02 + 7.308250070E-01 6.154262647E-02 7.585945725E-02 -1.327715907E-02 + 7.308263183E-01 6.155017018E-02 8.064136654E-02 -1.411057822E-02 + 7.308277488E-01 6.155808643E-02 8.571945876E-02 -1.499514654E-02 + 7.308291793E-01 6.156639382E-02 9.110064059E-02 -1.593145914E-02 + 7.308307290E-01 6.157511100E-02 9.680046886E-02 -1.692187414E-02 + 7.308323383E-01 6.158426777E-02 1.027568206E-01 -1.795734838E-02 + 7.308340073E-01 6.159387901E-02 1.089788824E-01 -1.903889328E-02 + 7.308357954E-01 6.160397083E-02 1.154608130E-01 -2.016474865E-02 + 7.308376431E-01 6.161456928E-02 1.221600771E-01 -2.132746577E-02 + 7.308396101E-01 6.162570044E-02 1.290778518E-01 -2.252561599E-02 + 7.308416367E-01 6.163739040E-02 1.361288577E-01 -2.374555171E-02 + 7.308438420E-01 6.164967269E-02 1.432503313E-01 -2.497794665E-02 + 7.308461070E-01 6.166257337E-02 1.503906101E-01 -2.621202916E-02 + 7.308484912E-01 6.167612597E-02 1.573859006E-01 -2.741880156E-02 + 7.308509946E-01 6.169036031E-02 1.642392576E-01 -2.859885059E-02 + 7.308536172E-01 6.170532107E-02 1.709139943E-01 -2.974428982E-02 + 7.308563590E-01 6.172103435E-02 1.773475856E-01 -3.084551916E-02 + 7.308592796E-01 6.173754856E-02 1.835125834E-01 -3.189879283E-02 + 7.308623195E-01 6.175490096E-02 1.893873960E-01 -3.289919719E-02 + 7.308655381E-01 6.177313253E-02 1.948809177E-01 -3.383041918E-02 + 7.308688760E-01 6.179229170E-02 2.000587434E-01 -3.470392898E-02 + 7.308723927E-01 6.181242317E-02 2.049802393E-01 -3.552949056E-02 + 7.308761477E-01 6.183357909E-02 2.096710205E-01 -3.631179407E-02 + 7.308800220E-01 6.185581163E-02 2.141495794E-01 -3.705472872E-02 + 7.308841348E-01 6.187917665E-02 2.184446752E-01 -3.776326776E-02 + 7.308884263E-01 6.190373376E-02 2.225690335E-01 -3.843899444E-02 + 7.308930159E-01 6.192953885E-02 2.265188843E-01 -3.908101097E-02 + 7.308977842E-01 6.195665896E-02 2.303753793E-01 -3.970349580E-02 + 7.309027910E-01 6.198516488E-02 2.341661006E-01 -4.031044990E-02 + 7.309080362E-01 6.201511994E-02 2.379034907E-01 -4.090460762E-02 + 7.309135795E-01 6.204660609E-02 2.416009754E-01 -4.148857296E-02 + 7.309193611E-01 6.207969412E-02 2.452728152E-01 -4.206437245E-02 + 7.309255004E-01 6.211447343E-02 2.489195764E-01 -4.263160005E-02 + 7.309318781E-01 6.215102598E-02 2.525527477E-01 -4.319208115E-02 + 7.309386730E-01 6.218944490E-02 2.562069893E-01 -4.375146329E-02 + 7.309457660E-01 6.222982705E-02 2.598916888E-01 -4.431094602E-02 + 7.309532166E-01 6.227226555E-02 2.636095583E-01 -4.487116262E-02 + 7.309610248E-01 6.231687218E-02 2.673612237E-01 -4.543251172E-02 + 7.309693098E-01 6.236375868E-02 2.711597681E-01 -4.599644244E-02 + 7.309779525E-01 6.241303682E-02 2.749907374E-01 -4.655999318E-02 + 7.309870124E-01 6.246483326E-02 2.788711786E-01 -4.712584615E-02 + 7.309966087E-01 6.251927465E-02 2.828199863E-01 -4.769659787E-02 + 7.310066819E-01 6.257649511E-02 2.868392169E-01 -4.827235639E-02 + 7.310172319E-01 6.263663620E-02 2.909298539E-01 -4.885318875E-02 + 7.310283184E-01 6.269985437E-02 2.950901985E-01 -4.943899065E-02 + 7.310400009E-01 6.276629865E-02 2.993306220E-01 -5.003052950E-02 + 7.310522795E-01 6.283613294E-02 3.036338985E-01 -5.062413961E-02 + 7.310651541E-01 6.290954351E-02 3.080213070E-01 -5.122316256E-02 + 7.310787439E-01 6.298670173E-02 3.125069439E-01 -5.182907358E-02 + 7.310929894E-01 6.306780130E-02 3.170910478E-01 -5.244172364E-02 + 7.311079502E-01 6.315304339E-02 3.217765689E-01 -5.306123197E-02 + 7.311236858E-01 6.324263662E-02 3.265620768E-01 -5.368736014E-02 + 7.311402559E-01 6.333681196E-02 3.314593136E-01 -5.432087556E-02 + 7.311576605E-01 6.343580037E-02 3.364500105E-01 -5.495759845E-02 + 7.311758995E-01 6.353984028E-02 3.415609002E-01 -5.560176447E-02 + 7.311951518E-01 6.364920735E-02 3.468093276E-01 -5.625487864E-02 + 7.312153578E-01 6.376415491E-02 3.521943390E-01 -5.691665784E-02 + 7.312365770E-01 6.388497353E-02 3.577230871E-01 -5.758754164E-02 + 7.312588692E-01 6.401196867E-02 3.633969724E-01 -5.826753378E-02 + 7.312823534E-01 6.414546072E-02 3.692322671E-01 -5.895778164E-02 + 7.313069701E-01 6.428576261E-02 3.752116561E-01 -5.965389684E-02 + 7.313328981E-01 6.443323940E-02 3.813737035E-01 -6.036166474E-02 + 7.313601375E-01 6.458825618E-02 3.877339065E-01 -6.108213961E-02 + 7.313887477E-01 6.475118548E-02 3.942970634E-01 -6.181560084E-02 + 7.314188480E-01 6.492244452E-02 4.010763168E-01 -6.256297231E-02 + 7.314504981E-01 6.510245800E-02 4.080772996E-01 -6.332454830E-02 + 7.314836979E-01 6.529167295E-02 4.153178930E-01 -6.410142034E-02 + 7.315186858E-01 6.549055129E-02 4.227954745E-01 -6.489074975E-02 + 7.315554023E-01 6.569959223E-02 4.305502176E-01 -6.569815427E-02 + 7.315939665E-01 6.591931731E-02 4.386007190E-01 -6.652487069E-02 + 7.316345572E-01 6.615027785E-02 4.469594955E-01 -6.737167388E-02 + 7.316772342E-01 6.639303267E-02 4.556440413E-01 -6.823962927E-02 + 7.317220569E-01 6.664819270E-02 4.646671712E-01 -6.912945956E-02 + 7.317692041E-01 6.691639870E-02 4.740504026E-01 -7.004217803E-02 + 7.318187356E-01 6.719830632E-02 4.838040471E-01 -7.097595185E-02 + 7.318707705E-01 6.749462336E-02 4.939759970E-01 -7.193660736E-02 + 7.319254875E-01 6.780607998E-02 5.045846105E-01 -7.292502373E-02 + 7.319830060E-01 6.813345850E-02 5.156517625E-01 -7.394234091E-02 + 7.320435047E-01 6.847756356E-02 5.272033215E-01 -7.498989999E-02 + 7.321070433E-01 6.883925200E-02 5.392616987E-01 -7.606872916E-02 + 7.321738005E-01 6.921942532E-02 5.518497229E-01 -7.717925310E-02 + 7.322440147E-01 6.961902976E-02 5.649977326E-01 -7.832053304E-02 + 7.323178053E-01 7.003905624E-02 5.787591338E-01 -7.949831337E-02 + 7.323954105E-01 7.048054785E-02 5.931547880E-01 -8.071296662E-02 + 7.324769497E-01 7.094459981E-02 6.082178354E-01 -8.196570724E-02 + 7.325626612E-01 7.143236697E-02 6.239832044E-01 -8.325769752E-02 + 7.326527238E-01 7.194506377E-02 6.404867768E-01 -8.459002525E-02 + 7.327473760E-01 7.248395681E-02 6.577509046E-01 -8.596170694E-02 + 7.328469157E-01 7.305039465E-02 6.758264303E-01 -8.737127483E-02 + 7.329515219E-01 7.364577800E-02 6.947562099E-01 -8.882291615E-02 + 7.330614924E-01 7.427158952E-02 7.145717144E-01 -9.031627327E-02 + 7.331770658E-01 7.492938638E-02 7.353091240E-01 -9.185100347E-02 + 7.332985401E-01 7.562079281E-02 7.570030093E-01 -9.342624992E-02 + 7.334262133E-01 7.634753734E-02 7.796884775E-01 -9.503939003E-02 + 7.335604429E-01 7.711142302E-02 8.033916354E-01 -9.668684751E-02 + 7.337015271E-01 7.791434973E-02 8.280966878E-01 -9.835847467E-02 + 7.338498235E-01 7.875830680E-02 8.538344502E-01 -1.000561938E-01 + 7.340056896E-01 7.964538783E-02 8.806005716E-01 -1.017735377E-01 + 7.341694832E-01 8.057781309E-02 9.083749056E-01 -1.035022810E-01 + 7.343416810E-01 8.155788481E-02 9.371155500E-01 -1.052319631E-01 + 7.345227003E-01 8.258804679E-02 9.667499065E-01 -1.069486290E-01 + 7.347129583E-01 8.367084712E-02 9.971011877E-01 -1.086261198E-01 + 7.349129319E-01 8.480899036E-02 1.027829766E+00 -1.102233678E-01 + 7.351230979E-01 8.600530028E-02 1.058758020E+00 -1.117280349E-01 + 7.353440523E-01 8.726274222E-02 1.089479804E+00 -1.131004691E-01 + 7.355762720E-01 8.858445287E-02 1.119430542E+00 -1.142898649E-01 + 7.358203530E-01 8.997370303E-02 1.147766590E+00 -1.152244583E-01 + 7.360768914E-01 9.143395722E-02 1.173471689E+00 -1.158249229E-01 + 7.363466024E-01 9.296883643E-02 1.195019960E+00 -1.159783527E-01 + 7.366300821E-01 9.458214790E-02 1.210635662E+00 -1.155745387E-01 + 7.369279861E-01 9.627791494E-02 1.220924377E+00 -1.146975756E-01 + 7.372411489E-01 9.806034714E-02 1.226601601E+00 -1.134225056E-01 + 7.375703454E-01 9.993386269E-02 1.228910327E+00 -1.118485406E-01 + 7.379163504E-01 1.019031331E-01 1.229413867E+00 -1.100875810E-01 + 7.382800579E-01 1.039730385E-01 1.229291558E+00 -1.082118154E-01 + 7.386623025E-01 1.061487272E-01 1.229285836E+00 -1.062609777E-01 + 7.390640974E-01 1.084356010E-01 1.229538560E+00 -1.042409316E-01 + 7.394864559E-01 1.108393520E-01 1.229898334E+00 -1.021378711E-01 + 7.399303913E-01 1.133659482E-01 1.230282545E+00 -9.994978458E-02 + 7.403969765E-01 1.160216630E-01 1.230659008E+00 -9.767321497E-02 + 7.408874035E-01 1.188130975E-01 1.231024504E+00 -9.530088305E-02 + 7.414029241E-01 1.217471883E-01 1.231386185E+00 -9.283000231E-02 + 7.419447899E-01 1.248312294E-01 1.231742144E+00 -9.025847912E-02 + 7.425143719E-01 1.280728728E-01 1.232096076E+00 -8.758995682E-02 + 7.431130409E-01 1.314801872E-01 1.232448339E+00 -8.481925726E-02 + 7.437422872E-01 1.350616366E-01 1.232798457E+00 -8.194530755E-02 + 7.444037199E-01 1.388261169E-01 1.233137012E+00 -7.895899564E-02 + 7.450989485E-01 1.427829713E-01 1.233464479E+00 -7.585989684E-02 + 7.458297014E-01 1.469420493E-01 1.233781219E+00 -7.264738530E-02 + 7.465977669E-01 1.513136774E-01 1.234081149E+00 -6.932192296E-02 + 7.474051118E-01 1.559087187E-01 1.234353781E+00 -6.587851793E-02 + 7.482537627E-01 1.607385874E-01 1.234605789E+00 -6.230663136E-02 + 7.491457462E-01 1.658152938E-01 1.234837532E+00 -5.860734731E-02 + 7.500832677E-01 1.711514294E-01 1.235042810E+00 -5.478337407E-02 + 7.510687709E-01 1.767602861E-01 1.235209107E+00 -5.082470179E-02 + 7.521045804E-01 1.826557815E-01 1.235339761E+00 -4.673552886E-02 + 7.531933784E-01 1.888525635E-01 1.235426426E+00 -4.252087697E-02 + 7.543377876E-01 1.953660399E-01 1.235457420E+00 -3.817785159E-02 + 7.555406690E-01 2.022123784E-01 1.235436559E+00 -3.369164467E-02 + 7.568050623E-01 2.094085962E-01 1.235366464E+00 -2.906696312E-02 + 7.581340671E-01 2.169725895E-01 1.235235453E+00 -2.430552430E-02 + 7.595309615E-01 2.249231488E-01 1.235032797E+00 -1.940262690E-02 + 7.609992623E-01 2.332800031E-01 1.234763861E+00 -1.436570939E-02 + 7.625426054E-01 2.420639545E-01 1.234411001E+00 -9.196891449E-03 + 7.641648054E-01 2.512967885E-01 1.233968139E+00 -3.897519549E-03 + 7.658699155E-01 2.610014975E-01 1.233443856E+00 1.528515946E-03 + 7.676621675E-01 2.712021470E-01 1.232819319E+00 7.087737322E-03 + 7.695460320E-01 2.819240987E-01 1.232102036E+00 1.277386304E-02 + 7.715261579E-01 2.931939960E-01 1.231285572E+00 1.858987473E-02 + 7.736074924E-01 3.050398827E-01 1.230356693E+00 2.452520095E-02 + 7.757951617E-01 3.174911141E-01 1.229310036E+00 3.055082448E-02 + 7.780946493E-01 3.305786848E-01 1.228133559E+00 3.667429835E-02 + 7.805116773E-01 3.443350792E-01 1.226850033E+00 4.288417101E-02 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.79.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.79.dat new file mode 100644 index 0000000000000000000000000000000000000000..9bbd470f534857c86eb251f47c555aea755f5de2 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.79.dat @@ -0,0 +1,201 @@ +# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model +# x = x/c +# y = y/c +# u = (u/Uinf)/0.93 +# v = (v/Uinf)/0.93 +# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil) +# VARIABLES = "x","y","u","v" +# ZONE T="x=.7863" + 7.863000035E-01 5.103440955E-02 8.341434295E-06 -1.627417191E-06 + 7.863003612E-01 5.103637278E-02 3.846852633E-05 -7.523841759E-06 + 7.863007784E-01 5.103834346E-02 7.854533033E-05 -1.535152478E-05 + 7.863011360E-01 5.104032159E-02 1.189772593E-04 -2.324443631E-05 + 7.863014936E-01 5.104231462E-02 1.701169385E-04 -3.321106487E-05 + 7.863019109E-01 5.104433000E-02 2.216422727E-04 -4.324938709E-05 + 7.863022685E-01 5.104636773E-02 2.850732708E-04 -5.558943303E-05 + 7.863026857E-01 5.104843527E-02 3.486393543E-04 -6.795534136E-05 + 7.863031030E-01 5.105053633E-02 4.263448354E-04 -8.305199299E-05 + 7.863035202E-01 5.105267838E-02 5.029755412E-04 -9.794346988E-05 + 7.863039374E-01 5.105486885E-02 5.970027996E-04 -1.161922410E-04 + 7.863043547E-01 5.105710775E-02 6.890651421E-04 -1.340675080E-04 + 7.863047719E-01 5.105940253E-02 8.017031942E-04 -1.559100201E-04 + 7.863052487E-01 5.106176063E-02 9.195217281E-04 -1.787541987E-04 + 7.863057256E-01 5.106418580E-02 1.046745805E-03 -2.034228382E-04 + 7.863062024E-01 5.106668547E-02 1.190428855E-03 -2.312596334E-04 + 7.863066792E-01 5.106926337E-02 1.338313916E-03 -2.599241270E-04 + 7.863072157E-01 5.107193068E-02 1.511906041E-03 -2.935365192E-04 + 7.863077521E-01 5.107469112E-02 1.696386258E-03 -3.292523907E-04 + 7.863082886E-01 5.107754841E-02 1.895362278E-03 -3.677853965E-04 + 7.863088250E-01 5.108051747E-02 2.119382145E-03 -4.111313319E-04 + 7.863094211E-01 5.108359829E-02 2.354734344E-03 -4.566834250E-04 + 7.863100171E-01 5.108680204E-02 2.621550811E-03 -5.083012511E-04 + 7.863106728E-01 5.109013617E-02 2.914820565E-03 -5.650110543E-04 + 7.863113284E-01 5.109360814E-02 3.226458561E-03 -6.252853782E-04 + 7.863120437E-01 5.109722912E-02 3.575637937E-03 -6.928037037E-04 + 7.863127589E-01 5.110100657E-02 3.960990347E-03 -7.672767970E-04 + 7.863135338E-01 5.110494792E-02 4.380581435E-03 -8.483516285E-04 + 7.863143086E-01 5.110906437E-02 4.830332473E-03 -9.353036294E-04 + 7.863151431E-01 5.111336708E-02 5.339566618E-03 -1.033664797E-03 + 7.863159776E-01 5.111786351E-02 5.893975496E-03 -1.140731503E-03 + 7.863169312E-01 5.112257227E-02 6.499534007E-03 -1.257669181E-03 + 7.863178253E-01 5.112749711E-02 7.158318534E-03 -1.384926145E-03 + 7.863188386E-01 5.113265291E-02 7.896215655E-03 -1.527352259E-03 + 7.863198519E-01 5.113805458E-02 8.702702820E-03 -1.682987320E-03 + 7.863209844E-01 5.114371330E-02 9.587853216E-03 -1.853770460E-03 + 7.863221169E-01 5.114964396E-02 1.054415852E-02 -2.038386185E-03 + 7.863233089E-01 5.115586147E-02 1.161867008E-02 -2.245628741E-03 + 7.863245606E-01 5.116238073E-02 1.279695798E-02 -2.472839085E-03 + 7.863258719E-01 5.116921663E-02 1.408801973E-02 -2.721742028E-03 + 7.863272429E-01 5.117639154E-02 1.550199930E-02 -2.994282404E-03 + 7.863286734E-01 5.118391663E-02 1.704074442E-02 -3.291023429E-03 + 7.863301635E-01 5.119181424E-02 1.875743642E-02 -3.621759359E-03 + 7.863317728E-01 5.120010301E-02 2.064031176E-02 -3.984414972E-03 + 7.863334417E-01 5.120880157E-02 2.269897796E-02 -4.380814265E-03 + 7.863351703E-01 5.121793598E-02 2.494722418E-02 -4.813584033E-03 + 7.863370180E-01 5.122752488E-02 2.739026211E-02 -5.283914506E-03 + 7.863389850E-01 5.123759806E-02 3.008327261E-02 -5.802047905E-03 + 7.863410115E-01 5.124817044E-02 3.301535174E-02 -6.365773734E-03 + 7.863430977E-01 5.125927925E-02 3.618973121E-02 -6.975762080E-03 + 7.863453627E-01 5.127094314E-02 3.961641714E-02 -7.633835543E-03 + 7.863476872E-01 5.128319934E-02 4.329212755E-02 -8.339235559E-03 + 7.863501906E-01 5.129607022E-02 4.720037803E-02 -9.088964202E-03 + 7.863527536E-01 5.130959302E-02 5.133946985E-02 -9.881849401E-03 + 7.863554955E-01 5.132380128E-02 5.568363518E-02 -1.071268693E-02 + 7.863583565E-01 5.133872852E-02 6.017799675E-02 -1.157086156E-02 + 7.863613367E-01 5.135441199E-02 6.477709860E-02 -1.244733017E-02 + 7.863644958E-01 5.137088895E-02 6.943359971E-02 -1.333266776E-02 + 7.863678336E-01 5.138820410E-02 7.409329712E-02 -1.421622001E-02 + 7.863713503E-01 5.140640214E-02 7.864300907E-02 -1.507586334E-02 + 7.863749862E-01 5.142552033E-02 8.306851983E-02 -1.590779796E-02 + 7.863788605E-01 5.144561455E-02 8.735191077E-02 -1.670904085E-02 + 7.863829136E-01 5.146672577E-02 9.147043526E-02 -1.747506857E-02 + 7.863871455E-01 5.148891732E-02 9.541696310E-02 -1.820436493E-02 + 7.863916159E-01 5.151223764E-02 9.919108450E-02 -1.889673620E-02 + 7.863963246E-01 5.153674260E-02 1.027923822E-01 -1.955224946E-02 + 7.864012718E-01 5.156249925E-02 1.061873436E-01 -2.016370185E-02 + 7.864064574E-01 5.158956721E-02 1.094638109E-01 -2.074822225E-02 + 7.864118814E-01 5.161801726E-02 1.126378849E-01 -2.130903304E-02 + 7.864176631E-01 5.164791644E-02 1.157303378E-01 -2.184998989E-02 + 7.864236832E-01 5.167934299E-02 1.187578589E-01 -2.237420157E-02 + 7.864300013E-01 5.171237141E-02 1.217382327E-01 -2.288494259E-02 + 7.864366770E-01 5.174708739E-02 1.246756911E-01 -2.338308096E-02 + 7.864436507E-01 5.178357288E-02 1.275814623E-01 -2.386994287E-02 + 7.864509821E-01 5.182192102E-02 1.304915845E-01 -2.435266040E-02 + 7.864587307E-01 5.186222866E-02 1.334166080E-01 -2.483305149E-02 + 7.864668369E-01 5.190459266E-02 1.363650858E-01 -2.531254105E-02 + 7.864754200E-01 5.194912106E-02 1.393470317E-01 -2.579273656E-02 + 7.864843607E-01 5.199592188E-02 1.423687041E-01 -2.627460659E-02 + 7.864938378E-01 5.204511434E-02 1.454277486E-01 -2.675747126E-02 + 7.865037322E-01 5.209682137E-02 1.485337168E-01 -2.724226378E-02 + 7.865141630E-01 5.215116590E-02 1.517011076E-01 -2.773181908E-02 + 7.865250707E-01 5.220828950E-02 1.549346894E-01 -2.822667547E-02 + 7.865366340E-01 5.226833373E-02 1.582402289E-01 -2.872746997E-02 + 7.865487337E-01 5.233144015E-02 1.616204083E-01 -2.923435532E-02 + 7.865614295E-01 5.239777640E-02 1.650804132E-01 -2.974781767E-02 + 7.865747809E-01 5.246749893E-02 1.686127037E-01 -3.026599810E-02 + 7.865888476E-01 5.254078656E-02 1.722267270E-01 -3.078965843E-02 + 7.866036296E-01 5.261781812E-02 1.759322882E-01 -3.132055327E-02 + 7.866191268E-01 5.269878358E-02 1.797331572E-01 -3.185882792E-02 + 7.866354585E-01 5.278389156E-02 1.836341321E-01 -3.240473196E-02 + 7.866526246E-01 5.287334695E-02 1.876388043E-01 -3.295832127E-02 + 7.866706848E-01 5.296737328E-02 1.917518377E-01 -3.351978585E-02 + 7.866896391E-01 5.306620896E-02 1.959657669E-01 -3.408684582E-02 + 7.867095470E-01 5.317009240E-02 2.002897710E-01 -3.466024250E-02 + 7.867304683E-01 5.327928439E-02 2.047365457E-01 -3.524188697E-02 + 7.867524624E-01 5.339406058E-02 2.093120217E-01 -3.583201766E-02 + 7.867755890E-01 5.351470038E-02 2.140226215E-01 -3.643084690E-02 + 7.867999077E-01 5.364150926E-02 2.188751996E-01 -3.703868762E-02 + 7.868254781E-01 5.377480015E-02 2.238765061E-01 -3.765586391E-02 + 7.868523598E-01 5.391490087E-02 2.290239930E-01 -3.828031197E-02 + 7.868806124E-01 5.406216532E-02 2.343282402E-01 -3.891315311E-02 + 7.869102955E-01 5.421695858E-02 2.398072779E-01 -3.955671936E-02 + 7.869414687E-01 5.437966064E-02 2.454709709E-01 -4.021159187E-02 + 7.869742513E-01 5.455068126E-02 2.513304949E-01 -4.087845609E-02 + 7.870087624E-01 5.473044515E-02 2.573976219E-01 -4.155802354E-02 + 7.870449424E-01 5.491939560E-02 2.636840641E-01 -4.225103185E-02 + 7.870830297E-01 5.511800572E-02 2.701995373E-01 -4.295630381E-02 + 7.871230841E-01 5.532677099E-02 2.769519687E-01 -4.367495328E-02 + 7.871651649E-01 5.554620549E-02 2.839679420E-01 -4.440986738E-02 + 7.872093916E-01 5.577685311E-02 2.912632525E-01 -4.516202584E-02 + 7.872558832E-01 5.601929501E-02 2.988550365E-01 -4.593248665E-02 + 7.873047590E-01 5.627413094E-02 3.067610562E-01 -4.672231525E-02 + 7.873561382E-01 5.654199421E-02 3.150036335E-01 -4.753290862E-02 + 7.874100804E-01 5.682354793E-02 3.235975504E-01 -4.836315662E-02 + 7.874668837E-01 5.711949244E-02 3.325549364E-01 -4.921439290E-02 + 7.875264883E-01 5.743056908E-02 3.419089317E-01 -5.008969083E-02 + 7.875891924E-01 5.775754526E-02 3.516837060E-01 -5.099032447E-02 + 7.876551151E-01 5.810124055E-02 3.619039059E-01 -5.191756785E-02 + 7.877243757E-01 5.846250057E-02 3.725950122E-01 -5.287269130E-02 + 7.877972126E-01 5.884223059E-02 3.837950528E-01 -5.385786295E-02 + 7.878737450E-01 5.924136937E-02 3.955191374E-01 -5.487107486E-02 + 7.879542112E-01 5.966091156E-02 4.077966213E-01 -5.591470003E-02 + 7.880387306E-01 6.010190398E-02 4.206576049E-01 -5.699092895E-02 + 7.881276608E-01 6.056543812E-02 4.341423810E-01 -5.810159445E-02 + 7.882210612E-01 6.105266884E-02 4.482855201E-01 -5.924800038E-02 + 7.883192897E-01 6.156480312E-02 4.631319642E-01 -6.043203548E-02 + 7.884225249E-01 6.210312247E-02 4.787190855E-01 -6.165489927E-02 + 7.885310054E-01 6.266895682E-02 4.950785637E-01 -6.291390210E-02 + 7.886450291E-01 6.326371431E-02 5.122538805E-01 -6.421180069E-02 + 7.887649536E-01 6.388888508E-02 5.302831531E-01 -6.555021554E-02 + 7.888909578E-01 6.454600394E-02 5.492085814E-01 -6.692972034E-02 + 7.890233994E-01 6.523671746E-02 5.690895915E-01 -6.835187227E-02 + 7.891626358E-01 6.596274674E-02 5.899754167E-01 -6.981710345E-02 + 7.893089652E-01 6.672587991E-02 6.119024158E-01 -7.132454216E-02 + 7.894627452E-01 6.752803177E-02 6.349123716E-01 -7.286795229E-02 + 7.896244526E-01 6.837118417E-02 6.590479016E-01 -7.444867492E-02 + 7.897943854E-01 6.925744563E-02 6.843502522E-01 -7.606630772E-02 + 7.899730206E-01 7.018900663E-02 7.108629346E-01 -7.771845162E-02 + 7.901607752E-01 7.116819173E-02 7.386038899E-01 -7.940038294E-02 + 7.903581262E-01 7.219742984E-02 7.675966024E-01 -8.110722154E-02 + 7.905656099E-01 7.327928394E-02 7.978511453E-01 -8.283247799E-02 + 7.907836437E-01 7.441644371E-02 8.292918205E-01 -8.455307782E-02 + 7.910128832E-01 7.561173290E-02 8.618789315E-01 -8.626343310E-02 + 7.912538052E-01 7.686812431E-02 8.955234289E-01 -8.795019239E-02 + 7.915070057E-01 7.818873972E-02 9.300633669E-01 -8.959327638E-02 + 7.917732000E-01 7.957687229E-02 9.652686119E-01 -9.116762131E-02 + 7.920529842E-01 8.103596419E-02 1.000807285E+00 -9.264150262E-02 + 7.923470736E-01 8.256964386E-02 1.036236525E+00 -9.397645295E-02 + 7.926562428E-01 8.418171853E-02 1.070164680E+00 -9.505601227E-02 + 7.929811478E-01 8.587621152E-02 1.101516843E+00 -9.581509233E-02 + 7.933226824E-01 8.765732497E-02 1.129048347E+00 -9.618441761E-02 + 7.936816812E-01 8.952948451E-02 1.151486158E+00 -9.610301256E-02 + 7.940590382E-01 9.149735421E-02 1.167987585E+00 -9.555020183E-02 + 7.944557071E-01 9.356581420E-02 1.178256989E+00 -9.454587102E-02 + 7.948725820E-01 9.574002028E-02 1.183340073E+00 -9.318900853E-02 + 7.953108549E-01 9.802536666E-02 1.184803486E+00 -9.159142524E-02 + 7.957714796E-01 1.004275456E-01 1.185202479E+00 -8.987573534E-02 + 7.962556481E-01 1.029525176E-01 1.185424685E+00 -8.807224780E-02 + 7.967645526E-01 1.056065708E-01 1.185839772E+00 -8.618637174E-02 + 7.972995043E-01 1.083962992E-01 1.186487794E+00 -8.422306925E-02 + 7.978618145E-01 1.113286316E-01 1.187277794E+00 -8.217886090E-02 + 7.984528542E-01 1.144108698E-01 1.188102245E+00 -8.005055785E-02 + 7.990741134E-01 1.176506728E-01 1.188900232E+00 -7.782832533E-02 + 7.997271419E-01 1.210560948E-01 1.189685106E+00 -7.551430166E-02 + 8.004134893E-01 1.246355996E-01 1.190466762E+00 -7.310599089E-02 + 8.011350036E-01 1.283980906E-01 1.191248894E+00 -7.059933990E-02 + 8.018933535E-01 1.323529184E-01 1.192029238E+00 -6.798376888E-02 + 8.026905060E-01 1.365099102E-01 1.192808032E+00 -6.526339054E-02 + 8.035283685E-01 1.408794224E-01 1.193582058E+00 -6.243496016E-02 + 8.044090867E-01 1.454722881E-01 1.194334984E+00 -5.949348584E-02 + 8.053348064E-01 1.502999514E-01 1.195078969E+00 -5.642896891E-02 + 8.063079119E-01 1.553743929E-01 1.195806980E+00 -5.324671790E-02 + 8.073306680E-01 1.607082486E-01 1.196514964E+00 -4.994059727E-02 + 8.084057570E-01 1.663147658E-01 1.197197199E+00 -4.650289565E-02 + 8.095358014E-01 1.722078919E-01 1.197854757E+00 -4.293859005E-02 + 8.107236624E-01 1.784022748E-01 1.198485613E+00 -3.923813999E-02 + 8.119722009E-01 1.849133074E-01 1.199066758E+00 -3.540033475E-02 + 8.132845163E-01 1.917572021E-01 1.199609876E+00 -3.142763674E-02 + 8.146640062E-01 1.989509314E-01 1.200107455E+00 -2.731109224E-02 + 8.161139488E-01 2.065124214E-01 1.200557828E+00 -2.304961905E-02 + 8.176380396E-01 2.144604474E-01 1.200963497E+00 -1.864097826E-02 + 8.192400336E-01 2.228147835E-01 1.201307535E+00 -1.407939382E-02 + 8.209239244E-01 2.315961719E-01 1.201593995E+00 -9.374571964E-03 + 8.226938844E-01 2.408264875E-01 1.201795459E+00 -4.528902005E-03 + 8.245543242E-01 2.505286336E-01 1.201932907E+00 4.584348644E-04 + 8.265098929E-01 2.607267797E-01 1.201992989E+00 5.591251887E-03 + 8.285654187E-01 2.714462280E-01 1.201977611E+00 1.086856518E-02 + 8.307260275E-01 2.827136815E-01 1.201876879E+00 1.628905721E-02 + 8.329970837E-01 2.945571244E-01 1.201693416E+00 2.183992974E-02 + 8.353842497E-01 3.070059717E-01 1.201417446E+00 2.752682008E-02 + 8.378934264E-01 3.200912178E-01 1.201024175E+00 3.330706805E-02 + 8.405308723E-01 3.338454068E-01 1.200524449E+00 3.920864314E-02 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.84.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.84.dat new file mode 100644 index 0000000000000000000000000000000000000000..8bad8022431e2dabe8d5f60326131251b9a948aa --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.84.dat @@ -0,0 +1,201 @@ +# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model +# x = x/c +# y = y/c +# u = (u/Uinf)/0.93 +# v = (v/Uinf)/0.93 +# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil) +# VARIABLES = "x","y","u","v" +# ZONE T="x=.8418" + 8.417999744E-01 3.950987384E-02 -7.242422726E-05 1.578376759E-05 + 8.418003917E-01 3.951183334E-02 -4.236457171E-04 9.248973947E-05 + 8.418008089E-01 3.951379657E-02 -7.710267091E-04 1.682531292E-04 + 8.418012261E-01 3.951577097E-02 -1.120937639E-03 2.447016595E-04 + 8.418016434E-01 3.951775655E-02 -1.465842593E-03 3.199246712E-04 + 8.418020606E-01 3.951976448E-02 -1.814891701E-03 3.962187911E-04 + 8.418024778E-01 3.952179849E-02 -2.160059987E-03 4.714989627E-04 + 8.418028951E-01 3.952385858E-02 -2.512595616E-03 5.485860747E-04 + 8.418033123E-01 3.952595592E-02 -2.861969173E-03 6.248078425E-04 + 8.418037295E-01 3.952809423E-02 -3.221262014E-03 7.033673464E-04 + 8.418042064E-01 3.953027725E-02 -3.579878248E-03 7.816692232E-04 + 8.418046832E-01 3.953250870E-02 -3.946958575E-03 8.619085420E-04 + 8.418051600E-01 3.953479603E-02 -4.315380938E-03 9.424286545E-04 + 8.418056369E-01 3.953715041E-02 -4.691571929E-03 1.024633297E-03 + 8.418061137E-01 3.953956813E-02 -5.074231420E-03 1.108352561E-03 + 8.418066502E-01 3.954206035E-02 -5.461205263E-03 1.192889176E-03 + 8.418071866E-01 3.954463452E-02 -5.862443242E-03 1.280716504E-03 + 8.418077230E-01 3.954729065E-02 -6.264599506E-03 1.368669444E-03 + 8.418082595E-01 3.955004364E-02 -6.677811034E-03 1.459065592E-03 + 8.418088555E-01 3.955289721E-02 -7.103777025E-03 1.552368631E-03 + 8.418094516E-01 3.955585510E-02 -7.531334180E-03 1.645903219E-03 + 8.418101072E-01 3.955892846E-02 -7.975848392E-03 1.743261120E-03 + 8.418107629E-01 3.956212476E-02 -8.427766152E-03 1.842312049E-03 + 8.418114185E-01 3.956544772E-02 -8.884936571E-03 1.942432369E-03 + 8.418121338E-01 3.956891224E-02 -9.360850789E-03 2.046773443E-03 + 8.418129086E-01 3.957252204E-02 -9.846172296E-03 2.153275535E-03 + 8.418136835E-01 3.957628831E-02 -1.033495087E-02 2.260465873E-03 + 8.418145180E-01 3.958021849E-02 -1.083831210E-02 2.370940056E-03 + 8.418153524E-01 3.958432376E-02 -1.135393418E-02 2.484242665E-03 + 8.418162465E-01 3.958861530E-02 -1.187456399E-02 2.598674037E-03 + 8.418171406E-01 3.959310427E-02 -1.240181457E-02 2.714584116E-03 + 8.418180943E-01 3.959779814E-02 -1.294442173E-02 2.834007610E-03 + 8.418191075E-01 3.960270807E-02 -1.349374093E-02 2.955057425E-03 + 8.418201804E-01 3.960785270E-02 -1.404481567E-02 3.076575231E-03 + 8.418213129E-01 3.961323947E-02 -1.459838450E-02 3.198738443E-03 + 8.418224454E-01 3.961888328E-02 -1.515876409E-02 3.322576173E-03 + 8.418236971E-01 3.962479532E-02 -1.572688110E-02 3.448335920E-03 + 8.418249488E-01 3.963099793E-02 -1.628655568E-02 3.572468413E-03 + 8.418262601E-01 3.963749856E-02 -1.683534309E-02 3.694381099E-03 + 8.418276906E-01 3.964431956E-02 -1.737948321E-02 3.815542441E-03 + 8.418291807E-01 3.965147212E-02 -1.792053320E-02 3.936346155E-03 + 8.418307304E-01 3.965897486E-02 -1.844838075E-02 4.054611083E-03 + 8.418323398E-01 3.966685385E-02 -1.894934475E-02 4.167402629E-03 + 8.418340087E-01 3.967511654E-02 -1.941438206E-02 4.272712860E-03 + 8.418357968E-01 3.968379647E-02 -1.984909922E-02 4.371876363E-03 + 8.418377042E-01 3.969290480E-02 -2.024946548E-02 4.464067053E-03 + 8.418396711E-01 3.970246762E-02 -2.061428316E-02 4.549058620E-03 + 8.418417573E-01 3.971251100E-02 -2.090975642E-02 4.619635642E-03 + 8.418439031E-01 3.972306103E-02 -2.112990618E-02 4.674520809E-03 + 8.418461680E-01 3.973413631E-02 -2.126334049E-02 4.711328540E-03 + 8.418486118E-01 3.974577039E-02 -2.130639926E-02 4.729368258E-03 + 8.418511152E-01 3.975799307E-02 -2.125240490E-02 4.727240652E-03 + 8.418537378E-01 3.977083042E-02 -2.109415270E-02 4.703436978E-03 + 8.418565392E-01 3.978431970E-02 -2.078088187E-02 4.647247959E-03 + 8.418594599E-01 3.979848698E-02 -2.030926757E-02 4.558016546E-03 + 8.418624997E-01 3.981337324E-02 -1.966379024E-02 4.432579037E-03 + 8.418657184E-01 3.982901573E-02 -1.884742826E-02 4.271670710E-03 + 8.418691158E-01 3.984545171E-02 -1.785480604E-02 4.074271303E-03 + 8.418726921E-01 3.986271843E-02 -1.670189388E-02 3.843786893E-03 + 8.418764472E-01 3.988086805E-02 -1.536300872E-02 3.575106617E-03 + 8.418803215E-01 3.989993408E-02 -1.385865081E-02 3.272855654E-03 + 8.418844938E-01 3.991997242E-02 -1.220179442E-02 2.940219827E-03 + 8.418887854E-01 3.994103149E-02 -1.043828484E-02 2.587026451E-03 + 8.418933749E-01 3.996316344E-02 -8.594368584E-03 2.219119109E-03 + 8.418981433E-01 3.998642042E-02 -6.704430096E-03 1.843897626E-03 + 8.419032097E-01 4.001086205E-02 -4.790461622E-03 1.466247486E-03 + 8.419085145E-01 4.003654793E-02 -2.885529073E-03 1.093801344E-03 + 8.419140577E-01 4.006354511E-02 -9.905216284E-04 7.268181071E-04 + 8.419198990E-01 4.009192064E-02 8.975161472E-04 3.649334249E-04 + 8.419260383E-01 4.012174159E-02 2.768506296E-03 1.020406762E-05 + 8.419324756E-01 4.015308246E-02 4.624560941E-03 -3.376777750E-04 + 8.419392705E-01 4.018602520E-02 6.466947030E-03 -6.789959152E-04 + 8.419464231E-01 4.022064433E-02 8.302666247E-03 -1.015045447E-03 + 8.419538736E-01 4.025703669E-02 1.012772322E-02 -1.344433753E-03 + 8.419618011E-01 4.029528052E-02 1.197381970E-02 -1.673760940E-03 + 8.419700861E-01 4.033548012E-02 1.384651568E-02 -2.004064154E-03 + 8.419787884E-01 4.037773237E-02 1.575042121E-02 -2.336241771E-03 + 8.419879079E-01 4.042214528E-02 1.769294590E-02 -2.671616618E-03 + 8.419975042E-01 4.046882316E-02 1.967678592E-02 -3.010756569E-03 + 8.420076370E-01 4.051788524E-02 2.170943841E-02 -3.354800865E-03 + 8.420182467E-01 4.056945443E-02 2.379319444E-02 -3.703641938E-03 + 8.420293927E-01 4.062365741E-02 2.594630979E-02 -4.060704261E-03 + 8.420411348E-01 4.068062827E-02 2.817040309E-02 -4.426152445E-03 + 8.420534730E-01 4.074051231E-02 3.046825901E-02 -4.800304305E-03 + 8.420664668E-01 4.080345482E-02 3.284409270E-02 -5.183643196E-03 + 8.420800567E-01 4.086961225E-02 3.529731557E-02 -5.575990304E-03 + 8.420944214E-01 4.093915224E-02 3.783259541E-02 -5.977586377E-03 + 8.421094418E-01 4.101224244E-02 4.045036435E-02 -6.387752015E-03 + 8.421252966E-01 4.108907282E-02 4.316687956E-02 -6.809012499E-03 + 8.421419263E-01 4.116982594E-02 4.597835988E-02 -7.240595296E-03 + 8.421593904E-01 4.125470668E-02 4.888811707E-02 -7.682613563E-03 + 8.421778083E-01 4.134392738E-02 5.189988762E-02 -8.135197684E-03 + 8.421971202E-01 4.143770784E-02 5.501314253E-02 -8.597997949E-03 + 8.422173858E-01 4.153627902E-02 5.822854117E-02 -9.070239961E-03 + 8.422387242E-01 4.163989052E-02 6.154971942E-02 -9.551287629E-03 + 8.422611952E-01 4.174879566E-02 6.499076635E-02 -1.004316565E-02 + 8.422847390E-01 4.186327010E-02 6.855013967E-02 -1.054533757E-02 + 8.423095345E-01 4.198359326E-02 7.223265618E-02 -1.105787326E-02 + 8.423355818E-01 4.211006686E-02 7.604292780E-02 -1.158080623E-02 + 8.423629999E-01 4.224300757E-02 7.998389006E-02 -1.211405173E-02 + 8.423917890E-01 4.238273948E-02 8.405421674E-02 -1.265625749E-02 + 8.424220085E-01 4.252961650E-02 8.826460689E-02 -1.320727915E-02 + 8.424538374E-01 4.268399999E-02 9.262987226E-02 -1.376935933E-02 + 8.424872160E-01 4.284627736E-02 9.715406597E-02 -1.434254553E-02 + 8.425223827E-01 4.301685095E-02 1.018461660E-01 -1.492725499E-02 + 8.425592780E-01 4.319614172E-02 1.067147925E-01 -1.552387699E-02 + 8.425981402E-01 4.338459671E-02 1.117699295E-01 -1.613293774E-02 + 8.426389098E-01 4.358268529E-02 1.170110032E-01 -1.675312035E-02 + 8.426818252E-01 4.379089922E-02 1.224640980E-01 -1.738553867E-02 + 8.427268863E-01 4.400976002E-02 1.281421781E-01 -1.803258061E-02 + 8.427742720E-01 4.423980415E-02 1.340584755E-01 -1.869502291E-02 + 8.428241014E-01 4.448161274E-02 1.402283460E-01 -1.937379129E-02 + 8.428764343E-01 4.473577812E-02 1.466674805E-01 -2.006980963E-02 + 8.429314494E-01 4.500293732E-02 1.533932090E-01 -2.078409120E-02 + 8.429893255E-01 4.528375715E-02 1.604202837E-01 -2.151605673E-02 + 8.430501223E-01 4.557892680E-02 1.677743047E-01 -2.226711996E-02 + 8.431140184E-01 4.588919133E-02 1.754770428E-01 -2.303998917E-02 + 8.431811929E-01 4.621531069E-02 1.835489422E-01 -2.383562177E-02 + 8.432518244E-01 4.655810446E-02 1.920133233E-01 -2.465520613E-02 + 8.433260322E-01 4.691842198E-02 2.008943558E-01 -2.549991757E-02 + 8.434040546E-01 4.729716107E-02 2.102195770E-01 -2.637102455E-02 + 8.434860706E-01 4.769525677E-02 2.200280726E-01 -2.726846375E-02 + 8.435722589E-01 4.811370745E-02 2.303299159E-01 -2.819275856E-02 + 8.436628580E-01 4.855354503E-02 2.411625087E-01 -2.914692648E-02 + 8.437580466E-01 4.901587218E-02 2.525602877E-01 -3.013227135E-02 + 8.438581824E-01 4.950182885E-02 2.645575702E-01 -3.114997409E-02 + 8.439633846E-01 5.001262948E-02 2.771905065E-01 -3.220125288E-02 + 8.440739512E-01 5.054954439E-02 2.905139029E-01 -3.328796849E-02 + 8.441902399E-01 5.111390352E-02 3.045584261E-01 -3.440836817E-02 + 8.443124294E-01 5.170711502E-02 3.193671107E-01 -3.556387872E-02 + 8.444408774E-01 5.233065411E-02 3.349729776E-01 -3.675676882E-02 + 8.445758820E-01 5.298606679E-02 3.514255285E-01 -3.798803315E-02 + 8.447177410E-01 5.367498472E-02 3.687815070E-01 -3.925880417E-02 + 8.448669314E-01 5.439911783E-02 3.871069252E-01 -4.057034850E-02 + 8.450236917E-01 5.516027287E-02 4.064387679E-01 -4.192255437E-02 + 8.451884985E-01 5.596033484E-02 4.268443584E-01 -4.331212118E-02 + 8.453617096E-01 5.680130050E-02 4.483782649E-01 -4.473970085E-02 + 8.455438018E-01 5.768525600E-02 4.710918665E-01 -4.620696604E-02 + 8.457351923E-01 5.861439928E-02 4.950571954E-01 -4.771368206E-02 + 8.459363580E-01 5.959104002E-02 5.203253031E-01 -4.925825074E-02 + 8.461478353E-01 6.061761081E-02 5.469473004E-01 -5.083855242E-02 + 8.463701010E-01 6.169665605E-02 5.749881268E-01 -5.245250091E-02 + 8.466036916E-01 6.283086538E-02 6.045084596E-01 -5.408938229E-02 + 8.468492627E-01 6.402305514E-02 6.355501413E-01 -5.574645847E-02 + 8.471074104E-01 6.527619064E-02 6.681514382E-01 -5.742147192E-02 + 8.473787308E-01 6.659339368E-02 7.023184299E-01 -5.910643563E-02 + 8.476639390E-01 6.797792763E-02 7.380533218E-01 -6.079222262E-02 + 8.479636908E-01 6.943324208E-02 7.753345370E-01 -6.246886402E-02 + 8.482787609E-01 7.096295059E-02 8.141003251E-01 -6.412167102E-02 + 8.486099839E-01 7.257086039E-02 8.540855050E-01 -6.571077555E-02 + 8.489581347E-01 7.426096499E-02 8.950034380E-01 -6.721686572E-02 + 8.493240476E-01 7.603747398E-02 9.364776611E-01 -6.861530989E-02 + 8.497086763E-01 7.790479809E-02 9.778643847E-01 -6.986200064E-02 + 8.501129746E-01 7.986757904E-02 1.018096685E+00 -7.089145482E-02 + 8.505379558E-01 8.193069696E-02 1.055869341E+00 -7.163347304E-02 + 8.509846330E-01 8.409929276E-02 1.089552999E+00 -7.201136649E-02 + 8.514541388E-01 8.637873828E-02 1.115861654E+00 -7.189004868E-02 + 8.519476652E-01 8.877471834E-02 1.134212136E+00 -7.132364064E-02 + 8.524664640E-01 9.129317850E-02 1.145586967E+00 -7.041767240E-02 + 8.530117273E-01 9.394039214E-02 1.151507139E+00 -6.926812232E-02 + 8.535848856E-01 9.672292322E-02 1.153804421E+00 -6.795272976E-02 + 8.541873097E-01 9.964770824E-02 1.154285669E+00 -6.652014703E-02 + 8.548205495E-01 1.027220041E-01 1.154392958E+00 -6.499584764E-02 + 8.554862142E-01 1.059534624E-01 1.154850364E+00 -6.337758899E-02 + 8.561858535E-01 1.093501225E-01 1.155631542E+00 -6.166452914E-02 + 8.569212556E-01 1.129204109E-01 1.156573057E+00 -5.985390022E-02 + 8.576942682E-01 1.166732237E-01 1.157562613E+00 -5.795050785E-02 + 8.585067987E-01 1.206178814E-01 1.158540487E+00 -5.595181510E-02 + 8.593608737E-01 1.247641966E-01 1.159489512E+00 -5.384710059E-02 + 8.602585793E-01 1.291224658E-01 1.160419464E+00 -5.163650215E-02 + 8.612022400E-01 1.337035447E-01 1.161334515E+00 -4.931143671E-02 + 8.621940613E-01 1.385188103E-01 1.162248731E+00 -4.686165974E-02 + 8.632366657E-01 1.435802281E-01 1.163160801E+00 -4.428955540E-02 + 8.643324971E-01 1.489003897E-01 1.164064646E+00 -4.158884287E-02 + 8.654843569E-01 1.544925272E-01 1.164957166E+00 -3.875249624E-02 + 8.666951656E-01 1.603705436E-01 1.165836453E+00 -3.578102589E-02 + 8.679677844E-01 1.665490568E-01 1.166703463E+00 -3.266303986E-02 + 8.693055511E-01 1.730434000E-01 1.167539954E+00 -2.939756960E-02 + 8.707116246E-01 1.798697561E-01 1.168354630E+00 -2.598191053E-02 + 8.721896410E-01 1.870450675E-01 1.169147849E+00 -2.241009101E-02 + 8.737431765E-01 1.945872009E-01 1.169916868E+00 -1.868238859E-02 + 8.753761649E-01 2.025148869E-01 1.170657158E+00 -1.479528844E-02 + 8.770925999E-01 2.108478397E-01 1.171370149E+00 -1.074816193E-02 + 8.788967729E-01 2.196067870E-01 1.172048926E+00 -6.534857210E-03 + 8.807932138E-01 2.288134992E-01 1.172674417E+00 -2.167258877E-03 + 8.827865720E-01 2.384908646E-01 1.173261762E+00 2.361478284E-03 + 8.848817945E-01 2.486629486E-01 1.173804879E+00 7.046997081E-03 + 8.870841861E-01 2.593550384E-01 1.174302220E+00 1.189018413E-02 + 8.893991709E-01 2.705937028E-01 1.174744964E+00 1.688923500E-02 + 8.918324709E-01 2.824069262E-01 1.175136685E+00 2.203599177E-02 + 8.943901658E-01 2.948240042E-01 1.175462842E+00 2.732636966E-02 + 8.970786333E-01 3.078759015E-01 1.175703406E+00 3.273636848E-02 + 8.999045491E-01 3.215950131E-01 1.175871253E+00 3.827232495E-02 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.90.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.90.dat new file mode 100644 index 0000000000000000000000000000000000000000..fc4e8c5e06dff9264745286d50cfd6e31c5637d4 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.90.dat @@ -0,0 +1,201 @@ +# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model +# x = x/c +# y = y/c +# u = (u/Uinf)/0.93 +# v = (v/Uinf)/0.93 +# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil) +# VARIABLES = "x","y","u","v" +# ZONE T="x=.8973" + 8.973000050E-01 2.680198476E-02 -4.771555177E-05 1.145582792E-05 + 8.973004222E-01 2.680393495E-02 -4.993027542E-04 1.197541933E-04 + 8.973008990E-01 2.680588886E-02 -9.544482455E-04 2.289641707E-04 + 8.973013163E-01 2.680785395E-02 -1.406369964E-03 3.373304789E-04 + 8.973017931E-01 2.680983208E-02 -1.863583224E-03 4.470541026E-04 + 8.973022699E-01 2.681183070E-02 -2.322176937E-03 5.570055800E-04 + 8.973026872E-01 2.681385353E-02 -2.782907337E-03 6.675950717E-04 + 8.973031640E-01 2.681590617E-02 -3.251580754E-03 7.799449377E-04 + 8.973036408E-01 2.681799233E-02 -3.726293333E-03 8.939190884E-04 + 8.973041773E-01 2.682011947E-02 -4.210042767E-03 1.009884174E-03 + 8.973046541E-01 2.682229131E-02 -4.699908663E-03 1.127477619E-03 + 8.973051310E-01 2.682451345E-02 -5.199416541E-03 1.247257227E-03 + 8.973056674E-01 2.682679333E-02 -5.710686557E-03 1.369941514E-03 + 8.973062038E-01 2.682913281E-02 -6.233549211E-03 1.495383447E-03 + 8.973067403E-01 2.683154121E-02 -6.767664570E-03 1.623490010E-03 + 8.973073363E-01 2.683402225E-02 -7.319395896E-03 1.755935256E-03 + 8.973079324E-01 2.683658339E-02 -7.885102183E-03 1.891586347E-03 + 8.973085284E-01 2.683923021E-02 -8.466660976E-03 2.031174256E-03 + 8.973091245E-01 2.684197016E-02 -9.065865539E-03 2.174941823E-03 + 8.973097801E-01 2.684481069E-02 -9.684916586E-03 2.323422814E-03 + 8.973104954E-01 2.684775554E-02 -1.032583602E-02 2.477305243E-03 + 8.973111510E-01 2.685081586E-02 -1.098352112E-02 2.635077341E-03 + 8.973119259E-01 2.685399726E-02 -1.166880876E-02 2.799490234E-03 + 8.973126411E-01 2.685730904E-02 -1.237479877E-02 2.969001420E-03 + 8.973134756E-01 2.686075866E-02 -1.310998201E-02 3.145391587E-03 + 8.973142505E-01 2.686435357E-02 -1.386376005E-02 3.326238832E-03 + 8.973151445E-01 2.686810307E-02 -1.465211343E-02 3.515537130E-03 + 8.973160386E-01 2.687201835E-02 -1.546890382E-02 3.711587982E-03 + 8.973169923E-01 2.687610686E-02 -1.631480269E-02 3.914569505E-03 + 8.973179460E-01 2.688037977E-02 -1.718926989E-02 4.124501254E-03 + 8.973189592E-01 2.688484825E-02 -1.809993573E-02 4.343206063E-03 + 8.973200321E-01 2.688952349E-02 -1.904701442E-02 4.570544232E-03 + 8.973211646E-01 2.689441666E-02 -2.002658136E-02 4.805680830E-03 + 8.973223567E-01 2.689953893E-02 -2.104337513E-02 5.049859174E-03 + 8.973235488E-01 2.690490521E-02 -2.209735475E-02 5.303054117E-03 + 8.973248601E-01 2.691052668E-02 -2.319333516E-02 5.566269159E-03 + 8.973261714E-01 2.691642009E-02 -2.432751097E-02 5.838640500E-03 + 8.973276019E-01 2.692259662E-02 -2.550149523E-02 6.120622624E-03 + 8.973290920E-01 2.692907304E-02 -2.671935782E-02 6.413322873E-03 + 8.973306417E-01 2.693586610E-02 -2.798092552E-02 6.716571748E-03 + 8.973322511E-01 2.694299258E-02 -2.928518318E-02 7.030004635E-03 + 8.973339796E-01 2.695047110E-02 -3.063380346E-02 7.354153320E-03 + 8.973357677E-01 2.695831843E-02 -3.202211112E-02 7.687923498E-03 + 8.973376751E-01 2.696655318E-02 -3.345897049E-02 8.033588529E-03 + 8.973396420E-01 2.697519958E-02 -3.494025022E-02 8.390043862E-03 + 8.973417282E-01 2.698427625E-02 -3.646525368E-02 8.757049218E-03 + 8.973439336E-01 2.699380741E-02 -3.803467751E-02 9.134807624E-03 + 8.973461986E-01 2.700381540E-02 -3.963647410E-02 9.520540945E-03 + 8.973485827E-01 2.701432630E-02 -4.127786309E-02 9.916027077E-03 + 8.973511457E-01 2.702536434E-02 -4.296073318E-02 1.032182574E-02 + 8.973537683E-01 2.703695931E-02 -4.467640817E-02 1.073577348E-02 + 8.973565698E-01 2.704913914E-02 -4.642220587E-02 1.115717553E-02 + 8.973594904E-01 2.706193365E-02 -4.819149897E-02 1.158453431E-02 + 8.973625898E-01 2.707537636E-02 -4.996500537E-02 1.201338507E-02 + 8.973658085E-01 2.708949894E-02 -5.174296349E-02 1.244382281E-02 + 8.973692060E-01 2.710433677E-02 -5.352432281E-02 1.287578046E-02 + 8.973727822E-01 2.711992711E-02 -5.529298261E-02 1.330534089E-02 + 8.973765373E-01 2.713630907E-02 -5.703230947E-02 1.372855809E-02 + 8.973804712E-01 2.715352364E-02 -5.872315168E-02 1.414092258E-02 + 8.973845840E-01 2.717161179E-02 -6.033696979E-02 1.453585364E-02 + 8.973889351E-01 2.719062194E-02 -6.184389070E-02 1.490637287E-02 + 8.973935246E-01 2.721059695E-02 -6.324317306E-02 1.525239833E-02 + 8.973983526E-01 2.723159082E-02 -6.451503187E-02 1.556931343E-02 + 8.974033594E-01 2.725365385E-02 -6.563524902E-02 1.585141011E-02 + 8.974086642E-01 2.727684006E-02 -6.658013910E-02 1.609318703E-02 + 8.974142671E-01 2.730120905E-02 -6.734275818E-02 1.629316807E-02 + 8.974201083E-01 2.732681856E-02 -6.788506359E-02 1.644255966E-02 + 8.974263072E-01 2.735373750E-02 -6.824038178E-02 1.654937491E-02 + 8.974327445E-01 2.738202736E-02 -6.843531877E-02 1.661996543E-02 + 8.974395990E-01 2.741176262E-02 -6.847936660E-02 1.665674523E-02 + 8.974467516E-01 2.744301409E-02 -6.838446856E-02 1.666267030E-02 + 8.974542618E-01 2.747586183E-02 -6.816309690E-02 1.664092764E-02 + 8.974621296E-01 2.751038596E-02 -6.783687323E-02 1.659669913E-02 + 8.974704742E-01 2.754667401E-02 -6.740797311E-02 1.653083228E-02 + 8.974791765E-01 2.758481540E-02 -6.690272689E-02 1.644952595E-02 + 8.974883556E-01 2.762490511E-02 -6.633067876E-02 1.635507494E-02 + 8.974980116E-01 2.766704373E-02 -6.569237262E-02 1.624783874E-02 + 8.975081444E-01 2.771133557E-02 -6.498748809E-02 1.612800919E-02 + 8.975188136E-01 2.775789052E-02 -6.421613693E-02 1.599585824E-02 + 8.975300193E-01 2.780682407E-02 -6.338016689E-02 1.585193723E-02 + 8.975417614E-01 2.785825916E-02 -6.247484311E-02 1.569550298E-02 + 8.975541592E-01 2.791232243E-02 -6.150236353E-02 1.552716270E-02 + 8.975671530E-01 2.796914987E-02 -6.046321988E-02 1.534709148E-02 + 8.975808024E-01 2.802888118E-02 -5.935269594E-02 1.515453681E-02 + 8.975951672E-01 2.809166722E-02 -5.816427991E-02 1.494849287E-02 + 8.976103067E-01 2.815766446E-02 -5.689582974E-02 1.472873427E-02 + 8.976261616E-01 2.822703496E-02 -5.554567650E-02 1.449510641E-02 + 8.976428509E-01 2.829995193E-02 -5.410831049E-02 1.424693130E-02 + 8.976604342E-01 2.837659605E-02 -5.258376524E-02 1.398436259E-02 + 8.976788521E-01 2.845716104E-02 -5.097160116E-02 1.370747201E-02 + 8.976982236E-01 2.854184620E-02 -4.926770180E-02 1.341578923E-02 + 8.977186084E-01 2.863086015E-02 -4.746347293E-02 1.310828142E-02 + 8.977400064E-01 2.872442640E-02 -4.555944726E-02 1.278525405E-02 + 8.977625370E-01 2.882277966E-02 -4.355259985E-02 1.244659629E-02 + 8.977862000E-01 2.892616019E-02 -4.144047201E-02 1.209257916E-02 + 8.978110552E-01 2.903482877E-02 -3.922089189E-02 1.172297075E-02 + 8.978372216E-01 2.914905362E-02 -3.689230606E-02 1.133787073E-02 + 8.978646994E-01 2.926912159E-02 -3.445192799E-02 1.093725022E-02 + 8.978936076E-01 2.939532883E-02 -3.189131990E-02 1.052054018E-02 + 8.979239464E-01 2.952799201E-02 -2.921122126E-02 1.008822024E-02 + 8.979558945E-01 2.966743894E-02 -2.640886232E-02 9.640666656E-03 + 8.979893923E-01 2.981401980E-02 -2.348390408E-02 9.179055691E-03 + 8.980246782E-01 2.996809594E-02 -2.043056116E-02 8.702498861E-03 + 8.980617523E-01 3.013005294E-02 -1.724514551E-02 8.211117238E-03 + 8.981007338E-01 3.030029312E-02 -1.392415725E-02 7.705038413E-03 + 8.981416821E-01 3.047923930E-02 -1.046078652E-02 7.184183691E-03 + 8.981847167E-01 3.066734038E-02 -6.851178594E-03 6.648659240E-03 + 8.982300162E-01 3.086506017E-02 -3.091179300E-03 6.099138409E-03 + 8.982775807E-01 3.107289411E-02 8.228528313E-04 5.536815617E-03 + 8.983275890E-01 3.129135817E-02 4.903591704E-03 4.959572107E-03 + 8.983801007E-01 3.152099252E-02 9.161534719E-03 4.366959445E-03 + 8.984353542E-01 3.176237643E-02 1.360891201E-02 3.758366685E-03 + 8.984934688E-01 3.201610595E-02 1.825011522E-02 3.133472521E-03 + 8.985545039E-01 3.228281066E-02 2.310092375E-02 2.491416177E-03 + 8.986186385E-01 3.256316110E-02 2.817438729E-02 1.832217909E-03 + 8.986861110E-01 3.285784647E-02 3.348601609E-02 1.155976439E-03 + 8.987570405E-01 3.316760808E-02 3.905562311E-02 4.596301587E-04 + 8.988315463E-01 3.349320963E-02 4.491058737E-02 -2.582433517E-04 + 8.989098668E-01 3.383547068E-02 5.106254667E-02 -9.985660436E-04 + 8.989922404E-01 3.419523314E-02 5.752998963E-02 -1.762489090E-03 + 8.990787864E-01 3.457339853E-02 6.433264166E-02 -2.551233862E-03 + 8.991697431E-01 3.497090563E-02 7.150192559E-02 -3.365361365E-03 + 8.992654085E-01 3.538874909E-02 7.906910032E-02 -4.205409437E-03 + 8.993659616E-01 3.582796082E-02 8.707220107E-02 -5.074826069E-03 + 8.994716406E-01 3.628963605E-02 9.553006291E-02 -5.974610802E-03 + 8.995826840E-01 3.677492961E-02 1.044747531E-01 -6.906094495E-03 + 8.996994495E-01 3.728504479E-02 1.139407083E-01 -7.870590314E-03 + 8.998221755E-01 3.782124817E-02 1.239644587E-01 -8.869396523E-03 + 8.999512196E-01 3.838488087E-02 1.345902085E-01 -9.902575985E-03 + 9.000868201E-01 3.897734359E-02 1.458865702E-01 -1.097090915E-02 + 9.002293348E-01 3.960010782E-02 1.578770727E-01 -1.207719464E-02 + 9.003791809E-01 4.025473073E-02 1.706071645E-01 -1.322217472E-02 + 9.005366564E-01 4.094283283E-02 1.841276586E-01 -1.440677885E-02 + 9.007022381E-01 4.166613147E-02 1.984930634E-01 -1.563186385E-02 + 9.008762836E-01 4.242642596E-02 2.137792557E-01 -1.689832844E-02 + 9.010591507E-01 4.322560877E-02 2.300540358E-01 -1.820458472E-02 + 9.012514353E-01 4.406566918E-02 2.473911941E-01 -1.954940893E-02 + 9.014535546E-01 4.494870082E-02 2.658344209E-01 -2.093546838E-02 + 9.016660452E-01 4.587689787E-02 2.854475975E-01 -2.236248553E-02 + 9.018893242E-01 4.685257003E-02 3.063287735E-01 -2.383007295E-02 + 9.021241069E-01 4.787814617E-02 3.285513222E-01 -2.533731423E-02 + 9.023708105E-01 4.895618185E-02 3.521876037E-01 -2.688296139E-02 + 9.026302099E-01 5.008935928E-02 3.773518503E-01 -2.846121229E-02 + 9.029028416E-01 5.128049478E-02 4.041396677E-01 -3.006730601E-02 + 9.031894207E-01 5.253255740E-02 4.326296747E-01 -3.170273453E-02 + 9.034906626E-01 5.384866521E-02 4.628791511E-01 -3.336365148E-02 + 9.038073421E-01 5.523208529E-02 4.949682653E-01 -3.504559025E-02 + 9.041401744E-01 5.668627098E-02 5.289817452E-01 -3.674450517E-02 + 9.044900537E-01 5.821483582E-02 5.649995804E-01 -3.845211864E-02 + 9.048578143E-01 5.982158706E-02 6.030976176E-01 -4.015090689E-02 + 9.052444100E-01 6.151052192E-02 6.432717443E-01 -4.182725772E-02 + 9.056507349E-01 6.328584254E-02 6.854920983E-01 -4.347782582E-02 + 9.060778618E-01 6.515197456E-02 7.297167182E-01 -4.508745670E-02 + 9.065268636E-01 6.711355597E-02 7.758169174E-01 -4.663786292E-02 + 9.069988132E-01 6.917546690E-02 8.235635161E-01 -4.810755700E-02 + 9.074949026E-01 7.134284824E-02 8.726020455E-01 -4.946869612E-02 + 9.080163240E-01 7.362108678E-02 9.219199419E-01 -5.065112934E-02 + 9.085645080E-01 7.601585984E-02 9.698850513E-01 -5.157563090E-02 + 9.091406465E-01 7.853312045E-02 1.014803052E+00 -5.218906701E-02 + 9.097462893E-01 8.117914200E-02 1.054447174E+00 -5.242966115E-02 + 9.103829265E-01 8.396050334E-02 1.086676717E+00 -5.227099359E-02 + 9.110521078E-01 8.688412607E-02 1.110342026E+00 -5.174497142E-02 + 9.117555022E-01 8.995729685E-02 1.125081539E+00 -5.092252046E-02 + 9.124948978E-01 9.318765253E-02 1.131447315E+00 -4.989552498E-02 + 9.132721424E-01 9.658323973E-02 1.133359790E+00 -4.875631630E-02 + 9.140890837E-01 1.001525149E-01 1.133469462E+00 -4.751718417E-02 + 9.149478674E-01 1.039043516E-01 1.133120656E+00 -4.616335779E-02 + 9.158505201E-01 1.078480929E-01 1.133012772E+00 -4.468433186E-02 + 9.167993665E-01 1.119935513E-01 1.133343935E+00 -4.306765273E-02 + 9.177967310E-01 1.163510531E-01 1.133986235E+00 -4.131393507E-02 + 9.188451171E-01 1.209314391E-01 1.134735942E+00 -3.942473978E-02 + 9.199471474E-01 1.257461011E-01 1.135467529E+00 -3.740723059E-02 + 9.211055636E-01 1.308070421E-01 1.136170626E+00 -3.525864705E-02 + 9.223231673E-01 1.361268312E-01 1.136861205E+00 -3.297007456E-02 + 9.236031175E-01 1.417187452E-01 1.137553811E+00 -3.053658642E-02 + 9.249485135E-01 1.475966722E-01 1.138262868E+00 -2.795063518E-02 + 9.263626933E-01 1.537752450E-01 1.138991594E+00 -2.520756423E-02 + 9.278492332E-01 1.602698565E-01 1.139738917E+00 -2.230156958E-02 + 9.294118285E-01 1.670966595E-01 1.140502453E+00 -1.923439838E-02 + 9.310543537E-01 1.742726564E-01 1.141282916E+00 -1.600370929E-02 + 9.327808619E-01 1.818156838E-01 1.142079592E+00 -1.260909904E-02 + 9.345956445E-01 1.897445470E-01 1.142891049E+00 -9.049088694E-03 + 9.365033507E-01 1.980789751E-01 1.143717408E+00 -5.323003046E-03 + 9.385085702E-01 2.068396956E-01 1.144555688E+00 -1.430912991E-03 + 9.406163692E-01 2.160485089E-01 1.145396113E+00 2.619898180E-03 + 9.428319335E-01 2.257283628E-01 1.146239758E+00 6.828776095E-03 + 9.451608658E-01 2.359033376E-01 1.147084475E+00 1.119514462E-02 + 9.476089478E-01 2.465987504E-01 1.147924423E+00 1.571526378E-02 + 9.501821995E-01 2.578412294E-01 1.148754716E+00 2.038705908E-02 + 9.528871179E-01 2.696587443E-01 1.149573326E+00 2.520260029E-02 + 9.557303786E-01 2.820807397E-01 1.150367379E+00 3.015901521E-02 + 9.587190151E-01 2.951380908E-01 1.151115417E+00 3.522908688E-02 + 9.618605971E-01 3.088633418E-01 1.151822329E+00 4.042499512E-02 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.95.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.95.dat new file mode 100644 index 0000000000000000000000000000000000000000..d57917f2d20804ce97dc5a09271700f3006a8d3e --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/cfdData/cfl3d_vel_sa_xbyc0.95.dat @@ -0,0 +1,201 @@ +# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model +# x = x/c +# y = y/c +# u = (u/Uinf)/0.93 +# v = (v/Uinf)/0.93 +# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil) +# VARIABLES = "x","y","u","v" +# ZONE T="x=.9528" + 9.527999759E-01 1.286614314E-02 -2.247451084E-05 5.897508800E-06 + 9.528004527E-01 1.286808401E-02 -5.175634287E-04 1.358887093E-04 + 9.528009892E-01 1.287003048E-02 -1.017235336E-03 2.670623362E-04 + 9.528014660E-01 1.287198626E-02 -1.514200238E-03 3.975685977E-04 + 9.528019428E-01 1.287395693E-02 -2.014070051E-03 5.287991371E-04 + 9.528024197E-01 1.287594624E-02 -2.519807080E-03 6.616348401E-04 + 9.528029561E-01 1.287796069E-02 -3.033302259E-03 7.964470424E-04 + 9.528034329E-01 1.288000401E-02 -3.548922716E-03 9.319111123E-04 + 9.528039694E-01 1.288208272E-02 -4.074405413E-03 1.069870777E-03 + 9.528044462E-01 1.288420055E-02 -4.606716800E-03 1.209751819E-03 + 9.528049827E-01 1.288636308E-02 -5.150246900E-03 1.352451858E-03 + 9.528055787E-01 1.288857684E-02 -5.711396690E-03 1.499924227E-03 + 9.528061152E-01 1.289084554E-02 -6.278944667E-03 1.648988342E-03 + 9.528067112E-01 1.289317571E-02 -6.865408737E-03 1.803093008E-03 + 9.528073072E-01 1.289557386E-02 -7.464735303E-03 1.960579539E-03 + 9.528079033E-01 1.289804559E-02 -8.080391213E-03 2.122325590E-03 + 9.528085589E-01 1.290059555E-02 -8.719536476E-03 2.290351316E-03 + 9.528092146E-01 1.290323213E-02 -9.374934249E-03 2.462534001E-03 + 9.528098702E-01 1.290596090E-02 -1.005251799E-02 2.640661318E-03 + 9.528105855E-01 1.290878933E-02 -1.075287163E-02 2.824781463E-03 + 9.528113008E-01 1.291172300E-02 -1.147582661E-02 3.014775924E-03 + 9.528120756E-01 1.291477121E-02 -1.223086659E-02 3.213340882E-03 + 9.528128505E-01 1.291793957E-02 -1.300925110E-02 3.418009263E-03 + 9.528136253E-01 1.292123739E-02 -1.381504536E-02 3.629853018E-03 + 9.528145194E-01 1.292467210E-02 -1.465842221E-02 3.851712449E-03 + 9.528154135E-01 1.292825304E-02 -1.553210802E-02 4.081529565E-03 + 9.528163075E-01 1.293198857E-02 -1.643813774E-02 4.319792148E-03 + 9.528172612E-01 1.293588802E-02 -1.738570444E-02 4.569130018E-03 + 9.528182745E-01 1.293996070E-02 -1.837086305E-02 4.828414880E-03 + 9.528193474E-01 1.294421777E-02 -1.939724758E-02 5.098461639E-03 + 9.528204203E-01 1.294866856E-02 -2.046489716E-02 5.379428621E-03 + 9.528216124E-01 1.295332517E-02 -2.158296481E-02 5.673801526E-03 + 9.528228045E-01 1.295819879E-02 -2.274354734E-02 5.979428533E-03 + 9.528240561E-01 1.296330243E-02 -2.395179868E-02 6.297524553E-03 + 9.528253675E-01 1.296864729E-02 -2.521244064E-02 6.629490294E-03 + 9.528267980E-01 1.297424734E-02 -2.653431520E-02 6.977754645E-03 + 9.528282285E-01 1.298011746E-02 -2.790686674E-02 7.339460775E-03 + 9.528297782E-01 1.298627071E-02 -2.933994308E-02 7.717111148E-03 + 9.528313279E-01 1.299272291E-02 -3.082927503E-02 8.109607734E-03 + 9.528330564E-01 1.299949083E-02 -3.238916397E-02 8.520858362E-03 + 9.528347850E-01 1.300659031E-02 -3.401210159E-02 8.948907256E-03 + 9.528366327E-01 1.301403996E-02 -3.570345789E-02 9.395148605E-03 + 9.528385997E-01 1.302185748E-02 -3.746584803E-02 9.860167280E-03 + 9.528406262E-01 1.303006243E-02 -3.929745406E-02 1.034351718E-02 + 9.528427124E-01 1.303867623E-02 -4.120213166E-02 1.084632333E-02 + 9.528449774E-01 1.304771937E-02 -4.319069535E-02 1.137157623E-02 + 9.528473616E-01 1.305721514E-02 -4.525720328E-02 1.191763114E-02 + 9.528498054E-01 1.306718681E-02 -4.739797115E-02 1.248353813E-02 + 9.528523684E-01 1.307765860E-02 -4.961820319E-02 1.307050232E-02 + 9.528551102E-01 1.308865752E-02 -5.192365497E-02 1.368024666E-02 + 9.528579712E-01 1.310020965E-02 -5.431203172E-02 1.431225613E-02 + 9.528610110E-01 1.311234571E-02 -5.678853393E-02 1.496802457E-02 + 9.528641701E-01 1.312509459E-02 -5.933764577E-02 1.564341411E-02 + 9.528674483E-01 1.313848794E-02 -6.195877492E-02 1.633830927E-02 + 9.528709650E-01 1.315255929E-02 -6.465829164E-02 1.705422252E-02 + 9.528746009E-01 1.316734497E-02 -6.742743403E-02 1.778905839E-02 + 9.528784752E-01 1.318287943E-02 -7.026484609E-02 1.854254119E-02 + 9.528825283E-01 1.319920365E-02 -7.316383719E-02 1.931318268E-02 + 9.528867602E-01 1.321635675E-02 -7.610974461E-02 2.009700239E-02 + 9.528912306E-01 1.323438156E-02 -7.907503843E-02 2.088687941E-02 + 9.528959394E-01 1.325332373E-02 -8.205639571E-02 2.168180421E-02 + 9.529008269E-01 1.327323075E-02 -8.503332734E-02 2.247645147E-02 + 9.529060125E-01 1.329415012E-02 -8.798781782E-02 2.326629870E-02 + 9.529114962E-01 1.331613585E-02 -9.089272469E-02 2.404435910E-02 + 9.529172182E-01 1.333924290E-02 -9.371516854E-02 2.480212599E-02 + 9.529232383E-01 1.336352713E-02 -9.638666362E-02 2.552156709E-02 + 9.529295564E-01 1.338905096E-02 -9.887127578E-02 2.619329654E-02 + 9.529361725E-01 1.341587584E-02 -1.011638120E-01 2.681578696E-02 + 9.529431462E-01 1.344406977E-02 -1.032429785E-01 2.738369070E-02 + 9.529505372E-01 1.347370353E-02 -1.050937399E-01 2.789314650E-02 + 9.529582262E-01 1.350484975E-02 -1.067062914E-01 2.834164910E-02 + 9.529663324E-01 1.353758667E-02 -1.080815047E-01 2.872947417E-02 + 9.529748559E-01 1.357199531E-02 -1.091862693E-01 2.904793993E-02 + 9.529837966E-01 1.360816229E-02 -1.100741774E-01 2.931110933E-02 + 9.529932141E-01 1.364617702E-02 -1.107779294E-01 2.952762693E-02 + 9.530031085E-01 1.368613355E-02 -1.113157272E-01 2.970238961E-02 + 9.530135393E-01 1.372813247E-02 -1.117048115E-01 2.983999811E-02 + 9.530244470E-01 1.377227716E-02 -1.119607836E-01 2.994458750E-02 + 9.530359507E-01 1.381867938E-02 -1.120976061E-01 3.001989797E-02 + 9.530480504E-01 1.386745274E-02 -1.121102348E-01 3.006472625E-02 + 9.530607462E-01 1.391872019E-02 -1.120264083E-01 3.008644097E-02 + 9.530740976E-01 1.397260837E-02 -1.118540987E-01 3.008729406E-02 + 9.530881047E-01 1.402925141E-02 -1.115971357E-01 3.006836213E-02 + 9.531028867E-01 1.408879180E-02 -1.112579331E-01 3.003042564E-02 + 9.531183839E-01 1.415137574E-02 -1.108380631E-01 2.997395396E-02 + 9.531346560E-01 1.421716064E-02 -1.103381366E-01 2.989919856E-02 + 9.531518221E-01 1.428631041E-02 -1.097485647E-01 2.980392240E-02 + 9.531698227E-01 1.435899641E-02 -1.090786979E-01 2.969081141E-02 + 9.531887174E-01 1.443539932E-02 -1.083278283E-01 2.955983765E-02 + 9.532086253E-01 1.451571006E-02 -1.074943468E-01 2.941072732E-02 + 9.532295465E-01 1.460012887E-02 -1.065765992E-01 2.924323454E-02 + 9.532515407E-01 1.468886621E-02 -1.055726707E-01 2.905705757E-02 + 9.532746673E-01 1.478214189E-02 -1.044809073E-01 2.885176428E-02 + 9.532989264E-01 1.488018874E-02 -1.032930017E-01 2.862571180E-02 + 9.533244371E-01 1.498325076E-02 -1.020131558E-01 2.838056907E-02 + 9.533513188E-01 1.509158500E-02 -1.006395668E-01 2.811587229E-02 + 9.533795118E-01 1.520546060E-02 -9.917023033E-02 2.783137932E-02 + 9.534091353E-01 1.532516256E-02 -9.760265052E-02 2.752678841E-02 + 9.534403086E-01 1.545098703E-02 -9.593429416E-02 2.720181085E-02 + 9.534730911E-01 1.558324881E-02 -9.416310489E-02 2.685600333E-02 + 9.535075426E-01 1.572227664E-02 -9.228403866E-02 2.648901194E-02 + 9.535437226E-01 1.586841606E-02 -9.029766172E-02 2.610149607E-02 + 9.535818100E-01 1.602203213E-02 -8.820156753E-02 2.569307759E-02 + 9.536218047E-01 1.618350670E-02 -8.599332720E-02 2.526362427E-02 + 9.536638260E-01 1.635324210E-02 -8.367012441E-02 2.481297031E-02 + 9.537080526E-01 1.653166115E-02 -8.122896403E-02 2.434095182E-02 + 9.537544847E-01 1.671920903E-02 -7.866755873E-02 2.384755388E-02 + 9.538033605E-01 1.691635139E-02 -7.598356158E-02 2.333348244E-02 + 9.538546801E-01 1.712357812E-02 -7.317390293E-02 2.279817127E-02 + 9.539086223E-01 1.734140888E-02 -7.023539394E-02 2.224166505E-02 + 9.539653659E-01 1.757038198E-02 -6.716445833E-02 2.166390978E-02 + 9.540249705E-01 1.781107113E-02 -6.395723671E-02 2.106484026E-02 + 9.540876746E-01 1.806407236E-02 -6.060894951E-02 2.044427022E-02 + 9.541535378E-01 1.833001897E-02 -5.711350590E-02 1.980271004E-02 + 9.542227983E-01 1.860957034E-02 -5.347073078E-02 1.914148405E-02 + 9.542955756E-01 1.890342496E-02 -4.967083409E-02 1.845791750E-02 + 9.543721080E-01 1.921231300E-02 -4.570409283E-02 1.775172353E-02 + 9.544525146E-01 1.953700557E-02 -4.156119376E-02 1.702219062E-02 + 9.545370936E-01 1.987830736E-02 -3.723121807E-02 1.626840048E-02 + 9.546259642E-01 2.023707330E-02 -3.269896656E-02 1.548981201E-02 + 9.547193646E-01 2.061419189E-02 -2.795275487E-02 1.468522567E-02 + 9.548175931E-01 2.101060562E-02 -2.297769859E-02 1.385513693E-02 + 9.549208283E-01 2.142730169E-02 -1.775350235E-02 1.299567241E-02 + 9.550293088E-01 2.186531574E-02 -1.226334367E-02 1.210491545E-02 + 9.551433921E-01 2.232573926E-02 -6.484589539E-03 1.118133217E-02 + 9.552632570E-01 2.280971967E-02 -3.871272202E-04 1.022384036E-02 + 9.553893209E-01 2.331846021E-02 6.049024407E-03 9.229921736E-03 + 9.555217624E-01 2.385322936E-02 1.285274606E-02 8.198110387E-03 + 9.556609988E-01 2.441535890E-02 2.006549202E-02 7.128160447E-03 + 9.558073878E-01 2.500624955E-02 2.771308459E-02 6.016038358E-03 + 9.559612870E-01 2.562736906E-02 3.583754227E-02 4.860233050E-03 + 9.561229944E-01 2.628026716E-02 4.447726905E-02 3.658801550E-03 + 9.562930465E-01 2.696656995E-02 5.367071182E-02 2.409649314E-03 + 9.564717412E-01 2.768798359E-02 6.345703453E-02 1.110834768E-03 + 9.566595554E-01 2.844630741E-02 7.389888167E-02 -2.383130050E-04 + 9.568570256E-01 2.924342826E-02 8.508701622E-02 -1.636554371E-03 + 9.570646286E-01 3.008133359E-02 9.705948085E-02 -3.087454475E-03 + 9.572827816E-01 3.096210584E-02 1.098750606E-01 -4.593732301E-03 + 9.575121403E-01 3.188794106E-02 1.236038432E-01 -6.155729759E-03 + 9.577532411E-01 3.286114335E-02 1.383197159E-01 -7.772476878E-03 + 9.580066800E-01 3.388413787E-02 1.541205347E-01 -9.443466552E-03 + 9.582730532E-01 3.495947272E-02 1.711107939E-01 -1.116646733E-02 + 9.585530758E-01 3.608982265E-02 1.894332916E-01 -1.293540467E-02 + 9.588474035E-01 3.727800399E-02 2.091338933E-01 -1.475286298E-02 + 9.591568112E-01 3.852697462E-02 2.303297967E-01 -1.661576517E-02 + 9.594820142E-01 3.983984888E-02 2.531565130E-01 -1.852010749E-02 + 9.598239064E-01 4.121989012E-02 2.777135074E-01 -2.046164684E-02 + 9.601832628E-01 4.267053679E-02 3.041249514E-01 -2.243480273E-02 + 9.605610371E-01 4.419540241E-02 3.325777352E-01 -2.442752570E-02 + 9.609580636E-01 4.579828680E-02 3.633176386E-01 -2.642520145E-02 + 9.613754749E-01 4.748317599E-02 3.963423669E-01 -2.842622995E-02 + 9.618142247E-01 4.925426841E-02 4.317822158E-01 -3.041890077E-02 + 9.622753859E-01 5.111597478E-02 4.697780013E-01 -3.239087015E-02 + 9.627602100E-01 5.307292938E-02 5.104573369E-01 -3.432847187E-02 + 9.632697701E-01 5.513000488E-02 5.538908839E-01 -3.621640056E-02 + 9.638054371E-01 5.729232728E-02 6.001932025E-01 -3.802413866E-02 + 9.643685222E-01 5.956527963E-02 6.493836045E-01 -3.971987218E-02 + 9.649603963E-01 6.195452437E-02 7.012466788E-01 -4.130186886E-02 + 9.655825496E-01 6.446600705E-02 7.555276155E-01 -4.273841903E-02 + 9.662365317E-01 6.710597873E-02 8.117366433E-01 -4.399082810E-02 + 9.669239521E-01 6.988102198E-02 8.689808249E-01 -4.500556737E-02 + 9.676465988E-01 7.279804349E-02 9.259084463E-01 -4.571373388E-02 + 9.684061408E-01 7.586430013E-02 9.794876575E-01 -4.598145559E-02 + 9.692046046E-01 7.908744365E-02 1.025662303E+00 -4.571823776E-02 + 9.700438976E-01 8.247548342E-02 1.062613487E+00 -4.498505592E-02 + 9.709261656E-01 8.603686839E-02 1.088867545E+00 -4.385472834E-02 + 9.718535542E-01 8.978045732E-02 1.104904294E+00 -4.242994264E-02 + 9.728283882E-01 9.371558577E-02 1.112358928E+00 -4.080991820E-02 + 9.738530517E-01 9.785203636E-02 1.113987327E+00 -3.906219453E-02 + 9.749301672E-01 1.022001207E-01 1.112861633E+00 -3.718847409E-02 + 9.760624170E-01 1.067706645E-01 1.111576796E+00 -3.516165912E-02 + 9.772526026E-01 1.115750521E-01 1.110834360E+00 -3.296119347E-02 + 9.785036445E-01 1.166252345E-01 1.110678673E+00 -3.059036657E-02 + 9.798187017E-01 1.219338030E-01 1.110953331E+00 -2.805960923E-02 + 9.812010527E-01 1.275139749E-01 1.111446142E+00 -2.538319305E-02 + 9.826540947E-01 1.333796233E-01 1.112009048E+00 -2.257225290E-02 + 9.841815233E-01 1.395453960E-01 1.112594128E+00 -1.963485964E-02 + 9.857870936E-01 1.460266113E-01 1.113226295E+00 -1.656613871E-02 + 9.874747992E-01 1.528394222E-01 1.113925934E+00 -1.336478721E-02 + 9.892488122E-01 1.600008011E-01 1.114702940E+00 -1.002925355E-02 + 9.911136031E-01 1.675285548E-01 1.115558743E+00 -6.560289767E-03 + 9.930738211E-01 1.754414588E-01 1.116492748E+00 -2.957872581E-03 + 9.951343536E-01 1.837592125E-01 1.117494822E+00 7.756965351E-04 + 9.973002672E-01 1.925025135E-01 1.118558884E+00 4.625072237E-03 + 9.995770454E-01 2.016931474E-01 1.119675994E+00 8.599760942E-03 + 1.001970291E+00 2.113540024E-01 1.120841026E+00 1.269780658E-02 + 1.004485965E+00 2.215091139E-01 1.122047544E+00 1.691865176E-02 + 1.007130265E+00 2.321837991E-01 1.123286963E+00 2.125987411E-02 + 1.009909987E+00 2.434046268E-01 1.124554276E+00 2.571963146E-02 + 1.012831807E+00 2.551995218E-01 1.125836015E+00 3.029074892E-02 + 1.015903234E+00 2.675978839E-01 1.127111316E+00 3.495529294E-02 + 1.019131780E+00 2.806305885E-01 1.128380537E+00 3.972667083E-02 + 1.022525430E+00 2.943300605E-01 1.129636526E+00 4.460107908E-02 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_cp.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_cp.dat new file mode 100644 index 0000000000000000000000000000000000000000..10ebdd7c374c99bdd1fde56222aace49f98b88be --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_cp.dat @@ -0,0 +1,55 @@ +# experimental surface pressure coefficient data from Coles & Wadcock NACA 4412 experiment +# alpha=13.87, Re=1.52 million +# x and y have been normalized by chord +# variables="x","y","cp" + 1.000000E+00 -2.000000E-04 -3.490138E-01 + 9.914000E-01 -1.300000E-03 -2.554269E-01 + 9.118000E-01 -2.000000E-03 -2.505875E-02 + 8.187000E-01 -3.500000E-03 9.012508E-02 + 7.647000E-01 -4.700000E-03 1.261201E-01 + 6.596000E-01 -7.800000E-03 1.837125E-01 + 5.876000E-01 -1.040000E-02 2.341051E-01 + 5.166000E-01 -1.330000E-02 2.772994E-01 + 4.456000E-01 -1.650000E-02 3.204932E-01 + 3.764000E-01 -1.900000E-02 3.636870E-01 + 3.064000E-01 -2.230000E-02 4.212794E-01 + 2.708000E-01 -2.410000E-02 4.500751E-01 + 2.394000E-01 -2.560000E-02 4.788713E-01 + 2.074000E-01 -2.700000E-02 5.076675E-01 + 1.596000E-01 -2.860000E-02 5.724578E-01 + 1.280000E-01 -2.900000E-02 6.372490E-01 + 8.100000E-02 -2.780000E-02 7.884283E-01 + 5.060000E-02 -2.490000E-02 9.180102E-01 + 2.830000E-02 -2.040000E-02 9.900002E-01 + 8.200000E-03 -1.160000E-02 1.693139E-01 + -3.000000E-04 3.100000E-03 -6.209000E+00 + 1.450000E-02 2.620000E-02 -5.121951E+00 + 2.960000E-02 3.670000E-02 -3.682151E+00 + 4.890000E-02 4.680000E-02 -3.408589E+00 + 7.520000E-02 5.770000E-02 -3.077435E+00 + 1.009000E-01 6.630000E-02 -2.767878E+00 + 1.283000E-01 7.380000E-02 -2.559107E+00 + 1.524000E-01 7.940000E-02 -2.422326E+00 + 1.832000E-01 8.530000E-02 -2.235152E+00 + 2.145000E-01 9.000000E-02 -2.098371E+00 + 2.482000E-01 9.390000E-02 -1.947192E+00 + 2.827000E-01 9.660000E-02 -1.817610E+00 + 3.189000E-01 9.830000E-02 -1.680829E+00 + 3.508000E-01 9.880000E-02 -1.558445E+00 + 3.899000E-01 9.840000E-02 -1.392869E+00 + 4.251000E-01 9.689999E-02 -1.256088E+00 + 4.602000E-01 9.490000E-02 -1.133705E+00 + 4.941000E-01 9.240000E-02 -1.018521E+00 + 5.297000E-01 8.920000E-02 -8.961382E-01 + 5.663000E-01 8.540000E-02 -7.953520E-01 + 5.971000E-01 8.180001E-02 -7.017651E-01 + 6.283000E-01 7.770000E-02 -6.297750E-01 + 6.590000E-01 7.330000E-02 -5.721827E-01 + 7.198001E-01 6.370000E-02 -4.929938E-01 + 7.893000E-01 5.090000E-02 -4.426007E-01 + 8.878000E-01 2.990000E-02 -4.066057E-01 + 9.307000E-01 1.950000E-02 -4.066057E-01 + 9.509000E-01 1.440000E-02 -4.066057E-01 + 9.741001E-01 8.300000E-03 -3.994069E-01 + 9.856000E-01 5.200000E-03 -3.994069E-01 + 1.000000E+00 -2.000000E-04 -3.562126E-01 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.68.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.68.dat new file mode 100644 index 0000000000000000000000000000000000000000..302775e75a426f83f12d97686cf44e1ba2410c43 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.68.dat @@ -0,0 +1,158 @@ +# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case +# The lines were drawn by hand to be "visually" normal to the airfoil surface; +# however, whether it is normal or not does not matter because the CFD is compared along the same lines. +# +# In these lines, experimental data were interpolated via Tecplot software onto +# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002 +# (except at the last station, where the points start at d/c=.006 off the surface) +# Points were also added AT the surface, with u=v=uv=0 +# +# x and y are normalized by chord +# u and v are each normalized by Uref +# uv = u'v' is normalized by Uref^2 +# Uref is the reference velocity, located about 1 chord below and behind the airfoil +# (from CFD tests, Uref is roughly 0.93*Uinf) +# +# VARIABLES = "x","y","u","v","uv" +# ZONE T="x=.6753" + 6.753000021E-01 7.061254978E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00 + 6.759567857E-01 7.461255044E-02 3.766300082E-01 -3.263309970E-02 -4.801076837E-03 + 6.762852073E-01 7.661254704E-02 4.497177601E-01 -4.193454981E-02 -5.804286338E-03 + 6.766136289E-01 7.861255109E-02 5.290364027E-01 -4.912014678E-02 -6.435789634E-03 + 6.769419909E-01 8.061254770E-02 6.116222739E-01 -5.543234572E-02 -6.822993979E-03 + 6.772704124E-01 8.261255175E-02 6.947275996E-01 -6.078020111E-02 -7.014558651E-03 + 6.775988340E-01 8.461254835E-02 7.794129252E-01 -6.561090797E-02 -6.971711293E-03 + 6.779271960E-01 8.661255240E-02 8.637731671E-01 -7.025842369E-02 -6.684282329E-03 + 6.782556176E-01 8.861254901E-02 9.457306266E-01 -7.522905618E-02 -6.185996812E-03 + 6.785839796E-01 9.061254561E-02 1.023281574E+00 -7.897278666E-02 -5.280557089E-03 + 6.789124012E-01 9.261254966E-02 1.095219851E+00 -8.141420782E-02 -4.228893202E-03 + 6.792408228E-01 9.461254627E-02 1.150194645E+00 -8.326884359E-02 -3.101346781E-03 + 6.795691848E-01 9.661255032E-02 1.191896200E+00 -8.425498754E-02 -2.130608307E-03 + 6.798976064E-01 9.861254692E-02 1.219955206E+00 -8.388996124E-02 -1.357913134E-03 + 6.802260280E-01 1.006125510E-01 1.235602975E+00 -8.263828605E-02 -7.938637864E-04 + 6.805543900E-01 1.026125476E-01 1.243665457E+00 -8.130621910E-02 -4.584156268E-04 + 6.808828115E-01 1.046125516E-01 1.247490883E+00 -7.935258746E-02 -2.817256027E-04 + 6.812112331E-01 1.066125482E-01 1.249961734E+00 -7.761543989E-02 -1.891786815E-04 + 6.815395951E-01 1.086125523E-01 1.250074744E+00 -7.540167123E-02 -1.591265900E-04 + 6.818680167E-01 1.106125489E-01 1.249999404E+00 -7.125055045E-02 -1.356313587E-04 + 6.821964383E-01 1.126125455E-01 1.250255942E+00 -6.774529815E-02 -1.227829489E-04 + 6.825248003E-01 1.146125495E-01 1.250752449E+00 -6.415303797E-02 -1.142631008E-04 + 6.828532219E-01 1.166125461E-01 1.251266003E+00 -6.126778945E-02 -1.079964713E-04 + 6.831816435E-01 1.186125502E-01 1.251625419E+00 -5.857495964E-02 -1.000038101E-04 + 6.835100055E-01 1.206125468E-01 1.251910686E+00 -5.614645779E-02 -9.383133147E-05 + 6.838384271E-01 1.226125509E-01 1.252184391E+00 -5.421170965E-02 -9.196456813E-05 + 6.841668487E-01 1.246125475E-01 1.252166510E+00 -5.338876694E-02 -8.963276923E-05 + 6.844952106E-01 1.266125441E-01 1.252107024E+00 -5.196940526E-02 -8.348586562E-05 + 6.848236322E-01 1.286125481E-01 1.252179861E+00 -5.017524213E-02 -8.323506336E-05 + 6.851519942E-01 1.306125522E-01 1.252390146E+00 -4.831943288E-02 -8.298431203E-05 + 6.854804158E-01 1.326125562E-01 1.252336264E+00 -4.670364410E-02 -8.236675785E-05 + 6.858088374E-01 1.346125454E-01 1.251928568E+00 -4.551243037E-02 -8.199999866E-05 + 6.861371994E-01 1.366125494E-01 1.251515985E+00 -4.418617114E-02 -8.199999866E-05 + 6.864656210E-01 1.386125535E-01 1.251138926E+00 -4.270188138E-02 -7.769648073E-05 + 6.867940426E-01 1.406125426E-01 1.250664949E+00 -4.123624042E-02 -7.352599641E-05 + 6.871224046E-01 1.426125467E-01 1.250204563E+00 -3.983714804E-02 -7.352599641E-05 + 6.874508262E-01 1.446125507E-01 1.250038981E+00 -3.843194619E-02 -7.352599641E-05 + 6.877792478E-01 1.466125548E-01 1.249919891E+00 -3.706405312E-02 -7.352599641E-05 + 6.881076097E-01 1.486125439E-01 1.249816656E+00 -3.565491736E-02 -7.344602636E-05 + 6.884360313E-01 1.506125480E-01 1.250089645E+00 -3.423605487E-02 -7.178880333E-05 + 6.887644529E-01 1.526125520E-01 1.250525355E+00 -3.283983096E-02 -7.086448022E-05 + 6.890928149E-01 1.546125561E-01 1.250617385E+00 -3.140464053E-02 -7.048834959E-05 + 6.894212365E-01 1.566125453E-01 1.250682354E+00 -3.005442955E-02 -7.011215348E-05 + 6.897496581E-01 1.586125493E-01 1.250884056E+00 -2.868286707E-02 -6.504116027E-05 + 6.900780201E-01 1.606125534E-01 1.251155138E+00 -2.726954408E-02 -6.081500032E-05 + 6.904064417E-01 1.626125425E-01 1.251343131E+00 -2.587703057E-02 -6.081500032E-05 + 6.907348633E-01 1.646125466E-01 1.251399398E+00 -2.454965189E-02 -5.987461554E-05 + 6.910632253E-01 1.666125506E-01 1.251170278E+00 -2.339009196E-02 -5.728520046E-05 + 6.913916469E-01 1.686125547E-01 1.251250505E+00 -2.218569443E-02 -5.703440183E-05 + 6.917200685E-01 1.706125438E-01 1.251213670E+00 -2.091247775E-02 -5.678360321E-05 + 6.920484304E-01 1.726125479E-01 1.251176834E+00 -1.977118477E-02 -5.307559331E-05 + 6.923768520E-01 1.746125519E-01 1.251139998E+00 -1.853161678E-02 -5.234100172E-05 + 6.927052140E-01 1.766125560E-01 1.251144409E+00 -1.733308472E-02 -5.234100172E-05 + 6.930336356E-01 1.786125451E-01 1.251220703E+00 -1.606158353E-02 -5.234100172E-05 + 6.933620572E-01 1.806125492E-01 1.251216292E+00 -1.476513501E-02 -5.234100172E-05 + 6.936904192E-01 1.826125532E-01 1.251052141E+00 -1.349520870E-02 -5.234100172E-05 + 6.940188408E-01 1.846125424E-01 1.250876188E+00 -1.227628719E-02 -5.135105675E-05 + 6.943472624E-01 1.866125464E-01 1.250779152E+00 -1.115044765E-02 -4.630334661E-05 + 6.946756244E-01 1.886125505E-01 1.250591874E+00 -1.001649257E-02 -4.605259164E-05 + 6.950040460E-01 1.906125546E-01 1.250431061E+00 -8.911981247E-03 -4.580179302E-05 + 6.953324676E-01 1.926125437E-01 1.250260472E+00 -7.840353064E-03 -4.555099440E-05 + 6.956608295E-01 1.946125478E-01 1.250073671E+00 -6.714500021E-03 -4.458361946E-05 + 6.959892511E-01 1.966125518E-01 1.249873638E+00 -5.658250302E-03 -4.386699948E-05 + 6.963176727E-01 1.986125559E-01 1.249753833E+00 -4.582621623E-03 -4.386699948E-05 + 6.966460347E-01 2.006125450E-01 1.249698162E+00 -3.426744370E-03 -4.386699948E-05 + 6.969744563E-01 2.026125491E-01 1.249594688E+00 -2.293128287E-03 -3.981473492E-05 + 6.973028779E-01 2.046125531E-01 1.249399543E+00 -1.274837065E-03 -3.129046672E-05 + 6.976312399E-01 2.066125423E-01 1.249235392E+00 -2.728465770E-04 -3.115599975E-05 + 6.979596615E-01 2.086125463E-01 1.249210119E+00 5.500707775E-04 -3.115599975E-05 + 6.982880831E-01 2.106125504E-01 1.249184132E+00 1.473983401E-03 -3.115599975E-05 + 6.986164451E-01 2.126125544E-01 1.249028683E+00 2.314922633E-03 -3.115599975E-05 + 6.989448667E-01 2.146125436E-01 1.248878837E+00 3.317159368E-03 -3.115599975E-05 + 6.992732286E-01 2.166125476E-01 1.248820424E+00 4.258651752E-03 -3.115599975E-05 + 6.996016502E-01 2.186125517E-01 1.248879075E+00 5.208074581E-03 -3.115599975E-05 + 6.999300718E-01 2.206125557E-01 1.248857975E+00 6.185388193E-03 -3.115599975E-05 + 7.002584338E-01 2.226125449E-01 1.248730063E+00 7.181296591E-03 -3.115599975E-05 + 7.005868554E-01 2.246125489E-01 1.248631597E+00 8.153270930E-03 -3.115599975E-05 + 7.009152770E-01 2.266125530E-01 1.248593092E+00 9.026516229E-03 -3.115599975E-05 + 7.012436390E-01 2.286125422E-01 1.248432040E+00 9.966412559E-03 -3.115599975E-05 + 7.015720606E-01 2.306125462E-01 1.248270988E+00 1.082430407E-02 -3.115599975E-05 + 7.019004822E-01 2.326125503E-01 1.248163342E+00 1.168878563E-02 -2.841017886E-05 + 7.022288442E-01 2.346125543E-01 1.248018622E+00 1.252854988E-02 -2.757356015E-05 + 7.025572658E-01 2.366125435E-01 1.248081446E+00 1.319059264E-02 -2.410537127E-05 + 7.028856874E-01 2.386125475E-01 1.247992396E+00 1.384142227E-02 -2.268199933E-05 + 7.032140493E-01 2.406125516E-01 1.247757077E+00 1.455561072E-02 -2.268199933E-05 + 7.035424709E-01 2.426125556E-01 1.247602701E+00 1.517212950E-02 -2.268199933E-05 + 7.038708925E-01 2.446125448E-01 1.247520089E+00 1.565044560E-02 -2.268199933E-05 + 7.041992545E-01 2.466125488E-01 1.247378588E+00 1.623137295E-02 -2.268199933E-05 + 7.045276761E-01 2.486125529E-01 1.247200131E+00 1.679132320E-02 -2.268199933E-05 + 7.048560977E-01 2.506125569E-01 1.247149348E+00 1.737648249E-02 -2.268199933E-05 + 7.051844597E-01 2.526125610E-01 1.247046113E+00 1.799358800E-02 -2.268199933E-05 + 7.055128813E-01 2.546125352E-01 1.246988654E+00 1.857863739E-02 -1.754675395E-05 + 7.058413029E-01 2.566125393E-01 1.246857762E+00 1.925368421E-02 -1.634089494E-05 + 7.061696649E-01 2.586125433E-01 1.246657610E+00 2.010379359E-02 -1.609013998E-05 + 7.064980865E-01 2.606125474E-01 1.246499062E+00 2.074785158E-02 -1.502366922E-05 + 7.068264484E-01 2.626125515E-01 1.246416450E+00 2.116585337E-02 -1.420799981E-05 + 7.071548700E-01 2.646125555E-01 1.246346712E+00 2.160292305E-02 -1.420799981E-05 + 7.074832916E-01 2.666125596E-01 1.246179461E+00 2.203149535E-02 -1.420799981E-05 + 7.078116536E-01 2.686125636E-01 1.246009707E+00 2.256400511E-02 -1.420799981E-05 + 7.081400752E-01 2.706125379E-01 1.245705009E+00 2.317809872E-02 -1.420799981E-05 + 7.084684968E-01 2.726125419E-01 1.245254159E+00 2.406087331E-02 -1.420799981E-05 + 7.087968588E-01 2.746125460E-01 1.244800925E+00 2.503712103E-02 -1.420799981E-05 + 7.091252804E-01 2.766125500E-01 1.244457245E+00 2.559790015E-02 -1.420799981E-05 + 7.094537020E-01 2.786125541E-01 1.244137883E+00 2.618719824E-02 -1.420799981E-05 + 7.097820640E-01 2.806125581E-01 1.243744969E+00 2.671771124E-02 -1.420799981E-05 + 7.101104856E-01 2.826125622E-01 1.243348718E+00 2.727422304E-02 -1.420799981E-05 + 7.104389071E-01 2.846125364E-01 1.242988467E+00 2.791864797E-02 -1.599454845E-05 + 7.107672691E-01 2.866125405E-01 1.242527604E+00 2.871193364E-02 -2.105317253E-05 + 7.110956907E-01 2.886125445E-01 1.241964817E+00 2.990373969E-02 -2.080237209E-05 + 7.114241123E-01 2.906125486E-01 1.241626859E+00 3.058674932E-02 -2.055157347E-05 + 7.117524743E-01 2.926125526E-01 1.241206765E+00 3.085537255E-02 -2.030082032E-05 + 7.120808959E-01 2.946125567E-01 1.240858912E+00 3.126307204E-02 -2.005002170E-05 + 7.124093175E-01 2.966125607E-01 1.240563869E+00 3.138681874E-02 -1.979922308E-05 + 7.127376795E-01 2.986125350E-01 1.240352511E+00 3.154996783E-02 -1.954846994E-05 + 7.130661011E-01 3.006125391E-01 1.240061402E+00 3.186630458E-02 -1.929766950E-05 + 7.133944631E-01 3.026125431E-01 1.239678741E+00 3.255941346E-02 -1.904691635E-05 + 7.137228847E-01 3.046125472E-01 1.239280343E+00 3.347361088E-02 -1.879611773E-05 + 7.140513062E-01 3.066125512E-01 1.238976598E+00 3.440975025E-02 -1.854531911E-05 + 7.143796682E-01 3.086125553E-01 1.238660216E+00 3.472363576E-02 -1.784463166E-05 + 7.147080898E-01 3.106125593E-01 1.238139391E+00 3.458727151E-02 -1.423917911E-05 + 7.150365114E-01 3.126125634E-01 1.237634063E+00 3.443295136E-02 -1.740539119E-05 + 7.153648734E-01 3.146125376E-01 1.237103462E+00 3.478360921E-02 -1.754221375E-05 + 7.156932950E-01 3.166125417E-01 1.236680388E+00 3.544282168E-02 -1.729141513E-05 + 7.160217166E-01 3.186125457E-01 1.236329079E+00 3.660459444E-02 -1.562430771E-05 + 7.163500786E-01 3.206125498E-01 1.236015797E+00 3.821304440E-02 -1.420799981E-05 + 7.166785002E-01 3.226125538E-01 1.235740304E+00 3.985913843E-02 -1.420799981E-05 + 7.170069218E-01 3.246125579E-01 1.235491753E+00 4.132989049E-02 -1.420799981E-05 + 7.173352838E-01 3.266125619E-01 1.235219598E+00 4.215421155E-02 -1.420799981E-05 + 7.176637053E-01 3.286125362E-01 1.234634042E+00 4.176226258E-02 -1.420799981E-05 + 7.179921269E-01 3.306125402E-01 1.233951449E+00 4.127880558E-02 -1.420799981E-05 + 7.183204889E-01 3.326125443E-01 1.233115077E+00 4.093660042E-02 -1.420799981E-05 + 7.186489105E-01 3.346125484E-01 1.232524276E+00 4.023338482E-02 -1.420799981E-05 + 7.189773321E-01 3.366125524E-01 1.232059956E+00 4.003284499E-02 -1.420799981E-05 + 7.193056941E-01 3.386125565E-01 1.231920838E+00 4.082088172E-02 -1.420799981E-05 + 7.196341157E-01 3.406125605E-01 1.231912613E+00 4.226571321E-02 -1.420799981E-05 + 7.199625373E-01 3.426125348E-01 1.231987953E+00 4.408393800E-02 -1.420799981E-05 + 7.202908993E-01 3.446125388E-01 1.232033968E+00 4.569632933E-02 -1.420799981E-05 + 7.206193209E-01 3.466125429E-01 1.231737137E+00 4.678410664E-02 -1.420799981E-05 + 7.209476829E-01 3.486125469E-01 1.230995536E+00 4.773338512E-02 -1.420799981E-05 + 7.212761045E-01 3.506125510E-01 1.230722189E+00 4.811954126E-02 -1.420799981E-05 + 7.216045260E-01 3.526125550E-01 1.230178952E+00 4.850462824E-02 -1.420799981E-05 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.73.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.73.dat new file mode 100644 index 0000000000000000000000000000000000000000..39cd16a57c7e5dd36ef7eb96939c994c230bdda5 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.73.dat @@ -0,0 +1,158 @@ +# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case +# The lines were drawn by hand to be "visually" normal to the airfoil surface; +# however, whether it is normal or not does not matter because the CFD is compared along the same lines. +# +# In these lines, experimental data were interpolated via Tecplot software onto +# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002 +# (except at the last station, where the points start at d/c=.006 off the surface) +# Points were also added AT the surface, with u=v=uv=0 +# +# x and y are normalized by chord +# u and v are each normalized by Uref +# uv = u'v' is normalized by Uref^2 +# Uref is the reference velocity, located about 1 chord below and behind the airfoil +# (from CFD tests, Uref is roughly 0.93*Uinf) +# +# VARIABLES = "x","y","u","v","uv" +# ZONE T="x=.7308" + 7.307999730E-01 6.140028313E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00 + 7.315027714E-01 6.540028006E-02 2.460389435E-01 -1.118231285E-02 -4.866447765E-03 + 7.318542004E-01 6.740028411E-02 3.027755022E-01 -1.887738332E-02 -6.025253795E-03 + 7.322056293E-01 6.940028071E-02 3.632766604E-01 -2.641601302E-02 -6.996803917E-03 + 7.325569987E-01 7.140028477E-02 4.275860488E-01 -3.310875595E-02 -7.790642790E-03 + 7.329084277E-01 7.340028137E-02 4.947403371E-01 -3.962697461E-02 -8.393688127E-03 + 7.332597971E-01 7.540028542E-02 5.663315058E-01 -4.633923620E-02 -8.812271059E-03 + 7.336112261E-01 7.740028203E-02 6.380730271E-01 -5.073582008E-02 -9.012225084E-03 + 7.339625955E-01 7.940028608E-02 7.108792663E-01 -5.527078360E-02 -8.980887942E-03 + 7.343140244E-01 8.140028268E-02 7.881935835E-01 -5.939846113E-02 -8.746957406E-03 + 7.346653938E-01 8.340028673E-02 8.631260395E-01 -6.324747205E-02 -8.300439455E-03 + 7.350168228E-01 8.540028334E-02 9.318752289E-01 -6.641685218E-02 -7.553379983E-03 + 7.353681922E-01 8.740027994E-02 9.950000048E-01 -6.861566752E-02 -6.594378036E-03 + 7.357196212E-01 8.940028399E-02 1.052679420E+00 -7.027729601E-02 -5.525717512E-03 + 7.360709906E-01 9.140028059E-02 1.101194501E+00 -7.179231942E-02 -4.366827197E-03 + 7.364224195E-01 9.340028465E-02 1.140115857E+00 -7.191567868E-02 -3.231036942E-03 + 7.367737889E-01 9.540028125E-02 1.168442965E+00 -7.182988524E-02 -2.363423351E-03 + 7.371252179E-01 9.740028530E-02 1.187021255E+00 -7.021193951E-02 -1.593506313E-03 + 7.374765873E-01 9.940028191E-02 1.199545503E+00 -6.875113398E-02 -1.074227272E-03 + 7.378280163E-01 1.014002860E-01 1.205913186E+00 -6.667427719E-02 -7.031608839E-04 + 7.381793857E-01 1.034002826E-01 1.209588051E+00 -6.339611858E-02 -4.339116567E-04 + 7.385308146E-01 1.054002866E-01 1.212179780E+00 -6.015462056E-02 -2.837763459E-04 + 7.388821840E-01 1.074002832E-01 1.213817477E+00 -5.666319281E-02 -1.937195630E-04 + 7.392336130E-01 1.094002873E-01 1.214875817E+00 -5.302368477E-02 -1.247844921E-04 + 7.395849824E-01 1.114002839E-01 1.215988994E+00 -5.001813546E-02 -7.487426774E-05 + 7.399364114E-01 1.134002805E-01 1.216803074E+00 -4.696431756E-02 -6.154076982E-05 + 7.402877808E-01 1.154002845E-01 1.217205882E+00 -4.505649954E-02 -5.359080751E-05 + 7.406392097E-01 1.174002811E-01 1.217390299E+00 -4.318412393E-02 -5.983356095E-05 + 7.409905791E-01 1.194002852E-01 1.217800260E+00 -4.142305627E-02 -6.045844202E-05 + 7.413420081E-01 1.214002818E-01 1.217967629E+00 -4.038942978E-02 -4.886287570E-05 + 7.416933775E-01 1.234002858E-01 1.218205333E+00 -3.909044713E-02 -3.619287963E-05 + 7.420448065E-01 1.254002899E-01 1.218478084E+00 -3.759451210E-02 -3.101808397E-05 + 7.423961759E-01 1.274002790E-01 1.218686104E+00 -3.616545722E-02 -2.676284566E-05 + 7.427476048E-01 1.294002831E-01 1.218880177E+00 -3.495412320E-02 -2.475433030E-05 + 7.430989742E-01 1.314002872E-01 1.219096780E+00 -3.386140987E-02 -2.936207238E-05 + 7.434504032E-01 1.334002763E-01 1.219152212E+00 -3.259103000E-02 -2.882533227E-05 + 7.438017726E-01 1.354002804E-01 1.219405532E+00 -3.134607524E-02 -2.828868310E-05 + 7.441532016E-01 1.374002844E-01 1.219372511E+00 -2.997978963E-02 -2.775194298E-05 + 7.445046306E-01 1.394002885E-01 1.219471097E+00 -2.874771692E-02 -2.721520286E-05 + 7.448559999E-01 1.414002776E-01 1.219464064E+00 -2.749080025E-02 -2.667855551E-05 + 7.452074289E-01 1.434002817E-01 1.219615698E+00 -2.618347108E-02 -2.614181540E-05 + 7.455587983E-01 1.454002857E-01 1.219648838E+00 -2.491835319E-02 -2.699287506E-05 + 7.459102273E-01 1.474002898E-01 1.219619870E+00 -2.370466478E-02 -2.811221202E-05 + 7.462615967E-01 1.494002789E-01 1.219560623E+00 -2.249744534E-02 -2.784388744E-05 + 7.466130257E-01 1.514002830E-01 1.219444513E+00 -2.125034481E-02 -2.757551738E-05 + 7.469643950E-01 1.534002870E-01 1.219368100E+00 -1.996828802E-02 -2.730719461E-05 + 7.473158240E-01 1.554002762E-01 1.219339132E+00 -1.873773523E-02 -2.703882456E-05 + 7.476671934E-01 1.574002802E-01 1.219310284E+00 -1.766919158E-02 -2.677049997E-05 + 7.480186224E-01 1.594002843E-01 1.219281316E+00 -1.664281078E-02 -2.650212991E-05 + 7.483699918E-01 1.614002883E-01 1.219406843E+00 -1.560051925E-02 -2.623380533E-05 + 7.487214208E-01 1.634002775E-01 1.219536781E+00 -1.453834306E-02 -2.596543527E-05 + 7.490727901E-01 1.654002815E-01 1.219732761E+00 -1.350229140E-02 -2.569711069E-05 + 7.494242191E-01 1.674002856E-01 1.219777584E+00 -1.269754115E-02 -2.542874063E-05 + 7.497755885E-01 1.694002897E-01 1.219699740E+00 -1.196465455E-02 -2.516041604E-05 + 7.501270175E-01 1.714002788E-01 1.219706059E+00 -1.099174842E-02 -2.251598926E-05 + 7.504783869E-01 1.734002829E-01 1.219819784E+00 -9.961096570E-03 -1.614972280E-05 + 7.508298159E-01 1.754002869E-01 1.219855309E+00 -8.941970766E-03 -1.588135274E-05 + 7.511811852E-01 1.774002910E-01 1.220090508E+00 -8.102357388E-03 -1.561302815E-05 + 7.515326142E-01 1.794002801E-01 1.220225811E+00 -7.173030637E-03 -1.534465810E-05 + 7.518839836E-01 1.814002842E-01 1.220465422E+00 -6.004220806E-03 -1.507633351E-05 + 7.522354126E-01 1.834002882E-01 1.220620513E+00 -5.049886648E-03 -1.480796345E-05 + 7.525867820E-01 1.854002774E-01 1.220677018E+00 -4.216141533E-03 -1.453963887E-05 + 7.529382110E-01 1.874002814E-01 1.220602393E+00 -3.328544321E-03 -1.427126881E-05 + 7.532895803E-01 1.894002855E-01 1.220596552E+00 -2.435279544E-03 -1.405420880E-05 + 7.536410093E-01 1.914002895E-01 1.220758677E+00 -1.587175298E-03 -1.420799981E-05 + 7.539923787E-01 1.934002787E-01 1.220915437E+00 -6.937219296E-04 -1.420799981E-05 + 7.543438077E-01 1.954002827E-01 1.221076846E+00 1.321993623E-04 -1.420799981E-05 + 7.546951771E-01 1.974002868E-01 1.221238375E+00 9.685960249E-04 -1.420799981E-05 + 7.550466061E-01 1.994002908E-01 1.221547723E+00 1.608561375E-03 -1.420799981E-05 + 7.553979754E-01 2.014002800E-01 1.221820354E+00 2.096764743E-03 -1.420799981E-05 + 7.557494044E-01 2.034002841E-01 1.221896648E+00 2.554768464E-03 -1.264537696E-05 + 7.561007738E-01 2.054002881E-01 1.222003222E+00 3.114351304E-03 -1.068026904E-05 + 7.564522028E-01 2.074002773E-01 1.221994042E+00 3.803295782E-03 -1.027771668E-05 + 7.568036318E-01 2.094002813E-01 1.221975684E+00 4.496234935E-03 -1.204158161E-05 + 7.571550012E-01 2.114002854E-01 1.222013593E+00 5.194058176E-03 -1.420799981E-05 + 7.575064301E-01 2.134002894E-01 1.222116470E+00 5.938077345E-03 -1.420799981E-05 + 7.578577995E-01 2.154002786E-01 1.222182751E+00 6.821295246E-03 -1.353347670E-05 + 7.582092285E-01 2.174002826E-01 1.222038865E+00 7.726217154E-03 -8.265089491E-06 + 7.585605979E-01 2.194002867E-01 1.222190142E+00 8.147190325E-03 -7.862604434E-06 + 7.589120269E-01 2.214002907E-01 1.222269058E+00 8.727948181E-03 -7.460052075E-06 + 7.592633963E-01 2.234002799E-01 1.222164750E+00 9.276836179E-03 -7.057567473E-06 + 7.596148252E-01 2.254002839E-01 1.222114205E+00 9.914755821E-03 -6.655014658E-06 + 7.599661946E-01 2.274002880E-01 1.222057581E+00 1.063147187E-02 -6.252530056E-06 + 7.603176236E-01 2.294002771E-01 1.221931696E+00 1.137802377E-02 -5.849977242E-06 + 7.606689930E-01 2.314002812E-01 1.221827865E+00 1.222699415E-02 -3.472246362E-06 + 7.610204220E-01 2.334002852E-01 1.221891880E+00 1.330427919E-02 -1.496999971E-06 + 7.613717914E-01 2.354002893E-01 1.221894383E+00 1.423600502E-02 -1.496999971E-06 + 7.617232203E-01 2.374002784E-01 1.221896648E+00 1.413048245E-02 -1.496999971E-06 + 7.620745897E-01 2.394002825E-01 1.221899033E+00 1.456649043E-02 -1.496999971E-06 + 7.624260187E-01 2.414002866E-01 1.221643090E+00 1.519760117E-02 -1.496999971E-06 + 7.627773881E-01 2.434002906E-01 1.221474886E+00 1.559697464E-02 -2.264690465E-06 + 7.631288171E-01 2.454002798E-01 1.221132398E+00 1.572621241E-02 -2.629828259E-06 + 7.634801865E-01 2.474002838E-01 1.220851541E+00 1.606504060E-02 -2.227343657E-06 + 7.638316154E-01 2.494002879E-01 1.220758796E+00 1.657165401E-02 -1.824790957E-06 + 7.641829848E-01 2.514002919E-01 1.220703244E+00 1.717803627E-02 -1.496999971E-06 + 7.645344138E-01 2.534002960E-01 1.220518231E+00 1.806732267E-02 -1.496999971E-06 + 7.648857832E-01 2.554002702E-01 1.220243573E+00 1.898442395E-02 -2.703593282E-06 + 7.652372122E-01 2.574002743E-01 1.219979048E+00 1.920063421E-02 -1.273061025E-05 + 7.655885816E-01 2.594002783E-01 1.219443798E+00 2.064314485E-02 -1.929957079E-06 + 7.659400105E-01 2.614002824E-01 1.219147563E+00 2.099686675E-02 -1.496999971E-06 + 7.662913799E-01 2.634002864E-01 1.218620658E+00 2.197328582E-02 -1.496999971E-06 + 7.666428089E-01 2.654002905E-01 1.218471169E+00 2.206146531E-02 -1.496999971E-06 + 7.669941783E-01 2.674002945E-01 1.218521476E+00 2.242718637E-02 -1.496999971E-06 + 7.673456073E-01 2.694002688E-01 1.218592167E+00 2.283777483E-02 -1.496999971E-06 + 7.676969767E-01 2.714002728E-01 1.218697906E+00 2.305546403E-02 -1.496999971E-06 + 7.680484056E-01 2.734002769E-01 1.218834877E+00 2.360500582E-02 -1.496999971E-06 + 7.683997750E-01 2.754002810E-01 1.218721986E+00 2.469158918E-02 -1.496999971E-06 + 7.687512040E-01 2.774002850E-01 1.218567133E+00 2.598791383E-02 -1.496999971E-06 + 7.691026330E-01 2.794002891E-01 1.218316317E+00 2.717596106E-02 -1.496999971E-06 + 7.694540024E-01 2.814002931E-01 1.218169570E+00 2.831859328E-02 -1.496999971E-06 + 7.698054314E-01 2.834002972E-01 1.217861772E+00 2.925542183E-02 -1.496999971E-06 + 7.701568007E-01 2.854002714E-01 1.217632771E+00 2.970728278E-02 -1.496999971E-06 + 7.705082297E-01 2.874002755E-01 1.217363358E+00 3.020265885E-02 -1.496999971E-06 + 7.708595991E-01 2.894002795E-01 1.217144251E+00 3.070632368E-02 -1.496999971E-06 + 7.712110281E-01 2.914002836E-01 1.217005730E+00 3.121411800E-02 -1.496999971E-06 + 7.715623975E-01 2.934002876E-01 1.216778755E+00 3.190691024E-02 -1.496999971E-06 + 7.719138265E-01 2.954002917E-01 1.216706991E+00 3.293456510E-02 -2.468998446E-06 + 7.722651958E-01 2.974002957E-01 1.216711640E+00 3.384362534E-02 -4.875293598E-06 + 7.726166248E-01 2.994002700E-01 1.216638207E+00 3.465225175E-02 -4.472738510E-06 + 7.729679942E-01 3.014002740E-01 1.216553211E+00 3.542314097E-02 -4.070251634E-06 + 7.733194232E-01 3.034002781E-01 1.216303945E+00 3.585704044E-02 -3.667697001E-06 + 7.736707926E-01 3.054002821E-01 1.215957999E+00 3.630624339E-02 -3.265210353E-06 + 7.740222216E-01 3.074002862E-01 1.215739012E+00 3.680217639E-02 -2.862655265E-06 + 7.743735909E-01 3.094002903E-01 1.215579391E+00 3.739678487E-02 -2.460168616E-06 + 7.747250199E-01 3.114002943E-01 1.215425134E+00 3.812785074E-02 -2.057613756E-06 + 7.750763893E-01 3.134002984E-01 1.215332627E+00 3.893785551E-02 -1.655126994E-06 + 7.754278183E-01 3.154002726E-01 1.215278029E+00 3.967872635E-02 -1.496999971E-06 + 7.757791877E-01 3.174002767E-01 1.215354800E+00 4.071223363E-02 -1.496999971E-06 + 7.761306167E-01 3.194002807E-01 1.215292096E+00 4.171522707E-02 -1.496999971E-06 + 7.764819860E-01 3.214002848E-01 1.215496898E+00 4.259167612E-02 -1.496999971E-06 + 7.768334150E-01 3.234002888E-01 1.215539336E+00 4.343511909E-02 -1.496999971E-06 + 7.771847844E-01 3.254002929E-01 1.215452433E+00 4.423473775E-02 -1.496999971E-06 + 7.775362134E-01 3.274002969E-01 1.215380907E+00 4.496581480E-02 -1.496999971E-06 + 7.778875828E-01 3.294002712E-01 1.215216756E+00 4.564724490E-02 -1.496999971E-06 + 7.782390118E-01 3.314002752E-01 1.215082884E+00 4.628736153E-02 -1.496999971E-06 + 7.785903811E-01 3.334002793E-01 1.215233564E+00 4.692546651E-02 -1.496999971E-06 + 7.789418101E-01 3.354002833E-01 1.215546846E+00 4.770669714E-02 -1.496999971E-06 + 7.792931795E-01 3.374002874E-01 1.215602636E+00 4.872192070E-02 -1.496999971E-06 + 7.796446085E-01 3.394002914E-01 1.215620518E+00 4.957959801E-02 -1.496999971E-06 + 7.799959779E-01 3.414002955E-01 1.215925336E+00 5.043838918E-02 -1.496999971E-06 + 7.803474069E-01 3.434002697E-01 1.215590715E+00 5.126076937E-02 -1.496999971E-06 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.79.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.79.dat new file mode 100644 index 0000000000000000000000000000000000000000..3b5e402430f57357ac42bb1bee9845fdd449a927 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.79.dat @@ -0,0 +1,158 @@ +# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case +# The lines were drawn by hand to be "visually" normal to the airfoil surface; +# however, whether it is normal or not does not matter because the CFD is compared along the same lines. +# +# In these lines, experimental data were interpolated via Tecplot software onto +# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002 +# (except at the last station, where the points start at d/c=.006 off the surface) +# Points were also added AT the surface, with u=v=uv=0 +# +# x and y are normalized by chord +# u and v are each normalized by Uref +# uv = u'v' is normalized by Uref^2 +# Uref is the reference velocity, located about 1 chord below and behind the airfoil +# (from CFD tests, Uref is roughly 0.93*Uinf) +# +# VARIABLES = "x","y","u","v","uv" +# ZONE T="x=.7863" + 7.863000035E-01 5.103440955E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00 + 7.870670557E-01 5.503441021E-02 1.104046404E-01 6.222463213E-03 -4.233519547E-03 + 7.874505520E-01 5.703441054E-02 1.534690559E-01 1.931362669E-03 -5.694324616E-03 + 7.878340483E-01 5.903441086E-02 1.943954825E-01 -3.710327903E-03 -6.712319329E-03 + 7.882175446E-01 6.103441119E-02 2.466309816E-01 -9.717693552E-03 -7.663001772E-03 + 7.886011004E-01 6.303440779E-02 3.003671169E-01 -1.639932580E-02 -8.488739841E-03 + 7.889845967E-01 6.503441185E-02 3.544923663E-01 -2.303961292E-02 -9.202652611E-03 + 7.893680930E-01 6.703440845E-02 4.137708545E-01 -2.874968387E-02 -9.829375893E-03 + 7.897516489E-01 6.903441250E-02 4.721292555E-01 -3.349543363E-02 -1.035816874E-02 + 7.901351452E-01 7.103440911E-02 5.281629562E-01 -3.727769479E-02 -1.088869199E-02 + 7.905186415E-01 7.303441316E-02 5.843275785E-01 -4.097607359E-02 -1.123053115E-02 + 7.909021378E-01 7.503440976E-02 6.473068595E-01 -4.376775399E-02 -1.118548773E-02 + 7.912856936E-01 7.703441381E-02 7.124217749E-01 -4.608371481E-02 -1.083056070E-02 + 7.916691899E-01 7.903441042E-02 7.723341584E-01 -4.729073495E-02 -1.032292284E-02 + 7.920526862E-01 8.103440702E-02 8.308539391E-01 -4.794502258E-02 -9.679212235E-03 + 7.924362421E-01 8.303441107E-02 8.892290592E-01 -4.835885391E-02 -8.911394514E-03 + 7.928197384E-01 8.503440768E-02 9.471532702E-01 -4.803965613E-02 -8.060910739E-03 + 7.932032347E-01 8.703441173E-02 9.961301088E-01 -4.655485228E-02 -7.178722415E-03 + 7.935867310E-01 8.903440833E-02 1.026225805E+00 -4.479843006E-02 -6.160418037E-03 + 7.939702868E-01 9.103441238E-02 1.076096058E+00 -4.329866916E-02 -4.977064207E-03 + 7.943537831E-01 9.303440899E-02 1.109600306E+00 -4.198253527E-02 -3.917458002E-03 + 7.947372794E-01 9.503441304E-02 1.133484840E+00 -4.135112464E-02 -3.102838527E-03 + 7.951208353E-01 9.703440964E-02 1.151930809E+00 -4.015773162E-02 -2.371136565E-03 + 7.955043316E-01 9.903441370E-02 1.164886594E+00 -3.860485926E-02 -1.761658350E-03 + 7.958878279E-01 1.010344103E-01 1.172944546E+00 -3.699833527E-02 -1.289088512E-03 + 7.962713242E-01 1.030344069E-01 1.179394484E+00 -3.536845371E-02 -9.229945135E-04 + 7.966548800E-01 1.050344110E-01 1.185206890E+00 -3.364710137E-02 -6.178200711E-04 + 7.970383763E-01 1.070344076E-01 1.189366460E+00 -3.199693933E-02 -3.763755376E-04 + 7.974218726E-01 1.090344116E-01 1.191968679E+00 -3.079179302E-02 -2.581923327E-04 + 7.978054285E-01 1.110344082E-01 1.193111062E+00 -2.962821908E-02 -2.254491119E-04 + 7.981889248E-01 1.130344123E-01 1.194126129E+00 -2.855974995E-02 -1.640613918E-04 + 7.985724211E-01 1.150344089E-01 1.193746090E+00 -2.740922384E-02 -1.191753472E-04 + 7.989559174E-01 1.170344129E-01 1.193912864E+00 -2.626183070E-02 -7.682414434E-05 + 7.993394732E-01 1.190344095E-01 1.194122076E+00 -2.517336421E-02 -4.602672561E-05 + 7.997229695E-01 1.210344136E-01 1.194393396E+00 -2.430293895E-02 -1.730312579E-05 + 8.001064658E-01 1.230344102E-01 1.194616199E+00 -2.344303764E-02 1.088109343E-06 + 8.004900217E-01 1.250344068E-01 1.194659829E+00 -2.246982418E-02 9.919164768E-06 + 8.008735180E-01 1.270344108E-01 1.194653988E+00 -2.149512060E-02 1.666318167E-05 + 8.012570143E-01 1.290344149E-01 1.194846630E+00 -2.072316222E-02 2.718519863E-05 + 8.016405106E-01 1.310344040E-01 1.194723129E+00 -2.009287290E-02 3.624560850E-05 + 8.020240664E-01 1.330344081E-01 1.194652557E+00 -1.941400580E-02 3.313915659E-05 + 8.024075627E-01 1.350344121E-01 1.194822669E+00 -1.845091023E-02 3.618890696E-05 + 8.027910590E-01 1.370344162E-01 1.194863319E+00 -1.748475991E-02 3.663600000E-05 + 8.031746149E-01 1.390344054E-01 1.194886446E+00 -1.661108062E-02 3.385040327E-05 + 8.035581112E-01 1.410344094E-01 1.195066571E+00 -1.577586681E-02 3.285867570E-05 + 8.039416075E-01 1.430344135E-01 1.195325613E+00 -1.487619523E-02 3.315153299E-05 + 8.043251038E-01 1.450344175E-01 1.195553660E+00 -1.378602162E-02 3.344439028E-05 + 8.047086596E-01 1.470344067E-01 1.195713520E+00 -1.257608458E-02 3.245985135E-05 + 8.050921559E-01 1.490344107E-01 1.196008205E+00 -1.164254826E-02 2.730328924E-05 + 8.054756522E-01 1.510344148E-01 1.196383476E+00 -1.107371412E-02 2.584900540E-05 + 8.058592081E-01 1.530344039E-01 1.196627975E+00 -1.013548579E-02 2.614190817E-05 + 8.062427044E-01 1.550344080E-01 1.196736336E+00 -9.423847310E-03 2.643476364E-05 + 8.066262007E-01 1.570344120E-01 1.197050095E+00 -8.647262119E-03 2.672762093E-05 + 8.070096970E-01 1.590344161E-01 1.197373867E+00 -7.860111073E-03 2.158723146E-05 + 8.073932528E-01 1.610344052E-01 1.197977781E+00 -7.557518315E-03 1.968799916E-05 + 8.077767491E-01 1.630344093E-01 1.198433876E+00 -7.157773245E-03 1.968799916E-05 + 8.081602454E-01 1.650344133E-01 1.198539853E+00 -6.217233371E-03 1.968799916E-05 + 8.085438013E-01 1.670344174E-01 1.198411822E+00 -4.941906314E-03 1.971799429E-05 + 8.089272976E-01 1.690344065E-01 1.198305130E+00 -4.143625498E-03 2.001085340E-05 + 8.093107939E-01 1.710344106E-01 1.198574066E+00 -4.146236461E-03 2.030371252E-05 + 8.096942902E-01 1.730344146E-01 1.198599815E+00 -3.820977174E-03 2.059656981E-05 + 8.100778461E-01 1.750344038E-01 1.199013591E+00 -3.767105052E-03 2.088947440E-05 + 8.104613423E-01 1.770344079E-01 1.199303389E+00 -3.114134772E-03 2.118233169E-05 + 8.108448386E-01 1.790344119E-01 1.199571848E+00 -2.774815541E-03 2.147519081E-05 + 8.112283945E-01 1.810344160E-01 1.199541807E+00 -1.932192012E-03 2.176809357E-05 + 8.116118908E-01 1.830344051E-01 1.199460030E+00 -9.261423256E-04 2.206095269E-05 + 8.119953871E-01 1.850344092E-01 1.199413419E+00 5.015896750E-05 2.235380998E-05 + 8.123788834E-01 1.870344132E-01 1.199286461E+00 1.184071065E-03 2.264666909E-05 + 8.127624393E-01 1.890344173E-01 1.199107170E+00 2.302330919E-03 2.198169750E-05 + 8.131459355E-01 1.910344064E-01 1.199267864E+00 2.761600073E-03 1.968799916E-05 + 8.135294318E-01 1.930344105E-01 1.199260354E+00 3.570149187E-03 1.968799916E-05 + 8.139129877E-01 1.950344145E-01 1.199186921E+00 4.419574514E-03 1.968799916E-05 + 8.142964840E-01 1.970344037E-01 1.199101090E+00 5.294322968E-03 1.968799916E-05 + 8.146799803E-01 1.990344077E-01 1.198821902E+00 6.212684326E-03 1.968799916E-05 + 8.150634766E-01 2.010344118E-01 1.198500872E+00 7.332442794E-03 1.968799916E-05 + 8.154470325E-01 2.030344158E-01 1.198231101E+00 8.256597444E-03 1.730875374E-05 + 8.158305287E-01 2.050344050E-01 1.198157549E+00 8.969106711E-03 1.536879427E-05 + 8.162140250E-01 2.070344090E-01 1.198135614E+00 9.807937779E-03 1.580808203E-05 + 8.165975809E-01 2.090344131E-01 1.198057890E+00 1.035338733E-02 1.624743891E-05 + 8.169810772E-01 2.110344172E-01 1.197770000E+00 1.079956163E-02 1.756978781E-05 + 8.173645735E-01 2.130344063E-01 1.197864056E+00 1.110932417E-02 1.968799916E-05 + 8.177480698E-01 2.150344104E-01 1.198122978E+00 1.156009547E-02 1.968799916E-05 + 8.181316257E-01 2.170344144E-01 1.197994590E+00 1.222070865E-02 1.968799916E-05 + 8.185151219E-01 2.190344036E-01 1.197746158E+00 1.298833266E-02 1.968799916E-05 + 8.188986182E-01 2.210344076E-01 1.197678566E+00 1.378579438E-02 1.968799916E-05 + 8.192821741E-01 2.230344117E-01 1.197597504E+00 1.440140232E-02 1.968799916E-05 + 8.196656704E-01 2.250344157E-01 1.197677732E+00 1.503551193E-02 1.968799916E-05 + 8.200491667E-01 2.270344049E-01 1.197901249E+00 1.584428735E-02 1.968799916E-05 + 8.204326630E-01 2.290344089E-01 1.197959900E+00 1.668373495E-02 1.699323548E-05 + 8.208162189E-01 2.310344130E-01 1.197834134E+00 1.746506244E-02 9.587694876E-06 + 8.211997151E-01 2.330344170E-01 1.197822809E+00 1.775045134E-02 1.968799916E-05 + 8.215832114E-01 2.350344062E-01 1.197854400E+00 1.857114211E-02 1.968799916E-05 + 8.219667673E-01 2.370344102E-01 1.197437882E+00 1.981303655E-02 1.968799916E-05 + 8.223502636E-01 2.390344143E-01 1.197261453E+00 2.095511556E-02 1.968799916E-05 + 8.227337599E-01 2.410344034E-01 1.197208047E+00 2.186101861E-02 1.968799916E-05 + 8.231172562E-01 2.430344075E-01 1.197205901E+00 2.240604535E-02 1.968799916E-05 + 8.235008121E-01 2.450344115E-01 1.197353840E+00 2.310622297E-02 1.968799916E-05 + 8.238843083E-01 2.470344156E-01 1.197549462E+00 2.390645817E-02 1.968799916E-05 + 8.242678046E-01 2.490344048E-01 1.197664738E+00 2.436598763E-02 1.968799916E-05 + 8.246513605E-01 2.510344088E-01 1.197821140E+00 2.469850518E-02 1.968799916E-05 + 8.250348568E-01 2.530344129E-01 1.197864413E+00 2.509179898E-02 1.928432175E-05 + 8.254183531E-01 2.550344169E-01 1.197957993E+00 2.553644590E-02 1.386487747E-05 + 8.258018494E-01 2.570344210E-01 1.197916627E+00 2.630921267E-02 1.407970740E-05 + 8.261854053E-01 2.590344250E-01 1.197880983E+00 2.726182900E-02 1.451906064E-05 + 8.265689015E-01 2.610343993E-01 1.197890759E+00 2.809677273E-02 1.495834567E-05 + 8.269523978E-01 2.630344033E-01 1.197985649E+00 2.885899693E-02 1.539763070E-05 + 8.273359537E-01 2.650344074E-01 1.197958231E+00 2.960515022E-02 1.178156799E-05 + 8.277194500E-01 2.670344114E-01 1.197856784E+00 3.020202741E-02 6.976999885E-06 + 8.281029463E-01 2.690344155E-01 1.197905779E+00 3.067040071E-02 6.976999885E-06 + 8.284864426E-01 2.710344195E-01 1.198020935E+00 3.135097027E-02 6.976999885E-06 + 8.288699985E-01 2.730344236E-01 1.198160052E+00 3.209611773E-02 6.976999885E-06 + 8.292534947E-01 2.750343978E-01 1.198354721E+00 3.270123899E-02 6.976999885E-06 + 8.296369910E-01 2.770344019E-01 1.197986245E+00 3.350704908E-02 6.976999885E-06 + 8.300205469E-01 2.790344059E-01 1.198227763E+00 3.413919359E-02 6.976999885E-06 + 8.304040432E-01 2.810344100E-01 1.198223948E+00 3.501098603E-02 6.976999885E-06 + 8.307875395E-01 2.830344141E-01 1.198306680E+00 3.586030379E-02 6.976999885E-06 + 8.311710358E-01 2.850344181E-01 1.198399186E+00 3.660108522E-02 6.976999885E-06 + 8.315545917E-01 2.870344222E-01 1.198355675E+00 3.733030334E-02 6.976999885E-06 + 8.319380879E-01 2.890343964E-01 1.198200941E+00 3.808672354E-02 6.976999885E-06 + 8.323215842E-01 2.910344005E-01 1.197944880E+00 3.879895806E-02 6.976999885E-06 + 8.327051401E-01 2.930344045E-01 1.198068976E+00 3.949836642E-02 6.976999885E-06 + 8.330886364E-01 2.950344086E-01 1.198336005E+00 4.020129517E-02 6.976999885E-06 + 8.334721327E-01 2.970344126E-01 1.198145747E+00 4.102170095E-02 6.976999885E-06 + 8.338556290E-01 2.990344167E-01 1.197872519E+00 4.194267467E-02 6.976999885E-06 + 8.342391849E-01 3.010344207E-01 1.197545409E+00 4.266502336E-02 6.976999885E-06 + 8.346226811E-01 3.030344248E-01 1.197246075E+00 4.344221577E-02 6.976999885E-06 + 8.350061774E-01 3.050343990E-01 1.196911097E+00 4.421716928E-02 6.976999885E-06 + 8.353897333E-01 3.070344031E-01 1.196702719E+00 4.497303814E-02 6.976999885E-06 + 8.357732296E-01 3.090344071E-01 1.196578503E+00 4.577275738E-02 6.976999885E-06 + 8.361567259E-01 3.110344112E-01 1.196386576E+00 4.660337418E-02 6.976999885E-06 + 8.365402222E-01 3.130344152E-01 1.196557045E+00 4.742880538E-02 6.976999885E-06 + 8.369237781E-01 3.150344193E-01 1.196970224E+00 4.811997339E-02 6.976999885E-06 + 8.373072743E-01 3.170344234E-01 1.197291017E+00 4.878085852E-02 6.976999885E-06 + 8.376907706E-01 3.190343976E-01 1.196827054E+00 4.965663329E-02 6.976999885E-06 + 8.380743265E-01 3.210344017E-01 1.196303964E+00 5.058711767E-02 6.976999885E-06 + 8.384578228E-01 3.230344057E-01 1.196248055E+00 5.136715248E-02 6.976999885E-06 + 8.388413191E-01 3.250344098E-01 1.196239233E+00 5.215001479E-02 6.976999885E-06 + 8.392248154E-01 3.270344138E-01 1.196074963E+00 5.295669287E-02 6.976999885E-06 + 8.396083713E-01 3.290344179E-01 1.195670128E+00 5.379037187E-02 6.976999885E-06 + 8.399918675E-01 3.310344219E-01 1.195248365E+00 5.464861542E-02 6.976999885E-06 + 8.403753638E-01 3.330343962E-01 1.195271015E+00 5.544150993E-02 6.976999885E-06 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.84.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.84.dat new file mode 100644 index 0000000000000000000000000000000000000000..4063eea1a084c0ce531362c6e48e6fd01e779ff6 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.84.dat @@ -0,0 +1,158 @@ +# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case +# The lines were drawn by hand to be "visually" normal to the airfoil surface; +# however, whether it is normal or not does not matter because the CFD is compared along the same lines. +# +# In these lines, experimental data were interpolated via Tecplot software onto +# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002 +# (except at the last station, where the points start at d/c=.006 off the surface) +# Points were also added AT the surface, with u=v=uv=0 +# +# x and y are normalized by chord +# u and v are each normalized by Uref +# uv = u'v' is normalized by Uref^2 +# Uref is the reference velocity, located about 1 chord below and behind the airfoil +# (from CFD tests, Uref is roughly 0.93*Uinf) +# +# VARIABLES = "x","y","u","v","uv" +# ZONE T="x=.8418" + 8.417999744E-01 3.950987384E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00 + 8.426239491E-01 4.350987449E-02 2.115042135E-02 2.061068639E-02 -2.939287573E-03 + 8.430358768E-01 4.550987482E-02 4.742512479E-02 2.573156543E-02 -4.837496206E-03 + 8.434478641E-01 4.750987515E-02 7.005203515E-02 1.986030862E-02 -5.732415710E-03 + 8.438598514E-01 4.950987548E-02 9.469659626E-02 1.432575658E-02 -6.587041542E-03 + 8.442717791E-01 5.150987208E-02 1.265623122E-01 9.284576401E-03 -7.394878194E-03 + 8.446837664E-01 5.350987241E-02 1.597132534E-01 4.544444848E-03 -8.188477717E-03 + 8.450956941E-01 5.550987273E-02 1.945077181E-01 3.638570342E-05 -8.926468901E-03 + 8.455076814E-01 5.750987306E-02 2.337907255E-01 -4.110279493E-03 -9.658259340E-03 + 8.459196687E-01 5.950987339E-02 2.744057477E-01 -8.616485633E-03 -1.039771736E-02 + 8.463315964E-01 6.150987372E-02 3.181357980E-01 -1.287958585E-02 -1.105137449E-02 + 8.467435837E-01 6.350987405E-02 3.658787906E-01 -1.671673916E-02 -1.164046302E-02 + 8.471555114E-01 6.550987065E-02 4.169428349E-01 -2.073308639E-02 -1.213998441E-02 + 8.475674987E-01 6.750987470E-02 4.682931900E-01 -2.454281412E-02 -1.250772271E-02 + 8.479794860E-01 6.950987130E-02 5.192583799E-01 -2.774923667E-02 -1.269168314E-02 + 8.483914137E-01 7.150987536E-02 5.692949891E-01 -3.048752062E-02 -1.266250480E-02 + 8.488034010E-01 7.350987196E-02 6.198252439E-01 -3.268514574E-02 -1.252741832E-02 + 8.492153883E-01 7.550987601E-02 6.718124747E-01 -3.409760445E-02 -1.237599365E-02 + 8.496273160E-01 7.750987262E-02 7.255227566E-01 -3.474511951E-02 -1.206417941E-02 + 8.500393033E-01 7.950987667E-02 7.783651352E-01 -3.532743081E-02 -1.171550713E-02 + 8.504512310E-01 8.150987327E-02 8.323464990E-01 -3.557547927E-02 -1.117346995E-02 + 8.508632183E-01 8.350987732E-02 8.816121817E-01 -3.513386846E-02 -1.016614400E-02 + 8.512752056E-01 8.550987393E-02 9.279229641E-01 -3.461688384E-02 -9.105565026E-03 + 8.516871333E-01 8.750987053E-02 9.711433053E-01 -3.402329981E-02 -8.031779900E-03 + 8.520991206E-01 8.950987458E-02 1.010075212E+00 -3.329454735E-02 -6.846671924E-03 + 8.525110483E-01 9.150987118E-02 1.044139028E+00 -3.241092712E-02 -5.765608046E-03 + 8.529230356E-01 9.350987524E-02 1.072672009E+00 -3.119653650E-02 -5.192209501E-03 + 8.533350229E-01 9.550987184E-02 1.095624566E+00 -2.962668613E-02 -4.376970697E-03 + 8.537469506E-01 9.750987589E-02 1.114759684E+00 -2.791664004E-02 -3.680349560E-03 + 8.541589379E-01 9.950987250E-02 1.129567504E+00 -2.649518289E-02 -2.978009405E-03 + 8.545709252E-01 1.015098765E-01 1.140593529E+00 -2.528946474E-02 -2.391171409E-03 + 8.549828529E-01 1.035098732E-01 1.150204659E+00 -2.403056249E-02 -1.810456626E-03 + 8.553948402E-01 1.055098772E-01 1.156614661E+00 -2.285386622E-02 -1.338670030E-03 + 8.558067679E-01 1.075098738E-01 1.161896110E+00 -2.189568244E-02 -1.043383498E-03 + 8.562187552E-01 1.095098704E-01 1.166771293E+00 -2.098241076E-02 -8.422471001E-04 + 8.566307425E-01 1.115098745E-01 1.170317411E+00 -1.994745247E-02 -6.805654848E-04 + 8.570426702E-01 1.135098711E-01 1.172231793E+00 -1.890485361E-02 -6.193968584E-04 + 8.574546576E-01 1.155098751E-01 1.175773859E+00 -1.779313944E-02 -5.030652974E-04 + 8.578665853E-01 1.175098717E-01 1.178200006E+00 -1.694512926E-02 -3.911082749E-04 + 8.582785726E-01 1.195098758E-01 1.178876996E+00 -1.612342708E-02 -2.911441552E-04 + 8.586905599E-01 1.215098724E-01 1.179626346E+00 -1.510902587E-02 -2.237942972E-04 + 8.591024876E-01 1.235098764E-01 1.179913402E+00 -1.434299722E-02 -1.758382859E-04 + 8.595144749E-01 1.255098730E-01 1.180005550E+00 -1.371637452E-02 -1.183551140E-04 + 8.599264622E-01 1.275098771E-01 1.180661678E+00 -1.317671314E-02 -7.907581312E-05 + 8.603383899E-01 1.295098811E-01 1.181346059E+00 -1.266163122E-02 -6.011825462E-05 + 8.607503772E-01 1.315098703E-01 1.181572437E+00 -1.209191326E-02 -4.678347614E-05 + 8.611623049E-01 1.335098743E-01 1.181680441E+00 -1.134327054E-02 -2.288327414E-05 + 8.615742922E-01 1.355098784E-01 1.180522084E+00 -1.046580635E-02 -7.296884633E-06 + 8.619862795E-01 1.375098675E-01 1.180880904E+00 -9.763471782E-03 1.094496929E-05 + 8.623982072E-01 1.395098716E-01 1.180048943E+00 -9.039872326E-03 2.805700205E-05 + 8.628101945E-01 1.415098757E-01 1.179892302E+00 -8.267946541E-03 3.616905087E-05 + 8.632221818E-01 1.435098797E-01 1.180004239E+00 -7.588352542E-03 3.751314216E-05 + 8.636341095E-01 1.455098689E-01 1.180059314E+00 -6.925816182E-03 3.683864270E-05 + 8.640460968E-01 1.475098729E-01 1.179728627E+00 -6.001183297E-03 4.313597310E-05 + 8.644580245E-01 1.495098770E-01 1.179350019E+00 -4.978226032E-03 4.907775656E-05 + 8.648700118E-01 1.515098810E-01 1.179251671E+00 -4.146579653E-03 4.934699973E-05 + 8.652819991E-01 1.535098702E-01 1.179157615E+00 -3.338039387E-03 4.984111001E-05 + 8.656939268E-01 1.555098742E-01 1.178789139E+00 -2.353330608E-03 5.064978905E-05 + 8.661059141E-01 1.575098783E-01 1.179020524E+00 -1.823851489E-03 5.096440145E-05 + 8.665178418E-01 1.595098674E-01 1.178890824E+00 -8.869240992E-04 5.127897020E-05 + 8.669298291E-01 1.615098715E-01 1.178744197E+00 -2.256324951E-04 5.159358261E-05 + 8.673418164E-01 1.635098755E-01 1.178710699E+00 3.637142363E-04 5.051175685E-05 + 8.677537441E-01 1.655098796E-01 1.178452373E+00 1.136953826E-03 4.934699973E-05 + 8.681657314E-01 1.675098687E-01 1.178039312E+00 1.979317050E-03 4.934699973E-05 + 8.685777187E-01 1.695098728E-01 1.177744508E+00 2.782102907E-03 4.934699973E-05 + 8.689896464E-01 1.715098768E-01 1.177747011E+00 3.537458600E-03 4.934699973E-05 + 8.694016337E-01 1.735098809E-01 1.177741408E+00 4.300540313E-03 4.934699973E-05 + 8.698135614E-01 1.755098701E-01 1.177654505E+00 5.027492065E-03 4.850733603E-05 + 8.702255487E-01 1.775098741E-01 1.177786946E+00 5.625229795E-03 4.356947102E-05 + 8.706375360E-01 1.795098782E-01 1.177387714E+00 6.508445367E-03 3.705256677E-05 + 8.710494637E-01 1.815098673E-01 1.177427888E+00 7.219920866E-03 3.663600000E-05 + 8.714614511E-01 1.835098714E-01 1.177461505E+00 7.972745225E-03 3.663600000E-05 + 8.718733788E-01 1.855098754E-01 1.177424073E+00 8.754848503E-03 3.663600000E-05 + 8.722853661E-01 1.875098795E-01 1.177508712E+00 9.455179796E-03 3.663600000E-05 + 8.726973534E-01 1.895098686E-01 1.177592516E+00 1.017175056E-02 3.663600000E-05 + 8.731092811E-01 1.915098727E-01 1.177781582E+00 1.094372012E-02 3.663600000E-05 + 8.735212684E-01 1.935098767E-01 1.178186417E+00 1.162398886E-02 3.663600000E-05 + 8.739332557E-01 1.955098808E-01 1.178237438E+00 1.217637025E-02 3.663600000E-05 + 8.743451834E-01 1.975098699E-01 1.178539753E+00 1.291819010E-02 3.663600000E-05 + 8.747571707E-01 1.995098740E-01 1.178435683E+00 1.387238130E-02 3.663600000E-05 + 8.751690984E-01 2.015098780E-01 1.178467631E+00 1.449801307E-02 3.663600000E-05 + 8.755810857E-01 2.035098672E-01 1.178374052E+00 1.514986623E-02 3.663600000E-05 + 8.759930730E-01 2.055098712E-01 1.178368568E+00 1.577567682E-02 3.663600000E-05 + 8.764050007E-01 2.075098753E-01 1.178420424E+00 1.651952602E-02 3.663600000E-05 + 8.768169880E-01 2.095098794E-01 1.178471684E+00 1.722157747E-02 3.663600000E-05 + 8.772289157E-01 2.115098685E-01 1.178581953E+00 1.785558090E-02 3.663600000E-05 + 8.776409030E-01 2.135098726E-01 1.178808451E+00 1.855847053E-02 3.663600000E-05 + 8.780528903E-01 2.155098766E-01 1.178885460E+00 1.930280775E-02 3.663600000E-05 + 8.784648180E-01 2.175098807E-01 1.178997159E+00 1.998391561E-02 3.663600000E-05 + 8.788768053E-01 2.195098698E-01 1.179089904E+00 2.079351619E-02 3.663600000E-05 + 8.792887926E-01 2.215098739E-01 1.179285765E+00 2.153598331E-02 3.196981561E-05 + 8.797007203E-01 2.235098779E-01 1.179429531E+00 2.234333009E-02 3.168708645E-05 + 8.801127076E-01 2.255098671E-01 1.179544210E+00 2.311700210E-02 2.959680751E-05 + 8.805246353E-01 2.275098711E-01 1.179485083E+00 2.383316308E-02 2.816199958E-05 + 8.809366226E-01 2.295098752E-01 1.179395437E+00 2.458224818E-02 2.816199958E-05 + 8.813486099E-01 2.315098792E-01 1.179376006E+00 2.534399368E-02 2.816199958E-05 + 8.817605376E-01 2.335098684E-01 1.179348588E+00 2.603173815E-02 2.816199958E-05 + 8.821725249E-01 2.355098724E-01 1.179049730E+00 2.666795813E-02 2.816199958E-05 + 8.825845122E-01 2.375098765E-01 1.178880572E+00 2.733962424E-02 2.816199958E-05 + 8.829964399E-01 2.395098805E-01 1.178824186E+00 2.818078361E-02 2.816199958E-05 + 8.834084272E-01 2.415098697E-01 1.178569317E+00 2.891744673E-02 2.816199958E-05 + 8.838203549E-01 2.435098737E-01 1.178515315E+00 2.959562466E-02 2.726053026E-05 + 8.842323422E-01 2.455098778E-01 1.178431869E+00 3.021715581E-02 2.171424421E-05 + 8.846443295E-01 2.475098670E-01 1.178654552E+00 3.076088801E-02 1.968799916E-05 + 8.850562572E-01 2.495098710E-01 1.179322839E+00 3.126647323E-02 1.968799916E-05 + 8.854682446E-01 2.515098751E-01 1.180209041E+00 3.175609186E-02 1.968799916E-05 + 8.858801723E-01 2.535098791E-01 1.180676222E+00 3.227548301E-02 1.968799916E-05 + 8.862921596E-01 2.555098832E-01 1.180444837E+00 3.292297199E-02 1.968799916E-05 + 8.867041469E-01 2.575098872E-01 1.180234075E+00 3.360613063E-02 1.968799916E-05 + 8.871160746E-01 2.595098615E-01 1.179506779E+00 3.437909484E-02 1.968799916E-05 + 8.875280619E-01 2.615098655E-01 1.178524971E+00 3.537958860E-02 1.968799916E-05 + 8.879400492E-01 2.635098696E-01 1.177641153E+00 3.635263070E-02 1.968799916E-05 + 8.883519769E-01 2.655098736E-01 1.177697062E+00 3.703081980E-02 1.968799916E-05 + 8.887639642E-01 2.675098777E-01 1.178218484E+00 3.761563078E-02 1.968799916E-05 + 8.891758919E-01 2.695098817E-01 1.178032041E+00 3.835884109E-02 1.968799916E-05 + 8.895878792E-01 2.715098858E-01 1.177579880E+00 3.914830089E-02 1.968799916E-05 + 8.899998665E-01 2.735098600E-01 1.177556634E+00 3.984286264E-02 1.968799916E-05 + 8.904117942E-01 2.755098641E-01 1.177888989E+00 4.047796130E-02 1.968799916E-05 + 8.908237815E-01 2.775098681E-01 1.177825570E+00 4.133427516E-02 1.968799916E-05 + 8.912357092E-01 2.795098722E-01 1.177168250E+00 4.218364879E-02 1.968799916E-05 + 8.916476965E-01 2.815098763E-01 1.176906824E+00 4.310465232E-02 1.968799916E-05 + 8.920596838E-01 2.835098803E-01 1.177608490E+00 4.366749153E-02 1.968799916E-05 + 8.924716115E-01 2.855098844E-01 1.177826285E+00 4.436596110E-02 1.968799916E-05 + 8.928835988E-01 2.875098884E-01 1.177349210E+00 4.512366652E-02 1.968799916E-05 + 8.932955861E-01 2.895098627E-01 1.177418351E+00 4.572317749E-02 1.968799916E-05 + 8.937075138E-01 2.915098667E-01 1.177900672E+00 4.621217772E-02 1.968799916E-05 + 8.941195011E-01 2.935098708E-01 1.177803397E+00 4.684910178E-02 1.968799916E-05 + 8.945314288E-01 2.955098748E-01 1.177503467E+00 4.771730676E-02 1.968799916E-05 + 8.949434161E-01 2.975098789E-01 1.176841736E+00 4.859932512E-02 1.968799916E-05 + 8.953554034E-01 2.995098829E-01 1.177217126E+00 4.929685965E-02 1.965838419E-05 + 8.957673311E-01 3.015098870E-01 1.176704049E+00 5.017693341E-02 9.305963431E-06 + 8.961793184E-01 3.035098612E-01 1.175561070E+00 5.141053721E-02 8.235523637E-06 + 8.965912461E-01 3.055098653E-01 1.175287485E+00 5.226505920E-02 7.370335425E-06 + 8.970032334E-01 3.075098693E-01 1.175942540E+00 5.280529708E-02 6.976999885E-06 + 8.974152207E-01 3.095098734E-01 1.176596165E+00 5.328996107E-02 6.976999885E-06 + 8.978271484E-01 3.115098774E-01 1.176845551E+00 5.386979878E-02 6.976999885E-06 + 8.982391357E-01 3.135098815E-01 1.177032113E+00 5.451786146E-02 6.976999885E-06 + 8.986511230E-01 3.155098855E-01 1.177333832E+00 5.515537038E-02 7.763435860E-06 + 8.990630507E-01 3.175098598E-01 1.177712440E+00 5.568408221E-02 9.021727237E-06 + 8.994750381E-01 3.195098639E-01 1.176970601E+00 5.641528219E-02 9.389701518E-06 + 8.998869658E-01 3.215098679E-01 1.175830960E+00 5.759849399E-02 7.501183973E-06 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.90.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.90.dat new file mode 100644 index 0000000000000000000000000000000000000000..0e723b79272cd83b5230aa35bba99be4e283d5d1 --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.90.dat @@ -0,0 +1,158 @@ +# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case +# The lines were drawn by hand to be "visually" normal to the airfoil surface; +# however, whether it is normal or not does not matter because the CFD is compared along the same lines. +# +# In these lines, experimental data were interpolated via Tecplot software onto +# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002 +# (except at the last station, where the points start at d/c=.006 off the surface) +# Points were also added AT the surface, with u=v=uv=0 +# +# x and y are normalized by chord +# u and v are each normalized by Uref +# uv = u'v' is normalized by Uref^2 +# Uref is the reference velocity, located about 1 chord below and behind the airfoil +# (from CFD tests, Uref is roughly 0.93*Uinf) +# +# VARIABLES = "x","y","u","v","uv" +# ZONE T="x=.8973" + 8.973000050E-01 2.680198476E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00 + 8.982155323E-01 3.080198541E-02 -4.320315272E-02 4.994251952E-02 -3.154789330E-03 + 8.986733556E-01 3.280198574E-02 -3.807992488E-02 4.712387919E-02 -3.874282120E-03 + 8.991311193E-01 3.480198607E-02 -2.530865185E-02 4.255365953E-02 -4.553004168E-03 + 8.995888829E-01 3.680198640E-02 -9.062631056E-03 3.806476668E-02 -5.255196244E-03 + 9.000466466E-01 3.880198672E-02 1.057281066E-02 3.354593366E-02 -5.960272159E-03 + 9.005044103E-01 4.080198705E-02 3.280668706E-02 2.905786224E-02 -6.660863291E-03 + 9.009622335E-01 4.280198365E-02 5.681682378E-02 2.470996790E-02 -7.383705117E-03 + 9.014199972E-01 4.480198398E-02 8.282847703E-02 2.048475854E-02 -8.183967322E-03 + 9.018777609E-01 4.680198431E-02 1.105795279E-01 1.627186686E-02 -8.963810280E-03 + 9.023355246E-01 4.880198464E-02 1.393238306E-01 1.209890284E-02 -9.758964181E-03 + 9.027933478E-01 5.080198497E-02 1.697099209E-01 8.269041777E-03 -1.055040862E-02 + 9.032511115E-01 5.280198529E-02 2.003222555E-01 4.722358659E-03 -1.129505225E-02 + 9.037088752E-01 5.480198562E-02 2.337442487E-01 8.321573259E-04 -1.195655670E-02 + 9.041666389E-01 5.680198595E-02 2.684147358E-01 -3.175863065E-03 -1.255436148E-02 + 9.046244025E-01 5.880198628E-02 3.053528666E-01 -7.211591117E-03 -1.313286647E-02 + 9.050822258E-01 6.080198660E-02 3.454250097E-01 -1.116634067E-02 -1.364599634E-02 + 9.055399895E-01 6.280198693E-02 3.889756203E-01 -1.498422772E-02 -1.414060500E-02 + 9.059977531E-01 6.480198354E-02 4.358545840E-01 -1.864059269E-02 -1.467332616E-02 + 9.064555168E-01 6.680198759E-02 4.868045449E-01 -2.201542631E-02 -1.501218323E-02 + 9.069133401E-01 6.880198419E-02 5.193397403E-01 -2.477034740E-02 -1.499685086E-02 + 9.073711038E-01 7.080198824E-02 5.627325773E-01 -2.688306943E-02 -1.496917382E-02 + 9.078288674E-01 7.280198485E-02 6.032962799E-01 -2.850787342E-02 -1.473257504E-02 + 9.082866311E-01 7.480198890E-02 6.450559497E-01 -2.987407520E-02 -1.431644987E-02 + 9.087443948E-01 7.680198550E-02 6.965213418E-01 -3.102406673E-02 -1.380247623E-02 + 9.092022181E-01 7.880198210E-02 7.505368590E-01 -3.192285448E-02 -1.321566850E-02 + 9.096599817E-01 8.080198616E-02 8.031266332E-01 -3.256246820E-02 -1.252490375E-02 + 9.101177454E-01 8.280198276E-02 8.477329016E-01 -3.288432583E-02 -1.185473707E-02 + 9.105755091E-01 8.480198681E-02 8.823047876E-01 -3.276913241E-02 -1.128810458E-02 + 9.110333323E-01 8.680198342E-02 9.167507291E-01 -3.214629367E-02 -1.048131380E-02 + 9.114910960E-01 8.880198747E-02 9.524674416E-01 -3.146990761E-02 -9.387926199E-03 + 9.119488597E-01 9.080198407E-02 9.851042032E-01 -3.038761020E-02 -8.376783691E-03 + 9.124066234E-01 9.280198812E-02 1.017390847E+00 -2.922195755E-02 -7.038237993E-03 + 9.128643870E-01 9.480198473E-02 1.048997402E+00 -2.796342596E-02 -5.747014657E-03 + 9.133222103E-01 9.680198878E-02 1.074269056E+00 -2.663353644E-02 -5.016798154E-03 + 9.137799740E-01 9.880198538E-02 1.089748621E+00 -2.526754141E-02 -4.561008886E-03 + 9.142377377E-01 1.008019820E-01 1.102381706E+00 -2.391062491E-02 -4.061067477E-03 + 9.146955013E-01 1.028019860E-01 1.114246368E+00 -2.249663323E-02 -3.518276382E-03 + 9.151533246E-01 1.048019826E-01 1.123510957E+00 -2.095924318E-02 -3.003480146E-03 + 9.156110883E-01 1.068019867E-01 1.131940126E+00 -1.942050271E-02 -2.482786542E-03 + 9.160688519E-01 1.088019833E-01 1.139391661E+00 -1.805183850E-02 -2.050586976E-03 + 9.165266156E-01 1.108019873E-01 1.144213557E+00 -1.696766913E-02 -1.642119954E-03 + 9.169843793E-01 1.128019840E-01 1.148948431E+00 -1.591343060E-02 -1.420625602E-03 + 9.174422026E-01 1.148019880E-01 1.152474880E+00 -1.495516673E-02 -1.205786713E-03 + 9.178999662E-01 1.168019846E-01 1.155658603E+00 -1.385151595E-02 -1.032815664E-03 + 9.183577299E-01 1.188019887E-01 1.157706380E+00 -1.285541523E-02 -8.772196597E-04 + 9.188154936E-01 1.208019853E-01 1.158949256E+00 -1.185875293E-02 -7.456708117E-04 + 9.192733169E-01 1.228019819E-01 1.159777164E+00 -1.084802859E-02 -6.406597095E-04 + 9.197310805E-01 1.248019859E-01 1.160690904E+00 -9.971639141E-03 -5.430100719E-04 + 9.201888442E-01 1.268019825E-01 1.162149072E+00 -9.173831902E-03 -4.448597902E-04 + 9.206466079E-01 1.288019866E-01 1.163048148E+00 -8.361699060E-03 -3.480872256E-04 + 9.211043715E-01 1.308019906E-01 1.163064003E+00 -7.573560346E-03 -2.678846067E-04 + 9.215621948E-01 1.328019798E-01 1.163193226E+00 -6.639400497E-03 -2.022563858E-04 + 9.220199585E-01 1.348019838E-01 1.163100958E+00 -5.599529017E-03 -1.312264358E-04 + 9.224777222E-01 1.368019879E-01 1.162749052E+00 -4.791638348E-03 -9.417191905E-05 + 9.229354858E-01 1.388019919E-01 1.162518859E+00 -4.086247645E-03 -7.749405631E-05 + 9.233933091E-01 1.408019811E-01 1.162378430E+00 -3.323086537E-03 -7.099987852E-05 + 9.238510728E-01 1.428019851E-01 1.162364244E+00 -2.621501219E-03 -5.580458310E-05 + 9.243088365E-01 1.448019892E-01 1.162438989E+00 -2.057587961E-03 -3.162410212E-05 + 9.247666001E-01 1.468019783E-01 1.162284136E+00 -1.509708003E-03 -6.604046575E-06 + 9.252243638E-01 1.488019824E-01 1.162062764E+00 -7.776221028E-04 1.465289461E-05 + 9.256821871E-01 1.508019865E-01 1.161870480E+00 9.433628293E-05 3.187619950E-05 + 9.261399508E-01 1.528019905E-01 1.161843419E+00 8.952952921E-04 3.621351425E-05 + 9.265977144E-01 1.548019797E-01 1.161719561E+00 1.696179737E-03 3.992206257E-05 + 9.270554781E-01 1.568019837E-01 1.161755800E+00 2.328890376E-03 4.745700789E-05 + 9.275133014E-01 1.588019878E-01 1.161815763E+00 3.004908562E-03 5.446353316E-05 + 9.279710650E-01 1.608019918E-01 1.161733150E+00 3.783150110E-03 5.782099834E-05 + 9.284288287E-01 1.628019810E-01 1.161594868E+00 4.524713382E-03 5.782099834E-05 + 9.288865924E-01 1.648019850E-01 1.161425114E+00 5.201481748E-03 5.782099834E-05 + 9.293443561E-01 1.668019891E-01 1.161182761E+00 5.929524545E-03 5.782099834E-05 + 9.298021793E-01 1.688019782E-01 1.161085248E+00 6.670815405E-03 5.782099834E-05 + 9.302599430E-01 1.708019823E-01 1.161119938E+00 7.478839718E-03 5.782099834E-05 + 9.307177067E-01 1.728019863E-01 1.161309242E+00 8.219361305E-03 5.782099834E-05 + 9.311754704E-01 1.748019904E-01 1.161371469E+00 9.030692279E-03 5.782099834E-05 + 9.316332936E-01 1.768019795E-01 1.161405683E+00 9.797880426E-03 5.741425412E-05 + 9.320910573E-01 1.788019836E-01 1.161437511E+00 1.056866907E-02 5.665794015E-05 + 9.325488210E-01 1.808019876E-01 1.161547661E+00 1.137144677E-02 5.268649329E-05 + 9.330065846E-01 1.828019917E-01 1.161594868E+00 1.224964391E-02 4.934699973E-05 + 9.334643483E-01 1.848019809E-01 1.161599755E+00 1.313049532E-02 5.045288708E-05 + 9.339221716E-01 1.868019849E-01 1.161659837E+00 1.389423572E-02 5.284127110E-05 + 9.343799353E-01 1.888019890E-01 1.161586165E+00 1.462396886E-02 5.679271271E-05 + 9.348376989E-01 1.908019781E-01 1.161275387E+00 1.549086999E-02 4.934699973E-05 + 9.352954626E-01 1.928019822E-01 1.161035538E+00 1.616131142E-02 4.934699973E-05 + 9.357532859E-01 1.948019862E-01 1.161511183E+00 1.668954082E-02 4.934699973E-05 + 9.362110496E-01 1.968019903E-01 1.161805749E+00 1.720847748E-02 4.934699973E-05 + 9.366688132E-01 1.988019794E-01 1.161223054E+00 1.795794815E-02 4.934699973E-05 + 9.371265769E-01 2.008019835E-01 1.160678148E+00 1.872890256E-02 4.934699973E-05 + 9.375843406E-01 2.028019875E-01 1.160656810E+00 1.939679123E-02 4.388718662E-05 + 9.380421638E-01 2.048019916E-01 1.160581231E+00 2.008257806E-02 3.663600000E-05 + 9.384999275E-01 2.068019807E-01 1.159632921E+00 2.094266191E-02 3.663600000E-05 + 9.389576912E-01 2.088019848E-01 1.157888412E+00 2.169984020E-02 3.663600000E-05 + 9.394154549E-01 2.108019888E-01 1.158440709E+00 2.244483866E-02 3.663600000E-05 + 9.398732781E-01 2.128019929E-01 1.159565210E+00 2.279806696E-02 3.663600000E-05 + 9.403310418E-01 2.148019820E-01 1.160829306E+00 2.292725258E-02 3.663600000E-05 + 9.407888055E-01 2.168019861E-01 1.161368728E+00 2.344401740E-02 3.663600000E-05 + 9.412465692E-01 2.188019902E-01 1.161647320E+00 2.397026494E-02 3.663600000E-05 + 9.417043328E-01 2.208019793E-01 1.161498427E+00 2.450504526E-02 3.663600000E-05 + 9.421621561E-01 2.228019834E-01 1.160258651E+00 2.521812730E-02 3.663600000E-05 + 9.426199198E-01 2.248019874E-01 1.158766150E+00 2.614156529E-02 3.663600000E-05 + 9.430776834E-01 2.268019915E-01 1.158093691E+00 2.707281895E-02 3.663600000E-05 + 9.435354471E-01 2.288019806E-01 1.157383084E+00 2.771968022E-02 3.663600000E-05 + 9.439932704E-01 2.308019847E-01 1.157728553E+00 2.833495662E-02 3.663600000E-05 + 9.444510341E-01 2.328019887E-01 1.158249736E+00 2.898476645E-02 3.663600000E-05 + 9.449087977E-01 2.348019928E-01 1.158538222E+00 2.975584567E-02 3.480157466E-05 + 9.453665614E-01 2.368019819E-01 1.159725070E+00 3.033061884E-02 2.922371095E-05 + 9.458243251E-01 2.388019860E-01 1.159892797E+00 3.082484566E-02 2.816199958E-05 + 9.462821484E-01 2.408019900E-01 1.158978343E+00 3.171321377E-02 2.816199958E-05 + 9.467399120E-01 2.428019792E-01 1.158460617E+00 3.270616755E-02 2.816199958E-05 + 9.471976757E-01 2.448019832E-01 1.157706618E+00 3.354445845E-02 2.816199958E-05 + 9.476554394E-01 2.468019873E-01 1.157172561E+00 3.430528939E-02 2.816199958E-05 + 9.481132627E-01 2.488019913E-01 1.157326221E+00 3.518977016E-02 2.816199958E-05 + 9.485710263E-01 2.508019805E-01 1.157122731E+00 3.609152138E-02 2.816199958E-05 + 9.490287900E-01 2.528019845E-01 1.157735229E+00 3.678045422E-02 2.816199958E-05 + 9.494865537E-01 2.548019886E-01 1.158805609E+00 3.712876141E-02 2.816199958E-05 + 9.499443173E-01 2.568019927E-01 1.159512639E+00 3.771607205E-02 2.816199958E-05 + 9.504021406E-01 2.588019967E-01 1.158826351E+00 3.867084533E-02 2.816199958E-05 + 9.508599043E-01 2.608019710E-01 1.158420801E+00 3.949920461E-02 2.816199958E-05 + 9.513176680E-01 2.628019750E-01 1.158467174E+00 4.023306444E-02 2.816199958E-05 + 9.517754316E-01 2.648019791E-01 1.158284903E+00 4.101207852E-02 2.816199958E-05 + 9.522332549E-01 2.668019831E-01 1.157505989E+00 4.192817211E-02 2.589969517E-05 + 9.526910186E-01 2.688019872E-01 1.156486630E+00 4.297975451E-02 1.968799916E-05 + 9.531487823E-01 2.708019912E-01 1.157470465E+00 4.357114807E-02 1.968799916E-05 + 9.536065459E-01 2.728019953E-01 1.158587337E+00 4.376721755E-02 1.968799916E-05 + 9.540643096E-01 2.748019993E-01 1.159560323E+00 4.422808066E-02 1.968799916E-05 + 9.545221329E-01 2.768019736E-01 1.159368753E+00 4.496096447E-02 1.968799916E-05 + 9.549798965E-01 2.788019776E-01 1.159327507E+00 4.569542408E-02 1.968799916E-05 + 9.554376602E-01 2.808019817E-01 1.159057021E+00 4.640068486E-02 1.968799916E-05 + 9.558954239E-01 2.828019857E-01 1.158434749E+00 4.721594974E-02 1.968799916E-05 + 9.563532472E-01 2.848019898E-01 1.157468796E+00 4.822210595E-02 1.968799916E-05 + 9.568110108E-01 2.868019938E-01 1.156510234E+00 4.928846657E-02 1.968799916E-05 + 9.572687745E-01 2.888019979E-01 1.156102777E+00 5.008211359E-02 1.968799916E-05 + 9.577265382E-01 2.908019722E-01 1.156345248E+00 5.040421337E-02 1.968799916E-05 + 9.581843019E-01 2.928019762E-01 1.156288505E+00 5.073607340E-02 1.968799916E-05 + 9.586421251E-01 2.948019803E-01 1.156099558E+00 5.114307255E-02 1.968799916E-05 + 9.590998888E-01 2.968019843E-01 1.155698180E+00 5.165417492E-02 1.968799916E-05 + 9.595576525E-01 2.988019884E-01 1.155446291E+00 5.215450376E-02 1.968799916E-05 + 9.600154161E-01 3.008019924E-01 1.154307842E+00 5.295208842E-02 1.442924167E-05 + 9.604732394E-01 3.028019965E-01 1.152607203E+00 5.385504663E-02 1.085425356E-05 + 9.609310031E-01 3.048019707E-01 1.151393533E+00 5.457889661E-02 1.032989439E-05 + 9.613887668E-01 3.068019748E-01 1.150840640E+00 5.517030135E-02 8.391267329E-06 + 9.618465304E-01 3.088019788E-01 1.149652839E+00 5.598747358E-02 6.976999885E-06 diff --git a/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.95.dat b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.95.dat new file mode 100644 index 0000000000000000000000000000000000000000..88c35e51cbecbf07447cda84066e3f7c278e35ac --- /dev/null +++ b/tutorials/incompressible/pimpleFoam/LES/NACA4412/validation/exptData/exp_vel_xbyc0.95.dat @@ -0,0 +1,156 @@ +# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case +# The lines were drawn by hand to be "visually" normal to the airfoil surface; +# however, whether it is normal or not does not matter because the CFD is compared along the same lines. +# +# In these lines, experimental data were interpolated via Tecplot software onto +# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002 +# (except at the last station, where the points start at d/c=.006 off the surface) +# Points were also added AT the surface, with u=v=uv=0 +# +# x and y are normalized by chord +# u and v are each normalized by Uref +# uv = u'v' is normalized by Uref^2 +# Uref is the reference velocity, located about 1 chord below and behind the airfoil +# (from CFD tests, Uref is roughly 0.93*Uinf) +# +# VARIABLES = "x","y","u","v","uv" +# ZONE T="x=.9528" + 9.527999759E-01 1.286614314E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00 + 9.542863369E-01 1.886614226E-02 -9.970504791E-02 6.942666322E-02 -2.810906153E-03 + 9.547817707E-01 2.086614259E-02 -8.799998462E-02 6.544791162E-02 -3.075312357E-03 + 9.552772641E-01 2.286614291E-02 -7.684317976E-02 6.131247059E-02 -3.456973936E-03 + 9.557726979E-01 2.486614324E-02 -6.311172247E-02 5.677530915E-02 -3.878151299E-03 + 9.562681317E-01 2.686614357E-02 -4.778628051E-02 5.240697041E-02 -4.376799800E-03 + 9.567635655E-01 2.886614203E-02 -2.743427642E-02 4.865555838E-02 -4.917756189E-03 + 9.572590590E-01 3.086614236E-02 -1.365320664E-02 4.502450675E-02 -5.498901941E-03 + 9.577544928E-01 3.286614269E-02 6.334785372E-03 4.103296995E-02 -6.128502544E-03 + 9.582499266E-01 3.486614302E-02 2.559219487E-02 3.676034883E-02 -6.754100323E-03 + 9.587453604E-01 3.686614335E-02 4.619380087E-02 3.239853308E-02 -7.426653057E-03 + 9.592408538E-01 3.886614367E-02 7.028775662E-02 2.797538601E-02 -8.174027316E-03 + 9.597362876E-01 4.086614400E-02 9.618803114E-02 2.358061261E-02 -8.956282400E-03 + 9.602317214E-01 4.286614433E-02 1.200689897E-01 1.932970993E-02 -9.721894749E-03 + 9.607271552E-01 4.486614466E-02 1.438326836E-01 1.536105946E-02 -1.051289309E-02 + 9.612226486E-01 4.686614126E-02 1.688167304E-01 1.154934522E-02 -1.127966307E-02 + 9.617180824E-01 4.886614159E-02 1.965702623E-01 7.881884463E-03 -1.215717662E-02 + 9.622135162E-01 5.086614192E-02 2.291692942E-01 4.092871677E-03 -1.297810487E-02 + 9.627089500E-01 5.286614224E-02 2.628163099E-01 -1.573282134E-05 -1.381107885E-02 + 9.632044435E-01 5.486614257E-02 2.964631617E-01 -4.228235222E-03 -1.457056962E-02 + 9.636998773E-01 5.686614290E-02 3.352153599E-01 -8.156108670E-03 -1.529316977E-02 + 9.641953111E-01 5.886614323E-02 3.725149035E-01 -1.208724640E-02 -1.587371714E-02 + 9.646907449E-01 6.086614355E-02 4.072124064E-01 -1.614699140E-02 -1.630165055E-02 + 9.651862383E-01 6.286614388E-02 4.434002340E-01 -1.988843083E-02 -1.659209654E-02 + 9.656816721E-01 6.486614048E-02 4.827232063E-01 -2.314625867E-02 -1.675101183E-02 + 9.661771059E-01 6.686614454E-02 5.239234567E-01 -2.625730447E-02 -1.679470763E-02 + 9.666725397E-01 6.886614114E-02 5.682435036E-01 -2.899908461E-02 -1.668138430E-02 + 9.671680331E-01 7.086614519E-02 6.080560684E-01 -3.130530193E-02 -1.655064523E-02 + 9.676634669E-01 7.286614180E-02 6.501834989E-01 -3.330387920E-02 -1.634930260E-02 + 9.681589007E-01 7.486614585E-02 6.899781823E-01 -3.479544446E-02 -1.608438976E-02 + 9.686543345E-01 7.686614245E-02 7.288462520E-01 -3.603852913E-02 -1.570267975E-02 + 9.691498280E-01 7.886614650E-02 7.675462365E-01 -3.682347387E-02 -1.514492370E-02 + 9.696452618E-01 8.086614311E-02 8.069908619E-01 -3.714656457E-02 -1.442584023E-02 + 9.701406956E-01 8.286613971E-02 8.450490832E-01 -3.722187132E-02 -1.361065358E-02 + 9.706361294E-01 8.486614376E-02 8.807156682E-01 -3.722567111E-02 -1.269411389E-02 + 9.711315632E-01 8.686614037E-02 9.153606892E-01 -3.717391565E-02 -1.154709328E-02 + 9.716270566E-01 8.886614442E-02 9.472816586E-01 -3.716856614E-02 -1.054352894E-02 + 9.721224904E-01 9.086614102E-02 9.705656767E-01 -3.675203398E-02 -9.773825295E-03 + 9.726179242E-01 9.286614507E-02 9.921996593E-01 -3.602764010E-02 -8.906070143E-03 + 9.731133580E-01 9.486614168E-02 1.013755202E+00 -3.519105166E-02 -8.066644892E-03 + 9.736088514E-01 9.686614573E-02 1.034737945E+00 -3.422456607E-02 -7.224531379E-03 + 9.741042852E-01 9.886614233E-02 1.053725839E+00 -3.296714649E-02 -6.378210615E-03 + 9.745997190E-01 1.008661464E-01 1.071318269E+00 -3.157253563E-02 -5.543611012E-03 + 9.750951529E-01 1.028661430E-01 1.086076140E+00 -3.022108600E-02 -4.775537178E-03 + 9.755906463E-01 1.048661396E-01 1.096827507E+00 -2.890996635E-02 -4.081695806E-03 + 9.760860801E-01 1.068661436E-01 1.105587363E+00 -2.760012262E-02 -3.468567738E-03 + 9.765815139E-01 1.088661402E-01 1.112722516E+00 -2.641095966E-02 -3.054297529E-03 + 9.770769477E-01 1.108661443E-01 1.118373513E+00 -2.498997375E-02 -2.638701117E-03 + 9.775724411E-01 1.128661409E-01 1.122925282E+00 -2.332745492E-02 -2.245783573E-03 + 9.780678749E-01 1.148661450E-01 1.127065301E+00 -2.193271555E-02 -1.935637556E-03 + 9.785633087E-01 1.168661416E-01 1.130972505E+00 -2.047930285E-02 -1.639157417E-03 + 9.790587425E-01 1.188661456E-01 1.134445667E+00 -1.911402680E-02 -1.364585361E-03 + 9.795542359E-01 1.208661422E-01 1.137402773E+00 -1.783199050E-02 -1.148460549E-03 + 9.800496697E-01 1.228661463E-01 1.139883280E+00 -1.672342420E-02 -9.841342689E-04 + 9.805451035E-01 1.248661429E-01 1.141831398E+00 -1.575813256E-02 -8.454045746E-04 + 9.810405374E-01 1.268661469E-01 1.142813206E+00 -1.474177465E-02 -7.351113600E-04 + 9.815360308E-01 1.288661361E-01 1.143508196E+00 -1.375425328E-02 -6.205629325E-04 + 9.820314646E-01 1.308661401E-01 1.143963337E+00 -1.269592065E-02 -5.461244145E-04 + 9.825268984E-01 1.328661442E-01 1.144129276E+00 -1.160775311E-02 -4.484227975E-04 + 9.830223322E-01 1.348661482E-01 1.144489765E+00 -1.045959722E-02 -3.673538449E-04 + 9.835178256E-01 1.368661374E-01 1.144799948E+00 -9.441477247E-03 -3.115899162E-04 + 9.840132594E-01 1.388661414E-01 1.144985557E+00 -8.449923247E-03 -2.699405013E-04 + 9.845086932E-01 1.408661455E-01 1.144922256E+00 -7.436510175E-03 -2.291002020E-04 + 9.850041270E-01 1.428661495E-01 1.144803524E+00 -6.481676828E-03 -1.820367470E-04 + 9.854996204E-01 1.448661387E-01 1.144881248E+00 -5.594467279E-03 -1.380673202E-04 + 9.859950542E-01 1.468661427E-01 1.145023227E+00 -4.607403185E-03 -1.029239938E-04 + 9.864904881E-01 1.488661468E-01 1.144719720E+00 -3.421395319E-03 -6.809686602E-05 + 9.869859219E-01 1.508661360E-01 1.144686818E+00 -2.351528965E-03 -2.003564441E-05 + 9.874814153E-01 1.528661400E-01 1.144959927E+00 -1.316927490E-03 -3.002597987E-05 + 9.879768491E-01 1.548661441E-01 1.145096421E+00 -3.682948882E-04 -4.793506014E-05 + 9.884722829E-01 1.568661481E-01 1.144539833E+00 6.616496248E-04 -5.950019477E-05 + 9.889677167E-01 1.588661373E-01 1.144107103E+00 1.521074795E-03 -5.120555579E-05 + 9.894632101E-01 1.608661413E-01 1.144127846E+00 2.255492611E-03 -3.389508856E-05 + 9.899586439E-01 1.628661454E-01 1.144220591E+00 2.964586951E-03 -1.613750283E-05 + 9.904540777E-01 1.648661494E-01 1.144097567E+00 3.770654788E-03 5.826286724E-07 + 9.909495115E-01 1.668661386E-01 1.143765211E+00 4.668002017E-03 1.959658584E-05 + 9.914450049E-01 1.688661426E-01 1.143053055E+00 5.496573169E-03 3.310423926E-05 + 9.919404387E-01 1.708661467E-01 1.142998815E+00 6.076649297E-03 3.705675044E-05 + 9.924358726E-01 1.728661358E-01 1.141353130E+00 7.105476689E-03 4.500618525E-05 + 9.929313064E-01 1.748661399E-01 1.140807390E+00 7.828943431E-03 4.901240391E-05 + 9.934267998E-01 1.768661439E-01 1.140239120E+00 8.446372114E-03 4.934699973E-05 + 9.939222336E-01 1.788661480E-01 1.140060067E+00 9.111754596E-03 4.934699973E-05 + 9.944176674E-01 1.808661371E-01 1.140762329E+00 9.714838117E-03 5.038956806E-05 + 9.949131012E-01 1.828661412E-01 1.141713858E+00 1.040164381E-02 5.105379751E-05 + 9.954085946E-01 1.848661453E-01 1.142010093E+00 1.122527942E-02 5.067541497E-05 + 9.959040284E-01 1.868661493E-01 1.141457915E+00 1.206277031E-02 4.982203973E-05 + 9.963994622E-01 1.888661385E-01 1.140750766E+00 1.290607266E-02 4.786597128E-05 + 9.968948960E-01 1.908661425E-01 1.138118863E+00 1.402547676E-02 3.692610335E-05 + 9.973903894E-01 1.928661466E-01 1.136470318E+00 1.540289074E-02 3.663600000E-05 + 9.978858232E-01 1.948661357E-01 1.136629343E+00 1.621725224E-02 3.663600000E-05 + 9.983812571E-01 1.968661398E-01 1.137125850E+00 1.701334678E-02 3.616517279E-05 + 9.988766909E-01 1.988661438E-01 1.138220668E+00 1.771878265E-02 3.531600669E-05 + 9.993721247E-01 2.008661479E-01 1.138922215E+00 1.852150820E-02 3.493766781E-05 + 9.998676181E-01 2.028661370E-01 1.139683485E+00 1.929480210E-02 3.455928527E-05 + 1.000362992E+00 2.048661411E-01 1.140511274E+00 1.997825503E-02 3.418099368E-05 + 1.000858545E+00 2.068661451E-01 1.140698552E+00 2.069765888E-02 3.490749441E-05 + 1.001353979E+00 2.088661492E-01 1.140045166E+00 2.166933008E-02 3.663600000E-05 + 1.001849413E+00 2.108661383E-01 1.138621449E+00 2.289455757E-02 3.663600000E-05 + 1.002344847E+00 2.128661424E-01 1.137500525E+00 2.386591397E-02 3.663600000E-05 + 1.002840281E+00 2.148661464E-01 1.137256980E+00 2.468179725E-02 3.663600000E-05 + 1.003335714E+00 2.168661356E-01 1.137245297E+00 2.540454268E-02 3.663600000E-05 + 1.003831148E+00 2.188661397E-01 1.137210965E+00 2.625626884E-02 3.294007183E-05 + 1.004326582E+00 2.208661437E-01 1.137814283E+00 2.695935033E-02 3.115419895E-05 + 1.004822135E+00 2.228661478E-01 1.139044404E+00 2.740280330E-02 2.946888526E-05 + 1.005317569E+00 2.248661369E-01 1.140270233E+00 2.787190862E-02 2.816199958E-05 + 1.005813003E+00 2.268661410E-01 1.140405297E+00 2.867401950E-02 2.816199958E-05 + 1.006308436E+00 2.288661450E-01 1.139353275E+00 2.980024740E-02 2.816199958E-05 + 1.006803870E+00 2.308661491E-01 1.137792468E+00 3.080647439E-02 2.816199958E-05 + 1.007299304E+00 2.328661382E-01 1.137555480E+00 3.174801916E-02 2.816199958E-05 + 1.007794738E+00 2.348661423E-01 1.136534214E+00 3.278223798E-02 2.816199958E-05 + 1.008290172E+00 2.368661463E-01 1.135360479E+00 3.391093761E-02 2.816199958E-05 + 1.008785725E+00 2.388661355E-01 1.135889411E+00 3.471950814E-02 2.816199958E-05 + 1.009281158E+00 2.408661395E-01 1.136912227E+00 3.514134884E-02 2.816199958E-05 + 1.009776592E+00 2.428661436E-01 1.138183713E+00 3.553560376E-02 2.816199958E-05 + 1.010272026E+00 2.448661476E-01 1.139119744E+00 3.616376966E-02 2.816199958E-05 + 1.010767460E+00 2.468661368E-01 1.139239550E+00 3.695085645E-02 2.719880285E-05 + 1.011262894E+00 2.488661408E-01 1.139202356E+00 3.775022179E-02 2.585726361E-05 + 1.011758327E+00 2.508661449E-01 1.139284134E+00 3.853648528E-02 2.547892291E-05 + 1.012253761E+00 2.528661489E-01 1.138543844E+00 3.961358964E-02 2.510058039E-05 + 1.012749314E+00 2.548661530E-01 1.137452602E+00 4.075939208E-02 2.472214874E-05 + 1.013244748E+00 2.568661571E-01 1.136593819E+00 4.172107205E-02 2.434380622E-05 + 1.013740182E+00 2.588661313E-01 1.136356354E+00 4.245689511E-02 2.099640005E-05 + 1.014235616E+00 2.608661354E-01 1.136765480E+00 4.284528270E-02 1.968799916E-05 + 1.014731050E+00 2.628661394E-01 1.136881351E+00 4.324305803E-02 1.968799916E-05 + 1.015226483E+00 2.648661435E-01 1.136710167E+00 4.370051622E-02 1.968799916E-05 + 1.015721917E+00 2.668661475E-01 1.136603594E+00 4.412170872E-02 1.968799916E-05 + 1.016217351E+00 2.688661516E-01 1.136307597E+00 4.457793385E-02 1.968799916E-05 + 1.016712904E+00 2.708661556E-01 1.135492206E+00 4.520404339E-02 1.906370562E-05 + 1.017208338E+00 2.728661299E-01 1.133678079E+00 4.609559104E-02 9.424397831E-06 + 1.017703772E+00 2.748661339E-01 1.131979823E+00 4.704375565E-02 8.852959581E-06 + 1.018199205E+00 2.768661380E-01 1.131840348E+00 4.758985341E-02 1.782200707E-05 + 1.018694639E+00 2.788661420E-01 1.131175518E+00 4.843693599E-02 1.968799916E-05 + 1.019190073E+00 2.808661461E-01 1.130455375E+00 4.930710793E-02 1.968799916E-05 + 1.019685507E+00 2.828661501E-01 1.130355000E+00 5.010844022E-02 1.949095531E-05 + 1.020180941E+00 2.848661542E-01 1.130533099E+00 5.084481090E-02 1.872640678E-05 + 1.020676494E+00 2.868661284E-01 1.130535603E+00 5.157846585E-02 1.892338150E-05 + 1.021171927E+00 2.888661325E-01 1.130503535E+00 5.241573602E-02 1.968799916E-05 + 1.021667361E+00 2.908661366E-01 1.130562067E+00 5.327306688E-02 1.968799916E-05 + 1.022162795E+00 2.928661406E-01 1.130603671E+00 5.409759656E-02 1.961750422E-05 diff --git a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/0.orig/nut b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/0.orig/nut index cd359e8e40f5590eca75d13f0dc11eeda45c9dc3..092e096190a54eb4ea5dc0c60ea4330a22eb47dc 100644 --- a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/0.orig/p b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/0.orig/p index 6f484d39748c9cbb5135614422b0f6ba9dbdb434..25c9b2770d02ac8ba2aec5ed6062440f8732d9f8 100644 --- a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/createBoxTurbDict b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/createBoxTurbDict index e8d1b6e0254c47c2a2157bbca50f7f0190011d7d..4b99a5ae389ee33a2e15a8eb49f72148ccde3a40 100644 --- a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/createBoxTurbDict +++ b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/createBoxTurbDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/transportProperties b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/turbulenceProperties index 5069d3ffe081eab54c1b7a7a179b49d7adc80e51..4a8a4f296e4e3e4373daa4851ee82e0a9805f4b5 100644 --- a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/blockMeshDict index e91a473b6df727b263e529af9abe0e961e61d299..addde3f62f36c34cac73778d9b0786b06e348a44 100644 --- a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/controlDict b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/controlDict index dc9519fe598803ff03e45073c8b6986e1253063e..d2f84b81515ca447501ba70c07066e174504ef99 100644 --- a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/decomposeParDict index 1bf8b9fe1fdbba5e584f184deb334d750be2bb09..0af5ff20e0964fb3f1e7a0762b66abb880b629c0 100644 --- a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/fvSchemes b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/fvSchemes index a3c9beac990300abaccfa1588d8974fa4b8fe759..60916ffea928abb5e1b089519c1a624343777835 100644 --- a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/fvSolution b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/fvSolution index 9c7376aee923c8b4778b08bc9b9ce1bc3e554ad5..d1eb7e66a88d1cdaf7e68c6539ac89d8b8987f1e 100644 --- a/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/LES/decayIsoTurb/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/U b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/U index f71ea689202a093e01b19d645cc9fdc25b8c1b55..38d2ba3312c2f3646e60487dfd4c63c50b9e7a3b 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/k b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/k index 76fbcb3a13c88f0303d7ac86e2cd0693cdf21055..ecf6cb761d9333f6d4a6e265fb2e31d8eb0f6d79 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/nuTilda b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/nuTilda index ea8cc6a1f7fa47f2dec205675fbb66d14c8f7c11..663a434866e87b1f3c79738ae24f258f3aa2bc4f 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/nuTilda +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/nut b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/nut index b28d45e9e2ebbb2e1712d7dcce0cec278fa32d08..22a4435b144ff6cc413c760431967286dabfff15 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/p b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/p index c98afa6ead68d68ff9e9a3006afafc19ee9a6232..0a1869d18d948d0f91b281295fd6bd4601be728e 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/constant/transportProperties b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/constant/transportProperties index 608af70c0dc4a138cd3ed7de4dbd14e5051c5bb2..bfca6b19cfdaa7d9cad91ef36cdb1e763672b14a 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/constant/turbulenceProperties index efd3c3c0119c889d43888200097a6da44c95881a..642aab31c7ea15edeeb4d1665fb09eb96070420d 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/blockMeshDict index a356b557aa01202875f537ed30bd7c12d42566e2..56d4639ea559e4a02e971ed510a441dd3587c25e 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/controlDict b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/controlDict index d23da486d55de48577d838d0f90362457b049494..ac3d1d70963ab359a0609a6df1d011f5be26f728 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/decomposeParDict index af909f0999f4c26b086120bd06e50f5c4bf46f29..b49c81e0a3d0378cbd126919a6af35699499a899 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvOptions b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvOptions index 003dd7469af69b5e7cb48c5c9d0d331ff8cceddc..24b8e0990a4dbe89c3cadfe265c47f94aa5840ab 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvOptions +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvSchemes b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvSchemes index 414040b25e5fc63185960c8a8eb02ab1679f8c3b..d2c34d639c75918522cb8ac49ace8a2a2acdbb45 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvSolution b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvSolution index 1be9e79d4ff9a49136c3d297040c9524424e0993..95bc0dab51ead7689aeee77a628519955aa01929 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/topoSetDict b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/topoSetDict index aee73b8555168b19b3779b29a4a797bb6f1a31ca..cd7322b9d07b7ec73a67ba255a5a4612a6d20788 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/topoSetDict +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/steadyState/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/constant/transportProperties b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/constant/transportProperties index 608af70c0dc4a138cd3ed7de4dbd14e5051c5bb2..bfca6b19cfdaa7d9cad91ef36cdb1e763672b14a 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/constant/turbulenceProperties index 8ff9cdff8937a4ebd81a6b47f2f04cfbc622edc7..ad967a8eee675b48bb8c5b6ecc77d0b9a9b33662 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/blockMeshDict index b7d1e2a35ae83ee7aab6fd0de8fbbedd64a1e6b2..711ec4e46010e77f1414a22c7b0dfdeaede2702f 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/controlDict b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/controlDict index 4fb7e85b1f2ec1f378970a43894ac127c8b8bc58..23fd7d3709d37be1615595d246ec9689c5441d46 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/cuttingPlane b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/cuttingPlane index a160eef1a5612a74cd87611f2d1a22137354df23..d4e773063258f78e6cf435038227dc3cb7448281 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/cuttingPlane +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/cuttingPlane @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/decomposeParDict index af909f0999f4c26b086120bd06e50f5c4bf46f29..b49c81e0a3d0378cbd126919a6af35699499a899 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvOptions b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvOptions index 003dd7469af69b5e7cb48c5c9d0d331ff8cceddc..24b8e0990a4dbe89c3cadfe265c47f94aa5840ab 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvOptions +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvSchemes b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvSchemes index b5fa7595e84a933b0316c58e984c066f20e541dc..08ce3a9763605d9242f3aa7b2313cb588e44f69d 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvSolution b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvSolution index 85cf2984c0e9f13800436874c0f174c162fd5d92..7c1d9871fe38f9f3b346f57e5ff923fe749295de 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/fvOptions b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/fvOptions index 6e1abdc60191712ced473fee5b70e2d1131611df..14eca711fb1780352ea533240d151dd9ca59904d 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/fvOptions +++ b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/postChannelDict b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/postChannelDict index b55a091244bccf7cdb4e388d17dee76623f450f0..6d7aa97696b4eeb44ce8a1ffbb5240c924711e2b 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/postChannelDict +++ b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/postChannelDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/transportProperties b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/transportProperties index bda7993cc80e939b15432e9699156eb0b13857ca..131ce05d5866bd2a71260a6576231d582fe1811f 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/turbulenceProperties index c4a4f65530dd38f2b5dae1284f71564abca1b05d..35f52aa1540056fbd546c6a02494415e269ff6ce 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/blockMeshDict index e91a473b6df727b263e529af9abe0e961e61d299..addde3f62f36c34cac73778d9b0786b06e348a44 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/controlDict b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/controlDict index c8ec5844d896f9dc90040f8903a8e69c39dae69c..aa0a61f3c02bcdbb0314b9b5b9519871ad0e395b 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/decomposeParDict index a2fa47c2edff8ecfe6be9a201467ca8c96d333c8..6f1bcb5f12b7145cb4633e7bb3fdce0f7956eecb 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/fvSchemes b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/fvSchemes index 73bebe266acccec16cac07ac9a3b9ef756ee496a..aef6ea7128efb32ac96df489174e2246b7d52dac 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/fvSolution b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/fvSolution index 73be4547932d7dc0f54f678815bee714f594868b..c5cc64f982a3877e346c3ecb26d6fdecb0f389a5 100644 --- a/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/LES/periodicPlaneChannel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/DFM/0.orig/U b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/DFM/0.orig/U index 0e12ad218ee40de8a0d47684001941054d9fd7c7..e1760cb39cc3c880d845f0a0e7da6d828db80b46 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/DFM/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/DFM/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/DFSEM/0.orig/U b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/DFSEM/0.orig/U index 83c892ca2af107593faca5adc923b6226a554073..ab821844fd420d372ba5b5124b192955bebe4d27 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/DFSEM/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/DFSEM/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/FSM/0.orig/U b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/FSM/0.orig/U index 99544b64b3f95ec77cebfbae7440321deb12eaa2..8a0b2f0132d804b545591a2d8af04866969e449c 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/FSM/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/FSM/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/0.orig/nut b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/0.orig/nut index 2289e3facd07eceb59807f150bffe2292ff1b275..1a8aa0b5e0c21f6c54c54bba614115b327823584 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/0.orig/p b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/0.orig/p index 2c7d05bd0fc8712aacc8d3c72372239bbef91040..33624f5693e3dae10aee497240655e07eb8aa73a 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/constant/transportProperties b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/constant/transportProperties index c66dda10b471769ade97ad5dcef602c9bb0f56cb..f892a8a52d5eb72dde9b3482dc37e53610f08513 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/constant/turbulenceProperties index e9492475d90426409ac6c6bce99f6b63c781049d..447b612d057f6ead1eda5c1c210de2982dc263e8 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/blockMeshDict index 0c6fba6da916b0912137632d304f22f99a6dc376..857592bb5108939e5f8daaf0c672fb7b0c97edc5 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/controlDict b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/controlDict index f23bd32323ee6dcf8bdfa9d7f548da629e44f1d5..d0db1f1e813e2ed0535feb1990e8cfe8aa5d9bb1 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/decomposeParDict index 83c07873217f8635b88e211f6c41a9ae151ff553..6a8c230e3445da49a2eb4827bb753bdedca26d9a 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/fvSchemes b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/fvSchemes index 9c5a8784b900146ce27fc08549229d6859b746fc..0aa788111d7cf34682ecad3d24bc1d9a424907fe 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/fvSolution b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/fvSolution index 38e47b0ed89ecafde8e5e4263b4a851c96db4552..b7bd183762bf33122e8e5a8c11d4e36eb8812fb0 100644 --- a/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/LES/planeChannel/setups.orig/common/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/U b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/U index 9daed7b5fda8e0881cb368430d3c022f7872230e..916c841c60ed464292888ed351ecae46e4a09567 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/k b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/k index 86a4c81f3983a0a98165498f7295eef6c0eff3e8..7cbb4560d83d65a2cb278c111f29c80ee49401d1 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/nuTilda b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/nuTilda index d1dbb88c21314bda3f1937dadd6de6b72c2413fa..c225d525fdb30ca6eabca4abd2672ec3f2b72b80 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/nuTilda +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/nut b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/nut index 23ec21a3df4c34f9b4c19d9a1138f58c610017b5..00e14791552abba13b88600228667bc79e1a8081 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/p b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/p index 82f886ab51a728dd9161fa2c9eefc80f2ff54e22..3bb07a0e81edcc282cab06a9dea0a330c2dbad9a 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/constant/transportProperties b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/constant/transportProperties index c2019dd4313c4e7bc270abbb631e4535e512292c..1fbdf76cba5afbccd461f9de1a683c845f5f531c 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/constant/turbulenceProperties index 38bcaf67b00d10f6135557b8cddaf942155385c4..9d791d48219307581029d070cee8a2279e6dc4e5 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/blockMeshDict index 9918dc401d3070dcd6d2c27b845ca2b3783e6f6f..19e9768bcce5dc4b6c278170f4e66f9f47c4832c 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/controlDict b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/controlDict index 290dc168e48852526ab97aee28ca97e63e4cff97..5dd2d4a1893f643d8158d66540eee9b2f346b947 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/decomposeParDict index 1fc229c1c020d1768a6272d0e2e79368b8589051..7fa64aa2657c216de285ce615e25ae2c48d12c81 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/fvSchemes b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/fvSchemes index 23614567a9706c053e5909ad0d60ddcf3027fd5d..9db3448fe9d53a706720fe702027e59e9a1e4187 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/fvSolution b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/fvSolution index 65dafac938fc08602f38fab624743dea33c45813..9ee321cce4b22780e29b43dd67483981fd3f29af 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/sample b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/sample index 13a685cde29c9d8c6e3dd4ad7ad3e3edabcb9e91..22694e9245df18530c5b51713a16b2d00dba94c1 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/sample +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/fullCase/system/sample @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/U b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/U index 08c124db8a9cd3d5babf53339565c0ec32bb8ca6..c291a509810fd9c82288975e23e9edbfd34e5c08 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/epsilon b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/epsilon index a4c55e242596da069227179d34f58bed75c6f180..105e248a494ca33c27265823c2e1b2c642840535 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/epsilon +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/k b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/k index 0455bd2f0ca662ff7f7d7ff04965c279efd60cc6..b1d2d6b2153ad73d78e9f0b8c850e9997b872b3c 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/nuTilda b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/nuTilda index 708691a5dc5a2e6f738eac9c8f378286f1e4896c..544e7bdac9a08f2c017a3ef12cab97b688ecab36 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/nuTilda +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/nut b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/nut index a3f632cd047673d26c1b84a4cd7fdbdad1966ca9..541fb9153b798a7bb45630faba7ced368231356b 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/constant/transportProperties b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/constant/transportProperties index 2c8ee6634fbf28cc25580d989a6bd0352f906406..dfc5ca24910fa0becb31c26ce619445b05159a32 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/constant/turbulenceProperties index 43f16675b4a46f10504d32f1041ea4c3f22fd529..5267c47501604c5f51769668d77b135bbfa011c3 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/blockMeshDict index 579774a6548d92824f97120fbae75290af6b7c33..bd7d7abe8835efead1d885f47ff59f6ff6b9b890 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/controlDict b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/controlDict index 14ea844c91e4e53a2e3cd59ac9428f38f78c84ab..ca4363b6a38501edb7b5e1d2c3569f28629c79ad 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/fvSchemes b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/fvSchemes index 397d46774c929d605c75cd8af4f1fd58eb8ac515..81ce4aa99f9db906647aa03770502260505bdd2b 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/fvSolution b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/fvSolution index c41e09962ce65893c59dd35cbb0b67917db9a845..10f7e7af72905c219a50bbbdce0e872bf4b4b904 100644 --- a/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/U b/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/U index ab6b6ca4844e5c35648b33b90006addac4f83351..27ffdae4a8fb6020dc0b68481e06ebd84dbc9902 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/nuTilda b/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/nuTilda index ce613b6b9c89e51388d3ed41c9cfbde7ee9a1bd9..a5bf916cf81313f054039cc3e1b6e4fc52a3bf8d 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/nuTilda +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/nut b/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/nut index 607000dfcd384509cb3d482963ac81c9d7bd0d0b..d0f79b23e87d60dc1a67bbffdb4112d64c4ffc5e 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/p b/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/p index 9431e9e8be688f739755b24642d2fcffe79e85c8..607a5512aee1f224c938e207542e1e136cbc4741 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/constant/transportProperties b/tutorials/incompressible/pimpleFoam/LES/vortexShed/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/vortexShed/constant/turbulenceProperties index dc16da27e60c5a3522c1d1ad014acc5557e676c5..56c9be2e337e4dfd1e50751e744fda997d9abdb1 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/blockMeshDict.m4 b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/blockMeshDict.m4 index 890c7e5bcc18e886f707cfd8fa61d317ebc4c84a..726dad3d76094f467c45d04cc12d5c5a5928396c 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/blockMeshDict.m4 +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/blockMeshDict.m4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/controlDict b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/controlDict index 5f3a9d292f9de4668461518431c95c41a2eded84..6c61bb83b1e3b724c7f5ced094eb0e5c0edc4eb0 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/decomposeParDict index 008c06e60c70023caebe76b04ae44402c64bdb54..9e006d775c42048d6d6c1c6430b882593911bdca 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/fvSchemes b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/fvSchemes index fce887882268285d25a064b4e5074431f6f2ed63..68d176e15b40f2818323f919e1af7265dac319ee 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/fvSolution b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/fvSolution index f347aa313a53deb2153254487e53c9d3e81f057e..3aede742c97580ef5cbecc81f84710f85ff974c9 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/noiseDict-point b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/noiseDict-point index 5b3e700b9c999a4b7db96577f477e2d21074ac93..3c0f9fddf5032a68634fc9441a8e1dac7c356ccc 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/noiseDict-point +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/noiseDict-point @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/noiseDict-surface b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/noiseDict-surface index 3511892814c2fb9fffdb51d796bd3452310e536f..21807b666182ae30403dbe9347e98a25d86b9fd7 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/noiseDict-surface +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/noiseDict-surface @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-DeltaOmegaTilde-useSigmaTrue/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-DeltaOmegaTilde-useSigmaTrue/constant/turbulenceProperties index 58f4f2c8077b0e06d19a00ad5c4501df74df8923..524f1c6fd3cdde11d7ac7a948f30d30b11d917de 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-DeltaOmegaTilde-useSigmaTrue/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-DeltaOmegaTilde-useSigmaTrue/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-SLADelta-useSigmaFalse/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-SLADelta-useSigmaFalse/constant/turbulenceProperties index 4c635f23acd18573c5d087d09996df9964c0bfe1..f8243646e667458cb9d5bbdc89773b9e1775dedd 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-SLADelta-useSigmaFalse/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-SLADelta-useSigmaFalse/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-maxDeltaxyzCubeRoot/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-maxDeltaxyzCubeRoot/constant/turbulenceProperties index 004850107c0a060c18a5ab7d81b232d5692f34bd..ef5c6de4d3ce6c32d6c24fa1c100e87143df232d 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-maxDeltaxyzCubeRoot/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasDDES-maxDeltaxyzCubeRoot/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasIDDES-IDDESDelta/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasIDDES-IDDESDelta/constant/turbulenceProperties index 25d1a40bfdaec259f8ac7cc5881ede90e0cccdd3..4e91aa1dd78caf4769aa674cd90b7f6fc02f76ae 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasIDDES-IDDESDelta/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/SpalartAllmarasIDDES-IDDESDelta/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/U b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/U index 3fbe367015883598117659444ac469986442ce03..40df07e2fadd5814d9587b8c386efd87d8231c37 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/k b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/k index 18f5508cdc99f0fcea71eb4fbdfe09d1bb7645c8..7845582647c1d552c85cda4516777ef803f7defe 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/nuTilda b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/nuTilda index 2863692397111cd17ec5badff9ff0103d7a23229..67e2efa0ad23dd6f6298d08983f38f38062f93df 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/nuTilda +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/nut b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/nut index 616cd6387b8d85fd70c4e7b2a31403d3dfd03ea7..0f256fff7245485808ce4422ea335cca041cadca 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/omega b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/omega index e6525e8a3bce6ad94560c69fd76b3e72cc316500..e57cb47c7dc7b6b11f538dcebde415307036187c 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/omega +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/p b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/p index db26e17e18b78330b1695efdcd5ab2d251963a9a..fff3d98274420cde0e23943b9c309fe5e10d9df0 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/constant/transportProperties b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/constant/transportProperties index 27b63f6258f7ad98d6506e74f5cdf2795cf139ca..c08e67f7e382da63057fd6588c34216623d960d8 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/blockMeshDict index ba748e1771c4f16e091ef5bec8a0f9be88eabad5..1d84b0cc5ebe20a12c006d5ca0dd4777178bedab 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/columnAverage b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/columnAverage index 1f71ec763a076e2fc9d34ef7a89444ff7d482105..0a02bd0ca9a65e54be85170d6c053b65dde46b28 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/columnAverage +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/columnAverage @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/controlDict b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/controlDict index d9ceb80033d5a86f056cde02a084a33c83ebe31b..98f5dc69a6bf9c436757d40d1be50c878e1efe20 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/decomposeParDict index feb8cd52351290c3fd0345621cc49f2fdbc5c6ef..1e24243dde1609653c17d3d71c31bdc5d339a786 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fieldAverage b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fieldAverage index 438866e5178ebeda018e3cf244f36dfe2c0731c0..785c34bda5ce9eeb800652f51a71aa0fb5beeaf2 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fieldAverage +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fieldAverage @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fvSchemes b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fvSchemes index d50a946acfb633528084adb6c7a29abd48b4ef9e..fd999871fac2a011a73c9a225146e9236e12e2bd 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fvSolution b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fvSolution index abf5a886a6f118e5812da00d880ba8de079128f3..3efdba588cb1bb00dca0004e9c93320367e8674a 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/sampleDict b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/sampleDict index 27a2bbfc3abb2dab5f16af8ba8db344babf38d3f..2b81be467cd0b81549c28970538f63b574615449 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/sampleDict +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/sampleDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/volFields b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/volFields index b358a012e010577bb07f031c796e20929af8ea50..5f550f1dee5888e68af42d31c5e889b0a86d97e0 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/volFields +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/volFields @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/wallFields b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/wallFields index 4b5a821c7b38b248cf812d47bedaaa6703f89231..7217e7792aa5b5cfa20ad561059d161c66f481ef 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/wallFields +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/common/system/wallFields @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/kOmegaSSTDDES-DeltaOmegaTilde-useSigmaTrue/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/kOmegaSSTDDES-DeltaOmegaTilde-useSigmaTrue/constant/turbulenceProperties index 6a814aaf01c90b1297dbf9e6eec22eedeaae9c40..29ec6d027aa6a94927eeb683d2f790eee0cdc85b 100644 --- a/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/kOmegaSSTDDES-DeltaOmegaTilde-useSigmaTrue/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/LES/wallMountedHump/setups.orig/kOmegaSSTDDES-DeltaOmegaTilde-useSigmaTrue/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/U b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/U index 9ff8f05123ddf3ca9db20c570508716945c69293..d8ae4d0ce48af6b331ee7675c0bd80693cfdd0e0 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/U +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/epsilon b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/epsilon index 31b6d4df7006c00f6f624cec10dbf4d901be31bd..c49ce9055d4b5fb395c6cb94544b71270c0e1e51 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/epsilon +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/k b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/k index ac7385620b74e0843ac05b94a018c3b135d0d7bc..1ea527c46fb2181e022c9e7ceadadd677efebcf3 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/k +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/nuTilda b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/nuTilda index 76fde313eaf0d107efce9cfe7ba3493f416eb844..558cd68024dd756be2884300706d25b34458d614 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/nuTilda +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/nut b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/nut index 9e5e8ec36209c9ee9f3956993d3bab505f274754..7156b0728be2656c3d19bee63c1b5b6ae0c10ae1 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/p b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/p index 395c51152e1f8c968facc20ff21359a9a401a53e..27c05dbbbce7ab23ca81ee7c5cc9ed183cf9e73f 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/p +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/s b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/s index 64ecd0deb958ff6105f7ce65457773e8f88a13ff..7f98259903b2abc3f1ae73d61c1c3aa40c7feb41 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/s +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/0/s @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/TJunction/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/TJunction/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/blockMeshDict index c5efd775e5639dd75b3602df260e20d6f862530f..cf8309491128edf3235061513f78f11f51751d0c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/controlDict index fb3cb0eaba87723b4e6e4f64b9b5af1baa18bfe6..071827129bd911e9441792bbbaec0ac8e79041b8 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/fvSchemes index ab4978bc6d50e0ceb835494eeab4e6d9aa64c749..97b8d71d485946ab5c4d3fb217fd1a71a15315ea 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/fvSolution index 8487b8fc610749d5a7db6974ce0e338dadb3228b..dca2b1b99bc6316c4017288ff6297663025613b2 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/T b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/T index 3cda748b8cbc242b63e848ed6929e386e363824a..144fa2b01f361653a04c218f6b5e824a5b65256d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/T +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/U b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/U index 9ff8f05123ddf3ca9db20c570508716945c69293..d8ae4d0ce48af6b331ee7675c0bd80693cfdd0e0 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/U +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/epsilon b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/epsilon index 31b6d4df7006c00f6f624cec10dbf4d901be31bd..c49ce9055d4b5fb395c6cb94544b71270c0e1e51 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/epsilon +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/k b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/k index ac7385620b74e0843ac05b94a018c3b135d0d7bc..1ea527c46fb2181e022c9e7ceadadd677efebcf3 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/k +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/nuTilda b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/nuTilda index 76fde313eaf0d107efce9cfe7ba3493f416eb844..558cd68024dd756be2884300706d25b34458d614 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/nuTilda +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/nut b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/nut index 9e5e8ec36209c9ee9f3956993d3bab505f274754..7156b0728be2656c3d19bee63c1b5b6ae0c10ae1 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/p b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/p index 395c51152e1f8c968facc20ff21359a9a401a53e..27c05dbbbce7ab23ca81ee7c5cc9ed183cf9e73f 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/p +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/constant/transportProperties index 5567d6760249161a7d8a9b9de94c4e6d25ca54ff..06f4d258dbe7385a0baf778897051924f88f565c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/blockMeshDict index c5efd775e5639dd75b3602df260e20d6f862530f..cf8309491128edf3235061513f78f11f51751d0c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/controlDict index aee10b08e15a8e9ec0acc1080d6b0c7b8521b357..92830b7ac08716e0bb514b7d0077e85485e4e9e5 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/fvSchemes index f20dedfaccbf6ec071bc98089af2d69f4ac7f9d9..e56ab262bd1f1d455de017ce39ce0825fdf456cc 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/fvSolution index 23ee7a2e859c044a345af2159be7ed5f904ce44b..9a15e6201c6caf07522e3022ceca487434444ff7 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionArrheniusBirdCarreauTransport/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/U b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/U index b9b6d74c1459d6d7778bfd4ac21a91442b8e2608..1c9a5a2d5ccc2e0acabd3072fab6eda265cd5265 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/epsilon b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/epsilon index ce4863536ce0544e8f14b3eaabcbfa9d28640235..8f078789bb903564fdb4421702d18153245befa1 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/epsilon +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/k b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/k index aad4b320551cf2858a14468de8d3271e6d3e1641..8a812386a22abc78f06b04097acb38f941489f5c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/nuTilda b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/nuTilda index 1ee767f654f905ce4bd73d06305bc154bbb2f1d3..b7ce3317fe6aafd78dad3feba60be7a9425cfa90 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/nuTilda +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/nut b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/nut index edd56ee804208f622bec810c8b4633bd9e67fdfa..9bc6a4676981076f0e9bc4a3defb6a96aaaeb19a 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/p b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/p index 526a0b4f898920366a0f0954216c97c4e78c22ea..fb9339fc4e787e32bed6d3b037b42c1fa234889b 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/blockMeshDict index 2d6aad35adafab9c04b0527a9883ad8ee030d05b..de6efcff1c31e21b15c933fb60934e8c3a33755f 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/controlDict index e9036eedffdc8bf64d08754e3d27a39174b48f78..9bd07c510f1ef2066858e63a75be1e68f4831e0c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/createBafflesDict b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/createBafflesDict index 36a790d3a8fc2000b113bc3171cc6903c55ca555..231e0efac2ea759b61d389732d6e86e4831cdcbd 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/createBafflesDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/fvSchemes index ab4978bc6d50e0ceb835494eeab4e6d9aa64c749..97b8d71d485946ab5c4d3fb217fd1a71a15315ea 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/fvSolution index fcc4e9a205c6ced5274c3f1af1ff9ce188fc5708..434b9d2cf036b7eb2d80398c0d1b4b2bb58ca329 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/topoSetDict b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/topoSetDict index d095559124f15aca2a12587762d110f76f2f3b8e..25c0160a8d8a3883bcd454304aba7e4fb71bb35b 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/topoSetDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/U b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/U index ec4875df713f85058c820c0689a33a999aa0b6ba..5026ebf72c0eceb81a341ee6948d101323e9e6c0 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/epsilon b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/epsilon index d8e9ba9dcaef079f7879c69aee63bee5a38b709f..fae585999bb224f1404603456d51607cd7e319f7 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/epsilon +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/k b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/k index bef30e918d64c09174b9572353ac972e6ac9f120..4b5034df02b979393e965fb9e35ad709a2e88cf2 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/nuTilda b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/nuTilda index ba24492163bfcdf8614a9c23b9bbc2f8565dc45b..48c51f1838fd05c7bee7754affdaf1f61f5bc8da 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/nuTilda +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/nut b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/nut index 5863fca999051c8b4c5aa5837f726f606f15bbb4..17b12ec6e2e234b87091ed18bae1de0e17f07d6d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/p b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/p index 848874f1afa94e1a69d85f687485af50129bf931..951c64aeeb0860878463f493011154ffb9895a30 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/blockMeshDict index faa96b63196463e2d677e392f6e16485e21e66f0..a5edc58a46d079e90220c54117cf430b9a39ff44 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/controlDict index 4f95ace5cd48b4b76367bc98f7773efad324e132..4c24236719956e933bc654d9eaa9e90381e2fb40 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/decomposeParDict index cda353f365980437b1c179ef70a016a538ef84a6..2a913e8d72a4843d091a95cefb32c4e05ffd0558 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/fvSchemes index ab4978bc6d50e0ceb835494eeab4e6d9aa64c749..97b8d71d485946ab5c4d3fb217fd1a71a15315ea 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/fvSolution index e72c53b52da1c795a08e85214548efdf6928cf49..128b9b8932c24cda2f2d182e1bb186a867931148 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionSwitching/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/U b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/U index 2042c1a0c631592f527e6b7813525ef2660cf4a0..3c1a593c6f4cac99a834c366e57de56a5775762d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/epsilon b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/epsilon index 32679821c709d14d9fcfc6893d9d4a4e5e7fb52f..5520180b1ce469f389385a1d3a8d1e18eb8caf4b 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/epsilon +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/k b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/k index e5a5e63e2d113db9b5903cebee0d2b7a77d0b166..0e6a809db4a9a59f12c1c70bf884b1d369999ab2 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/nut b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/nut index 14b7f2f052c70158f6dcc4ba73b080bd70af1a31..4796bd503f210dc4608436afe9eaffc308b8fce6 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/p b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/p index 4729f942ac20bf8539845f18312f893e8c0f8cdc..50a76fbd30014be62f67fb4cfcda21d7105a0615 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/dynamicMeshDict index 766090ae875ecfbac4b91ce3e20a0e71856b551a..1f5c5bbdb3afb53c46fb210ec3c62e27f4771f90 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/transportProperties index 94d2050bf4f720447128729dc65700241a9a284e..5ed3e43e170b382e32c543e6460d7b2bf4ea6b21 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/turbulenceProperties index 2222b3cfd318adf29b8e7efded7f74e9c2b69101..7e8a5908fd512037097e640c7aeeb7e5757c0de0 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/blockMeshDict-conformal.m4 b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/blockMeshDict-conformal.m4 index a5fedcf662816231507c5e030b18d0f5edb606b9..76385b9fa5b1ffbdbe74e063baad4347cf4350f0 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/blockMeshDict-conformal.m4 +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/blockMeshDict-conformal.m4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/blockMeshDict-non-conformal.m4 b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/blockMeshDict-non-conformal.m4 index f91443c509b28a85ed65a7ed46b4502b606d87c0..4676ad0bbb6b2920433eb29ea5e426ddc894ad6f 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/blockMeshDict-non-conformal.m4 +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/blockMeshDict-non-conformal.m4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/changeDictionaryDict_cyclicAMI b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/changeDictionaryDict_cyclicAMI index 7caa363b5f55819413985558a1626336ef32193f..5ac1593b3dd6045d52e9eaaf969d1bb7662a5fec 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/changeDictionaryDict_cyclicAMI +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/changeDictionaryDict_cyclicAMI @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/controlDict index e78937d29997fa386754b128af0c5d55f8d35bf2..f7331b3ad8ce477c3b2ea6e91fe1c03c9e9a1c00 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/fvSchemes index 4f3f4fde58e5e0ee9e11e581846dc58ecae2d87f..ac0816f449b4fd165298eb8f42c4301c72cecb4b 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/fvSolution index 371ed65aebbc133c8030551d9c34756bdcf5ca75..45bc3a373a5de522690414570f4b8adac3e87dde 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/axialTurbine_rotating_oneBlade/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/U b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/U index 1c4b0b71238e872495ac5baaa3445ec4355c62aa..d97de957a48e50a98f6aa028d10ba0b369d1f8f6 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/kl b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/kl index 753ec1e5d448ab60a49915f2d0306b2df5ab733f..ce689fbe7ecfd96ae65f50d2ba724d1d212835d4 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/kl +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/kl @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/kt b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/kt index 41487b3bb37375b858755de93e0815064321a438..f2510c43ef1aa6ff3a8fa6bdd4ff2b292028fa1a 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/kt +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/kt @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/nut b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/nut index c73ade4419f490dca02d5eda775e898460052216..fec18505aada6fd17500c2384ae030f9dcc50d5b 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/omega b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/omega index d97bdedd54c358d85f0fdb4989079948cf6f6707..8257a19ae4bbab9a58d46e869632cd951a34ea57 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/omega +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/p b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/p index 888e505e7b280a5416b56532fe72df5d67cd80ad..2afd4253f3047b6fa5d1fe68af7d5c109b48867c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/constant/transportProperties index 1b19389c656e78ef9d8870945132011eae21336a..0fb5221fced3998f3b0f7d58c241aee77463f689 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/constant/turbulenceProperties index 9b898efb7c27addae52e1f597384e50ecd11554c..2b345be15aed19de35427052f3d13801eddb4f0d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/blockMeshDict index a4fb9340f36d789aca7bab3e431559f4378efa1a..dae4413b39147b5d498f6ee2ecdd5b464063575b 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/changeDictionaryDict b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/changeDictionaryDict index 6651a04dec189c12a5f6d9833c6763bad9aa46a4..5ae46c727e6021328b6ed99866acf46b8ac779d0 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/changeDictionaryDict +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/controlDict index 9956e9ed93b58c1fb9a51d2c170b393385e299fc..0de65b680ffb98c280c79ecfc151afc93d7f00cc 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/createPatchDict b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/createPatchDict index d04b6ba44f84a4166342cfb7fffda37eaeef7afe..550f3f4b1aa436ed0b6779bc20e9521c8a0f073e 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/createPatchDict +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/decomposeParDict index 5495edff3a98f8870f0b47e00c1d90e665f1ce3f..5173e2f57089b8504f1e36bde98803a09f4ffd68 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/fvSchemes index 0da5b4817594261b8e83d60caf3fdf5d98ccda12..2c3e0c7eeb851f58135d924bbf99c84315858899 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/fvSolution index aeb6a103a3f52463b90c20a016121e7b559ed10c..65751407ea6d487fbde696714bd18a43cc0fcf93 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict index 1a61a333b8bd8a744d1b000e0797ddc711bc6afe..4907f23e18b157f06cdfd5f88aaa53921296d601 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict.X b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict.X index c8e63684d2ce73586e8012ce1c203615e8187a28..c52a938c7ad1bb11754ab331c09b4989cfe9e999 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict.X +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict.X @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict.Y b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict.Y index 1c0d4441ed5f1bc4fd78e41589c09d882d742225..7f5b18b3d5da499223d6b593f42fcb4da79ca140 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict.Y +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/mirrorMeshDict.Y @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/runTimePostProcessing b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/runTimePostProcessing index 85a8f4ede04a23ddaa56b524ee29c0c7352f0413..9aabb2d6782b19369d8ad7ef3304ccc897d75789 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/runTimePostProcessing +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/runTimePostProcessing @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/sampling b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/sampling index cd66925763e6ab28de4a02f5cb9840297b6e3038..cfe43a7d181bb3ad200881a610ec69c50292dbf7 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/sampling +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/sampling @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/streamLines b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/streamLines index 1737ae52af731066f9f0e690ac37ae46503339a7..78f8d04c02308b3b60f69e12dc2ed7e232f0f846 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/streamLines +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/streamLines @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/topoSetDict b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/topoSetDict index 1987e64574aec604044fc97ad811f966f2e01ed2..bf4d47788c944c9299c88cf549920369324907f1 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/topoSetDict +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/visualization b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/visualization index 5951c4cc8f8fed911a60cf0420df40793c852ccc..6f33f9ecdb1e03481d1128fb3c91611cfe9a10d5 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/visualization +++ b/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/visualization @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/U b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/U index b289446cc3f385a6dd4e13258e70b62719d3f69c..fc54e8ec7daad862117a26c8bb12e6b7ee9f8443 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/epsilon b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/epsilon index 9148499f333bb6452914835b3542fffafbead937..50bba7a840c1d199ec8175106324d645f9ed9b9f 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/epsilon +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/k b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/k index b2255657e50a1e97f2ad6fd175288a3fccd81e49..df22d33e24509087feb0132f96ad511271696809 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/nut b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/nut index e9e9e181f5e2047c6702fe19f53163554563c82b..4dbf2b95e7b8d7c9ad9aa8d44fb153cfe3d66fc7 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/p b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/p index bf364c8ebd392e9e859f9cf7038619ede94492be..56dc95b98be69061bcafe0ce40113639bbae35a9 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/dynamicMeshDict index 1a5ebcab4abb57af20551a5d7c335b126ad0303d..0b8c0c1b8fbb5fe32291e47e248f33af5fc4e584 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/transportProperties index 65a6aa8de07478c9899837f01a6a07255770d668..ffa3a6fe82bc452fe399e37e2c708d44e99f41f5 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/blockMeshDict index d5070d101241cd49a32372bc222c5e65cefb86ba..b89569328255c56f069c3d1d4b39036a73c3d3ae 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/controlDict index 0bd4f515f7ceb79cdaa22056d64a21c6f6a639db..b96b3e8ef781f68c8500bf348909d8182245ffa8 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/decomposeParDict index a1a1da626bd1ed4145dee7bfce761b4d52d35c42..fc04e0b67c670130122760a82774414e423a0be5 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/fvSchemes index d42f1fa8eb0aa08f0b0472e1870b1a8ba1f2fe07..c1bc1a48471ee1561357a8dd7267613bfc7f9fc0 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/fvSolution index 53fb43fe483ea74d381afddf398fa6b63e6b850b..c226e8763799d498d4e7375f4b808cc015db353b 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -22,8 +22,8 @@ solvers tolerance 1e-2; relTol 0; smoother GaussSeidel; - //cacheAgglomeration no; // keep agglom during pimple - maxIter 50; + cacheAgglomeration yes; // Store agglomeration + updateInterval -1; // Never redo agglomeration } p diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/topoSetDict b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/topoSetDict index a01db1adb82cafe62fce9495ee33a76081b7aac6..a7be4419c054adea3301d511dab272abb5a61a31 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/topoSetDict +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletACMI2D/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/U b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/U index a8b0ce31f24b10890990e5e44468ff96ab6e81d5..a91a6be492686a52f8ce2cff46bbf7dd98907781 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/U +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/epsilon b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/epsilon index abc7a3998372f12aff31425e8e1b99c95e19dcb2..2b5fbca92915c1a2fc9755fbe2be103409a16b24 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/epsilon +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/k b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/k index 489972894887f35104fec1b03e119ded6660bb6a..ab1787f94cd01d0431b358cce518f70c46171195 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/k +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/nut b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/nut index 8f31d6d63f99b95cbe63ca2c18cc679f54f67980..8823b28f2a810f514c36837444f06a53ab761b9d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/p b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/p index 4896377b3f6255a01c6d0a5e91df4295033d7b46..3377b9b7fa426c8bb46cea70a36f3d0ed3c3ec13 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/p +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/dynamicMeshDict index 5372840ed951f8c10186eb7d52dcb7a30740d511..0382f99840b94d6939aa94647317a1ae8c856eb7 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/transportProperties index 65a6aa8de07478c9899837f01a6a07255770d668..ffa3a6fe82bc452fe399e37e2c708d44e99f41f5 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/blockMeshDict index 23e1eaa900fb4a96fe790fa9cf7b38b28a74f290..2d5ec48313f32f5dd3faa787b0b1409770b4bfef 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/controlDict index aaad08fb396316bd4df4cce9fac965c36110247e..c289eb55e74d7e7e2b706dcd71c2d9f115c24d74 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/fvSchemes index d42f1fa8eb0aa08f0b0472e1870b1a8ba1f2fe07..c1bc1a48471ee1561357a8dd7267613bfc7f9fc0 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/fvSolution index ab37579ca2313d17bc7f5195c78fa373e26bb70b..2076027ffc7f82edfff41994aa66cf0edb44b3ae 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/oscillatingInletPeriodicAMI2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -22,9 +22,9 @@ solvers tolerance 1e-2; relTol 0; smoother GaussSeidel; - cacheAgglomeration no; nCellsInCoarsestLevel 10; agglomerator faceAreaPair; + updateInterval -1; // Never redo agglomeration mergeLevels 1; maxIter 50; } diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/U b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/U index 1b79fa72751a9907b2c407467411ed1bc9f7e691..80a4282ce9400b24d6d9a5a2247e80e0cdbd1e47 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/U +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/epsilon b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/epsilon index ded25cfa7087a4fd8fbc4663673f187808716012..6480765f9f3eeb877306f1c076cdd73871c6f8ae 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/epsilon +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/k b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/k index 59ed527364c05064b22483402bfe3c14f345b880..82d6b5c41354c1e3bd2dfae70f09a3b23acc805a 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/k +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/nuTilda b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/nuTilda index dbeea21dea5aa99a6b6fc079b1cbde8628ecc712..6b83ffa805946aba4643be72b31efecf912c3b2c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/nuTilda +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/nut b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/nut index 558a25b05f1a1a5227729d92ba23a1d949456d61..9e1c43dfeb713432129b5f4aa63edebb91d5cd33 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/p b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/p index eca7aa93a8f5ec660e9941f4dbcb7eab7d8de019..783fd80e14d2b3c9848f444ee15f135e319946db 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/p +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/blockMeshDict index 7709136f71bf3d75aabe2e4fe84e823e3769b6d2..1dd07e2117d137ed392c80db2629404a955e7fc2 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/controlDict index 87ffa114be431bf4e2d059d0e8d1456a02910aac..35118cb31801a003f81443857f3ecd439350f227 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/fvSchemes index 725006f73e450c3fa0701da23d8eee7303b869c4..00b640c4fd17c4058abef4eab44315e9cb1f5a64 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/fvSolution index b8fe650ab09c9922edebc812b78e0a987a524fdf..1a6d2f9a627f8b69c932ea814077508f54cf81e8 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/U b/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/U index 9f9cae27f61e39e1bd4661525feb44d2c038db6b..90ea7d49d7efeb45518955afa5810936054880fb 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/epsilon b/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/epsilon index 65af3a7842357f744e9b794fc40f217695110a24..a49015898e4302b6bd3e9edafb720715106016f4 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/epsilon +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/k b/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/k index 3e5537c74b9b6b0515c9a55d305fe0eeb4518135..6bfcb87f27e4d8e364c6004a0597181ee09e9907 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/nut b/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/nut index 7dcad42c21e957e5377bdf8d021f2dd8b04ed6f2..bacbd74ea2cfbf9d9255f7f69bbed0cf11a7f429 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/p b/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/p index a1cc5ae5ebf0892ea6f15fa6d629f2633db3cbfd..0cf1ec4a52c7aab5d5fcaa96bd80379cdd02ba64 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/dynamicMeshDict index f7b4799949c1edbc9d3fb3e1e579ed8635886482..61632398cdec78a2edb8db5b60a2d45f902de7c2 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/transportProperties index 65a6aa8de07478c9899837f01a6a07255770d668..ffa3a6fe82bc452fe399e37e2c708d44e99f41f5 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/AMIWeights b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/AMIWeights index 428692597d49f42e6b2460248d94bb1672e58676..ca7f15c89367273cbcdec0b47268588322d763f1 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/AMIWeights +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/AMIWeights @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/blockMeshDict index 471d0aa24334b980acaecb73b7996db3fb57d593..6e2561db487fde6f2a13277508119585f3257846 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/controlDict index 3684fd81def4e7a15418fbe63f04f79b01b59342..967d34c1f771204cecdc2da5c118d45bea3f1893 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/createInletOutletSets.topoSetDict b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/createInletOutletSets.topoSetDict index f1f6cfe5698204cb12501a700e1dd52e3b5d7ade..08f6da005e2b0011db806f6cb9ed46df789a81b6 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/createInletOutletSets.topoSetDict +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/createInletOutletSets.topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/createPatchDict b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/createPatchDict index ef6968089fe7776a265d55fd5b71a1ab2832403f..65780c9869411f99a4762e609842761ae126e75c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/createPatchDict +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/decomposeParDict index f66c0aea120a15dbe132a867fceb86950e593bb4..677d07b3df54c6a60e83a8beb119f20ecca42293 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/forces b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/forces index f1171c8456616131f7be95a1da03f3d7037e93a1..e67bc209c147e9c72a66e25f2e7f82541f99dd74 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/forces +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/forces @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/fvSchemes index d42f1fa8eb0aa08f0b0472e1870b1a8ba1f2fe07..c1bc1a48471ee1561357a8dd7267613bfc7f9fc0 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/fvSolution index 54df5d11dbcfce0174d36c9d0e8dd18cbe22f33c..cf8e7acb09cf229d87d8abe043deff7d4ba3e8f9 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -22,8 +22,9 @@ solvers tolerance 1e-2; relTol 0; smoother DICGaussSeidel; - cacheAgglomeration no; maxIter 50; + cacheAgglomeration yes; // Store agglomeration + updateInterval -1; // Never redo agglomeration } p diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/snappyHexMeshDict b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/snappyHexMeshDict index 36747c2ad0e7625ab404a986a9396e4d647d96c7..295d2c92233270f2485548a118898819ed20a2e5 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/snappyHexMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/surfaceFeatureExtractDict b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/surfaceFeatureExtractDict index c5facb26f722a9724c9a8e332bf94c41e7c1aff1..449061807616b0b16355457ef0554ae4449bfdc7 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/surfaces b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/surfaces index 4214a2f4bdce58a6b1d1c84ba9ab4f317a57f811..7f50438b7d8d656a14213faf25bb5bbc3c144bae 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/surfaces +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/surfaces @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/U b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/U index 5695790751f44d3826d0e39e3b441c99a3cf62bf..434e3221c7292732d79d0d6ce2d42b12c4154769 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/k b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/k index b0360b9bfde63404459df87fdedb0b2d7534c90e..14bba26183d7b647c6e738f505aa319ceec80afb 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/nut b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/nut index 3ad182321d18281847b7b65f55c1528c25caab95..fef3ee067fb66609f46c503793cbb0198d78ebc8 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/omega b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/omega index f76e9df461fe44262522e024361d0b527df4330c..ad9d621a5e68ec028d83a43658627eb773bd863d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/omega +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/p b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/p index 9860914dceea6e80973f6e0d8820fb214381b228..b7f4e86b9413cd4d47e85a8864e778f80df1a941 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/dynamicMeshDict index 989fbd2ee44e3e9ecd582f6ac1eaec5c8ebbf44b..5dbb327c3e36191228ff3af21dfaa324cf4a4b41 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/g b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/g +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/turbulenceProperties index c1d5ac10f3ff6401c6ced11b5eb7d12a818ee895..eb61d1626b61da0457322e05072c0235aed11840 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/blockMeshDict index 060c855600debdd0a7f800a160034b9014ed28cd..520c3d8fa6aad00042a752f7a2884f6826a4faae 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/controlDict index 45b3e5ac6a2dd956f71c8e586893d2333897dee1..e9395e09f2ac767dfd88ec2bc8f3b07bd32e0fb4 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/createPatchDict b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/createPatchDict index 30522c0a50b4ecc4f1032b96b0de3b4107f38a40..221a9e70c5b6ae2128fe7c023ce1c7debe1ac24d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/createPatchDict +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/decomposeParDict index 94029c5db3a254583493034d00dff25696477b33..e0b7ee98105ac8a5be3a2cc688407d806fafc17e 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/fvSchemes index 6bf95cba590bca1d72496d83a1000bc608d7e2bd..81249973ab9e4085305a702bf06ff8906872ac47 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/fvSolution index 8c0a23def3ec120edfc902a3ec0d68a0096832f7..bce82b4aaf5075a63397b448dcd404bfc263909d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/snappyHexMeshDict b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/snappyHexMeshDict index 40c5e1d258a8b4e5cf117bd310fb1666ae388fa3..8784ce2ab2b7217eb415d025778f31b279d6e3bf 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/snappyHexMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/surfaceFeatureExtractDict b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/surfaceFeatureExtractDict index 1cddb2cf28901d6fba50246c997750a014dc621b..0c81f99af5e607937671a4f43cd14a9cb38ef52d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/U b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/U index ed50f92664057c191cda0809c6be34336738fd73..6e6558ee202bcdd5af732d462968ca8c5bca2748 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/fixedInlet b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/fixedInlet index 125fbb7bc20e6e06b7203d3c70e0bc77b6db089c..0b9fd7ef7f399378c34ccc6a4f7c8f0d4e44c984 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/fixedInlet +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/fixedInlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/frontBackTopBottomPatches b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/frontBackTopBottomPatches index 75d9bd9af16b035b075dd419586950e1f6d1c5a8..d6c6ce2674097319f432c697f9ed4c09a32daba9 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/frontBackTopBottomPatches +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/frontBackTopBottomPatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/initialConditions b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/initialConditions index d0a898a43327e5e7414f354261051768734bfabe..9050e8f7881b0e8b1ed0aa9940fb02aaf1553532 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/initialConditions +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/k b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/k index b58187fed680031f36926cc378bf3270c98c4d30..7184d0e92738813cee77a9256ea7807a3bec729c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/nut b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/nut index 28b3d9937598fa13198bda72fced35dd3d9c224b..f4f973627ae2b575cf6262aec782c703fc3541c3 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/omega b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/omega index e738465543d7316e2f209e9e80b3c791b54c32cb..c230f8b0033387ccb5f60e34e6a6f59859328b9c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/omega +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/p b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/p index 4795baab59128c385babd6929a6764394ea9c362..d4b608fc8163b307e9c15cfd1ab46ccb8fc7c64c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/pointDisplacement b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/pointDisplacement index 1a35023e2e5b50f8f4ab56772fb40e0f53ab5320..2fe6c1fef8ef8467a1406662147809eda750af2d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/pointDisplacement +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/dynamicMeshDict index 8e8259573eea14508bd04cef195ab098cc49621f..370bc59cc66900c0e3928f469f3bc7fd56ef047d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/turbulenceProperties index c1d5ac10f3ff6401c6ced11b5eb7d12a818ee895..eb61d1626b61da0457322e05072c0235aed11840 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/controlDict index fd974fd6423de06eba0f12352d8269625dc63525..6b2ab96048b7ca7458b66cad5ca104b3d3cdf82d 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/decomposeParDict index 008c06e60c70023caebe76b04ae44402c64bdb54..9e006d775c42048d6d6c1c6430b882593911bdca 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/ensightWrite b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/ensightWrite index be18468ddb948a68bc9c6415cbdef0846a7a13c8..a6c4c8b325546c73eaab43de67a0be2e5590ea05 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/ensightWrite +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/ensightWrite @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/fvSchemes index cf10ff238ddaedd380ec17f386305f03dddeeae0..7e0d5a9dc40609bad809bf963bfd1542614eb857 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/fvSolution index 96b144bd0fb69de1c652f413a3d8fb22bf85f67d..623126be5947344ec3ddddbf6e2a0f67281cf30e 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_pimpleFoam/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/U b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/U index 5099adfe150b1c9ee283633815f4e0230f4bcddf..f972ffe0e11b5d08ecdf73959abecd2b93b01831 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/fixedInlet b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/fixedInlet index 125fbb7bc20e6e06b7203d3c70e0bc77b6db089c..0b9fd7ef7f399378c34ccc6a4f7c8f0d4e44c984 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/fixedInlet +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/fixedInlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/frontBackTopBottomPatches b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/frontBackTopBottomPatches index 75d9bd9af16b035b075dd419586950e1f6d1c5a8..d6c6ce2674097319f432c697f9ed4c09a32daba9 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/frontBackTopBottomPatches +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/frontBackTopBottomPatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/initialConditions b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/initialConditions index d0a898a43327e5e7414f354261051768734bfabe..9050e8f7881b0e8b1ed0aa9940fb02aaf1553532 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/initialConditions +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/k b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/k index b58187fed680031f36926cc378bf3270c98c4d30..7184d0e92738813cee77a9256ea7807a3bec729c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/nut b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/nut index 28b3d9937598fa13198bda72fced35dd3d9c224b..f4f973627ae2b575cf6262aec782c703fc3541c3 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/omega b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/omega index e738465543d7316e2f209e9e80b3c791b54c32cb..c230f8b0033387ccb5f60e34e6a6f59859328b9c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/omega +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/p b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/p index 4795baab59128c385babd6929a6764394ea9c362..d4b608fc8163b307e9c15cfd1ab46ccb8fc7c64c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/constant/transportProperties b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/constant/turbulenceProperties index c1d5ac10f3ff6401c6ced11b5eb7d12a818ee895..eb61d1626b61da0457322e05072c0235aed11840 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/controlDict index 2031b9e6cfdb2f92b0b8b2158c9d19f9eb2a1ab4..1715dee6f60d18ff32a2be6b3b0b212df2533060 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/createPatchDict b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/createPatchDict index 4e9fc683541727fbcb53f90b6cbe4d15c122be54..117ecce75cef8f864985952eb0513c700e307577 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/createPatchDict +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/extrudeMeshDict b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/extrudeMeshDict index 8ebc6bcd484ed22767af3b5be2bb104e56011560..83b7add953a8e25e1c349522c63f41d81de200fa 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/extrudeMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/forces b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/forces index 3af713d391b1448495ef667980dbd87d5b82fafd..d27552de21faf33325930cdf1cce320c56507f3c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/forces +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/forces @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/fvSchemes index 9e6ae1ea124f992ef58ac4bae48ced653a4a9dfb..3d4404b343c8d40ae4a226976aa6b4b420703624 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/fvSolution index 80ff9a6184e7ea2b9c2d8a337db5b852d3248216..e113dccae7afa12bf4d5c4cc60bcea54c3feb2de 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion2D_simpleFoam/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/blockMeshDict index 977ca173554c98073afe991f391b2e8aa4d63346..19def0fbade10900782839030343363c3609b728 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/controlDict b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/controlDict index 797c9b8151fc6f0b7c185fafee77efe10c4eecdb..bae8ab0749ed375f5ddd77dce075e111439a6ef3 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/decomposeParDict index f8149fa5687105e7693ddc1c258c7d4cef06d724..a3c04b433e21e88b9afca40a46ea7225d9de0c63 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/fvSchemes b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/fvSchemes index 3779d85c22e768e7b1f09db2e65e733165ba27eb..8eb701dbe438a16c866a6e0ab9d95209b40d5bba 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/fvSolution b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/fvSolution index 1d53156d12a2a0bf6b92f35c6928b02a060115f6..523fbec531808b7bd55b6633f6141305badcbfc6 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/snappyHexMeshDict b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/snappyHexMeshDict index afd1e79e130e2a99cabbc86714e7ecff92c1cf39..dc30c9ad2d5cddc290561e6431ce7915f4105f22 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/snappyHexMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/U b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/U index f5b6f474aa9473cbcf0fdf05271aa89a32858e31..6381e765e1135cc7876c0da5f4dc3ad8429f29f6 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/finite-area/contactAngle b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/finite-area/contactAngle index 2982eb503cb1f0fbdf8918914219c31dc974ae2b..b1abb5e501ae2ddb7e1d275c080efd006dbff884 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/finite-area/contactAngle +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/finite-area/contactAngle @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/p b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/p index 344ab5fa22cdc39bd7e70e4b0ae36ab824d94b9f..facb6072887cd2e588d599d23afdb7bd6140533e 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/pointMotionU b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/pointMotionU index d958db9839ef8d7c8d782da1f4c89676bc39ce9e..9bcd9c49e9dd43b8e0e396d1d8c879e3a752b47b 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/pointMotionU +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/0.orig/pointMotionU @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/dynamicMeshDict index b1e4f166e9d9d3ca438d1162e3fa7e12b7ffef65..fd295991880da22ad92dcdf0169342ea7ab86d03 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/g b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/g index e9dfc3f353d2990103bc9b9b9ce6a0dd8943fe0f..7639c9e60f33602624b734b7495005cfe95e64fb 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/g +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/transportProperties b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/transportProperties index 442170bbc2d41fb195451602dc7909f41cb88578..5c0dec22927f4e0b331efc20e9fc9ca272d44c7e 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/blockMeshDict index 3e70f3677b21265f6ec6d6391d895a39e5ba330e..5989556c11fca9e0c05cf762fb206cdf482d6762 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/controlDict b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/controlDict index 4d6f689d394152d68457f136c1a0fede329000b3..24696b4e9257f27ed5d57337e37fc1ed4cc3ceca 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/decomposeParDict index 5ba19b60cb8363bae04c6be7bc3161ca51d9b16d..5794dc997ec2113f8b45d051a3205507816a0e12 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faMeshDefinition b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faMeshDefinition index 59147b8c669688abddc2196d359b2b3b52eeea3c..0f86cc98a156840e356f567c4c943c22bc4a67d8 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faMeshDefinition +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faSchemes b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faSchemes index bb52f6e0312b3e8934f204da0ba27ee6c70c7863..1c5e75286c93744358a0887206b896ce952a45a8 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faSolution b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faSolution index c45bb7d2e7245cad4a434f8c784baf9396ad416e..ad9cee18dcf56a91647490ffcf467442242ed9b8 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/fvSchemes index 8b8593c6079ea4a8fe31cd4042ab803a3ecfa517..fa6dfd994db5c61a87af64110f3ce82f5fce539b 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/fvSolution index 4611f766d7119e3b542fbf0c39107afb8616af49..a0ec052dc896309f34deaa291494273eb566334c 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/contactAngleCavity/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -22,7 +22,6 @@ solvers tolerance 1e-8; relTol 0; smoother GaussSeidel; - cacheAgglomeration no; } pFinal diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/C b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/C index c7e63b7e2419cd348428e25f9566dc8b38356a5e..1f4578ae3cc4dadd9a7be691b637d44b7dc29633 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/C +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/C @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/U b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/U index 78ba35a99a1d0d2d59426e76a2351c2fa24375cf..f512aa3dd4bfec76af50c756cd6ce10b6997f8e5 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/finite-area/Cs b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/finite-area/Cs index a406d409e118f06d76a75d6c7b96e80ec84572f2..791fc38d06dbfc026df0b0dd5d2984ac662d2ddb 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/finite-area/Cs +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/finite-area/Cs @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/p b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/p index 06830f4861483cc465053661cc518765d3795e10..396211db687bc3bf6e8a26f4fa40513b411cadcd 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/pointMotionU b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/pointMotionU index b43b32321f804d554e7cc065b5e9be9c94d3886b..1a83c0509ac049f3a233fec27585f09474c1183e 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/pointMotionU +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/0.orig/pointMotionU @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/dynamicMeshDict index c3371b8fae33c92e00e4f1ea1ecd2b8b1a6b040d..8be22d3e961ab7608670943e8b4de1a166e89135 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/g b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/g index e9dfc3f353d2990103bc9b9b9ce6a0dd8943fe0f..7639c9e60f33602624b734b7495005cfe95e64fb 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/g +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/transportProperties b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/transportProperties index 7e649a41d9ed8d13b7138ccbdbdb424e1f0acb36..fe853cb6146ac506832f0a1c4971abfefd190a00 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/blockMeshDict.m4 b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/blockMeshDict.m4 index 3804afa5f49781737d284be015ab756b6378b89c..ab80393d3262afa532a5dbd8dd5ff83def61cbbb 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/blockMeshDict.m4 +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/blockMeshDict.m4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/controlDict b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/controlDict index d51c964afc00755e3189efdec7b254e41836f5b7..6df82e653c2f90dbedb6997e40bfed04b6ab5510 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/decomposeParDict index b134461c8c42634632b5e92041619cce25a58ae9..61b12818aee1d4dd6222db63c2453d8e964896c3 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/decomposeParDict.4 b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/decomposeParDict.4 index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/decomposeParDict.4 +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/decomposeParDict.4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faMeshDefinition b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faMeshDefinition index d816725304776fccab2910c97198e3fc7eea441c..4fef33a7e8a6e7f6ff0026a31bfee4d8fe9a0309 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faMeshDefinition +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faSchemes b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faSchemes index 4c89171a16caf1df6e7e0a53fd38007969862503..3a52fdd846e7a5bafb5e9b440e45110fc1797f32 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faSolution b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faSolution index accb91641108450004fec2107fb1357edb64ef8b..d3f4fa9b7e0d08b1800b7c564f5a18aa49461b53 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/fvSchemes index b9c6755498544f5695fe2e453e58c28f21c217a2..56a5ab6294c36f591d9eabc05a45244eda156db6 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/fvSolution index 4da209881270d5f219e4eab2cbf3d963bdfcc2f6..95778a6c50d5f7bfb32ba889057c97bfbad0675c 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/contaminatedDroplet2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -22,7 +22,8 @@ solvers tolerance 1e-8; relTol 0; smoother GaussSeidel; - cacheAgglomeration no; + cacheAgglomeration yes; // Store agglomeration + updateInterval 10; // Redo agglomeration occasionally } pFinal diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/0.orig/U b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/0.orig/U index 37dc0223dd6630243e642c5ceb9d6376460491a1..c2258f2d9dc7d6ad33ce957d9db89cd792ebd0de 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/0.orig/p b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/0.orig/p index 4fc9748b33da5a7de6f54ec0e807803dcfa4f9e6..66d8d19aefbf2ec2a2006e0350f39bdbe5d9f0b2 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/constant/transportProperties b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/constant/transportProperties index e56c367b285af941a36d21226ab979055ac0b46c..24c8572612484719076fedd6fe2e96b18c3cbc7d 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd50 b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd50 index d81c720e4b0e44d8cbcb72a9c19d02371c0b5f88..493bc1e3414ba85c11c3e64d0d79d9ab3f48168c 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd50 +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd50 @@ -4,7 +4,7 @@ stdmd50 { ${stdmd01} - field UMean_movingAverageWindow; + field fieldAverage2:UMean_movingAverageWindow; } diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd51 b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd51 index e1a1ede7dc92182d0066d4c86243faac78033a2d..910c9e6c6c7711e37fc8aeee3018c2cfa1ab1289 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd51 +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd51 @@ -4,7 +4,7 @@ stdmd51 { ${stdmd01} - field UMean_movingAverageWindow; + field fieldAverage2:UMean_movingAverageWindow; region coarseMesh; } diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd52 b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd52 index d973a0a7726ce2a4509246ccbbf429a85af75761..097becb17ef49ce4304a71644b8a6d93da4f210d 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd52 +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd52 @@ -4,7 +4,7 @@ stdmd52 { ${stdmd01} - field UMean_movingAverageWindow; + field fieldAverage2:UMean_movingAverageWindow; patch cylinder; } diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd53 b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd53 index fe0b17be5d8df59d53474b142d69df755e6437b9..f8cf46f996779e9709948004c1dff6f060b4f035 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd53 +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd53 @@ -4,7 +4,7 @@ stdmd53 { ${stdmd01} - field UMean_movingAverageWindow; + field fieldAverage2:UMean_movingAverageWindow; patch outlet; } diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd54 b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd54 index 82cdec2866de394de7c7ec334f3179aeec55171e..9e7a57a1ffb90201b07748754676dc4b9719356a 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd54 +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd54 @@ -4,7 +4,7 @@ stdmd54 { ${stdmd01} - field UMean_movingAverageWindow; + field fieldAverage2:UMean_movingAverageWindow; maxRank 10; } diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd55 b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd55 index 314d5af9c11195ec90d71a814b8d593cba94dfd5..133e1ddf325e5b5a7d5bc505a2f93aad22ece518 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd55 +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd55 @@ -4,7 +4,7 @@ stdmd55 { ${stdmd01} - field UMean_movingAverageWindow; + field fieldAverage2:UMean_movingAverageWindow; maxRank 5; region coarseMesh; } diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd56 b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd56 index b91b8eb106613f925d1036aad094053e3a0027f1..c419f49f3975c94bc5fd8b910d56dff47fd4fee8 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd56 +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/DMDs/stdmd56 @@ -4,7 +4,7 @@ stdmd56 { ${stdmd01} - field UMean_movingAverageWindow; + field fieldAverage2:UMean_movingAverageWindow; patch outlet; maxRank 2; } diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/ROMfieldsDict.coarse b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/ROMfieldsDict.coarse index 5e6eccfc9878cf9785444ed39536433e32ed9e54..f2b19dffe06f4ba78c1dfe80e98a80eafca3eba7 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/ROMfieldsDict.coarse +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/ROMfieldsDict.coarse @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/ROMfieldsDict.main b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/ROMfieldsDict.main index 03e080d0e160c9bf0e6a1c82faa4bc8abbc7e633..82a3fbe1a4157c96008d7b050d0be13f89665e19 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/ROMfieldsDict.main +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/ROMfieldsDict.main @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/blockMeshDict.coarse b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/blockMeshDict.coarse index 73ebcffad44ad4a06630af356537a70ea16a72f8..bcd3fb7d44a3b7e3ddf922d535096b52fbb94a4a 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/blockMeshDict.coarse +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/blockMeshDict.coarse @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/blockMeshDict.main b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/blockMeshDict.main index edd4e61fec18447fb25c187d1c41dfa42ace902c..ab0b5efd137fbe4b55f0bf9ab62e36b556f9bc3b 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/blockMeshDict.main +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/blockMeshDict.main @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/coarseMesh/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/coarseMesh/fvSchemes index 863b1cb030f39688cd364f3736d4925d30bf3627..d9c71e2cccf9970be67e640e71c4df250dc88e99 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/coarseMesh/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/coarseMesh/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/coarseMesh/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/coarseMesh/fvSolution index 9c23863271d5f87e40a435ce1313d056369a6d91..ad75be2c599c4e8dcc5d5818bbf5dfba79f6cc8d 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/coarseMesh/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/coarseMesh/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/controlDict b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/controlDict index aacc1f829d3867c9d8256ba85ba238a844bfc13d..50da9842b1d095e906d217bd9aca74220b9f0f56 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -52,17 +52,6 @@ functions fields ( - U - { - mean on; - prime2Mean off; - base time; - windowType exact; - window 0.25; - windowName movingAverageWindow; - allowRestart no; - } - U { mean on; @@ -84,6 +73,32 @@ functions writeControl onEnd; } + fieldAverage2 + { + type fieldAverage; + libs (fieldFunctionObjects); + + fields + ( + U + { + mean on; + prime2Mean off; + base time; + windowType exact; + window 0.25; + windowName movingAverageWindow; + allowRestart no; + } + ); + + useNamePrefix true; + timeStart 10; + executeControl timeStep; + executeInterval 1; + writeControl onEnd; + } + mapFields1 { type mapFields; @@ -118,7 +133,7 @@ functions pMean UPrime2Mean pPrime2Mean - UMean_movingAverageWindow + fieldAverage2:UMean_movingAverageWindow ); } @@ -189,13 +204,13 @@ functions // #include "DMDs/stdmd48" // field=UPrime2Mean, region=coarseMesh, maxRank=5 #include "DMDs/stdmd49" // field=UPrime2Mean, patch=outlet, maxRank=2 - #include "DMDs/stdmd50" // field=UMean_movingAverageWindow - // #include "DMDs/stdmd51" // field=UMean_movingAverageWindow, region=coarseMesh - #include "DMDs/stdmd52" // field=UMean_movingAverageWindow, patch=cylinder - #include "DMDs/stdmd53" // field=UMean_movingAverageWindow, patch=outlet - #include "DMDs/stdmd54" // field=UMean_movingAverageWindow, maxRank=10 - // #include "DMDs/stdmd55" // field=UMean_movingAverageWindow, region=coarseMesh, maxRank=5 - #include "DMDs/stdmd56" // field=UMean_movingAverageWindow, patch=outlet, maxRank=2 + #include "DMDs/stdmd50" // field=fieldAverage2:UMean_movingAverageWindow + // #include "DMDs/stdmd51" // field=fieldAverage2:UMean_movingAverageWindow, region=coarseMesh + #include "DMDs/stdmd52" // field=fieldAverage2:UMean_movingAverageWindow, patch=cylinder + #include "DMDs/stdmd53" // field=fieldAverage2:UMean_movingAverageWindow, patch=outlet + #include "DMDs/stdmd54" // field=fieldAverage2:UMean_movingAverageWindow, maxRank=10 + // #include "DMDs/stdmd55" // field=fieldAverage2:UMean_movingAverageWindow, region=coarseMesh, maxRank=5 + #include "DMDs/stdmd56" // field=fieldAverage2:UMean_movingAverageWindow, patch=outlet, maxRank=2 #include "DMDs/stdmd57" // field=yPlus #include "DMDs/stdmd58" // field=yPlus, patch=cylinder diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/decomposeParDict index 9873eeb627ebe8c1b191c0ffa24caebe3bff99ad..6eaa649fe3e3c2256e0b10ee050ec0d3f1864cd4 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/fvSchemes index 4ecf786aea5b9d82a3753d889f999cc43258ecc9..a9967f08e6afc45dc6c1065338dd8cfa12983051 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/fvSolution index 2191b0e8c2b20070bfbb145845897a6a654c782a..ae7cee85a488daa1c38ea119273a781c69a890ab 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/mirrorMeshDict b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/mirrorMeshDict index 1e2d70e2f3586fc81e60707cfa7fef2d696d9f7c..b93998d0e6cafd2ced44d2b97f2e4c2c1e03c03a 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/mirrorMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/mirrorMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/snappyHexMeshDict b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/snappyHexMeshDict index 91eba2026351f4ec28dfc8aad309cef65adc92cc..ccc2f7b04663f1d7905867e82935fd7713937522 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/snappyHexMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/cylinder2D/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/U b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/U index 3f9552dcbb56ee627a11583f814dffeac3cd3b68..39a5e3314d5d149aa3fbfdea1a24cb36abfc3e61 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/finite-area/Uf_film b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/finite-area/Uf_film index a435cf79059a67872d331019b00d4234cda23875..2ede47c89e760523b7d375c2f43653703e6a5eab 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/finite-area/Uf_film +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/finite-area/Uf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/finite-area/hf_film b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/finite-area/hf_film index 5f013b6e403030f8c391f978a60ae5b53c2243dc..c4a98c045fb69ff06b3d938b5b31a1b6ea4012b3 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/finite-area/hf_film +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/finite-area/hf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/p b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/p index 86f1575f64316b3d2e521a0c34243c6a0f1b421b..b856197ca4f60f687c1f939ca7073fe03374e9a8 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/g b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/g index 3a8b02f9bbb59dd0b820e5e7d4de94ed72463118..c28b151da4e79154e55329bdaad0ed4c05baa38f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/g +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/transportProperties b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/transportProperties index df031bfd35abb51268b921f3fe49f1eaee724bf5..c03c8540c43a5fc094fc342c135522a966291f25 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/turbulenceProperties index 963249f2fcae15b58e1e6edf55b1cc2b18f700e8..429f28d5a021cbe48636cc39abb648b6bce3f2eb 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/blockMeshDict index 6d98d9c64597554212fd17328e042407eda8657a..cdde8d3d54eef1e062997b514308b04640b4ac70 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/controlDict b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/controlDict index 35e71bf6d2fbca0142536c969f277b11fc812397..e88ddc9e236c77a194bed0604197a9b75135a213 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict index 571a94560f45727eb86e113b3f16235991216c86..a4330d048f14a888f9e70e2afac91d00c9da1364 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.16 b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.16 index 792cda4472e17627159fb273f110cea878261c67..9e7a7d60eb6fb258d59d76c4f24c9845b1d65a1f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.16 +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.16 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.4 b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.4 index 1733d37b1ed57e1b893979edcaf223acab259920..98355f5d9eabdf5fe9ae1a9f75ac0400fee99516 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.4 +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.8 b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.8 index bafe1faff1a922fdffa99e14d990c01ccc5b153f..23f51923dd299a0d2f729a31530d80775642435b 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.8 +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/decomposeParDict.8 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faMeshDefinition b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faMeshDefinition index ef24fb42901014e50a426f52316d0f22533626d1..a34401ff54f997e27a82e191464d09e13bf90e88 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faMeshDefinition +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faSchemes b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faSchemes index 926d09ae1b01a6ab6aca19df577d4f7d76fe6c79..70ff5e1a4611f66bd05e3c86de627a31311bc47b 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faSolution b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faSolution index 52763210120c4f81cbdb235c19f258869250f2de..41f2278df8488e2465ebfad057115ba3537b8534 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/fvSchemes index f85f631c94beabca60a9d2b45afa8f00397b6992..edf17062a156d1589c219633e68a8d78ac5d09be 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/fvSolution index 1eb49059ecdc658323a51a8221c9312441a297a9..a67d5ebcae9b423127f10c1210a27a1a53ed2fd0 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/filmPanel0/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -21,10 +21,9 @@ solvers { solver GAMG; smoother GaussSeidel; - cacheAgglomeration no; - tolerance 0.02; - relTol 0; + tolerance 0.02; + relTol 0; } p diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/U b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/U index 57c4e6a0ae45f620102042e02993b47645984972..50a122b57d9347e68b671b41eec82d5c8d6e131e 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/U +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/finite-area/Uf_film b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/finite-area/Uf_film index bbbdacfa53047fa0208bdf24bdba49f8e98dc10e..cd3f52bd36fa0bd17288e034eb40346863a418b6 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/finite-area/Uf_film +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/finite-area/Uf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/finite-area/hf_film b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/finite-area/hf_film index 5babbcca89a25c73eeb1d9d0fc71ef213a6c3580..9edfb84bfd215695beaf5d96adc8803ad261f8b3 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/finite-area/hf_film +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/finite-area/hf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/p b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/p index e3f66bff84fa1341e9c2f6633a10704c0432360b..afe401eda495a223385292385c6ee789ef4de13f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/p +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/g b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/g index d817a70fa72dfe17be46b6fb740749e17199d574..d6265b648c08f8e7264ff82ddaa9efa10ca88025 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/g +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/transportProperties b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/transportProperties index 055caf12dfabb9de402351fb6cbe4b9f63b1daec..905c1f3ce1c73ac2854862c6039db46f9e2de7cc 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/blockMeshDict index d406c4192b11e265849b174eb8aa1dadeec96861..85368f8df182a860e01a00238f6d0d22f700bad7 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/controlDict b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/controlDict index 621d9ebd5f6d6475b1d6feb13219d6056fc6958c..8368ad2d93ad91420901501db7a7394b79757892 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/decomposeParDict index e69ee975cf4f9e3a89f377daf9c38b56ce2651a8..d597084201d4f673893e2963588aaf4f72013f56 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faMeshDefinition b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faMeshDefinition index 7534713ade82648b43398ee6ddb27524e6695b9e..4711ccca94bffdc228aa2f742113dadc23170d52 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faMeshDefinition +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faSchemes b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faSchemes index a2f52878e7317fe6a789e4cd7cc70db698523182..00fe3d0688d94b8e0a5b727ce6c1448a27d488e2 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faSolution b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faSolution index 8594023316d944ce9e9c55484df5bcf97df44de0..2fd04c7828de246fdbd7eb114f5110095451a150 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/fvSchemes index f6f1c62c7bfac9d7cd98b6de5b0baea73370582b..10e5e05ebc3dccb363bf451b074aaa38880b444e 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/fvSolution index 2baf590a3088d751e0cb55b05d6cb5ec9870e88e..5212747dc7a38b93e0f4f033cdafcd223e1d7fcb 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/inclinedPlaneFilm/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -20,9 +20,8 @@ solvers { solver GAMG; smoother GaussSeidel; - cacheAgglomeration no; - tolerance 0.02; - relTol 0; + tolerance 0.02; + relTol 0; } p diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/U b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/U index f9ef6813809a87b3464ee28bf53729b7a0b17d27..fe1a4e03dc36d630512b48627e0d1db8a289c64a 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/epsilon b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/epsilon index d4ad67d8244a5265e39b092f61aa3ef007d2e7d6..ce7bf4c701aa03d87cd172e3020f002507545773 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/epsilon +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/k b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/k index 7e01d1bcd7ef3b93e14496b8915ab48dec21de14..77b177aee17e392d58e89a15f5d3279324708f98 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/nut b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/nut index a3e078f799f91c4b92dfe59856099a7aa4ec1b1d..b1ba82249d14abc690b42d32e4791688b27e92b7 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/p b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/p index e8719f8f46daed169607c5c84b9c209c82a6aa5b..1473f5124fdd9cb7e7517e2fb092426abe7e5dbd 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/dynamicMeshDict index aeeb063999ade73ba16a7c365ad059d0db10f8f9..1c58702b779a775eee90470c24dd0c0fb2aa7b2f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/transportProperties b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/blockMeshDict.m4 b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/blockMeshDict.m4 index f8de75eb741507de3ac421876eada42a03f4fdc1..756b1e93b1b47b054f44a03b3d84923ea5f47ed6 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/blockMeshDict.m4 +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/blockMeshDict.m4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/controlDict b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/controlDict index fee05d98df20c8f2a901cf0a88524c46d80e0d81..1216fbb462fe46b4786d2b9eef16be8e32231b76 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ writeInterval 0.1; purgeWrite 0; -writeFormat ascii; +writeFormat binary; //ascii; writePrecision 6; diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/decomposeParDict index 137d7031acaeb158e9eac7973201b6cdf46171ce..fa2f3479eb00967a94f309031fee3bd051d3600d 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/fvSchemes index f6f1c62c7bfac9d7cd98b6de5b0baea73370582b..10e5e05ebc3dccb363bf451b074aaa38880b444e 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/fvSolution index 11d03a340ff4b73fa07639f4f3ee6da5f372cdc0..cada2f48117458016642015fe3ae9ea7460fd496 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/topoSetDict b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/topoSetDict index 30a764f6931c71e72c99177325f05128c7b0d2f8..be3adc4278921878e7516332ab54e617b4482cae 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/topoSetDict +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D-topologyChange/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/U b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/U index 449056110f5ab3a706e0b1ff61ea92548e615cc5..1eadf599150f028607cf28606be887dbbd3160f2 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/epsilon b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/epsilon index 7203ae7091a939390448a8ba3c6061d5bb624ee6..ff1febc06daf3cca98d5df59a69d4ce9c99bd98f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/epsilon +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/k b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/k index 0f0b951a4e6f1ab0eb7a6091f44c31f4fd6239f7..8c213f8a6f708fa5f8d50ee4dd631f57399ecb40 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/k +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/nut b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/nut index 7c614fbadc34c8d72ab902790e538d84c59ef236..820373d37a2f5087db28476473ce701b7332e81d 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/nut +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/p b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/p index 6b898627972677b7ccd0881d54b28bc0413a5bd7..376116531b2fdb00b38e522828a435a4b5effb6f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/dynamicMeshDict index 12f3410e45e25e6394bee9d2f3aca3c55558de89..fbb59563c571e3a1c60d170a22eef4fe45a3bed1 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/transportProperties b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/blockMeshDict.m4 b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/blockMeshDict.m4 index 69c9beececcb60f889df5d15039ded035c91a0c1..63149b399d273efb58e425e4399acff6474063b5 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/blockMeshDict.m4 +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/blockMeshDict.m4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/controlDict b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/controlDict index 0987b42aee371f803f989c2dc0162e3584803bf1..305192034fccaa3090c15c33f7e1ff1a0fc2c8c3 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/decomposeParDict index 259eb782684eba9d0d7c578df04df6eb377f68a4..5d3c5177a38f53349c34e7937988f2b56753b8e4 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/fvSchemes index f6f1c62c7bfac9d7cd98b6de5b0baea73370582b..10e5e05ebc3dccb363bf451b074aaa38880b444e 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/fvSolution index f11ca8090a2ad7b4738caaa68352f390210d131f..a93151c248bee6611577a79e4729803e06ffb9c6 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -20,9 +20,10 @@ solvers { solver GAMG; smoother GaussSeidel; - cacheAgglomeration no; - tolerance 0.02; - relTol 0; + tolerance 0.02; + relTol 0; + cacheAgglomeration yes; // Store agglomeration + updateInterval -1; // Never redo agglomeration } p diff --git a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/topoSetDict b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/topoSetDict index 30a764f6931c71e72c99177325f05128c7b0d2f8..be3adc4278921878e7516332ab54e617b4482cae 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/topoSetDict +++ b/tutorials/incompressible/pimpleFoam/laminar/mixerVesselAMI2D/mixerVesselAMI2D/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/U b/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/U index 4b5baa6359a5aaf09217429663b41f05c1d9c0b6..e13734dcdbc778d1277d56e6088a38f911549acb 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/U +++ b/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/p b/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/p index 51a0f872ac0160cd407a613698fca5a7cc88d263..38696b78958464e63831263288b9d2b521fdacc9 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/p +++ b/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/pointMotionUx b/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/pointMotionUx index a4079e8dd73baad1de0f4fad49c074b63866c9c9..7b1f79028741c8aced769a6be22d7bf304f9f514 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/pointMotionUx +++ b/tutorials/incompressible/pimpleFoam/laminar/movingCone/0/pointMotionUx @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/dynamicMeshDict index a31c84ecfb1e22cb2643f0215850d24a68b41199..828c8be96641f18d413a1b65765f4ab16b8b893d 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/transportProperties b/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/movingCone/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/blockMeshDict index 91da7f08549c0978714b4d20722dfc4a9845f75c..e709553173066d97c8a57f1b66ddb37c3f5373aa 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/controlDict b/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/controlDict index 90efde99caea2432d5eeb67c7db5b9f452b6f49b..367635c04c8fc0b1659c871963b76ec846f4a959 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/cuttingPlane b/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/cuttingPlane index 282fbb8a1b73b34edab16d0484de266e3a6bf694..ce7410fc23f560a20d767d9632f8d5aca3e03e8f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/cuttingPlane +++ b/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/cuttingPlane @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/fvSchemes index 686f2f4c263a228994d964c10d892d81301afd0d..8fd70ab1d90e731484b3de4d21e944c73e57fcc5 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/fvSolution index 37028c4871a2c8b5ae2d0bd7312adc91e90f6702..b9d3eb14ba8b33586364af3a7fe57f55152f8e38 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -22,7 +22,8 @@ solvers tolerance 0; relTol 0.01; smoother GaussSeidel; - cacheAgglomeration no; + cacheAgglomeration yes; // Store agglomeration + updateInterval 2; // Redo agglomeration occasionally } pFinal diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/U b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/U index aea2593866763c37105ada7d2d107aae0bb5a0b1..c29d8d0405b7721bd7f16b175f2b47e2a2ac0e02 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/U +++ b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/p b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/p index fa24ec9aea33d6e60e64304b2d9855759f022c3a..9c77ba9dde8e1218dacaca78b9a27a9354835520 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/p +++ b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/sigma b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/sigma index bddc344b421152571df77aaed13907e37b6d6d5c..86ce8a2c7874db30c6a256262172d8d58cd80364 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/sigma +++ b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/0/sigma @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/constant/transportProperties b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/constant/transportProperties index 055caf12dfabb9de402351fb6cbe4b9f63b1daec..905c1f3ce1c73ac2854862c6039db46f9e2de7cc 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/constant/turbulenceProperties index 3219c4d4d2e62e005700beed53ff43c32eaca28b..2328dad2110c63dcc07532393229fa1128864204 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/blockMeshDict index 423055ab4d0bbacb747dc338aee55ac7b0ce469f..a759d8200794aaec573e3945e4790dfd2a0c610b 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/controlDict b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/controlDict index b0d886f75212e433bb89ed25180c25640faa3023..8c001b88eeaa9a5e36f7e6fada68fafa5ec34d79 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/fvSchemes index ff37d97d9dcf99a1bcbb8ed00a694bddd61473bb..b9252a032c984dec69b6567e75838350df3bda79 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/fvSolution index eb56853c1fab7ef95844d063b50a83cd205a75b4..db1e16029775687fced23989da0f993108d4ebc3 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/Maxwell/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/Maxwell/constant/turbulenceProperties index 1a05e70989b006dfecb0fa4739354a7d3f7669bb..1767bc3baf748a97e270c48d4de4495bc73f3b56 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/Maxwell/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/Maxwell/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/Stokes/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/Stokes/constant/turbulenceProperties index b507724f11ecb40781ed0079c58d23dd355fa64c..79c850bc40b019f3cfe6b7ec3bfb8c54a7afc071 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/Stokes/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/Stokes/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/U b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/U index 6ccadade7d520669b71f2dd1a951c68f5a034a59..cb3341ee92d4d960aed75d323c201684ff7baf71 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/p b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/p index 77113463387e7d2763e2fc42ee57bc27743cc151..cfe81a5374d04148e119eaf5ab29e072eb31f3e0 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/sigma b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/sigma index 65c8d0669c0cfb606c7848ce52fdcf8e41862ca3..3baf9c43753d7540efd74ba95ad466ec25626bbc 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/sigma +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/0.orig/sigma @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/constant/fvOptions b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/constant/fvOptions index 17f5b3d04e51eb6faae0ad4dff79197780d0520d..f284cb13a5906c2342f9f2f5469d307edc749995 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/constant/fvOptions +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/constant/transportProperties b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/constant/transportProperties index 1630769b967119246cabee77f027b75f123ca147..65e828ededd6a7ef955acd2e9e287eb172982e5a 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/blockMeshDict index 58e29ed7e95bc9a79edf06d6dcea7c171cb4c3de..e414d639ad4538af33473b860b4bc1babc92680b 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/controlDict b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/controlDict index db5df8827d669b7b86e89ba1d2ceda1b2c163e6c..fd1b8cb19b3b598de67c3765ebf99a08f4b556a1 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/decomposeParDict index 42ec205e60557f05d06c4b8c7d4f627763dfbcfc..03c345deeca9b79d6b6f9fe93ed1a8e775b76360 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/fvSchemes index 3f7115bedcb7b420ed0007ba07b1b455764b41dd..373fee434a65e31dc48e5b716e7b19c71f57f227 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/fvSolution index 3f9644a03a2fd06a39163f8c9f07e5bf50c042bb..13b8420fb52c1ae8fd844441c652246cf697824a 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/setups.orig/common/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/U b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/U index f5b6f474aa9473cbcf0fdf05271aa89a32858e31..6381e765e1135cc7876c0da5f4dc3ad8429f29f6 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/U +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/p b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/p index 344ab5fa22cdc39bd7e70e4b0ae36ab824d94b9f..facb6072887cd2e588d599d23afdb7bd6140533e 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/p +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/pointMotionU b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/pointMotionU index d958db9839ef8d7c8d782da1f4c89676bc39ce9e..9bcd9c49e9dd43b8e0e396d1d8c879e3a752b47b 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/pointMotionU +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/0.orig/pointMotionU @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/dynamicMeshDict b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/dynamicMeshDict index 8d0117a72ec29c9133ea2718b0bd476f9ab96b01..be2990de12572791a7cf4b1f64555b054cd61afe 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/dynamicMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/g b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/g index c4e03e98fe4808339b742dc8b6a9af7cedb65e91..330a6bfc4f9177243a479dd15cb216baa060195d 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/g +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/transportProperties b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/transportProperties index 374f03f5beb9a9560975057e5d87ff6fb329ce9e..323ad41d5674b15ae8f31c70c6e6dbb25a6af930 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/turbulenceProperties b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/turbulenceProperties +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/blockMeshDict index daadd597e95b26a12845f6e13cf5adf7ada089c2..fff0398a67e6fa210b907d65c9662b7825affea2 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/controlDict b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/controlDict index 7a371362007b7f513177dcf38301bcb516e4be87..fc8fb4265e8683f0f452f1e9edd64e7c382a45ef 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/controlDict +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/decomposeParDict b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/decomposeParDict index 5ba19b60cb8363bae04c6be7bc3161ca51d9b16d..5794dc997ec2113f8b45d051a3205507816a0e12 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/decomposeParDict +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faMeshDefinition b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faMeshDefinition index 59147b8c669688abddc2196d359b2b3b52eeea3c..0f86cc98a156840e356f567c4c943c22bc4a67d8 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faMeshDefinition +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faSchemes b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faSchemes index 88443d1eb595f5821871faea795307aae098b5e3..6bb5601f9e489ce638e33dd45b1861f93bfeb286 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faSolution b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faSolution index c03af907fb5ca456548e3e0d8eed70b31f34e15c..e306c8c471407979a2a39756f5b823f986321482 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/fvSchemes b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/fvSchemes index 8b8593c6079ea4a8fe31cd4042ab803a3ecfa517..fa6dfd994db5c61a87af64110f3ce82f5fce539b 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/fvSchemes +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/fvSolution b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/fvSolution index ede960268ba10fc8eb91d7f49d5dbab5e58b5065..861e4a3c01a0b66837eb783a85a84724cf5080ab 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/fvSolution +++ b/tutorials/incompressible/pimpleFoam/laminar/sloshing2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -22,7 +22,6 @@ solvers tolerance 1e-8; relTol 0; smoother GaussSeidel; - cacheAgglomeration no; } pFinal diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/controlDict b/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/controlDict index 6ea966dd5f00aa0db9b960bdb7be6bd669dcf3e1..cbb68a19ec68f51a11dd41295bda9f1efbbeb9ba 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/controlDict +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/fvSchemes b/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/fvSchemes index fa9a194c8e467d12d379fbb5f7cd12911076f164..23b9ad65a8ac4a220dca3275f9f902783422b5bd 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/fvSchemes +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/fvSolution b/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/fvSolution index ddb65dbceea72d9939c9561ebbb0c7a54ea9f4ea..853e405fcfef1aa1f2863164fc73930775ee343f 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/fvSolution +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/turbulenceProperties b/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/turbulenceProperties index 07b788df0a3541f719e96eea02bc81f889d6039f..9356c882798eb916c0094b1c8f3176387f38b98f 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/turbulenceProperties +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/lesFiles/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/U b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/U index 82b4ce6c72298f42a28b54300fe6da189b32a672..b6af3661e7c088320dcc1ba7a5a07ab44eb0e82e 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/U +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/fixedInlet b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/fixedInlet index 125fbb7bc20e6e06b7203d3c70e0bc77b6db089c..0b9fd7ef7f399378c34ccc6a4f7c8f0d4e44c984 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/fixedInlet +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/fixedInlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/frontBackUpperPatches b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/frontBackUpperPatches index 78b58a10869ab8a39a50dd6495150d15d680407a..a6385076dc6272470491e18dcee1ddb6e97adc5d 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/frontBackUpperPatches +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/frontBackUpperPatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/initialConditions b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/initialConditions index 6b897d6d9d59ae18ca805ca6d1d1733edaf48165..c41f10f7cfae94619d2f9eac89b3130b8d8ab641 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/initialConditions +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/k b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/k index cc532793ea26666ab9b31d39dde19566a8577d98..5e5d6f6ae7f99553883c172a6de72825e6af1318 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/k +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/nuTilda b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/nuTilda index c6750aa64f87427f9e27fcb67407379d8f74ee0b..e1ae1dff17c92f9b453237fa2f7856fdcd6012d6 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/nuTilda +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/nut b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/nut index eff48769d271263baf2ec824e5d62b6f1c44c657..e28b9648a05380da9ae5dd9ea694abcc0f22dc17 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/nut +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/p b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/p index ea36572b15488c27aaa6339cc7f46183078aa2f4..2748dd360ef8751dc42c061ee8b3f12226dc26cb 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/p +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/constant/transportProperties b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/constant/transportProperties +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/constant/turbulenceProperties b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/constant/turbulenceProperties +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/blockMeshDict b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/blockMeshDict index 22ac1c3155c6e831b77de9136442d0cbfc677a4e..1dac82bc6c4481a17477b88779deae3c896c8655 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/controlDict b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/controlDict index 7e547729f3f403d930926bf085ec2837b505ba42..9700ea97593df1d821a3b509cd1c8a5df2024c89 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/controlDict +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict index a0ba35c4f0f37816604083baa5da1f17e7309a0e..1dc2205e3acede5f1ade4bc854e06f4d936047ad 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict.hierarchical b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict.hierarchical index a0ba35c4f0f37816604083baa5da1f17e7309a0e..1dc2205e3acede5f1ade4bc854e06f4d936047ad 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict.hierarchical +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict.hierarchical @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict.ptscotch b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict.ptscotch index 6d2456f1699ea9250258df5306d74a33c5c893db..3adaf7f5a733c8faeadb2576580f9323529a5f7d 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict.ptscotch +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/decomposeParDict.ptscotch @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/forceCoeffs b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/forceCoeffs index 69374a250640d70c38cbe1b958f7c5195184a395..a3186e28ac5567a9332ec5493180891daf805d01 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/forceCoeffs +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/forceCoeffs @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/fvSchemes b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/fvSchemes index 152a9bdcc749eafbc8da7f6eb9e42df7536e1320..52be5fd41bb1de02a966861105f1078656a83c8c 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/fvSchemes +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/fvSolution b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/fvSolution index 712834331aa281b3e57197c02c25a3216d088a6d..ee192e74611c41fd70686792c644191e5233e999 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/fvSolution +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/runTimePostProcessing b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/runTimePostProcessing index 1fbbec43dec605cf7bb93e976970161a6a768239..b5ac7594d8672b89a4055e4dbfd3dd59462ebbfc 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/runTimePostProcessing +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/runTimePostProcessing @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/samples b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/samples index 4070f9efe92921ecbb0b6cdd670e8e8cb73bbdd3..0f524b7a704ddae085894f5bb5114cd8fc78e153 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/samples +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/samples @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/snappyHexMeshDict b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/snappyHexMeshDict index f679cb67dacdd66d1d20cd35fb3bd43ccc3e7b5b..a3c4f57710c5a2aaddc76589fa9ca2e38dbf0400 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/snappyHexMeshDict +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/stabilizationSchemes b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/stabilizationSchemes index db617b1e8efdc2deb9160ce0165f818f7482ddf7..ef7b8c6e48b4fa2e0948d3f43377ce67d2b1f6b0 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/stabilizationSchemes +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/stabilizationSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/streamLines b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/streamLines index 4699da3c8250f3625ad457ff563a8755293990f7..d6e49d4cb2cd10a5045dd078a240f25030c956fc 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/streamLines +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/streamLines @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/visualization b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/visualization index fbdc4550c773641f26793aa0fd376adc7386b965..ff6d6284bb35e985b0169ee839a603ccca701f3c 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/visualization +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/visualization @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/U b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/U index 4c5f08455919fc9948b0c4a61933906e37611581..c46134f53c07f88b012d12f2a88d02bdb5e3ba9b 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/U +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/k b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/k index d41c0a568c94b341fd384363e53b0632f052bf1b..4bfd1aa6454fccc280cdb9771595021eda6b4393 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/k +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/nuTilda b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/nuTilda index 2ca2bfe2a854c3e0808e02d93e3416b5eebe93a8..5fa2e23dff66faa7ace30af524fa938c3b9879d7 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/nuTilda +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/nut b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/nut index 50a514341ec5384d1f78d4ef6e2abb125eef28a9..fff8c7c2e71f02f288fd87182fa1bbea4bc3ac7f 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/nut +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/p b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/p index eca7aa93a8f5ec660e9941f4dbcb7eab7d8de019..783fd80e14d2b3c9848f444ee15f135e319946db 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/p +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/s b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/s index cda72e633c223e233636c6ce62523f14d3196354..c03a45b2210ea0d107ad4b156ade56565fe2cb04 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/s +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/0/s @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/constant/transportProperties b/tutorials/incompressible/pisoFoam/LES/pitzDaily/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/constant/transportProperties +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/constant/turbulenceProperties b/tutorials/incompressible/pisoFoam/LES/pitzDaily/constant/turbulenceProperties index 6991ddf64e94baa8b9ce63505e136d7f88e816d7..1ebb7b381c64f869afe1aefdf7ae40dcda4410b8 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/constant/turbulenceProperties +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/blockMeshDict b/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/blockMeshDict index 7709136f71bf3d75aabe2e4fe84e823e3769b6d2..1dd07e2117d137ed392c80db2629404a955e7fc2 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/controlDict b/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/controlDict index da2e700c55e741885d80e61d5ed744ce6cbab13c..a86765d8867dfef59d5d51ec0385aaf23a8026dc 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/controlDict +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/fvSchemes b/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/fvSchemes index 11eb976b608d19177409de3a939f090204fafc30..8ae355ebd37110d3831991dadfb0e502533c9c26 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/fvSchemes +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/fvSolution b/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/fvSolution index 69e874853127d6575bf8a9bda822df8774318846..ac1fa359e6d071d30d075131b46a5c49c32f1713 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/fvSolution +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/U b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/U index f9de67f8019bc32f2d28ed2879da017b2810aa80..72847c761a7623f2edaeb67e2085af8f362ab9c3 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/U +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/k b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/k index 0a5ef4cbb3b857a1911cf404b64ee95389066329..2ebf10567f261ef3d1f126ceed0817bed4833022 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/k +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/nuTilda b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/nuTilda index d3aa994de3eb2682d08c74b4ab60009de5c29167..68895f52f7d2914b2705b353ff9444c330c8e84f 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/nuTilda +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/nut b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/nut index 50a514341ec5384d1f78d4ef6e2abb125eef28a9..fff8c7c2e71f02f288fd87182fa1bbea4bc3ac7f 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/nut +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/p b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/p index eca7aa93a8f5ec660e9941f4dbcb7eab7d8de019..783fd80e14d2b3c9848f444ee15f135e319946db 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/p +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/constant/transportProperties b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/constant/transportProperties +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/constant/turbulenceProperties b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/constant/turbulenceProperties index 452fba7d6f01c9d2a5b5077f91e079cae339a30c..baf1103c43d027f53907ef14933357215ba43988 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/constant/turbulenceProperties +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/blockMeshDict b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/blockMeshDict index 5391770194b528a6ffd8f5d1153285475fb9021b..e114482ed5df88904c957748fd5395e5be8c17c3 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/controlDict b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/controlDict index b0a7d9fa6cc5ac9afedc5536f7e87aeba2681847..19e42015aa3f722d109900ad0fd5fa2ee16bdae9 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/controlDict +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/decomposeParDict b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/decomposeParDict index b2c491f1197ec931ac4e5a82212ae3710061bdc8..77bddd03ee98049b50128ff0f244bc9a940ea3ff 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/decomposeParDict +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/fvSchemes b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/fvSchemes index 11c6169e5f722725f264f27723c9e007899cbab5..a35f7e5a02de4fcecd2733198f045721ebcf4b89 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/fvSchemes +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/fvSolution b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/fvSolution index 21e771eab0b68a0941e4578342a283f4f13830e2..0a0596cdde1f3fdd2927a79adff105adf51a3d23 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/fvSolution +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/U b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/U index e9ce88a98387ad09ba8f383acbbce03ce5f7d6a6..573a1e93859582036ab7e3284ccf6bae466c0e21 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/U +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/epsilon b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/epsilon index 1ed95b50484557636a4eab4723ab5d8888de56a2..7313cc5e4e1acc3424ca7627e575f176fd865718 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/epsilon +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/k b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/k index c46e6d1adfc1bf069b64740a16bf1fd5164f7c58..ceab4ee9d649c5ac17868c9ab90ab7e10139bb85 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/k +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/nuTilda b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/nuTilda index fc9eafd66299913eb579b0f992fc44c265417ed5..fd20b6adf5534e451b545d1cc567797bd3d651b3 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/nuTilda +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/nut b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/nut index d61835898071a5b22c785d19509d7aa460a4e013..6f072d5c8f68727406b3c9a6a97b05074c1bb36f 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/nut +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/omega b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/omega index c498439b50ae5f7ab8b39aee578a941872018741..1aac522b5c77aaaf57218ae21d0d9dfa3b5cff93 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/omega +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/p b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/p index 2d5bde368d7c2ca4424ae5976291d2a17e883eb9..335d622bae988478e8c8819e65cef98dc2433732 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/p +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/constant/transportProperties b/tutorials/incompressible/pisoFoam/RAS/cavity/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/constant/transportProperties +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/constant/turbulenceProperties b/tutorials/incompressible/pisoFoam/RAS/cavity/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/constant/turbulenceProperties +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOCourantNo b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOCourantNo index d84c7ddbd2cd554258cc5dc9a89888c2f7755eeb..9d7dceff6f4708205519b06e589bd2e2df59aff3 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOCourantNo +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOCourantNo @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOLambVector b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOLambVector index 0dc6df9b7804f2d786c7d38f7607b7d57dfb3425..9fac0d611796a8167839a91a32129b13e83f86ce 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOLambVector +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOLambVector @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOLambda2 b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOLambda2 index 1057b16ec3dd20f042b58492fb971c799a6206ea..8e07c22153f05c5d23d83219a04317e76398cdbc 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOLambda2 +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOLambda2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOPecletNo b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOPecletNo index f118ad81f211ffa185818e2359dcb429dec9148d..0a752ab9dc16c65fd0d3cbb57f5e9b5421bb6311 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOPecletNo +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOPecletNo @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOQ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOQ index 0cd3637dd556aa5a7c869e13d71f2fdeb89a0071..a005aedea3b5a4bbb7652533882be5644b646638 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOQ +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOQ @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOadd b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOadd index f0702b00730646fe3741dc1bd51389df504a9812..32fe8d0a6510d7c78b43ca09a7ee8bf0a2c17dcc 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOadd +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOadd @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOblendingFactor b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOblendingFactor index 83aa0f238106f17d4b8fc2ee445b84646120cfba..29f90dabdbaff36be2e65acab7afeac2aed5c2b8 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOblendingFactor +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOblendingFactor @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOcomponents b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOcomponents index 794b9616cb213efba1a5f68c9ea0a17f9384ae30..4eb7b5efda7e3606a7920d79774835dacb6a8e82 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOcomponents +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOcomponents @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOcontinuityError b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOcontinuityError index 38ade7baf09462cecf72139f0e3d9455107b8ae0..0c95feb54fe2157654275d928ec8b405fd8a0101 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOcontinuityError +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOcontinuityError @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOddt b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOddt index f703085aa2ea4459a8eccbd61a22b15ca2acdf9d..16956b23d492bc9de87a9cfa077de21a180ca70b 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOddt +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOddt @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOddt2 b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOddt2 index 21710f676738bf21b6aedc734132d8b2c850eb26..99d43e1629d8b96d46cf7b3a31036be44da80923 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOddt2 +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOddt2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOdiv b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOdiv index 8b35ca6740f2652ccad9541bfa1d13ad3a03dc1e..0aefcdd82bda4a91019548f38549ba78664d8fe2 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOdiv +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOdiv @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOenstrophy b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOenstrophy index beaf21549d8fd120b677b64447d18b1ce032610b..d8191bba16f3d40a892bfdbde2d5a92d739d44b0 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOenstrophy +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOenstrophy @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOfieldAverage b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOfieldAverage index e8e730a339b32db601646ca689c93e7c0f389e39..bfe7919372eedec3f9182e45a9771ac3f2527b81 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOfieldAverage +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOfieldAverage @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOflowType b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOflowType index c56919a14ab8e0cb123f48df068e77ccb0274a1c..c730bd0fdef72e9b21371173661eeb5865924e58 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOflowType +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOflowType @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOflux b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOflux index 41079d6856b23fab9a98a40181ce2e528a9a25a3..30df57076e388ce55d6233f627399b574ea38134 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOflux +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOflux @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOgrad b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOgrad index 6e39b19468ec09331de068e382d442c8236737c3..2d074e8e8bbb0a376e81ac0d84b4e4894817c462 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOgrad +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOgrad @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOhistogram b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOhistogram index cf668a65175c40a771059cec3240a72e48d8b598..853c417ce6b6b9f197436cebf3d3b122f99b7a2b 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOhistogram +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOhistogram @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOlimitFields b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOlimitFields index 923e0e0ad76583cd2a2f7e659a227c8c840c8d9e..fe81bd45b4b4844dd4d9b87789d68b815720179a 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOlimitFields +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOlimitFields @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOlog b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOlog index 1e8489bfe8b5509d020a4a8172ec808bee335a04..0fa6aef25774fa05f51d844215ec37b5541099e0 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOlog +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOlog @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmag b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmag index 1d9e575164c2befd3734d171b382667f1693491d..6200c7bd2ba3fbe581c1b1f4ab33e7bb2cbc2b9f 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmag +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmag @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmagSqr b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmagSqr index 81e3e851d744c1ccd08eed46db133ce1213396b7..dc84f9d5f53b6eca6503295b7a8fe777ec74ac05 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmagSqr +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmagSqr @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmomentum b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmomentum index 2f383e6d1f4e2ffd32ad55933b5e0ada7eebc976..5ca18e0f50338906450031705369cc582b844d5e 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmomentum +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmomentum @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmultiFieldValue b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmultiFieldValue index 2846185e4e118b47ef25121cef175d1ed3c54349..cf9f0a916133459cd5e2164a30425b1ccf40108b 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmultiFieldValue +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmultiFieldValue @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmultiply b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmultiply index b944d2aac325189d979674386c38e4534adcc002..fd2b4db74d0e850b96aab8d8b1d51563d8157d8e 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmultiply +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOmultiply @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOnearWallFields b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOnearWallFields index 899ace0b18d7f84bc4f1c2f626e6c0143fe765ca..799246bb71a77004d093a974f0da72f172c6ac6c 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOnearWallFields +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOnearWallFields @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOnorm b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOnorm index f513bc867371c572f0fbcb3a156c7178626a5b4a..b932303c37da8cbb18fbaa0f33f8886f4adaad2d 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOnorm +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOnorm @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOpow b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOpow index 5f4ae69a9594242fe407c60b5dbfe0fc40c0d99b..5c8cde5b6c157eb43d5a776ee5ca17bc3d8fdf4b 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOpow +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOpow @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOpressure b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOpressure index 242317720e63572c51d52d3962a399efbc0ff1c4..5887f84074d72efe65eab7a95a9003e6cd606b02 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOpressure +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOpressure @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOprocessorField b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOprocessorField index 36a34671dccb050e5a8cafc5ecc0aee8f1f0d85f..ebe67d85a34774a64a0f3564094f35e9c61cb497 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOprocessorField +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOprocessorField @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOproudmanAcousticPower b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOproudmanAcousticPower index d046ed7b1a1c64b26ab45f4e35e83a76b23dbbbf..b46133e8f8033fb3a3bb9e4b06d1ec01174d8006 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOproudmanAcousticPower +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOproudmanAcousticPower @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOrandomise b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOrandomise index 265a89855793be574bc18963b9633eaf0a692f53..c4e181e8481ccab8138b0ab558c98acd52005be9 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOrandomise +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOrandomise @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOreadFields b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOreadFields index b4a98fd8595b888c976784fa0401dacb172b3bd5..2155d1d316293930520084961d04a7ea8643d701 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOreadFields +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOreadFields @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOreference b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOreference index 0b6ad7af08f18d62d78306437a933aa7b04f9440..47d34e77e5279780dfa949797a9befd50e587322 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOreference +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOreference @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsetFlow b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsetFlow index dfd2930d38e2893856bd50e0ca7d1a8d83ce1e6e..5fa1f624828e1dc631c7acad060fbf4ea457fc37 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsetFlow +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsetFlow @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsolverInfo b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsolverInfo index 177c5f218dd569c73276c2ebd71ed56f1e7dcd95..adb31c72e6691d7c3033303c34ba4bd1221fa409 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsolverInfo +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsolverInfo @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOstreamFunction b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOstreamFunction index 2df90a0b7200a0cb9b31cddc550d71aa4b709435..385bec7c9841b04c822f3792ff3264c070b8c8a7 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOstreamFunction +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOstreamFunction @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOstreamLine b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOstreamLine index 32ffc09666066734a05b3b20a45a950d2f7b3d8e..99661d91ed7ef7c70ed430e323de7f6b36696559 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOstreamLine +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOstreamLine @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsubtract b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsubtract index 14ea31ed44155882673cc5ff2e2a16d9ee65202e..cdb27068f3aaa6afab3d8f6b784ebf7f9e076b8f 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsubtract +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsubtract @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsurfaceDistance b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsurfaceDistance index f94e0c6b4bc058cd6215362332f2997816d74765..3ea60d5cb4b1a7713d38502802d7c139e35ca639 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsurfaceDistance +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsurfaceDistance @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsurfaceInterpolate b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsurfaceInterpolate index 2852be61593778126e951a02824977ee155e3987..40e2facf94fc2a04cddb5896b2098d1396dfeadc 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsurfaceInterpolate +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOsurfaceInterpolate @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOturbulenceFields b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOturbulenceFields index e07838fe803c6157ec803cac8f7da2eb7ac74c1b..34047f5e2be11b0f842f14499007e958fe969754 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOturbulenceFields +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOturbulenceFields @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvalueAverage b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvalueAverage index b970337a04eb3c8adba9556ee2f409759bf36611..cc93c84221ecdde81c7477d265ca06b98d7ceee8 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvalueAverage +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvalueAverage @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvolFieldValue b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvolFieldValue index 180f5d9554f36f472584e4dfe4c8aa25a2af676c..c8041ac1ad40ebd8ae1081fcf87b620e9a98cff6 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvolFieldValue +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvolFieldValue @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvorticity b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvorticity index d6f69e79d4a7e23c98c57f9c732c296a6735431c..522c66280a51a267d4d2366cd443a51526e5b33f 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvorticity +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOvorticity @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwallShearStress b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwallShearStress index 7abff087fd9c3eafc07052ff5a43fa6e2e3e93c9..63ea44efb9364332dcc80a0d85fd2c21778e70bb 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwallShearStress +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwallShearStress @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwriteCellCentres b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwriteCellCentres index 9c181854e7a76f55581ff81ef35658e5862c4dc5..86292ea0e25c8c8aad499efaa3d3c1e1b94adf02 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwriteCellCentres +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwriteCellCentres @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwriteCellVolumes b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwriteCellVolumes index 1b34ac270fd9dff407a11a1b15ac0c00ecef9bfd..e8bb21c88ef9ef20463913b648d4f79fb4c6ab69 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwriteCellVolumes +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwriteCellVolumes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwriteObjects b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwriteObjects new file mode 100644 index 0000000000000000000000000000000000000000..b52a62089c3e20e0f988cfe86e3a537e79fbea5b --- /dev/null +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOwriteObjects @@ -0,0 +1,36 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +writeObjects1 +{ + // Mandatory entries + type writeObjects; + libs (utilityFunctionObjects); + + // Optional entries + writeOption log; + + // Conditional entries + // field U; + // fields ( ".*" ); + objects ( ".*" ); + + // Inherited entries + region region0; + enabled true; + log true; + timeStart 0; + timeEnd 1000; + executeControl timeStep; + executeInterval -1; + writeControl onEnd; + writeInterval -1; +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOyPlus b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOyPlus index a0724970321180599735bb3bc28d34295055683e..faf28e59274dbd0453a00f0cad868561a9762782 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOyPlus +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOyPlus @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOzeroGradient b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOzeroGradient index 1eb88796d5adfaa6c6e33afa52145746b2fca62d..88a2cf8d01cc6121718dd7a77f1c1e91e5b2a6d8 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOzeroGradient +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/FOs/FOzeroGradient @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/blockMeshDict b/tutorials/incompressible/pisoFoam/RAS/cavity/system/blockMeshDict index 5648392987975b6d5eb248ba1cd32a4aae642779..71ba99696c064f68c5604e76563e4a45afd72e9b 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/controlDict b/tutorials/incompressible/pisoFoam/RAS/cavity/system/controlDict index 5b24acc375a1f7fa93b9c1f2a043f6532a643e67..aec5c78b4c2144710410d01ef6f7bb90430bb0ae 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/controlDict +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -94,6 +94,7 @@ functions #include "FOs/FOwallShearStress" #include "FOs/FOwriteCellCentres" #include "FOs/FOwriteCellVolumes" + #include "FOs/FOwriteObjects" #include "FOs/FOyPlus" #include "FOs/FOzeroGradient" #include "FOs/FOnorm" diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/decomposeParDict b/tutorials/incompressible/pisoFoam/RAS/cavity/system/decomposeParDict index 073a22b9a30228d92c96b11f3f2d9952830b9975..cb4fbd98b0ca9a0543c0b82a636be62058845803 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/decomposeParDict +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/fvSchemes b/tutorials/incompressible/pisoFoam/RAS/cavity/system/fvSchemes index f6ca3a0eea75e2870cce1864e03189ce3159ebf8..d3e0cc93474f9626aacf21260dfade522b08a3e9 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/fvSchemes +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/fvSolution b/tutorials/incompressible/pisoFoam/RAS/cavity/system/fvSolution index 63d4c67a80a822f06820e7e9cfd4bb083e727833..a973c271727e76dbb4a5cf8cc13e8db8f007f3b5 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/fvSolution +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/topoSetDict b/tutorials/incompressible/pisoFoam/RAS/cavity/system/topoSetDict index 0a53c41edb6466a6e47db9105f0e63ab9a6cff37..b32a9758f36312db6d0f4b4359e9ae2272973f79 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/topoSetDict +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/U b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/U index e9ce88a98387ad09ba8f383acbbce03ce5f7d6a6..573a1e93859582036ab7e3284ccf6bae466c0e21 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/U +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/epsilon b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/epsilon index 34ad9ab942cc7367362e7b6147a40812888e7e56..6421fda4d9243fda25fc0d475e2ec65657c13843 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/epsilon +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/k b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/k index f70d28e65d6649242ecfe3412feb473f0c6970d7..2e9bc9fb65a098a5613ebb5c03b7f4355a57d394 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/k +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/nuTilda b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/nuTilda index 8e77699079ce330a41a387765031dbb004a57bae..5f1af0f9aba5d8f4225b04916b316044419303a3 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/nuTilda +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/nut b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/nut index ac93c96ebf5ff50d4ab7c232b801409e29c6fc08..d1fcc2efad263f38bf63ed2684db97e6591d9986 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/nut +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/p b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/p index 1160434c0147040beee61fe88aac3e1862acfb98..861ece3fd25189915bfe37d0afee4ba65f3a11d6 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/p +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/constant/transportProperties b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/constant/transportProperties +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/constant/turbulenceProperties b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/constant/turbulenceProperties +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/blockMeshDict b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/blockMeshDict index 89ef70458c46f0482b9a2f0884bc56fbae77deb0..eb7f950887d791b2678cb6a8b1cdac94fe746c72 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/controlDict b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/controlDict index 89fdf1c78f8cc4df5b9efe68be29081659e82b09..efb1edbd5392c03c1c5270c206d8b5dc9b3ad6fb 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/controlDict +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/fvSchemes b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/fvSchemes index 8835715cf02bc60e9e4f4542f6124e2be9bb812f..3f18be455e54878d785f16a91944f628acc45ba4 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/fvSchemes +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/fvSolution b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/fvSolution index 6b0a73109f4660c6f5945d66ea17ec73b0891758..c4b61d4ace4660e0e80f7d96faac644ce2700bde 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/fvSolution +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/0.orig/U b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/0.orig/U index 8601758edeb41f40fe6943271ea469cda83f63b5..94e5a5b96ffa15cf102dde1d55a35ee120459284 100644 --- a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/0.orig/U +++ b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/0.orig/p b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/0.orig/p index 1ca741753f2211e53b92621817faf696254bd04a..6cbb2f60887465cef25a36a899d0206215a0fc3e 100644 --- a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/0.orig/p +++ b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/fvOptions b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/fvOptions index c7325023d7dbcdec616f2299170ddced54ebd170..4ff860ceebe9f2fa17134dddf496c06c344a9ce4 100644 --- a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/fvOptions +++ b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/transportProperties b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/transportProperties index cd7ae9218ef46e8cb08f90d88e02bb9e65458865..0f74f90212ecf60a66e554813687da6410a99543 100644 --- a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/transportProperties +++ b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/turbulenceProperties b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/turbulenceProperties index 791fc891805cdd83f722c96496591dae58546c29..7d54a144a600a9d73b802c6a1f3d5b0182574b3c 100644 --- a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/turbulenceProperties +++ b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/blockMeshDict b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/blockMeshDict index f7d85c208ff5a074c60c517e882a452077be23be..31669f9a37daf9175e59ff45456dc93a7e8e4e37 100644 --- a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/controlDict b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/controlDict index a691b697990db4a82bec4ab308bf02c345ee04e9..f0998e6b5948fa6af6da766035436051870c6efc 100644 --- a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/controlDict +++ b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/fvSchemes b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/fvSchemes index 1db665d846ecf79ced18b6668bf5c0315c572814..57d4140b61f3899c52a3f7223fa60781ff8ff7cc 100644 --- a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/fvSchemes +++ b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/fvSolution b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/fvSolution index 63d4c67a80a822f06820e7e9cfd4bb083e727833..a973c271727e76dbb4a5cf8cc13e8db8f007f3b5 100644 --- a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/fvSolution +++ b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/topoSetDict b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/topoSetDict index 46715e9c3d172e85a021c7bebf5e82278a80ce27..dead973fbf3e31c41fd770e9c3e6d4cc1246a226 100644 --- a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/topoSetDict +++ b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/T b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/T index 66e7db4b4732ddd912c08ab13e1ec0775fc69b26..0f9009aacf6ef17adc7d156cd880764170bf6a07 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/T +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/U b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/U index 67aea29140ffd4167f3b5b1299cf461f9fdd12e3..265d762801de2951a1257110e5b879a6a715ad68 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/U +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/epsilon b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/epsilon index 33fc07492240c255c9d9307be3441cb985a03652..48f70dfa313b325ff556cf7124edf4c1ae3495b3 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/epsilon +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/k b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/k index 1f66267253d80fff8f6228e4c2a854fbecffd0d9..98c50a092cd74af2f134ae9fcbac219c52cc82b7 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/k +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/nut b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/nut index 50fc6cc839312628433a393898881a443463817c..f04c2d46538a8b35e92c933e54ff5f946cbf7956 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/nut +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/p b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/p index 5d7bd486dc7d23cf816ad18d51c7c81b592bdc80..64dfee494c17a53ddbdcaff88eb701d28029452f 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/p +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/blockMeshDict b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/blockMeshDict index 0222303a0aa6348d7fbab5de9ad2627d69da4f59..3aa84ee1189fc777e4cd38ad716bde662f0f3abc 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/blockMeshDict +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/porosityProperties b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/porosityProperties index 69dcfbbcf4675af84ac34bfac59c13816cfe5d6b..9b67c7f174d7553897da5cadd10ce4a8881ecd68 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/porosityProperties +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/porosityProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/transportProperties b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/transportProperties +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/turbulenceProperties b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/turbulenceProperties +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/controlDict b/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/controlDict index a28c8d5136818c57bca41a546a0be11da540bf6c..582ce80084637964598c0ffcdf6ed6fcc782fef2 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/controlDict +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/fvSchemes b/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/fvSchemes index 359d9b9a3fda2e4af25394e7ba71c13455a58bd7..b51c78c742f611f16ec03743e894b941e62ca12e 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/fvSchemes +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/fvSolution b/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/fvSolution index 9ba4595095a687c4da07a100ac779c7bdafee129..0170c275adb556cc94ee4ea75ae24a1874f320c8 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/fvSolution +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/explicit/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/controlDict b/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/controlDict index e73e6d7f31389f493aa63966c0218b8290fe73e0..9de42cfb74af2c581eb7214d4abca1db260f1726 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/controlDict +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/fvSchemes b/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/fvSchemes index b94e67d7c99429092345af1e93d4e42c73069b19..6f84ee8423a4e9f64c50f714da3fe6aa816290ed 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/fvSchemes +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/fvSolution b/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/fvSolution index 62f68a956d20b3474b3efc57ab0ac136f1408a89..c77c48ef24c5dfd89026e6dcd6630315834729b3 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/fvSolution +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/implicit/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/T b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/T index 41a33744b922839f90e2a439f4e68ef8b3095ee1..973a5e88b88b354153dded605e506bc6ae09773e 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/T +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/U b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/U index 85a93fabbdc322dd9f2bcc8f210ecac230362239..7b883846da310ea144601b8d70c417a6ee680d32 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/U +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/epsilon b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/epsilon index 6be91e82367f26b370e4120630b166e8c555b4d3..15ca461d9f683922f57a291dfe409825c2a2e365 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/epsilon +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/k b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/k index 02ed5d8337a7937a32b81be9ee4ccc4be24c4aec..e600c7a54412a06962225fca7b7f0be79a1dc905 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/k +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/nut b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/nut index 9c97a8131761bf40d34da3e36879361ad09bff47..3678de875765aad6dce129d8ccd2e6177183ccd4 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/nut +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/p b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/p index 9515fc0938488f6b3b997e85a50ee8d4ee7bfb7c..0d5926db9eca86a6ab658104fdad2efd2c4e6b4d 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/p +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/porosityProperties b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/porosityProperties index 15c912aea69c8b1b8a9edd8fd24f136e0c9dede0..69c63c867a467b6a24c198d6675001dd5103b533 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/porosityProperties +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/porosityProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/transportProperties b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/transportProperties +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/turbulenceProperties b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/turbulenceProperties +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/backgroundMeshDecomposition/fvSolution b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/backgroundMeshDecomposition/fvSolution index 55d8895ca4ea0ec0d786b24fe3aa180aea155f93..7f5c0945bd6c041c74bcacf5ec95bbde40a8b1b9 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/backgroundMeshDecomposition/fvSolution +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/backgroundMeshDecomposition/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/cellShapeControlMesh/fvSolution b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/cellShapeControlMesh/fvSolution index 55d8895ca4ea0ec0d786b24fe3aa180aea155f93..7f5c0945bd6c041c74bcacf5ec95bbde40a8b1b9 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/cellShapeControlMesh/fvSolution +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/cellShapeControlMesh/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict index 601dbf9652bb3f372b162bb62cd3adbd5ad6213e..3b49c5720a7494d66d06ec2eca05afd1f6ddd29e 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict.collapseFaces b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict.collapseFaces index 601dbf9652bb3f372b162bb62cd3adbd5ad6213e..3b49c5720a7494d66d06ec2eca05afd1f6ddd29e 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict.collapseFaces +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict.collapseFaces @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict.indirectPatchFaces b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict.indirectPatchFaces index 015f6c1874818cc41a78f0763cd3d72834a271f5..828c1844039b3f27b96a438e6af4eb59d5498a4f 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict.indirectPatchFaces +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/collapseDict.indirectPatchFaces @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/controlDict b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/controlDict index 3aeafded6202a20182b6da46080bcdef78d63382..b1e41a8d7d9cc807c0b092b473000bc0f9be5e72 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/controlDict +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/decomposeParDict b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/decomposeParDict index a63bb992de12519c8682a8b273f146e5fb1ba88b..9a4c1b1ae1414ce50bd386d6fcaecee46bcad07b 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/decomposeParDict +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/foamyHexMeshDict b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/foamyHexMeshDict index 6a5e43dcd1e808cfa1d4cef53f7c45e5dc6bc941..98f93bfcba93ca8d2bcdab1e0ccfb21a2f1c82a9 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/foamyHexMeshDict +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/foamyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/fvSchemes b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/fvSchemes index b94e67d7c99429092345af1e93d4e42c73069b19..6f84ee8423a4e9f64c50f714da3fe6aa816290ed 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/fvSchemes +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/fvSolution b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/fvSolution index 55d8895ca4ea0ec0d786b24fe3aa180aea155f93..7f5c0945bd6c041c74bcacf5ec95bbde40a8b1b9 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/fvSolution +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.conformationSurfaces b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.conformationSurfaces index 6b4646b31289a008fbf47aa153caccaae702fd7f..69dba253ae11da9c76da0d63c55e1542a075d8f7 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.conformationSurfaces +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.conformationSurfaces @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.geometry b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.geometry index 0d5efbf104e2794d7b2f1807aa3849aa4f23d9c5..5836cfe1718a249839a1c2d5b0d00ab24aaee7cf 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.geometry +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.geometry @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.shapeControlFunctions b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.shapeControlFunctions index e6c6de1670039c06a0089c46d24a874862b2c8e5..2be0a7e66aff98eed953b1c815779f30deb39b61 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.shapeControlFunctions +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshDict.shapeControlFunctions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshQualityDict b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshQualityDict index 7f34616212ac22c6d2c464830dc74b219366d412..df1a19269287223b9007cbb3ae0c8d9b72459b66 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshQualityDict +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/surfaceFeatureExtractDict b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/surfaceFeatureExtractDict index ee350d1686ffc60d73de8e8dbc4d32b281a32175..a932ac42bd33ed4d445cb03ac6b37519ac7e9c50 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/h b/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/h index e987e49cc21aeeaa1a85fcf82133fe20d185856f..fd596a3aae8ad1b0c19efb56052fb0ec4ccd5f40 100644 --- a/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/h +++ b/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/h @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/h0 b/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/h0 index 7bf337d7c3f44a8c58309c49cbc05015e6429fac..dba44e699917e6002fd04e49322277c92f3fdbf3 100644 --- a/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/h0 +++ b/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/h0 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/hTotal b/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/hTotal index 7e70840a7e47c195ba3f21119b1a1f294a86cb05..b08b29ec92804f3f860f0289e0afcdc416fc1bef 100644 --- a/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/hTotal +++ b/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/hTotal @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/hU b/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/hU index 382628a07c59bccb80211c12eca0ca4c495128a6..edc0a5814189d638708192dd4c26da11349a23a9 100644 --- a/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/hU +++ b/tutorials/incompressible/shallowWaterFoam/squareBump/0.orig/hU @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/shallowWaterFoam/squareBump/constant/gravitationalProperties b/tutorials/incompressible/shallowWaterFoam/squareBump/constant/gravitationalProperties index c27186e2ec3a889d2c2b4f978da28559de6cccd6..21dd5e163b773cdd647c965ff73b3e6524bf2b02 100644 --- a/tutorials/incompressible/shallowWaterFoam/squareBump/constant/gravitationalProperties +++ b/tutorials/incompressible/shallowWaterFoam/squareBump/constant/gravitationalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/shallowWaterFoam/squareBump/system/blockMeshDict b/tutorials/incompressible/shallowWaterFoam/squareBump/system/blockMeshDict index 5ca7241d99aba214fea07749b703c6268aa02b4e..ad797954a87e91175e2c4dc4dcbd69ca76a90b26 100644 --- a/tutorials/incompressible/shallowWaterFoam/squareBump/system/blockMeshDict +++ b/tutorials/incompressible/shallowWaterFoam/squareBump/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/shallowWaterFoam/squareBump/system/controlDict b/tutorials/incompressible/shallowWaterFoam/squareBump/system/controlDict index 8413581b5efcaf971f6a2c64e3ba4656e51f4611..18b7313f02df1844d1956dc0f1cda38fcca32568 100644 --- a/tutorials/incompressible/shallowWaterFoam/squareBump/system/controlDict +++ b/tutorials/incompressible/shallowWaterFoam/squareBump/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/shallowWaterFoam/squareBump/system/fvSchemes b/tutorials/incompressible/shallowWaterFoam/squareBump/system/fvSchemes index 5e3a37b66888118bf93aacbe825d952af3fc7334..1783d8be514155ce5dbf6c8ef1531a4fe6abd9a7 100644 --- a/tutorials/incompressible/shallowWaterFoam/squareBump/system/fvSchemes +++ b/tutorials/incompressible/shallowWaterFoam/squareBump/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/shallowWaterFoam/squareBump/system/fvSolution b/tutorials/incompressible/shallowWaterFoam/squareBump/system/fvSolution index b910e8f6c25de783f9916f05cbe3f724f2fb07be..b06b854f2689c9c47fb194c9bb41fc7495e1a948 100644 --- a/tutorials/incompressible/shallowWaterFoam/squareBump/system/fvSolution +++ b/tutorials/incompressible/shallowWaterFoam/squareBump/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/shallowWaterFoam/squareBump/system/setFieldsDict b/tutorials/incompressible/shallowWaterFoam/squareBump/system/setFieldsDict index 64de98655143d0c8ba2b0822904f63a8c7228e14..6af4ff5862697a66c0b5de7b93ba980fd6f6d64d 100644 --- a/tutorials/incompressible/shallowWaterFoam/squareBump/system/setFieldsDict +++ b/tutorials/incompressible/shallowWaterFoam/squareBump/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/0.orig/ReThetat b/tutorials/incompressible/simpleFoam/T3A/0.orig/ReThetat index fc9a9d061cb285bda69f3ac09b9d5f0a35a194ad..b26d1331e10453054c9f7c102610225cea549ffb 100644 --- a/tutorials/incompressible/simpleFoam/T3A/0.orig/ReThetat +++ b/tutorials/incompressible/simpleFoam/T3A/0.orig/ReThetat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/0.orig/U b/tutorials/incompressible/simpleFoam/T3A/0.orig/U index e65e96e8620361dbc5cf2b83951f46033884659e..fe2e1e53ffa66b4c3fa7180c0958891b5349d07f 100644 --- a/tutorials/incompressible/simpleFoam/T3A/0.orig/U +++ b/tutorials/incompressible/simpleFoam/T3A/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/0.orig/gammaInt b/tutorials/incompressible/simpleFoam/T3A/0.orig/gammaInt index 05510e281cc55a92d7c0df6c3d2c1396190f21f2..c0d12ac183bba277ca35b8780b13992f9e9d9582 100644 --- a/tutorials/incompressible/simpleFoam/T3A/0.orig/gammaInt +++ b/tutorials/incompressible/simpleFoam/T3A/0.orig/gammaInt @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/0.orig/k b/tutorials/incompressible/simpleFoam/T3A/0.orig/k index f8bdc25271939eea2f6670fc1ac4666dfe3a2286..10dbb51a211051d035e5024993df597aa1efb67f 100644 --- a/tutorials/incompressible/simpleFoam/T3A/0.orig/k +++ b/tutorials/incompressible/simpleFoam/T3A/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/0.orig/nut b/tutorials/incompressible/simpleFoam/T3A/0.orig/nut index e9bc5a7efa14dc727cb066fbe48056f74c5a3c17..eb23c48a6d1e9075f4328acda9256f15951d867d 100644 --- a/tutorials/incompressible/simpleFoam/T3A/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/T3A/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/0.orig/omega b/tutorials/incompressible/simpleFoam/T3A/0.orig/omega index c48ed796136292ae4fe041e90860b8ec70985fb1..a777917636942f5588fc0e98256bb3b31fd99ee6 100644 --- a/tutorials/incompressible/simpleFoam/T3A/0.orig/omega +++ b/tutorials/incompressible/simpleFoam/T3A/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/0.orig/p b/tutorials/incompressible/simpleFoam/T3A/0.orig/p index bd4a61621b9f56995f9bc89c575e1a563b0a18c1..ced89e13bf7a10b49a85eb1f92b9cf731dcbbb2d 100644 --- a/tutorials/incompressible/simpleFoam/T3A/0.orig/p +++ b/tutorials/incompressible/simpleFoam/T3A/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/constant/transportProperties b/tutorials/incompressible/simpleFoam/T3A/constant/transportProperties index 5ab73442dd32adeb1b6e1ac98c2abf746925179a..3df606151e8b52420e1a8d96d3a54e067b7ec653 100644 --- a/tutorials/incompressible/simpleFoam/T3A/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/T3A/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/T3A/constant/turbulenceProperties index a938aeb87bca29b017def46398a437810b7d5d92..8a03bee93170c3428d1d399c75918784e9529839 100644 --- a/tutorials/incompressible/simpleFoam/T3A/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/T3A/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/system/blockMeshDict b/tutorials/incompressible/simpleFoam/T3A/system/blockMeshDict index 656ca1fe4d1a0b64712de2cf6788ab8ff228dbc5..07f0d178acc259e6f5158dce80fcd8b25195c281 100644 --- a/tutorials/incompressible/simpleFoam/T3A/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/T3A/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/system/controlDict b/tutorials/incompressible/simpleFoam/T3A/system/controlDict index fc09eed069927f411db171162a44c7eaf0a01ef8..4bab9891fe0854ce87b542ea0772bde17292f9ff 100644 --- a/tutorials/incompressible/simpleFoam/T3A/system/controlDict +++ b/tutorials/incompressible/simpleFoam/T3A/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/system/fvSchemes b/tutorials/incompressible/simpleFoam/T3A/system/fvSchemes index faf6c0832b9aa141df0b9ffe065941f13c050f52..21258c60ddac54faf5feb6107856e3bb7c8cf0ba 100644 --- a/tutorials/incompressible/simpleFoam/T3A/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/T3A/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/T3A/system/fvSolution b/tutorials/incompressible/simpleFoam/T3A/system/fvSolution index 871e3e9366ad6cccbafe51499f3a1428d55f4ea9..74eeb405dd8d82e7e5ded9fe5ec0492340c086f5 100644 --- a/tutorials/incompressible/simpleFoam/T3A/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/T3A/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/U b/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/U index 82767efe2dade2a10a9641edd544cc89cbf9b878..eb861de76cd9e54e2d6c197f1db508b0d0c8f19c 100644 --- a/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/U +++ b/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/nuTilda b/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/nuTilda index b5fe623e0b61a806ba0c1dd8bd2549a92ba9e04f..d63596b0ac7e0e442a766ef49ec843e12974abaf 100644 --- a/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/nuTilda +++ b/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/nut b/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/nut index 3415c76e711d878079494064425fac0c87cc82be..fa213154654528c8a6445254202c84fda3873519 100644 --- a/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/p b/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/p index 086cb8819b97e0504aea28290e5196837e637b53..e875f4bc1db4caf6eecaf41053ec8289b6a55c2d 100644 --- a/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/p +++ b/tutorials/incompressible/simpleFoam/airFoil2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/airFoil2D/constant/transportProperties b/tutorials/incompressible/simpleFoam/airFoil2D/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/simpleFoam/airFoil2D/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/airFoil2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/airFoil2D/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/airFoil2D/constant/turbulenceProperties index d4c98ceb159da3bf57588fbf8363f8b0f3050dbc..f948cef11346e8e4eeceb562da1b1db709bfb1ad 100644 --- a/tutorials/incompressible/simpleFoam/airFoil2D/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/airFoil2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/airFoil2D/system/controlDict b/tutorials/incompressible/simpleFoam/airFoil2D/system/controlDict index e35f513e7f247fd36921bbc9d3cc195a9eaf897c..0ca5b016ac6a7fab7945b350a330987a5fd0592a 100644 --- a/tutorials/incompressible/simpleFoam/airFoil2D/system/controlDict +++ b/tutorials/incompressible/simpleFoam/airFoil2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/airFoil2D/system/decomposeParDict b/tutorials/incompressible/simpleFoam/airFoil2D/system/decomposeParDict index 367539f0a9d624abec943f2eb1ada8eeafa7d55d..18f898288c4659c1f5a965b2a79432e16b4df669 100644 --- a/tutorials/incompressible/simpleFoam/airFoil2D/system/decomposeParDict +++ b/tutorials/incompressible/simpleFoam/airFoil2D/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/airFoil2D/system/fvSchemes b/tutorials/incompressible/simpleFoam/airFoil2D/system/fvSchemes index bc545e54bee0192a44aa79e691e4bbb5941d164b..3f3259121aec7026e344f14a6a664e1b507b9e61 100644 --- a/tutorials/incompressible/simpleFoam/airFoil2D/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/airFoil2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/airFoil2D/system/fvSolution b/tutorials/incompressible/simpleFoam/airFoil2D/system/fvSolution index 01fa51e71fde78dfe98cd0a603012edd849ba937..2b0ea1fd4ddbfb1f82faf2d61c57384ed3192ce7 100644 --- a/tutorials/incompressible/simpleFoam/airFoil2D/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/airFoil2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/U b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/U index 2d92abf6535770f903a7fe844268f29303f8400e..bd228028ad85293f87421d806b51e92598b75d70 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/U +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/epsilon b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/epsilon index 7087ddd2a03dd1269bc6904876460213c6253d2d..982e0f2c90f1652bfce151332b1f302c6e368ec9 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/epsilon +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/k b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/k index 72622d303618c4f1460f382fee22f208497b46fd..4efa81042efa38b240821a6873b2b1d0d5257844 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/k +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/nuTilda b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/nuTilda index f0368f5605cc92e06f3b34d794757e9322f3b530..4fee380ae0c9ce47334c459ababb3440a2efeb5a 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/nuTilda +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/nut b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/nut index 2449cff7106845a7f48fb5e0dfe737476de17fe8..3220dea3284e6500b1d09e45d6d36d17f4bcbecc 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/omega b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/omega index f5f1f27f96eb4bac9d4178089b1ee58e44f7f847..ad457b266808c6c770a3f2c788cae6296ead17c3 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/omega +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/p b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/p index 072fd162e8125986fe0e292448539308c6e66131..2ae4875977e01d8b04f78031a8612da9143cd2b3 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/p +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/constant/transportProperties b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/constant/transportProperties index 0f51ad279eed6b64400c6e8edc6cb7707b3117a8..e9cb6cba7828a0f61a1acc9a65d7fe2b60001947 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/constant/turbulenceProperties index c1d5ac10f3ff6401c6ced11b5eb7d12a818ee895..eb61d1626b61da0457322e05072c0235aed11840 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/blockMeshDict b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/blockMeshDict index e7f2eb26a7d2be0a4e6a3008abe34b41cd39af66..227e548467a4e70efbfc2e04e032ab47363e097b 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/controlDict b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/controlDict index 2b4f78b701d6b8b0bb81d3a1226c6f7b6f1228e2..b43db209b458958f355467d58a87378bc3182202 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/controlDict +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/fvSchemes b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/fvSchemes index 08266cdcd01d5643b30ca97bd9b45a18f99713f8..4da993d3806dd1f33dbb85a01451f66a232dac52 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/fvSolution b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/fvSolution index ca0fb1c29fa6f966e8c16a99533c4a97a7dae9f9..20ca21f0105a61f6555498a491ea14b167ca5531 100644 --- a/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/SpalartAllmaras/0.orig/nuTilda b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/SpalartAllmaras/0.orig/nuTilda index cd062a1fda979e745a040bf7a3dcb5bcb2180eb3..4d98087a658263d4678f210ab843025742704648 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/SpalartAllmaras/0.orig/nuTilda +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/SpalartAllmaras/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/SpalartAllmaras/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/SpalartAllmaras/constant/turbulenceProperties index 7f5e3304ec01d8e40f9a04389bdf70b0cae9474e..1a469d8a7ec036160d3b3a92b392e53a0d1722f2 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/SpalartAllmaras/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/SpalartAllmaras/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/U b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/U index 53ff790a48c6dc9f3602dd899c3de9558907cd7c..5a248b41613eb8fd4681e75304126073f3a4d5db 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/U +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/nut b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/nut index eb075c2297b4ec634d6d7871127f53967e2e1b01..c4acfcea39868fe72e4a14446c71acbc115199ad 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/p b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/p index 380733bda267fa1c0691e53f2615336c7933baec..464f4344c2406e5a8592803b34cb5229fd1bd45c 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/p +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/constant/transportProperties b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/constant/transportProperties index dd88b3de60ce41b4417a25280ff633a94d9b9e57..21ba2c53da95f3ab3e867e2ee6fb63ac4e195a3d 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/blockMeshDict b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/blockMeshDict index ffabe00ad57a23c5c1033f3bbf145dd81d41123e..f37e066fa91eebc3696618783a6bd92b7957e955 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/controlDict b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/controlDict index 26e742754f360b751e89ef82d894d71d3269697e..ddbca0c56c7775dae4df3a9149c1356c8248211d 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/controlDict +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/decomposeParDict b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/decomposeParDict index 61645095e7365c7084a130a5cb1b1c62ff11ed01..6de6783f18f0ce281d123068836b0b45417efebe 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/decomposeParDict +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/fvSchemes b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/fvSchemes index 05e5245098b6fe4be29b115c5170fb0defbb6445..44dc3b3c330ccc2289569d7436abc2e61a0cb642 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/fvSolution b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/fvSolution index bdec369b007e793922a9f878ee6ad86c21b79cbe..e2690201e10d742091acdb94b0893ea385bf20e5 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/common/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/epsilon b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/epsilon index 96c3a9ebd002b70363c93647d9de40aef9f8ada9..e07cf5fc5e3b743ca6cc1d1cc139ff3c2d19302f 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/epsilon +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/f b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/f index 9f87dec1ae59af28412222a12c8c07060d75130f..1eba30462af1372b8af2b9a7bdf1cefe28fcdc31 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/f +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/f @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/k b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/k index 0f0d63fa24ff3b3a96627913848d42a5757bf6b6..0c9de50a8adadc8a9300a9f3f5df2199c7d47e94 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/k +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/phit b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/phit index 35d85f9ac6acb5de4fda4773fdd89cc37a67e7a8..4c12aedb4b459005b911a11b56c4bf35bb2291ce 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/phit +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/0.orig/phit @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/constant/turbulenceProperties index 530f03126f79e79e20f744b63655d7cb640d512f..a68841c0176719fc842274bb6820cdd6f0e6bed3 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kEpsilonPhitF/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/0.orig/k b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/0.orig/k index 0f0d63fa24ff3b3a96627913848d42a5757bf6b6..0c9de50a8adadc8a9300a9f3f5df2199c7d47e94 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/0.orig/k +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/0.orig/omega b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/0.orig/omega index 21f08e980edd46b81e726c70847919175b3019e1..18a961477805c345b0e028be62c1b1c069eacc6e 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/0.orig/omega +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/constant/turbulenceProperties index c1d5ac10f3ff6401c6ced11b5eb7d12a818ee895..eb61d1626b61da0457322e05072c0235aed11840 100644 --- a/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/bump2D/setups.orig/kOmegaSST/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/U b/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/U index b243e1d5aa5348ae867441414152803db2eef4e5..c9c2067ecb20b9a4a618982abe1881005176cf38 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/U +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/epsilon b/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/epsilon index 1b34385de87180d876941725fd4dd3bb14b77a38..919c9e68a7acc0d785e08704a3b5e7400b24980c 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/epsilon +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/k b/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/k index c2bb0caaa8e83b139a3d4cd0fc1fcff86adf8aa0..b09486487146312ceba875462c173a384134a0ec 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/k +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/nut b/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/nut index 4c5fff8628e6daf06a8cba0e059ae4a4a0468b74..1f6389862580e5a099e62be5ecbdfd9f9b63912a 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/p b/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/p index 5b69daa62e58492dd0040933d476d31ee9c265cb..b70d008c359dfff1d2082f26cbf844f0fab9f5dd 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/p +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/MRFProperties b/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/MRFProperties index 249194b7b84873eee6163d539b6e5547e12d923b..2d1c0f9cef45553a94e8b6b2ee717713d6d4f41e 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/MRFProperties +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/MRFProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/transportProperties b/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/system/blockMeshDict.m4 b/tutorials/incompressible/simpleFoam/mixerVessel2D/system/blockMeshDict.m4 index bbcef8c2132e8e7b7eec82472e284fb9ecfc7cd1..b37d93db2cb7330f201d3b881d174413d2507eeb 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/system/blockMeshDict.m4 +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/system/blockMeshDict.m4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/system/controlDict b/tutorials/incompressible/simpleFoam/mixerVessel2D/system/controlDict index 21aea8e8e2fe95511d70179fdf10adb561f926b4..afd2036a0f8a161bc184351deb7c6c2b1bc577f3 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/system/controlDict +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/system/fvSchemes b/tutorials/incompressible/simpleFoam/mixerVessel2D/system/fvSchemes index c0a0729cac5709f7fa43cc7fc2ede7b0e3ccaa1c..a590e94376a65f4ec9340296f57da98db0084c2d 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/system/fvSolution b/tutorials/incompressible/simpleFoam/mixerVessel2D/system/fvSolution index ebe2ac5e95c5be765073875a1652a63433e33ce5..3f7946ef18f224a3f316c19e628dcfd47d0421f2 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/0.orig/U b/tutorials/incompressible/simpleFoam/motorBike/0.orig/U index 75f7136e70d1e074c39e4a1ab6529b4d926787e0..b6d3eab978ce87410e3bede4321c211d66491165 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/0.orig/U +++ b/tutorials/incompressible/simpleFoam/motorBike/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/fixedInlet b/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/fixedInlet index 125fbb7bc20e6e06b7203d3c70e0bc77b6db089c..0b9fd7ef7f399378c34ccc6a4f7c8f0d4e44c984 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/fixedInlet +++ b/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/fixedInlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/frontBackUpperPatches b/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/frontBackUpperPatches index f17a37762cf61bf0ddd1eba9777f547f2d88f22a..fa7bc41e145dcb207d67d751d8b505f3a1c9356d 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/frontBackUpperPatches +++ b/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/frontBackUpperPatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/initialConditions b/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/initialConditions index 6b897d6d9d59ae18ca805ca6d1d1733edaf48165..c41f10f7cfae94619d2f9eac89b3130b8d8ab641 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/initialConditions +++ b/tutorials/incompressible/simpleFoam/motorBike/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/0.orig/k b/tutorials/incompressible/simpleFoam/motorBike/0.orig/k index 9406e6c421c98219491002ec9de8f5433133d1f3..a7b332158ea43cd8d12d3005f9e41821d0a806d5 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/0.orig/k +++ b/tutorials/incompressible/simpleFoam/motorBike/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/0.orig/nut b/tutorials/incompressible/simpleFoam/motorBike/0.orig/nut index 2d475ca9ce4a5c2b43aeb5b040fbfcb0afe1c9e7..4ce2fb51767e16f17b6b8f01365c662d5ec0ee19 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/motorBike/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/0.orig/omega b/tutorials/incompressible/simpleFoam/motorBike/0.orig/omega index 071b2f5497fef16e15beadcd53ad20d3e41fe071..0e2e94ede8b90f1e80d2df7678532ff9c5d40300 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/0.orig/omega +++ b/tutorials/incompressible/simpleFoam/motorBike/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/0.orig/p b/tutorials/incompressible/simpleFoam/motorBike/0.orig/p index 29d63c931abe6de72ca82bcf83445f3140e94ba9..9f2c2adcf4789d9f68d544a1f9a4a43d7a23fea4 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/0.orig/p +++ b/tutorials/incompressible/simpleFoam/motorBike/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/constant/transportProperties b/tutorials/incompressible/simpleFoam/motorBike/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/motorBike/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/motorBike/constant/turbulenceProperties index c1d5ac10f3ff6401c6ced11b5eb7d12a818ee895..eb61d1626b61da0457322e05072c0235aed11840 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/motorBike/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/blockMeshDict b/tutorials/incompressible/simpleFoam/motorBike/system/blockMeshDict index f4917ff1e296247958efac413496ab48e3335c5d..d4d2af2af075eb52c2773d9c8eaee12bf29f23be 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/motorBike/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/controlDict b/tutorials/incompressible/simpleFoam/motorBike/system/controlDict index 6a42118c719acefc87b101e6a3b491494806f159..fdd7d50520fb6bb7f0b6864cd5fbecac8144e1be 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/controlDict +++ b/tutorials/incompressible/simpleFoam/motorBike/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -14,6 +14,13 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +//- To be more comparable to v2406 bug-fix branch disable the +//- near-wall distance fix (see v2412 release notes about 'Wall distance') +//OptimisationSwitches +//{ +// useCombinedWallPatch 0; +//} + application simpleFoam; startFrom startTime; @@ -51,6 +58,10 @@ functions #include "cuttingPlane" #include "forceCoeffs" #include "ensightWrite" + + #include "solverInfo" + #include "graphFunctionObject" + #include "foamReport" } diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/cuttingPlane b/tutorials/incompressible/simpleFoam/motorBike/system/cuttingPlane index 550c410914f31507929c6d60245f989f8003df44..3fa5c9d8a97801a837cce0d2811dc702847d150b 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/cuttingPlane +++ b/tutorials/incompressible/simpleFoam/motorBike/system/cuttingPlane @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/decomposeParDict-random b/tutorials/incompressible/simpleFoam/motorBike/system/decomposeParDict-random index 67c2bc037ea83db7b76d60fd53c82e470e3dcbe5..727b443262cdac3f1408be36b4aa33f669c5d6f3 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/decomposeParDict-random +++ b/tutorials/incompressible/simpleFoam/motorBike/system/decomposeParDict-random @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/decomposeParDict.6 b/tutorials/incompressible/simpleFoam/motorBike/system/decomposeParDict.6 index 3a884d08c8af7028e8626ea14667f5ff0ba796be..f2a56f58e294bdf92e9764b75cb732431af632fb 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/decomposeParDict.6 +++ b/tutorials/incompressible/simpleFoam/motorBike/system/decomposeParDict.6 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faMeshDefinition b/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faMeshDefinition index 5fa35471385023888a9d6215fe06fddbc0ef1065..282f028a53782de56fea1580a4270a1374419b0b 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faMeshDefinition +++ b/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faSchemes b/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faSchemes index 2aa2b29fce6ba8beadc2d0a126215ad16d4b8056..d812861a9d7f64e6a5bff5481906f31b09aac43a 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faSchemes +++ b/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faSolution b/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faSolution index 13e80cfd96160999c1cf560138c57b9c9ca4adde..19248d3af5072ea75b8fe2df561c4e9ca34ad894 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faSolution +++ b/tutorials/incompressible/simpleFoam/motorBike/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/foamReport b/tutorials/incompressible/simpleFoam/motorBike/system/foamReport new file mode 100644 index 0000000000000000000000000000000000000000..f90a2f0683950dce6208530a4ca46dd067b86e7f --- /dev/null +++ b/tutorials/incompressible/simpleFoam/motorBike/system/foamReport @@ -0,0 +1,59 @@ +foamReport1 +{ + type foamReport; + libs (utilityFunctionObjects); + + writeControl writeTime; + + template "<system>/myReportTemplate.md"; + + substitutions + { + timing1 + { + type fileRegEx; + path "log.simpleFoam"; + + entries + { + executionTime "ExecutionTime = (.*) s Clock.*"; + } + } + divSchemes1 + { + type dictionaryValue; + path "<system>/fvSchemes"; + + entries + { + divSchemes "divSchemes"; + } + } + fvSolution1 + { + type dictionaryValue; + path "<system>/fvSolution"; + + entries + { + solver_p "solvers/p/solver"; + solver_p_tol "solvers/p/tolerance"; + solver_p_reltol "solvers/p/relTol"; + solver_U "solvers/U/solver"; + solver_U_tol "solvers/U/tolerance"; + solver_U_reltol "solvers/U/relTol"; + } + } + controlDict1 + { + type dictionaryValue; + path "<system>/controlDict"; + + entries + { + initial_deltaT "deltaT"; + } + } + } +} + diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/forceCoeffs b/tutorials/incompressible/simpleFoam/motorBike/system/forceCoeffs index 11d5e6f50f562f5b3d83d4c7fcde505f5e24ee2b..fd4112500925b835a5f9171fb24110a46b628d3e 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/forceCoeffs +++ b/tutorials/incompressible/simpleFoam/motorBike/system/forceCoeffs @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/fvSchemes b/tutorials/incompressible/simpleFoam/motorBike/system/fvSchemes index d7d6dead9b99d77a51de8ef9c2613395accd3944..8774c807cb089eceb19af875e478c7eedcd93ea8 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/motorBike/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/fvSolution b/tutorials/incompressible/simpleFoam/motorBike/system/fvSolution index 09395f6766758b6ba9134df261f03ef628a66526..6e3189ed7fdbb4d3844114b2da011b15b47678b4 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/motorBike/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/graphFunctionObject b/tutorials/incompressible/simpleFoam/motorBike/system/graphFunctionObject new file mode 100644 index 0000000000000000000000000000000000000000..5c37ee13d8fbf53c69023cefe0f2c06987e73f71 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/motorBike/system/graphFunctionObject @@ -0,0 +1,142 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +residualGraph1 +{ + // Mandatory entries + type graphFunctionObject; + libs (utilityFunctionObjects); + + functions + { + Ux + { + // Mandatory entries + object solverInfo1; + entry Ux_initial; + + // Optional entries + // title <string>; + // colour <labelVector>; + // dashes <labelList>; + } + Uy + { + object solverInfo1; + entry Uy_initial; + } + Uz + { + object solverInfo1; + entry Uz_initial; + } + p + { + object solverInfo1; + entry p_initial; + } + } + + // Optional entries + logScaleX no; + logScaleY yes; + xlabel "Iteration"; + ylabel "log10(Initial residual)"; + // xMin <scalar>; + // xMax <scalar>; + // yMin <scalar>; + // yMax <scalar>; + // width <label>; + // height <label>; + // strokeWidth <label>; + // drawGrid <bool>; + + // Inherited entries + writePrecision 6; + writeToFile true; + useUserTime true; + + region region0; + enabled true; + log true; + timeStart 0; + timeEnd 1000; + executeControl timeStep; + executeInterval 1; + writeControl writeTime; + writeInterval -1; +} + + +forceCoeffsGraph1 +{ + type graphFunctionObject; + libs (utilityFunctionObjects); + writeControl writeTime; + + logScaleX no; + logScaleY no; + + xlabel "Iteration"; + ylabel "Coefficient"; + + yMin -1; + yMax 1; + + functions + { + Cd + { + object forceCoeffs1; + entry Cd; + } + // CdMean + // { + // object valueAverage1; + // entry CdMean; + // } + Cd(f) + { + object forceCoeffs1; + entry Cd(f); + } + Cd(r) + { + object forceCoeffs1; + entry Cd(r); + } + Cl + { + object forceCoeffs1; + entry Cl; + //colour (0, 0, 0); + } + // ClMean + // { + // object valueAverage1; + // entry ClMean; + // } + Cl(f) + { + object forceCoeffs1; + entry Cl(f); + //colour (0, 0, 0); + title Cl(f); + } + Cl(r) + { + object forceCoeffs1; + entry Cl(r); + //colour (0, 0, 0); + title Cl(r); + } + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/meshQualityDict b/tutorials/incompressible/simpleFoam/motorBike/system/meshQualityDict index c5e4f5ec15c6034ff30f9db5de96234df3a6ec4e..ee087e0e5c7bf5fb3881011fb1598317d242cf71 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/meshQualityDict +++ b/tutorials/incompressible/simpleFoam/motorBike/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/myReportTemplate.md b/tutorials/incompressible/simpleFoam/motorBike/system/myReportTemplate.md new file mode 100644 index 0000000000000000000000000000000000000000..5cdb747cd42fdc0ad5da2cf5cd08a12c8a04fef5 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/motorBike/system/myReportTemplate.md @@ -0,0 +1,104 @@ +--- +marp: true +paginate: true +--- + +<style> +:root { + font-size: 20px; +} +td { + width: 1000px; +} +table { + width: 100%; +} +img { + display: block; + margin-left: auto; + margin-right: auto; + width: 60%; +} +</style> + +# {{OF_EXECUTABLE}} : {{OF_CASE_NAME}} tutorial + +- Case: {{OF_CASE_PATH}} +- Submission: {{OF_CLOCK_START}} on {{OF_DATE_START}} +- Report time: {{OF_CLOCK_NOW}} on {{OF_DATE_NOW}} + +--- + +## Run information + +| Property | Value | +|----------------|--------------------| +| Host | {{OF_HOST}} | +| Processors | {{OF_NPROCS}} | +| Time steps | {{OF_TIME_INDEX}} | +| Initial deltaT | {{initial_deltaT}} | +| Current deltaT | {{OF_TIME_DELTAT}} | +| Execution time | {{executionTime}} | + +--- + +## OpenFOAM information + +| Property | Value | +|----------------|--------------------| +| Version | {{OF_VERSION}} | +| API | {{OF_API}} | +| Patch | {{OF_PATCH}} | +| Build | {{OF_BUILD}} | +| Architecture | {{OF_BUILD_ARCH}} | + +--- + +## Mesh statistics + +| Property | Value | +|-------------------|----------------------| +| Bounds | {{OF_MESH_BOUNDS_MIN}}{{OF_MESH_BOUNDS_MAX}} | +| Number of cells | {{OF_MESH_NCELLS}} | +| Number of faces | {{OF_MESH_NFACES}} | +| Number of points | {{OF_MESH_NPOINTS}} | +| Number of patches | {{OF_MESH_NPATCHES}} | + +--- + +## Linear solvers + +| Property | Value | tolerance(rel) | Tolerance(abs) | +|----------|----------------|------------------|---------------------| +| p | `{{solver_p}}` | {{solver_p_tol}} | {{solver_p_reltol}} | +| U | `{{solver_U}}` | {{solver_u_tol}} | {{solver_u_reltol}} | + +--- + +## Numerical scehemes + +The chosen divergence schemes comprised: + +~~~ +{{divSchemes}} +~~~ + +--- + +## Graphs + +Residuals + + + +--- + +## Results + +Forces + + + +--- + +Made using Open∇FOAM v2412 from https://openfoam.com diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict b/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict index 73b6b6eec083ed4817abe2deb0948178aaed6804..bd393f94b1281f3c35967764b76069b3421ff2a7 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict +++ b/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/solverInfo b/tutorials/incompressible/simpleFoam/motorBike/system/solverInfo new file mode 100644 index 0000000000000000000000000000000000000000..9c01fe22bd5a6737bba5b7532f86dbfd5a28cb06 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/motorBike/system/solverInfo @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +solverInfo1 +{ + // Mandatory entries + type solverInfo; + libs (utilityFunctionObjects); + fields (U p); + + // Optional entries + writeResidualFields no; +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/streamLines b/tutorials/incompressible/simpleFoam/motorBike/system/streamLines index 5a4d0c6fa769f3cab2df3ea551170e0bf34c74d4..897f381b0bd248cfd1c2e867db5c50a246ce91ae 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/streamLines +++ b/tutorials/incompressible/simpleFoam/motorBike/system/streamLines @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/surfaceFeatureExtractDict b/tutorials/incompressible/simpleFoam/motorBike/system/surfaceFeatureExtractDict index 6a8f29e7874e69730a9d6905901d59bdbe0cce2d..afeb9d614ffe2f3b5b4fc56b4741a0bc7ef4f31f 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/simpleFoam/motorBike/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/topoSetDict b/tutorials/incompressible/simpleFoam/motorBike/system/topoSetDict index 4c82d7491f48ccc94e26d7740f9bc9ada954dbc8..684bb780fefbc2faba8f66504f7294d38141beeb 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/topoSetDict +++ b/tutorials/incompressible/simpleFoam/motorBike/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/wallBoundedStreamLines b/tutorials/incompressible/simpleFoam/motorBike/system/wallBoundedStreamLines index 68fe5416df76b665f6b02363d938a1874485ea78..f521ba265a50b3b0dac966d42d2eab64434c8b51 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/wallBoundedStreamLines +++ b/tutorials/incompressible/simpleFoam/motorBike/system/wallBoundedStreamLines @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/U b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/U index bc232079c81e61f409e064c7cb86bf921cf477a2..12a65bc3057ebbeb6350e83479bed694d3eaded9 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/U +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/epsilon b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/epsilon index 52808ba84ad794eda4caf347704fc15e1dc34cf0..bced58be03b82668f6aa8f2c8013f6544f10dfc2 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/epsilon +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/k b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/k index ac68eb5c660bead0bea418eaff4a11618d12c1e5..2e2562cb32c925ae10e21be1e3fa8d46391cba97 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/k +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/nuTilda b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/nuTilda index 302482e4adea4d07b4c902de5d0bd26142049b66..4686295f2ccececa1fb017ac39d16df05abe79e7 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/nuTilda +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/nut b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/nut index 846e44a6b303d3327874ffe90ad304adff1800b6..0ca2a359b34feaf966ccc9cf310a2a7b4f8aa0f1 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/p b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/p index 4896377b3f6255a01c6d0a5e91df4295033d7b46..3377b9b7fa426c8bb46cea70a36f3d0ed3c3ec13 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/p +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/constant/transportProperties b/tutorials/incompressible/simpleFoam/pipeCyclic/constant/transportProperties index 7b67849f03b608a439e5f96d30677f396aff70b5..6ae7945e55567b114561187da055d58a28d0dd2f 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/pipeCyclic/constant/turbulenceProperties index bd6501ecea5dd857ffee29bbaeb241fef243cbf0..ebe7b440155a99514d14f848490112e08e4a8d41 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/system/blockMeshDict b/tutorials/incompressible/simpleFoam/pipeCyclic/system/blockMeshDict index 176d551accdd0e44ee95db024cdabb89b72708be..f7440dcf6a615246e4d2e44f7514600e9c8e7904 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/system/controlDict b/tutorials/incompressible/simpleFoam/pipeCyclic/system/controlDict index 1554cd4c68b50986502aa1286fd321b40fb84ba2..1f2f19f276369ba928a7cb983672f7d9efc21ef3 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/system/controlDict +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/system/decomposeParDict b/tutorials/incompressible/simpleFoam/pipeCyclic/system/decomposeParDict index 657346bb97ce6f8667e773beb0c527a2042727f1..22b18efb1d12cf96c96a5e96ce5a2f22fefbbb87 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/system/decomposeParDict +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/system/fvSchemes b/tutorials/incompressible/simpleFoam/pipeCyclic/system/fvSchemes index a2027780cb90adfabcaaa4c9c62774bacebd093c..954729cd30a6c62e07ba5185ccd53bfba500ea79 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/system/fvSolution b/tutorials/incompressible/simpleFoam/pipeCyclic/system/fvSolution index 4fe07486928c5667a8b7dc7d53b48185a1b759fd..c50a86773f3a7b867b8453cb2b24bee53cf8e3fa 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/system/topoSetDict b/tutorials/incompressible/simpleFoam/pipeCyclic/system/topoSetDict index a361d6832edb74ac49931ad4ba09f12e2338d2fb..ff8241a675b752bce2633c2f3ec63b365ee77465 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/system/topoSetDict +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/0/U b/tutorials/incompressible/simpleFoam/pitzDaily/0/U index 1b79fa72751a9907b2c407467411ed1bc9f7e691..80a4282ce9400b24d6d9a5a2247e80e0cdbd1e47 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/0/U +++ b/tutorials/incompressible/simpleFoam/pitzDaily/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/0/epsilon b/tutorials/incompressible/simpleFoam/pitzDaily/0/epsilon index ded25cfa7087a4fd8fbc4663673f187808716012..6480765f9f3eeb877306f1c076cdd73871c6f8ae 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/0/epsilon +++ b/tutorials/incompressible/simpleFoam/pitzDaily/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/0/k b/tutorials/incompressible/simpleFoam/pitzDaily/0/k index 59ed527364c05064b22483402bfe3c14f345b880..82d6b5c41354c1e3bd2dfae70f09a3b23acc805a 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/0/k +++ b/tutorials/incompressible/simpleFoam/pitzDaily/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/0/nuTilda b/tutorials/incompressible/simpleFoam/pitzDaily/0/nuTilda index dbeea21dea5aa99a6b6fc079b1cbde8628ecc712..6b83ffa805946aba4643be72b31efecf912c3b2c 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/0/nuTilda +++ b/tutorials/incompressible/simpleFoam/pitzDaily/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/0/nut b/tutorials/incompressible/simpleFoam/pitzDaily/0/nut index 558a25b05f1a1a5227729d92ba23a1d949456d61..9e1c43dfeb713432129b5f4aa63edebb91d5cd33 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/0/nut +++ b/tutorials/incompressible/simpleFoam/pitzDaily/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/0/omega b/tutorials/incompressible/simpleFoam/pitzDaily/0/omega index c1b5a6b4332754716babf79acbf2c4b0ef26e25c..32d593cdeee8c7e8a5ee914058eb8c4f5c0dc595 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/0/omega +++ b/tutorials/incompressible/simpleFoam/pitzDaily/0/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/0/p b/tutorials/incompressible/simpleFoam/pitzDaily/0/p index eca7aa93a8f5ec660e9941f4dbcb7eab7d8de019..783fd80e14d2b3c9848f444ee15f135e319946db 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/0/p +++ b/tutorials/incompressible/simpleFoam/pitzDaily/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/constant/transportProperties b/tutorials/incompressible/simpleFoam/pitzDaily/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/pitzDaily/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/pitzDaily/constant/turbulenceProperties index f4d56f742f6eed4759458d60e85d3e0c2c9817f0..86f50844891c81d8b0cb0bb8e694a25499918a71 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/pitzDaily/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/system/blockMeshDict b/tutorials/incompressible/simpleFoam/pitzDaily/system/blockMeshDict index 7709136f71bf3d75aabe2e4fe84e823e3769b6d2..1dd07e2117d137ed392c80db2629404a955e7fc2 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/pitzDaily/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/system/controlDict b/tutorials/incompressible/simpleFoam/pitzDaily/system/controlDict index 2a8677f6e6d58a9ce1cacd1e16c40b24c1438394..9d572e45532b6793d1e4da08286d3877b64c62e0 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/system/controlDict +++ b/tutorials/incompressible/simpleFoam/pitzDaily/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/system/fvSchemes b/tutorials/incompressible/simpleFoam/pitzDaily/system/fvSchemes index 42ffbc9465f45a6653466a0df3130e9cda157acb..37d2881ab5ea2c3dd27c34d7d544ffa10dc5881f 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/pitzDaily/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/system/fvSolution b/tutorials/incompressible/simpleFoam/pitzDaily/system/fvSolution index 008818739a0c6894b711861e9d0fb4294d1896fc..2e40cc7e8fc0b3902057219221b10f5a4d8407a8 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/pitzDaily/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/U b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/U index 8dd8df09e68bd9c63b419b3a77f18beedac2a91f..f5e562ff0fcbc704a01a1fdf0cd5fb6c8c40d795 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/U +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/epsilon b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/epsilon index e99be8283749503814c307de02d0d1338b6cf4eb..b7b277364a5c485bcff03bfbc85294897b47148c 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/epsilon +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/k b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/k index ec33ba565a7c762021d6167fae216863ba225f14..634dd0771db0981e7e7ece1249c9591f815bbc4c 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/k +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/nuTilda b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/nuTilda index dbeea21dea5aa99a6b6fc079b1cbde8628ecc712..6b83ffa805946aba4643be72b31efecf912c3b2c 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/nuTilda +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/nut b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/nut index 558a25b05f1a1a5227729d92ba23a1d949456d61..9e1c43dfeb713432129b5f4aa63edebb91d5cd33 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/nut +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/p b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/p index eca7aa93a8f5ec660e9941f4dbcb7eab7d8de019..783fd80e14d2b3c9848f444ee15f135e319946db 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/p +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/transportProperties b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/blockMeshDict b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/blockMeshDict index 7709136f71bf3d75aabe2e4fe84e823e3769b6d2..1dd07e2117d137ed392c80db2629404a955e7fc2 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/controlDict b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/controlDict index 2451a4eeeb2a4b774589fb9b1c5dd76c1388bf6b..d3b295d0e1eb671bdb29e5c2440c5189fb14bf5f 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/controlDict +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/decomposeParDict b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/decomposeParDict index 94029c5db3a254583493034d00dff25696477b33..e0b7ee98105ac8a5be3a2cc688407d806fafc17e 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/decomposeParDict +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/fvSchemes b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/fvSchemes index a5cef0537116607b664644237a71d5782298b406..99e02d89ef07674684d83fdbc473152e48ce9c68 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/fvSolution b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/fvSolution index 1221b2fdfefd05ef51404d22e93a3fc841d739b9..9836566a68cb1b691cb9a865fa3c6c9b97286132 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/U b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/U new file mode 100644 index 0000000000000000000000000000000000000000..80a4282ce9400b24d6d9a5a2247e80e0cdbd1e47 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/U @@ -0,0 +1,51 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + inlet + { + type fixedValue; + value uniform (10 0 0); + } + + outlet + { + type zeroGradient; + } + + upperWall + { + type noSlip; + } + + lowerWall + { + type noSlip; + } + + frontAndBack + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/epsilon b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/epsilon new file mode 100644 index 0000000000000000000000000000000000000000..6480765f9f3eeb877306f1c076cdd73871c6f8ae --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/epsilon @@ -0,0 +1,53 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object epsilon; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -3 0 0 0 0]; + +internalField uniform 14.855; + +boundaryField +{ + inlet + { + type fixedValue; + value uniform 14.855; + } + + outlet + { + type zeroGradient; + } + + upperWall + { + type epsilonWallFunction; + value uniform 14.855; + } + + lowerWall + { + type epsilonWallFunction; + value uniform 14.855; + } + + frontAndBack + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/k b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/k new file mode 100644 index 0000000000000000000000000000000000000000..82d6b5c41354c1e3bd2dfae70f09a3b23acc805a --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/k @@ -0,0 +1,53 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object k; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0.375; + +boundaryField +{ + inlet + { + type fixedValue; + value uniform 0.375; + } + + outlet + { + type zeroGradient; + } + + upperWall + { + type kqRWallFunction; + value uniform 0.375; + } + + lowerWall + { + type kqRWallFunction; + value uniform 0.375; + } + + frontAndBack + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/nuTilda b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/nuTilda new file mode 100644 index 0000000000000000000000000000000000000000..6b83ffa805946aba4643be72b31efecf912c3b2c --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/nuTilda @@ -0,0 +1,51 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object nuTilda; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -1 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + inlet + { + type fixedValue; + value uniform 0; + } + + outlet + { + type zeroGradient; + } + + upperWall + { + type zeroGradient; + } + + lowerWall + { + type zeroGradient; + } + + frontAndBack + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/nut b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/nut new file mode 100644 index 0000000000000000000000000000000000000000..9e1c43dfeb713432129b5f4aa63edebb91d5cd33 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/nut @@ -0,0 +1,54 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object nut; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -1 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + inlet + { + type calculated; + value uniform 0; + } + + outlet + { + type calculated; + value uniform 0; + } + + upperWall + { + type nutkWallFunction; + value uniform 0; + } + + lowerWall + { + type nutkWallFunction; + value uniform 0; + } + + frontAndBack + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/omega b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/omega new file mode 100644 index 0000000000000000000000000000000000000000..32d593cdeee8c7e8a5ee914058eb8c4f5c0dc595 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/omega @@ -0,0 +1,53 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object omega; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 0 -1 0 0 0 0]; + +internalField uniform 440.15; + +boundaryField +{ + inlet + { + type fixedValue; + value $internalField; + } + + outlet + { + type zeroGradient; + } + + upperWall + { + type omegaWallFunction; + value $internalField; + } + + lowerWall + { + type omegaWallFunction; + value $internalField; + } + + frontAndBack + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/p b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/p new file mode 100644 index 0000000000000000000000000000000000000000..783fd80e14d2b3c9848f444ee15f135e319946db --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/0/p @@ -0,0 +1,51 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object p; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + inlet + { + type zeroGradient; + } + + outlet + { + type fixedValue; + value uniform 0; + } + + upperWall + { + type zeroGradient; + } + + lowerWall + { + type zeroGradient; + } + + frontAndBack + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/Allrun b/tutorials/incompressible/simpleFoam/pitzDaily_fused/Allrun new file mode 100755 index 0000000000000000000000000000000000000000..d9527fe9de1df49320907720e2a21bbbe33fd423 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/Allrun @@ -0,0 +1,22 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + +runApplication blockMesh + +runApplication decomposePar + +echo "Updating fvSchemes to use Gauss" +sed "s/GAUSS/Gauss/g" system/fvSchemes.template > system/fvSchemes + +runParallel -s Gauss $(getApplication) + + +echo "Updating fvSchemes to use fusedGauss" +sed "s/GAUSS/fusedGauss/g" system/fvSchemes.template > system/fvSchemes + +runParallel -s fusedGauss $(getApplication) + + +#------------------------------------------------------------------------------ diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/README b/tutorials/incompressible/simpleFoam/pitzDaily_fused/README new file mode 100644 index 0000000000000000000000000000000000000000..7b902e8b7842715d94b6ef957798091a187ba596 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/README @@ -0,0 +1,4 @@ +Testing fused discretisation +============================ + +Runs both standard Gauss and 'fused' Gauss diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/constant/transportProperties b/tutorials/incompressible/simpleFoam/pitzDaily_fused/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..415941cf8b7fb2239a122db7d1934738191235d4 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/constant/transportProperties @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +transportModel Newtonian; + +nu 1e-05; + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/pitzDaily_fused/constant/turbulenceProperties new file mode 100644 index 0000000000000000000000000000000000000000..86f50844891c81d8b0cb0bb8e694a25499918a71 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/constant/turbulenceProperties @@ -0,0 +1,31 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType RAS; + +RAS +{ + // Tested with kEpsilon, realizableKE, kOmega, kOmegaSST, + // ShihQuadraticKE, LienCubicKE. + RASModel kEpsilon; + + turbulence on; + + printCoeffs on; +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/blockMeshDict b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..1dd07e2117d137ed392c80db2629404a955e7fc2 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/blockMeshDict @@ -0,0 +1,153 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +scale 0.001; + +vertices +( + (-20.6 0 -0.5) + (-20.6 25.4 -0.5) + (0 -25.4 -0.5) + (0 0 -0.5) + (0 25.4 -0.5) + (206 -25.4 -0.5) + (206 0 -0.5) + (206 25.4 -0.5) + (290 -16.6 -0.5) + (290 0 -0.5) + (290 16.6 -0.5) + + (-20.6 0 0.5) + (-20.6 25.4 0.5) + (0 -25.4 0.5) + (0 0 0.5) + (0 25.4 0.5) + (206 -25.4 0.5) + (206 0 0.5) + (206 25.4 0.5) + (290 -16.6 0.5) + (290 0 0.5) + (290 16.6 0.5) +); + +negY +( + (2 4 1) + (1 3 0.3) +); + +posY +( + (1 4 2) + (2 3 4) + (2 4 0.25) +); + +posYR +( + (2 1 1) + (1 1 0.25) +); + + +blocks +( + hex (0 3 4 1 11 14 15 12) + (18 30 1) + simpleGrading (0.5 $posY 1) + + hex (2 5 6 3 13 16 17 14) + (180 27 1) + edgeGrading (4 4 4 4 $negY 1 1 $negY 1 1 1 1) + + hex (3 6 7 4 14 17 18 15) + (180 30 1) + edgeGrading (4 4 4 4 $posY $posYR $posYR $posY 1 1 1 1) + + hex (5 8 9 6 16 19 20 17) + (25 27 1) + simpleGrading (2.5 1 1) + + hex (6 9 10 7 17 20 21 18) + (25 30 1) + simpleGrading (2.5 $posYR 1) +); + +edges +( +); + +boundary +( + inlet + { + type patch; + faces + ( + (0 1 12 11) + ); + } + outlet + { + type patch; + faces + ( + (8 9 20 19) + (9 10 21 20) + ); + } + upperWall + { + type wall; + faces + ( + (1 4 15 12) + (4 7 18 15) + (7 10 21 18) + ); + } + lowerWall + { + type wall; + faces + ( + (0 3 14 11) + (3 2 13 14) + (2 5 16 13) + (5 8 19 16) + ); + } + frontAndBack + { + type empty; + faces + ( + (0 3 4 1) + (2 5 6 3) + (3 6 7 4) + (5 8 9 6) + (6 9 10 7) + (11 14 15 12) + (13 16 17 14) + (14 17 18 15) + (16 19 20 17) + (17 20 21 18) + ); + } +); + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/controlDict b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..3db048b73072527cffc5c307437dc72350fd4927 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/controlDict @@ -0,0 +1,49 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +libs (fusedFiniteVolume); + +application simpleFoam; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 200; + +deltaT 1; + +writeControl timeStep; + +writeInterval 100000; + +purgeWrite 0; + +writeFormat binary; + +writePrecision 16; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable true; + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/decomposeParDict b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/decomposeParDict new file mode 100644 index 0000000000000000000000000000000000000000..65c56fa693a7e25cc6cab95c82fa4d394cc93936 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/decomposeParDict @@ -0,0 +1,25 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + note "mesh decomposition control dictionary"; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +//- The total number of domains (mandatory) +numberOfSubdomains 5; + +//- The decomposition method (mandatory) +method hierarchical; +n (5 1 1); + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/fvSchemes b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..46654b56b571ae6c0bf66d51101cdcf2a042fa4b --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/fvSchemes @@ -0,0 +1,63 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default steadyState; +} + +gradSchemes +{ + default fusedGauss linear; +} + +divSchemes +{ + default none; + + div(phi,U) bounded fusedGauss linearUpwind grad(U); + + turbulence bounded fusedGauss limitedLinear 1; + div(phi,k) $turbulence; + div(phi,epsilon) $turbulence; + div(phi,omega) $turbulence; + + div(nonlinearStress) fusedGauss linear; + div((nuEff*dev2(T(grad(U))))) fusedGauss linear; +} + +laplacianSchemes +{ + default fusedGauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + +wallDist +{ + method meshWave; +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/fvSchemes.template b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/fvSchemes.template new file mode 100644 index 0000000000000000000000000000000000000000..1ec8a7f34feca44ad1c942e3148058097985c2ea --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/fvSchemes.template @@ -0,0 +1,63 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default steadyState; +} + +gradSchemes +{ + default GAUSS linear; +} + +divSchemes +{ + default none; + + div(phi,U) bounded GAUSS linearUpwind grad(U); + + turbulence bounded GAUSS limitedLinear 1; + div(phi,k) $turbulence; + div(phi,epsilon) $turbulence; + div(phi,omega) $turbulence; + + div(nonlinearStress) GAUSS linear; + div((nuEff*dev2(T(grad(U))))) GAUSS linear; +} + +laplacianSchemes +{ + default GAUSS linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + +wallDist +{ + method meshWave; +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/fvSolution b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..2e40cc7e8fc0b3902057219221b10f5a4d8407a8 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/pitzDaily_fused/system/fvSolution @@ -0,0 +1,59 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + p + { + solver GAMG; + tolerance 1e-06; + relTol 0.1; + smoother GaussSeidel; + } + + "(U|k|epsilon|omega|f|v2)" + { + solver smoothSolver; + smoother symGaussSeidel; + tolerance 1e-05; + relTol 0.1; + } +} + +SIMPLE +{ + nNonOrthogonalCorrectors 0; + consistent yes; + + residualControl + { + p 1e-2; + U 1e-3; + "(k|epsilon|omega|f|v2)" 1e-3; + } +} + +relaxationFactors +{ + equations + { + U 0.9; // 0.9 is more stable but 0.95 more convergent + ".*" 0.9; // 0.9 is more stable but 0.95 more convergent + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/rotatingCylinders/0/U b/tutorials/incompressible/simpleFoam/rotatingCylinders/0/U index 775f317ed7cdc47abfb74a77d99836da7e2a1578..ae67c92d92d578ac719fb6dd9ffd128916a700a0 100644 --- a/tutorials/incompressible/simpleFoam/rotatingCylinders/0/U +++ b/tutorials/incompressible/simpleFoam/rotatingCylinders/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotatingCylinders/0/p b/tutorials/incompressible/simpleFoam/rotatingCylinders/0/p index ac94bd4a3eedf5f138717e6ab67f112c917d2767..007b1b934c20d9a9ec23ed15f7f137cbdb57d0e2 100644 --- a/tutorials/incompressible/simpleFoam/rotatingCylinders/0/p +++ b/tutorials/incompressible/simpleFoam/rotatingCylinders/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/MRFProperties b/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/MRFProperties index 79433f5d7dfa543db47b48cacfe75e6a8d7b3623..98414d4869dc15ee72c58def00eee31c001e0d3b 100644 --- a/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/MRFProperties +++ b/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/MRFProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/transportProperties b/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/transportProperties index c98343b09070d16ca52a713acb4ad9a4324577fb..607db27f06a082182485b0487ac7cc1e7a79c28d 100644 --- a/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/turbulenceProperties index dc6efab07ffa6d374ba11dc7d1d3a4c8000a08ec..52a7d3bf0baaaed83c809347ca11691bb71be49b 100644 --- a/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/rotatingCylinders/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotatingCylinders/system/blockMeshDict b/tutorials/incompressible/simpleFoam/rotatingCylinders/system/blockMeshDict index 72ec0ae4874382aa690bba3e0e25973966d311e6..70b8157e4918290242d7645fde40523cd6aebe3b 100644 --- a/tutorials/incompressible/simpleFoam/rotatingCylinders/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/rotatingCylinders/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotatingCylinders/system/controlDict b/tutorials/incompressible/simpleFoam/rotatingCylinders/system/controlDict index 0951259f86bc2201b9c32e5fde73b5d643f6fabd..aaab75c7284a50d8cae3aa01c4726d1dac2e04a4 100644 --- a/tutorials/incompressible/simpleFoam/rotatingCylinders/system/controlDict +++ b/tutorials/incompressible/simpleFoam/rotatingCylinders/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotatingCylinders/system/fvSchemes b/tutorials/incompressible/simpleFoam/rotatingCylinders/system/fvSchemes index 4f02a04396c42232f94678cd8a8c159e734f72cc..b231c64efee514731067677edf5f072695d03116 100644 --- a/tutorials/incompressible/simpleFoam/rotatingCylinders/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/rotatingCylinders/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotatingCylinders/system/fvSolution b/tutorials/incompressible/simpleFoam/rotatingCylinders/system/fvSolution index fdab6a3055d170afe9e6e305d50c654f25cdbd9b..22a8fc9d6cdb5d0f9b279e59c3f716f44fc46b04 100644 --- a/tutorials/incompressible/simpleFoam/rotatingCylinders/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/rotatingCylinders/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/U b/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/U index ae47c8bb0f44f02c332c52237716685e2ed8a211..06f7af5d93f41fff6b7187324b9115c8d23fd627 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/U +++ b/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/k b/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/k index 1feba95bc24b66469b8289cd6003393e0ffa44ac..69b72876dfa96db928e9512408be20474b726938 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/k +++ b/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/nut b/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/nut index 864468e7820ef8aa646ebf1e65011b8a31a1bc13..59e1953b5939e9c806254ed03c071f5ac0b6fc90 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/omega b/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/omega index 7f161bf5e290d7a9160c769a2b8a6f4a7ec3669b..3eaab1d8627bc3f7ff8cc19ae3a246b5affe2ff2 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/omega +++ b/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/p b/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/p index d05cd09bbfc8708dd013ea2069771a477c773b6e..b47ce71887cbeed9d3dc233c2e791b9aa2ee3128 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/p +++ b/tutorials/incompressible/simpleFoam/rotorDisk/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/constant/transportProperties b/tutorials/incompressible/simpleFoam/rotorDisk/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/rotorDisk/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/rotorDisk/constant/turbulenceProperties index c1d5ac10f3ff6401c6ced11b5eb7d12a818ee895..eb61d1626b61da0457322e05072c0235aed11840 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/rotorDisk/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/system/blockMeshDict b/tutorials/incompressible/simpleFoam/rotorDisk/system/blockMeshDict index a417bee56ed96e072ca361461a3554ccaaf266e8..950940acd55d76ca4f126ed05386ce8c5747f2fb 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/rotorDisk/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/system/controlDict b/tutorials/incompressible/simpleFoam/rotorDisk/system/controlDict index a4afd696704968d832dd4262694457b996fdc393..c90e7884d9dc6da85d931f9038f17929f7302e38 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/system/controlDict +++ b/tutorials/incompressible/simpleFoam/rotorDisk/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/system/fvOptions b/tutorials/incompressible/simpleFoam/rotorDisk/system/fvOptions index 3e557aa79e7fc4d4cc09a81d1f466b7e12d7a972..027dd5acec938f2c9994de55254e115a30174e9d 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/system/fvOptions +++ b/tutorials/incompressible/simpleFoam/rotorDisk/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/system/fvSchemes b/tutorials/incompressible/simpleFoam/rotorDisk/system/fvSchemes index 947253522f5e3e0f70d2af25b84ae5bcfeed51f1..c1f079984c501e2671b822076abc84ec787a9655 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/rotorDisk/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/system/fvSolution b/tutorials/incompressible/simpleFoam/rotorDisk/system/fvSolution index f498d0c7c603044941a02dff5e60049367eb490b..86ccda8e9b1ee3114215f31d9adaa8f36cc07159 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/rotorDisk/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/system/meshQualityDict b/tutorials/incompressible/simpleFoam/rotorDisk/system/meshQualityDict index e97c9496ac769ae59b78c431b8b3da733ee55980..a0a53140aa7a57ed7a18256c6d22dc04b10d1775 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/system/meshQualityDict +++ b/tutorials/incompressible/simpleFoam/rotorDisk/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/system/snappyHexMeshDict b/tutorials/incompressible/simpleFoam/rotorDisk/system/snappyHexMeshDict index e35802c40d32f408d5291d89de64b2838cec772b..2f6579ae47b94f3f9e52ccd73c05edff2e641ed6 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/system/snappyHexMeshDict +++ b/tutorials/incompressible/simpleFoam/rotorDisk/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/system/surfaceFeatureExtractDict b/tutorials/incompressible/simpleFoam/rotorDisk/system/surfaceFeatureExtractDict index f8a7eb0e36bd9a9e94026fde77b3bfa5cdf28871..56bb6082a933c8eb9d25dab8321f410135fd44ec 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/simpleFoam/rotorDisk/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/0.orig/U b/tutorials/incompressible/simpleFoam/simpleCar/0.orig/U index 57e4ca32fcfda3cb33f0d82c450c790bd4f3de21..46ad4b81538a3ac934d312a0d469cb0bf61ec61d 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/0.orig/U +++ b/tutorials/incompressible/simpleFoam/simpleCar/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/0.orig/epsilon b/tutorials/incompressible/simpleFoam/simpleCar/0.orig/epsilon index eca3c3d69a9342ebe0eb53f4e9c5429415c0e27a..cf89fc4c57aa5e8106c08ead01330f94fdb5f7ca 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/0.orig/epsilon +++ b/tutorials/incompressible/simpleFoam/simpleCar/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/0.orig/k b/tutorials/incompressible/simpleFoam/simpleCar/0.orig/k index a1207bfae6e41ac7c36639422eb0381299d1bc3d..cb78d97b098b7432502ed245872c8a85c1c3e1e3 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/0.orig/k +++ b/tutorials/incompressible/simpleFoam/simpleCar/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/0.orig/nut b/tutorials/incompressible/simpleFoam/simpleCar/0.orig/nut index 88052caad10eb5989699eaee3f15ce6a22e5ed57..c45fd8a3fe0122f4ca826695c6f5162be390b215 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/simpleCar/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/0.orig/p b/tutorials/incompressible/simpleFoam/simpleCar/0.orig/p index f30ec35af45f49ae81e9b28e0e815f6343905837..c2fd9f911877572875ec5f5f49590980b8bd3b1d 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/0.orig/p +++ b/tutorials/incompressible/simpleFoam/simpleCar/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/constant/transportProperties b/tutorials/incompressible/simpleFoam/simpleCar/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/simpleCar/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/simpleCar/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/simpleCar/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/system/blockMeshDict b/tutorials/incompressible/simpleFoam/simpleCar/system/blockMeshDict index e2a0b058cbc441880ab6af70dad504063d59bce7..6736b831a5f7646e506a847483cda0c301a9a386 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/simpleCar/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/system/controlDict b/tutorials/incompressible/simpleFoam/simpleCar/system/controlDict index 218258c97910c2ffd4887ef95e6a29b11ccf8f6d..89dae138cc8ec66f882d5cc374e93da1d6632ab9 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/system/controlDict +++ b/tutorials/incompressible/simpleFoam/simpleCar/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/system/createPatchDict b/tutorials/incompressible/simpleFoam/simpleCar/system/createPatchDict index 6062de1a8d5392ec913b543fca57f943d5ca7011..3d76f213f89055c2ae42447c4a52aad276893df6 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/system/createPatchDict +++ b/tutorials/incompressible/simpleFoam/simpleCar/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/system/forceCoeffs b/tutorials/incompressible/simpleFoam/simpleCar/system/forceCoeffs index 4a6aad9bc744a15f7846de2b207de82b01c939e9..1d77bc978beef1b8739c49f51a3d002ecdead199 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/system/forceCoeffs +++ b/tutorials/incompressible/simpleFoam/simpleCar/system/forceCoeffs @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/system/fvOptions b/tutorials/incompressible/simpleFoam/simpleCar/system/fvOptions index a3c8a1f68ceef6ff93f27fee3181bd404159b57f..1a8636309258ca783fdb2de30b71a98398d29f4c 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/system/fvOptions +++ b/tutorials/incompressible/simpleFoam/simpleCar/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/system/fvSchemes b/tutorials/incompressible/simpleFoam/simpleCar/system/fvSchemes index 359d9b9a3fda2e4af25394e7ba71c13455a58bd7..b51c78c742f611f16ec03743e894b941e62ca12e 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/simpleCar/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/system/fvSolution b/tutorials/incompressible/simpleFoam/simpleCar/system/fvSolution index e183d023ff77092b48b0ecb558ccaa048ec56fee..11ed1907c54f94ce9b351f3a3829f091acc1e07a 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/simpleCar/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/system/referencePressure b/tutorials/incompressible/simpleFoam/simpleCar/system/referencePressure index 33fe75d46ad1c5a8b687e60d625a403d6bb2e0f4..aaf9af90b6cb19e770f640219ce7621484c6e181 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/system/referencePressure +++ b/tutorials/incompressible/simpleFoam/simpleCar/system/referencePressure @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/simpleCar/system/topoSetDict b/tutorials/incompressible/simpleFoam/simpleCar/system/topoSetDict index 15687b38ed4a5e7802a8d0a41367e67b2199a369..cb0f7ba2694794dba05e408be1f390c31a7b6ec3 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/system/topoSetDict +++ b/tutorials/incompressible/simpleFoam/simpleCar/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/0.orig/U b/tutorials/incompressible/simpleFoam/squareBend/0.orig/U index 4969db207f8663c43aea54bafe4f532f240dd3a2..5a3280f03be33ab8c1375c8bb3a9c7effa9dfdd0 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/0.orig/U +++ b/tutorials/incompressible/simpleFoam/squareBend/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/0.orig/epsilon b/tutorials/incompressible/simpleFoam/squareBend/0.orig/epsilon index dff185025467878cd073b75bf9621915614a4e3f..502ce198fd5a89114f1e833d26cd586f07df19cf 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/0.orig/epsilon +++ b/tutorials/incompressible/simpleFoam/squareBend/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/0.orig/k b/tutorials/incompressible/simpleFoam/squareBend/0.orig/k index 51e876d2aab00911a2a34debb4ec77771d62bc34..81673b05e2fc887473d478b9828255c4ab3fa71a 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/0.orig/k +++ b/tutorials/incompressible/simpleFoam/squareBend/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/0.orig/nut b/tutorials/incompressible/simpleFoam/squareBend/0.orig/nut index 88176304830ae4dacdf9e9ba8a90454241bb32d1..1277b57f53947a9afde84a99d315fcab2ffa1956 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/squareBend/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/0.orig/p b/tutorials/incompressible/simpleFoam/squareBend/0.orig/p index 1ff6a93a723a5bcb0336dd6ed7c38cbd54bd52d9..ecde38dd9cdba99a5877109f5d22ed6daf42a8b9 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/0.orig/p +++ b/tutorials/incompressible/simpleFoam/squareBend/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/constant/transportProperties b/tutorials/incompressible/simpleFoam/squareBend/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/squareBend/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/squareBend/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/squareBend/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/system/blockMeshDict b/tutorials/incompressible/simpleFoam/squareBend/system/blockMeshDict index 5d4730017db24a0b7550c9f68e044ce4585d3c46..42c3e5d6183753808feb74e5f95d9c228d609e38 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/squareBend/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/system/controlDict b/tutorials/incompressible/simpleFoam/squareBend/system/controlDict index e533495d3d7b10c08ea17f6fa029200510caf97d..66a58727db09903e82c173aa837ce1799854a004 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/system/controlDict +++ b/tutorials/incompressible/simpleFoam/squareBend/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/system/decomposeParDict b/tutorials/incompressible/simpleFoam/squareBend/system/decomposeParDict index 494ae22d9e110cf9b0bea7ab3bfbeb55d1ae1022..c335e4b65eead2793cb084e33051ca352f52dd15 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/system/decomposeParDict +++ b/tutorials/incompressible/simpleFoam/squareBend/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/system/fvSchemes b/tutorials/incompressible/simpleFoam/squareBend/system/fvSchemes index ebae19f0819797149eb8e0c1684c58cbdbc38d92..8f58689bc83fa714d3f232e9c9e7a60073473735 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/squareBend/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/system/fvSolution b/tutorials/incompressible/simpleFoam/squareBend/system/fvSolution index 9e24ce0b8f6edca3ab18467a26072982d22f9990..28c3ea4ae8299be3a9bb6560c76629ce9b7295d1 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/squareBend/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/system/sampling b/tutorials/incompressible/simpleFoam/squareBend/system/sampling index 47ca1afa8587b4526872746522056dcdffbb2b8c..377aa309bd4f8fbe19b74fba49e88f037ee70303 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/system/sampling +++ b/tutorials/incompressible/simpleFoam/squareBend/system/sampling @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/squareBend/system/topoSetDict b/tutorials/incompressible/simpleFoam/squareBend/system/topoSetDict index f31adaa73b6300b9b36f5035731390658d078a28..b51e6dd933e216ab4a0afa798046b5d78b6a5eab 100644 --- a/tutorials/incompressible/simpleFoam/squareBend/system/topoSetDict +++ b/tutorials/incompressible/simpleFoam/squareBend/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/U b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/U index 385c5cdae07ec1a61865080c22f278efe3330875..a3f5b52e4aeefdd66a1dd91adbe169d564cb11e4 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/U +++ b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/epsilon b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/epsilon index 588314baa2a80a715a35efca34bd439e9f36ddcb..488d0ecb2563c2a2c466b0914aedbb889d864447 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/epsilon +++ b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/ABLConditions b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/ABLConditions index 51acedda8d42e387517b8b2c37262b89929dec97..bcdc048e07effaa1c0b4f4ad6372b7271e0e3434 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/ABLConditions +++ b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/ABLConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/fixedInlet b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/fixedInlet index 125fbb7bc20e6e06b7203d3c70e0bc77b6db089c..0b9fd7ef7f399378c34ccc6a4f7c8f0d4e44c984 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/fixedInlet +++ b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/fixedInlet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/initialConditions b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/initialConditions index cac2bfdcc1b00e9690af3d68b1989a777130db7b..a1ab37c102db8d9be0df5f7fa0d41c3864883c80 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/initialConditions +++ b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/initialConditions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/sideAndTopPatches b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/sideAndTopPatches index 94ce53703f5c86913fb195d984a0dd04a63255bb..4eaf280860bb4a77b0903b947a6d175c4f12a325 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/sideAndTopPatches +++ b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/include/sideAndTopPatches @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/k b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/k index e2e11289a2aa3faec1ddbeef8165756f26a27f97..cee84a0f557540070e49e9f6baa63a2ca6df63da 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/k +++ b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/nut b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/nut index b6fe8d1db5d4a7916ba0b95f2de82276fe3506aa..0346405a5cde8316cfc56e781e3cc31c82032e5d 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/p b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/p index 861e7b086a6a1a1cc6a66216d22a037d70c3f643..e1ff585e8841ef57c7c8904e37904d215abc495d 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/p +++ b/tutorials/incompressible/simpleFoam/turbineSiting/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/constant/fvOptions b/tutorials/incompressible/simpleFoam/turbineSiting/constant/fvOptions index bfb188142fee9d7ea2c28ad37370c14d3f0cf524..9aebe4005c8ac28b816010d3d675b41233a53a37 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/constant/fvOptions +++ b/tutorials/incompressible/simpleFoam/turbineSiting/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/constant/transportProperties b/tutorials/incompressible/simpleFoam/turbineSiting/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/turbineSiting/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/turbineSiting/constant/turbulenceProperties index 34f9ca4fa110e78e50ffbb085af1edde54536de7..8629f1b8ff20c936d737414bad81d6cac245cacc 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/turbineSiting/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/system/blockMeshDict b/tutorials/incompressible/simpleFoam/turbineSiting/system/blockMeshDict index da310966d05d74b8a84c175ad51a46137e42d1b1..708559d2a87cae9b32f9e98b1a59a79b2cbef6f8 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/turbineSiting/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/system/controlDict b/tutorials/incompressible/simpleFoam/turbineSiting/system/controlDict index 461834f874352a1bc458a66b8f9034016e78705d..dcb5b51389edcb2c486b2fe2bbda95bf48c93a1e 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/system/controlDict +++ b/tutorials/incompressible/simpleFoam/turbineSiting/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/system/decomposeParDict b/tutorials/incompressible/simpleFoam/turbineSiting/system/decomposeParDict index 94029c5db3a254583493034d00dff25696477b33..e0b7ee98105ac8a5be3a2cc688407d806fafc17e 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/system/decomposeParDict +++ b/tutorials/incompressible/simpleFoam/turbineSiting/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/system/fvSchemes b/tutorials/incompressible/simpleFoam/turbineSiting/system/fvSchemes index cf98674d54917ad3a97e0c6e5a2ad3c657d44ef4..a3dc15deff967ca002d696bdf7b7cde80d037f72 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/turbineSiting/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/system/fvSolution b/tutorials/incompressible/simpleFoam/turbineSiting/system/fvSolution index 910830f736fd2a64d864426e8249098d957fd82e..0544988de8c350007219b0219e87273c0b8372a0 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/turbineSiting/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/system/setExprBoundaryFieldsDict b/tutorials/incompressible/simpleFoam/turbineSiting/system/setExprBoundaryFieldsDict index 8cd8b772de888d6bba8072a8cf6ee61b81406a74..5b772ccd67115090cdf7a803d654337c8f1bac80 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/system/setExprBoundaryFieldsDict +++ b/tutorials/incompressible/simpleFoam/turbineSiting/system/setExprBoundaryFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/system/setExprFieldsDict b/tutorials/incompressible/simpleFoam/turbineSiting/system/setExprFieldsDict index d894470c5ba0820638d40d0f21affb5220c97e4f..06509b4acaaad3b89349518f7454e3102af5cc6c 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/system/setExprFieldsDict +++ b/tutorials/incompressible/simpleFoam/turbineSiting/system/setExprFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/system/snappyHexMeshDict b/tutorials/incompressible/simpleFoam/turbineSiting/system/snappyHexMeshDict index 20a9e3b9da3ded382e4d9f9483310facf4d56a5e..e0b58a1362412b14be30e7ab3e33e5aa1605297a 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/system/snappyHexMeshDict +++ b/tutorials/incompressible/simpleFoam/turbineSiting/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/system/topoSetDict b/tutorials/incompressible/simpleFoam/turbineSiting/system/topoSetDict index e2e638d901076ac2eaf8cd7000048241661357dd..5726a4cd00567a3b21e01a62ea5d5d4900aad421 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/system/topoSetDict +++ b/tutorials/incompressible/simpleFoam/turbineSiting/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/0.orig/U b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/0.orig/U index b31da626f7c4dafcfc03cc91c1401609baf68ee5..4561b552413ade445855908193a752dc06aef5dd 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/0.orig/U +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/0.orig/p b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/0.orig/p index a9559746283e0496a051148fd3780b8b7841f704..9e8d0b5f3b18b7a07d120733694ff77f4700d055 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/0.orig/p +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/constant/transportProperties b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/constant/transportProperties index 45873131ec016dcd501c733352f34fde24a710aa..8c3845989973cdf8b21951bf5988d8414d6e5809 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/blockMeshDict.template b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/blockMeshDict.template index 67e4a052f89e8207408d7537f2ee132f0b4e6833..b128bab320f1b0598b01ac4fd9d2cee75bf83515 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/blockMeshDict.template +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/blockMeshDict.template @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/controlDict b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/controlDict index 4b3fc177dc7da4c8e0973d94aecd6f4f8d878513..576dc7beb54232a048522ccb32ff193835057a15 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/controlDict +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/decomposeParDict b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/decomposeParDict index 011a6162c0ec53219c1040d863b4a111bdae45e9..5339af8ffe0800e8372bfa1a97837c139319efea 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/decomposeParDict +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/fvSchemes b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/fvSchemes index 9ea5297016d41931548637075fccd82129aff1f1..48599ce4a316d01973a97b354a83191a07723465 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/fvSolution b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/fvSolution index 39b3f570c7060dcbbbccce1ce2db7fb0dd32d880..461519ff067345d171f0f73418fe136923972020 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/common/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/epsilon b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/epsilon index 5f157ffabe86166d1c470b664b177f3b28c333d7..a392c7b501378edc492395abd0e0798fa2fb6108 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/epsilon +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/k b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/k index dd51bd38c36ce2c316bf44926e325b035bc493a2..3915d9199bf6fb4e6d7053a08996e6a873b77b81 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/k +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/nut b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/nut index d2d64837a6c07a4354b81769d5c842e29afb5479..496f2345f1869a716ca54f80a483120320d4b659 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kEpsilon/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/k b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/k index dd51bd38c36ce2c316bf44926e325b035bc493a2..3915d9199bf6fb4e6d7053a08996e6a873b77b81 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/k +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/nut b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/nut index 300f2ecfef38c8410beb6819a160f1be099183e8..f0c0a1d1ea4c70d127e0f294f03383d91844d238 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/omega b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/omega index 0f6198c12ea87315058f954e012ac476010df4ae..ad8b2c66884db3805ad6518c596b646ea8cd5f3f 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/omega +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/constant/turbulenceProperties index c1d5ac10f3ff6401c6ced11b5eb7d12a818ee895..eb61d1626b61da0457322e05072c0235aed11840 100644 --- a/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/turbulentFlatPlate/setups.orig/kOmegaSST/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/U b/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/U index 1eb697d655281f459ebca0f794d949110cca5a9e..134605b7647e56438ae3c50dbf6595f7aeb9a49e 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/U +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/epsilon b/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/epsilon index e163001240ee5f6a4aef5db81703712629ca6bdb..d6f43e6afb4c35dc9c065b179f3db88105c8367d 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/epsilon +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/k b/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/k index b24b7dada679c282aa3ab490bdd02f482c8ff5fb..c660576d6ce4ae720a7bbe313ee31d0096f99299 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/k +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/nut b/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/nut index 8591aa6937d9e998a4730c1974ddf31cc8c3a8ca..6d0171081cf4fa1462473f3a4b33c5253ecf268e 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/nut +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/p b/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/p index e78941dfd89b06d0cd93379d3dc6c79b5b04e275..7d4c747dd96bc108027911c3d38bb7f1054bee4e 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/p +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/transportProperties b/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/transportProperties index 1eba7d1d954a568e829f17b57a534c27c3a54347..2d303514fa61fad70d8d6ebeec640eefafafe468 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/turbulenceProperties b/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/turbulenceProperties index ce528794d0963f6808da68e9e474cf84827a2fd2..2a94d70f95c842d9ce6d033e7882cbd8709f392d 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/turbulenceProperties +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/blockMeshDict b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/blockMeshDict index bb532f31aec41569ae3b117e6af7940ad7c0bbc2..67a7566a33c5ff89340c838a5dc754e9f8c3550c 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/controlDict b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/controlDict index f37692004547588192e4f193d83398ba4193afe4..0d862d1dbbfe624a55db29f8b62e2764c4db284f 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/controlDict +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/decomposeParDict b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/decomposeParDict index 2b23b4bec4b772056a1f84f2bfccf395768567fe..aa5e2c6bdbaf84e6f53d26b3933629d4c352ead0 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/decomposeParDict +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/fvSchemes b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/fvSchemes index 6b7d5a8fce31e870d123af107882276c9f119122..49998ed5fe30efb422aa36ecd0f47be7cb4ffb3f 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/fvSchemes +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/fvSolution b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/fvSolution index 56964a3420e8482f73b7c76f6d3030bd1cb3d582..7878f8db00ac3dec13a80e5829cb38a4b4ebca95 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/fvSolution +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/meshQualityDict b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/meshQualityDict index e97c9496ac769ae59b78c431b8b3da733ee55980..a0a53140aa7a57ed7a18256c6d22dc04b10d1775 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/meshQualityDict +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/snappyHexMeshDict b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/snappyHexMeshDict index da8f9b23c8a3f5f10e0bf75b4d7fdd4de8c43fa9..b22858ad839ff7b403282052ec2354be89c68d0b 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/snappyHexMeshDict +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/surfaceFeatureExtractDict b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/surfaceFeatureExtractDict index 8a5b3cf606d95a7496751b15a2e446c4b6127953..fd6f6aa8b2f9776bae846333b632226087b2a9bc 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/surfaceFeatureExtractDict +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/0/U.air b/tutorials/lagrangian/DPMFoam/Goldschmidt/0/U.air index 8adaf8c05d7baea4e2295fad8d2b942f07dd217c..3233fe6fc1dccf37edec6b974611ac945cdcfbc3 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/0/U.air +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/0/U.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/0/p b/tutorials/lagrangian/DPMFoam/Goldschmidt/0/p index 903598f5a1ea28be9965b7ae953e715fd68d62c4..019cc0109e89dcbdbac88d7899129836c837f026 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/0/p +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/g b/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/g +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/kinematicCloudPositions b/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/kinematicCloudPositions index 19097487d520c836fab583b2065ba78d4fb62c82..bdba2fe68ae5d9d07c0b354cd848ae5756e45ba7 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/kinematicCloudPositions +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/kinematicCloudPositions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/kinematicCloudProperties b/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/kinematicCloudProperties index b9b5d5422637190692572bf5255ca42b28a124df..ceb8dc010049d27d4578c43aed34965d3593893a 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/transportProperties b/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/transportProperties index 7be7fdb6c80f78b7e6094ac87d37af2cba00d1f6..4b18ce2cbc38747bc1673b7e7c4bcefd748cc478 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/transportProperties +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/turbulenceProperties.air b/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/turbulenceProperties.air index a92a1e70fdd7c263945541d8241b02615224386d..926e445683713d9ddba45957c4a81c783ac07ff8 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/turbulenceProperties.air +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/constant/turbulenceProperties.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/blockMeshDict b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/blockMeshDict index 75ad6ee868d3c350606b3f4fe6aacd34e8f1b398..94d3637fef5cea21b2aeee2783fedfd30453a923 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/blockMeshDict +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/controlDict b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/controlDict index 4931564451cccd1efac780a18baca1d5b9161681..49c017f5b12fc8f7b9e36fcb42bc87db3120b433 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/controlDict +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/decomposeParDict b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/decomposeParDict index d97d631173311f3f28573c9953e7df28165785cb..342fa3eaee22122b0821cc7eb1e399733021df66 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/decomposeParDict +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/fvSchemes b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/fvSchemes index 8f884282745dff0ee6b008e89e368d00475b84d1..c4929ecb330a7e295bd94f0fdf11774010c2e8f9 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/fvSchemes +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/fvSolution b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/fvSolution index f7687abad29d90f1885c4b3cbc895c5ce562a0b1..7137658fc01e2212df039b44b4f763e54222bdad 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/fvSolution +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/0/U.air b/tutorials/lagrangian/MPPICDyMFoam/column/0/U.air index ead85e3a3afaa097bc3ee2e93c80c1a172683441..6b805b569d67a83d11e5066ce007733f8ef96876 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/0/U.air +++ b/tutorials/lagrangian/MPPICDyMFoam/column/0/U.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/0/p b/tutorials/lagrangian/MPPICDyMFoam/column/0/p index 8c47e8c5c27bfaea42a80e9613e6a450a90ab77f..b81f36f208202f54ce1ebd16b04c2bcbc340232c 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/0/p +++ b/tutorials/lagrangian/MPPICDyMFoam/column/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/constant/dynamicMeshDict b/tutorials/lagrangian/MPPICDyMFoam/column/constant/dynamicMeshDict index 3d518636b2d38d41168c4bf6c1d55ffd07ce4a8b..343aed1af53a7366d1500a3d466b9c790519f448 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/constant/dynamicMeshDict +++ b/tutorials/lagrangian/MPPICDyMFoam/column/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/constant/g b/tutorials/lagrangian/MPPICDyMFoam/column/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/constant/g +++ b/tutorials/lagrangian/MPPICDyMFoam/column/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/constant/kinematicCloudPositions b/tutorials/lagrangian/MPPICDyMFoam/column/constant/kinematicCloudPositions index 0ffa606eed08c20204fbfe1fcb34551da70fa971..956a97ae9bfaf91744682a8125b4350c56c1de05 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/constant/kinematicCloudPositions +++ b/tutorials/lagrangian/MPPICDyMFoam/column/constant/kinematicCloudPositions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/constant/kinematicCloudProperties b/tutorials/lagrangian/MPPICDyMFoam/column/constant/kinematicCloudProperties index bdd6bbca8f9027e416bc07f2f999040941115fc6..c90d6f4b0ac9f878e10014f259f1c16258d71d1f 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/MPPICDyMFoam/column/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/constant/transportProperties b/tutorials/lagrangian/MPPICDyMFoam/column/constant/transportProperties index 7be7fdb6c80f78b7e6094ac87d37af2cba00d1f6..4b18ce2cbc38747bc1673b7e7c4bcefd748cc478 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/constant/transportProperties +++ b/tutorials/lagrangian/MPPICDyMFoam/column/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/constant/turbulenceProperties.air b/tutorials/lagrangian/MPPICDyMFoam/column/constant/turbulenceProperties.air index a92a1e70fdd7c263945541d8241b02615224386d..926e445683713d9ddba45957c4a81c783ac07ff8 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/constant/turbulenceProperties.air +++ b/tutorials/lagrangian/MPPICDyMFoam/column/constant/turbulenceProperties.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/system/blockMeshDict b/tutorials/lagrangian/MPPICDyMFoam/column/system/blockMeshDict index d42034fd36e21ddc0c7fff7ec37bf70a2f2b9fa0..dae9785c32f19b6976476fc8330bf502bb856b19 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/system/blockMeshDict +++ b/tutorials/lagrangian/MPPICDyMFoam/column/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/system/controlDict b/tutorials/lagrangian/MPPICDyMFoam/column/system/controlDict index 3f58e388212e668dc57feab1878bcb0261dfd6b0..be2cbbc5d6915e0a50ae159bb2d5c33706eece0c 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/system/controlDict +++ b/tutorials/lagrangian/MPPICDyMFoam/column/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/system/fvSchemes b/tutorials/lagrangian/MPPICDyMFoam/column/system/fvSchemes index 92939b7f244b0cce4ac1933c02d7b88ec601ddeb..d56fddd813f3b01bc0b1153cafc6b67130c717d9 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/system/fvSchemes +++ b/tutorials/lagrangian/MPPICDyMFoam/column/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/column/system/fvSolution b/tutorials/lagrangian/MPPICDyMFoam/column/system/fvSolution index ed00cf349796c4a7716b24eac439c58c770d2de9..8225dc3ae3624043ded7449456257287e7ff26e5 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/column/system/fvSolution +++ b/tutorials/lagrangian/MPPICDyMFoam/column/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/0/U.air b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/0/U.air index cf67dcd0186e738ec9cfd21c49f1fc11ba3a4625..615ca098b07cc9e38a05ff80c97007301522c7c3 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/0/U.air +++ b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/0/U.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/0/p b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/0/p index f9d3ae4b130e6be5ba0e43083229ec4bb28d6662..de355360405df77ae19c3a40c3d9cfb1f5a25da9 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/0/p +++ b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/dynamicMeshDict b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/dynamicMeshDict index 0033cdb4f2a3c16865b80b584cf3acd6a2023913..6845070220c036bcdfe10e09ea5d0ad0c4c001ec 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/dynamicMeshDict +++ b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/g b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/g index b761ce1685ba3e3a995005f2b6d27ba30c2a4ba8..6cee1f640c3af8fa784d2602b3035ae00bf2b314 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/g +++ b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/kinematicCloudProperties b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/kinematicCloudProperties index c31f8d06172d33b80b313eaed327664569145d3a..1427fd8696ab87a50c61bd0500e4de3e8efacacd 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/transportProperties b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/transportProperties index 7be7fdb6c80f78b7e6094ac87d37af2cba00d1f6..4b18ce2cbc38747bc1673b7e7c4bcefd748cc478 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/transportProperties +++ b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/turbulenceProperties.air b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/turbulenceProperties.air index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/turbulenceProperties.air +++ b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/constant/turbulenceProperties.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/blockMeshDict b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/blockMeshDict index 3af8239922acce347257c839ba751e1d471c0487..500a01427e203aa4dd397236df07d8a2f2a2e82b 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/blockMeshDict +++ b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/controlDict b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/controlDict index 82c0bf74fee46d40ac460eae1c85173980b45141..b6cb1803ed7d1c9cc3912acce710949ac8aaa668 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/controlDict +++ b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/fvSchemes b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/fvSchemes index 0aa5e9ae2575a78ad550a04255954fe8e5f9248b..3c27794464b885ad9a2a3bab9ace9ff34a1d7a0a 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/fvSchemes +++ b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/fvSolution b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/fvSolution index 46a01a7f9dafc5271db39621c898cf75507871b7..1886dec216bc6275b6339a6539d9a7bff2797d39 100644 --- a/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/fvSolution +++ b/tutorials/lagrangian/MPPICDyMFoam/denseRotor2DAMI/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/0/U.air b/tutorials/lagrangian/MPPICFoam/Goldschmidt/0/U.air index 6fd7c76e6dc2b46f262f9324c3d09aec08b2f80e..ced4042e76d3f70be1b8de98c0edcbe80027e590 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/0/U.air +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/0/U.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/0/p b/tutorials/lagrangian/MPPICFoam/Goldschmidt/0/p index 03d36c2c4ef3aad341217937411bb81c3569d60a..27ab1277f923229a5eb9d056caf89471e6efb09c 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/0/p +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/g b/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/g +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/kinematicCloudPositions b/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/kinematicCloudPositions index 19097487d520c836fab583b2065ba78d4fb62c82..bdba2fe68ae5d9d07c0b354cd848ae5756e45ba7 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/kinematicCloudPositions +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/kinematicCloudPositions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/kinematicCloudProperties b/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/kinematicCloudProperties index 0c5203a5450319874153a17c0b167c7fb832668a..e087ab6b94346e6b6f2114604a3ee5236993fe00 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/transportProperties b/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/transportProperties index 6e258c50db500578343049521e434482829fc4d4..8793d766adf077c1b27381535e112874f036c074 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/transportProperties +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/turbulenceProperties.air b/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/turbulenceProperties.air index a92a1e70fdd7c263945541d8241b02615224386d..926e445683713d9ddba45957c4a81c783ac07ff8 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/turbulenceProperties.air +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/constant/turbulenceProperties.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/blockMeshDict b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/blockMeshDict index 033b8964fef6f8d33f3ef579cbc31d3837db3bcf..3ccb8511551c275057614136a039c3608e5aede6 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/blockMeshDict +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/controlDict b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/controlDict index 70253c2badf31268a3a4547b97acc2bef2eb9689..f2c6e7171b1d65a12e7551670bfdfe8ea52e752b 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/controlDict +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/decomposeParDict b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/decomposeParDict index 09f9f234d4f6608d3bc6de219750e4f5f0e1013e..4352fada5bdf0f0cc0a50a065e57e6a4d4a056ec 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/decomposeParDict +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/fvSchemes b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/fvSchemes index 52be95191263f8d30e8f8018c2bdcc629cecf785..50868443e5272bd84ea35f921c50f4094e7f5d17 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/fvSchemes +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/fvSolution b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/fvSolution index 3a230bbf1cc55143aec266ea49c580d056b6d644..0817bcf46aabbb8eed45596a5adbec376071f399 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/fvSolution +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/column/0/U.air b/tutorials/lagrangian/MPPICFoam/column/0/U.air index ead85e3a3afaa097bc3ee2e93c80c1a172683441..6b805b569d67a83d11e5066ce007733f8ef96876 100644 --- a/tutorials/lagrangian/MPPICFoam/column/0/U.air +++ b/tutorials/lagrangian/MPPICFoam/column/0/U.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/column/0/p b/tutorials/lagrangian/MPPICFoam/column/0/p index 8c47e8c5c27bfaea42a80e9613e6a450a90ab77f..b81f36f208202f54ce1ebd16b04c2bcbc340232c 100644 --- a/tutorials/lagrangian/MPPICFoam/column/0/p +++ b/tutorials/lagrangian/MPPICFoam/column/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/column/constant/g b/tutorials/lagrangian/MPPICFoam/column/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/lagrangian/MPPICFoam/column/constant/g +++ b/tutorials/lagrangian/MPPICFoam/column/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/column/constant/kinematicCloudPositions b/tutorials/lagrangian/MPPICFoam/column/constant/kinematicCloudPositions index a63f101acf2fff93b7e0406f28e0da16591edce5..98fced832d6613054bc2933fb2d76e5dd73b8915 100644 --- a/tutorials/lagrangian/MPPICFoam/column/constant/kinematicCloudPositions +++ b/tutorials/lagrangian/MPPICFoam/column/constant/kinematicCloudPositions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/column/constant/kinematicCloudProperties b/tutorials/lagrangian/MPPICFoam/column/constant/kinematicCloudProperties index ac239f3d5eea65e0a9b7eb685f1a0299a2127e4d..b74fccf5c6655643d08957be869362c9174a8d84 100644 --- a/tutorials/lagrangian/MPPICFoam/column/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/MPPICFoam/column/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/column/constant/transportProperties b/tutorials/lagrangian/MPPICFoam/column/constant/transportProperties index 7be7fdb6c80f78b7e6094ac87d37af2cba00d1f6..4b18ce2cbc38747bc1673b7e7c4bcefd748cc478 100644 --- a/tutorials/lagrangian/MPPICFoam/column/constant/transportProperties +++ b/tutorials/lagrangian/MPPICFoam/column/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/column/constant/turbulenceProperties.air b/tutorials/lagrangian/MPPICFoam/column/constant/turbulenceProperties.air index a92a1e70fdd7c263945541d8241b02615224386d..926e445683713d9ddba45957c4a81c783ac07ff8 100644 --- a/tutorials/lagrangian/MPPICFoam/column/constant/turbulenceProperties.air +++ b/tutorials/lagrangian/MPPICFoam/column/constant/turbulenceProperties.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/column/system/blockMeshDict b/tutorials/lagrangian/MPPICFoam/column/system/blockMeshDict index 01d165a98ad84bc403cbb973d05051530c27188f..a372cc58085969ad2212402808060ada3df6590d 100644 --- a/tutorials/lagrangian/MPPICFoam/column/system/blockMeshDict +++ b/tutorials/lagrangian/MPPICFoam/column/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/column/system/controlDict b/tutorials/lagrangian/MPPICFoam/column/system/controlDict index 3f58e388212e668dc57feab1878bcb0261dfd6b0..be2cbbc5d6915e0a50ae159bb2d5c33706eece0c 100644 --- a/tutorials/lagrangian/MPPICFoam/column/system/controlDict +++ b/tutorials/lagrangian/MPPICFoam/column/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/column/system/fvSchemes b/tutorials/lagrangian/MPPICFoam/column/system/fvSchemes index 92939b7f244b0cce4ac1933c02d7b88ec601ddeb..d56fddd813f3b01bc0b1153cafc6b67130c717d9 100644 --- a/tutorials/lagrangian/MPPICFoam/column/system/fvSchemes +++ b/tutorials/lagrangian/MPPICFoam/column/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/column/system/fvSolution b/tutorials/lagrangian/MPPICFoam/column/system/fvSolution index ef35dc6284f0d5f6d2522ff796c1bcf5977aa8f3..4137acce01ac69a9fe1a4b914324114fc76cc704 100644 --- a/tutorials/lagrangian/MPPICFoam/column/system/fvSolution +++ b/tutorials/lagrangian/MPPICFoam/column/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/U.air b/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/U.air index 2469b61cd8bc219b841fab0f892f2038f06f97bb..ae8403924550f3249b0fad0dda6656bcdbd115f0 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/U.air +++ b/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/U.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/k.air b/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/k.air index 3d61d5cc878ff6163c853ae42ba4b62e0245eed2..e3ed8c0ccedfe4202c6c3fdcb42ec6a10fe405c1 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/k.air +++ b/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/k.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/nut.air b/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/nut.air index ffbedc17a0e4d0fe1f3dcee365d12a7ce13f8100..13e8f3f148ed1d0e42d161b9b335b9d198c71b0e 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/nut.air +++ b/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/nut.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/p b/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/p index 230b4113cae2b5a65dc391c532ab5df490f3384d..04afba27b76fc40b712878d166def0b8765c9e57 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/p +++ b/tutorials/lagrangian/MPPICFoam/cyclone/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/constant/g b/tutorials/lagrangian/MPPICFoam/cyclone/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/constant/g +++ b/tutorials/lagrangian/MPPICFoam/cyclone/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/constant/kinematicCloudProperties b/tutorials/lagrangian/MPPICFoam/cyclone/constant/kinematicCloudProperties index 790c824e7da5ebb0b61fb3fa2166a80bdc8fd08e..41649bd46567894dcb495473f483d452136e6013 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/MPPICFoam/cyclone/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/constant/transportProperties b/tutorials/lagrangian/MPPICFoam/cyclone/constant/transportProperties index 6e258c50db500578343049521e434482829fc4d4..8793d766adf077c1b27381535e112874f036c074 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/constant/transportProperties +++ b/tutorials/lagrangian/MPPICFoam/cyclone/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/constant/turbulenceProperties.air b/tutorials/lagrangian/MPPICFoam/cyclone/constant/turbulenceProperties.air index 606ac150f7a7732de3d1d29da7f34666ae342fea..11b59b1ec82d479632808172b04fe0f99ebf6d11 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/constant/turbulenceProperties.air +++ b/tutorials/lagrangian/MPPICFoam/cyclone/constant/turbulenceProperties.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/system/blockMeshDict b/tutorials/lagrangian/MPPICFoam/cyclone/system/blockMeshDict index a13b94070606340722c70c03f03dfecca45cdf04..045316d823d8b95ea7cdd58ada0cda89a792d82a 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/system/blockMeshDict +++ b/tutorials/lagrangian/MPPICFoam/cyclone/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/system/controlDict b/tutorials/lagrangian/MPPICFoam/cyclone/system/controlDict index a6ac3404f83e8aa099645758704e70cf5fb79857..498e9c1f6fc82e10ea37ef6c6800c401a9f2bb8b 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/system/controlDict +++ b/tutorials/lagrangian/MPPICFoam/cyclone/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/system/decomposeParDict b/tutorials/lagrangian/MPPICFoam/cyclone/system/decomposeParDict index 9130d9fda35e71b7b53f49bfba04aba6c798e027..f000f66547bdd268037a513016a0ada0a88e16f9 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/system/decomposeParDict +++ b/tutorials/lagrangian/MPPICFoam/cyclone/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/system/fvSchemes b/tutorials/lagrangian/MPPICFoam/cyclone/system/fvSchemes index 71f85a4d69e81276acf7491aefb977c00bf1e13d..847e0b7f563dd2f2dea2daf88f24d00b3bb87376 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/system/fvSchemes +++ b/tutorials/lagrangian/MPPICFoam/cyclone/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/system/fvSolution b/tutorials/lagrangian/MPPICFoam/cyclone/system/fvSolution index 6a25a1a4f11be15e9903282920a9046b6cbd97bc..e6c96637555d991c1d170450c3e7d7dba2fd71a3 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/system/fvSolution +++ b/tutorials/lagrangian/MPPICFoam/cyclone/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/system/snappyHexMeshDict b/tutorials/lagrangian/MPPICFoam/cyclone/system/snappyHexMeshDict index deabf933b740528e6e790497bfcfb44c91ccfc59..9746274041f2b779dec2164ec642c41c1715ab87 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/system/snappyHexMeshDict +++ b/tutorials/lagrangian/MPPICFoam/cyclone/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/injectionChannel/0/U.air b/tutorials/lagrangian/MPPICFoam/injectionChannel/0/U.air index 56695c8dc97e3f16f6f2a9f6a6cdf3fb1e5f5f7f..337ed7e149fe6940875c2a0058c045117530292e 100644 --- a/tutorials/lagrangian/MPPICFoam/injectionChannel/0/U.air +++ b/tutorials/lagrangian/MPPICFoam/injectionChannel/0/U.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/injectionChannel/0/p b/tutorials/lagrangian/MPPICFoam/injectionChannel/0/p index 0653b2b1c999a4f352305ce35937055a0534c9f7..770db6b644b7eae8e343037eae6707e0dbe04100 100644 --- a/tutorials/lagrangian/MPPICFoam/injectionChannel/0/p +++ b/tutorials/lagrangian/MPPICFoam/injectionChannel/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/g b/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/g index e9dfc3f353d2990103bc9b9b9ce6a0dd8943fe0f..7639c9e60f33602624b734b7495005cfe95e64fb 100644 --- a/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/g +++ b/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/kinematicCloudProperties b/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/kinematicCloudProperties index f900c0e6fd06faeefa574f68f8f200e1d6b23195..06bc6214decb8ebb1d9ef5224648ca25b2a4d085 100644 --- a/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/transportProperties b/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/transportProperties index 7be7fdb6c80f78b7e6094ac87d37af2cba00d1f6..4b18ce2cbc38747bc1673b7e7c4bcefd748cc478 100644 --- a/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/transportProperties +++ b/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/turbulenceProperties.air b/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/turbulenceProperties.air index a92a1e70fdd7c263945541d8241b02615224386d..926e445683713d9ddba45957c4a81c783ac07ff8 100644 --- a/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/turbulenceProperties.air +++ b/tutorials/lagrangian/MPPICFoam/injectionChannel/constant/turbulenceProperties.air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/injectionChannel/system/blockMeshDict b/tutorials/lagrangian/MPPICFoam/injectionChannel/system/blockMeshDict index 3fa8db9cd30daf46b08e3319fe9ca25e0e8147de..d0168b3abda38df0e4d2f11439d71f50626e7efd 100644 --- a/tutorials/lagrangian/MPPICFoam/injectionChannel/system/blockMeshDict +++ b/tutorials/lagrangian/MPPICFoam/injectionChannel/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/injectionChannel/system/controlDict b/tutorials/lagrangian/MPPICFoam/injectionChannel/system/controlDict index eb29b2f001bcc14f394761be4a6079ae829f1d06..9134b9f148f5ef6abadb37cbb20bdc94eb8f7102 100644 --- a/tutorials/lagrangian/MPPICFoam/injectionChannel/system/controlDict +++ b/tutorials/lagrangian/MPPICFoam/injectionChannel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/injectionChannel/system/fvSchemes b/tutorials/lagrangian/MPPICFoam/injectionChannel/system/fvSchemes index c723fec2fa0eccb0fe994119449a5c99fc59443b..038c2e3b8e84b79fb1a2f5a1d6f1321df35bd5f4 100644 --- a/tutorials/lagrangian/MPPICFoam/injectionChannel/system/fvSchemes +++ b/tutorials/lagrangian/MPPICFoam/injectionChannel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/MPPICFoam/injectionChannel/system/fvSolution b/tutorials/lagrangian/MPPICFoam/injectionChannel/system/fvSolution index 6d46e0fc1d01510f33213f189bbbd4e9302a2034..36c61c64589739d7d42e186ffada8468f32e4176 100644 --- a/tutorials/lagrangian/MPPICFoam/injectionChannel/system/fvSolution +++ b/tutorials/lagrangian/MPPICFoam/injectionChannel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CH4 b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CH4 index 432172180c45c74b9fef449aadd1bf92abebc1ed..7f53dff37d5f878d84519b023f1ef33f383397cc 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CH4 +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CO b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CO index dfa782ed113ba63925a8074ee211948d701ccdad..88775d1133ce3e16cfeedefefc21840515aaaf17 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CO +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CO @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CO2 b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CO2 index 0008cd0e683de20fd3db7b16797613d418d264da..8aad27fe2f088747ac91d94505b690bfa196a18b 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CO2 +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/CO2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/G b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/G index bb5c9b6cb037edb13d53b02788c97ed661b846fe..651d863403f7d73c5288cb6f69d37768f0220e8e 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/G +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/H2 b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/H2 index 0dfe56a52b21cbd6ab68ef0adf085a41e4d09348..c6114dfd1dad02fd3b87626a83732ff5af2afdc9 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/H2 +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/H2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/H2O b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/H2O index f1dc7d2da8144dd0a4ef03452fa9fe030f5510bd..ef2074715c37aba13286c430d8a836012bcd257c 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/H2O +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/N2 b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/N2 index e1746fe4176a65376fd34136cbf8873de9e14438..b03ed1da8c4e9547c6d910c78729a0f7db2a3ad9 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/N2 +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/O2 b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/O2 index 0bfa1dfbc5a43f490c1b14db8a0c9967861fbb32..4f463033cfb0374fcb42f97054b917284cabd787 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/O2 +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/T b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/T index 5c398f316b41d4fcaed05de53c05a5081fa1c5ac..4022e7458ef89f38069abcd203660d3bf69a03fe 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/T +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/U b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/U index 881c412b0ec90edcbb54e52d95de05b3524b529a..d1bf7308bd4b4f012a04c0a22c27f7efd018682d 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/U +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/alphat b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/alphat index 564e46f66e8dc523ac0e4dea25bf48bdd8ce9713..1ec80bca6052d1d6031c188477ffcee619365ca8 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/alphat +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/epsilon b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/epsilon index 055b708de3d8491e2837a0364e08234d459b41cc..fdffe77b1afd4cea71363dcc14ebb1044bc3e2c5 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/epsilon +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/k b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/k index e3b450be70435b21236b106556896ea8acd008fc..36613c5d5852bfaafb5b2e9df607ea116a17edee 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/k +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/nut b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/nut index 7ef39494178433098204b4129f65f2aebdc32662..033637114f13a55bc38770a805c23b0c7e00e42d 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/nut +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/p b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/p index a83a1bc493f3532e780a511f398df55183059ecf..eee8c769a63c35b725b38ed6f2b533a1b967c38c 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/p +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/boundaryRadiationProperties b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/boundaryRadiationProperties index d6d0fcc8e659add2d6b4404757a8f9a4ebccc660..89f80977611ee2befa701b56f6a61b1bafd723af 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/boundaryRadiationProperties +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/boundaryRadiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/chemistryProperties b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/chemistryProperties index 473cb9861bb90efd8ca90d94ce12085048867eff..3013004c432fef858b209b3cda6e244e6794cf6b 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/chemistryProperties +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Positions b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Positions index cd3c9010e967e8111cf53b333d95adc7f97a5820..75e70eacff2bc57e189d5967ba197f258144cea9 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Positions +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Positions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Properties b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Properties index 48a14645cb6f7c1d34ec2c74072c28b843386aac..b0335e91255df71d250e92a3443fcb6ed38fe9b4 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Properties +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/combustionProperties b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/combustionProperties index d99142d36c07eb42b888b8dfc68306fe7cb669b9..930ce870d5d4a09108cbaba0ff32f33c662ff2d6 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/combustionProperties +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/foam.dat b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/foam.dat index 1f2dd1bbc908e9ce32fd8f4e4df8d6bc9db3e0ad..912d4debaee25b1b69138c028efac4e4a58a33f6 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/foam.dat +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/foam.dat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/fvOptions b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/fvOptions index d7627edc35ece0e00c1ffb9680a501a4c8ebc9fd..587dbcb055c36f9dd9f12d705da04a8a9ea7abb3 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/fvOptions +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/g b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/g +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestoneCloud1Properties b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestoneCloud1Properties index 9b935af66cfcaebede21e29eef1d508247f4273b..c67341a47573f0e5c5be361bbc4f48c217521a84 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestoneCloud1Properties +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestoneCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestonePositions b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestonePositions index abad0830df7405debd2b23b8996c9dacf4f92d90..b6bdd55f22765e36016d4fa444acd8c6e7b93077 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestonePositions +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestonePositions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/radiationProperties b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/radiationProperties index 447bdc559ae0c42d3b193d26306cb20a2e63464b..c6e886b7cf74c3c53bd678373a50b30015bab51f 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/radiationProperties +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/thermophysicalProperties b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/thermophysicalProperties index dfe83e06c2707532a15fee30e5f811ccd84b92a3..5cbb30615f42bcb04e984127c4377ea10fc45c94 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/thermophysicalProperties +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/turbulenceProperties b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/turbulenceProperties index c6f935bede2382e8c3dfc2aa703231de3a898a5f..9749febf7748888badbea64daf794fb8bf9dacb3 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/turbulenceProperties +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/blockMeshDict b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/blockMeshDict index 0b80a700cac33aaae7dcb2094831a4fd5d5ea456..78fa4f36704f3e6fa63c7f6bf3c8bb29cbe01c60 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/blockMeshDict +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/controlDict b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/controlDict index 3da433383ecd286e9ddd5ad9ea9f95bbb9632765..6ec67756da3f034c1953730800f90b7aa0097942 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/controlDict +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/decomposeParDict b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/decomposeParDict index a1a1da626bd1ed4145dee7bfce761b4d52d35c42..fc04e0b67c670130122760a82774414e423a0be5 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/decomposeParDict +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/fvSchemes b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/fvSchemes index 77f98ad025c2df6f02e4e0d9bca3ac0f6eb27d99..bee78dbceeda0e65134b3d681022362091ae0972 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/fvSchemes +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/fvSolution b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/fvSolution index 478b68abcce67d8a049b4b265a2147dcc73927c6..91b949d742bd787d5be4b54e41d3071518c25c96 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/fvSolution +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/topoSetDict b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/topoSetDict index 25f125d71483454fce42d08eb9d637eb54b4a50e..47b3ab45d2080449944ac1b0efedf9f2a98fdd72 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/topoSetDict +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/0.orig/U b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/0.orig/U index 449056110f5ab3a706e0b1ff61ea92548e615cc5..1eadf599150f028607cf28606be887dbbd3160f2 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/0.orig/U +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/dynamicMeshDict b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/dynamicMeshDict index 54f52e206513f1b89280ee229f24268194db07f1..32009586960a5d393aa81ef4000a9ed5bef26c7c 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/dynamicMeshDict +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/g b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/g +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/kinematicCloudPositions b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/kinematicCloudPositions index 5dd4c2bba4f536b646ac2bddfc428ce5466e990c..a00573600686ff6833a5f9ab5ff388feba0a96de 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/kinematicCloudPositions +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/kinematicCloudPositions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/kinematicCloudProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/kinematicCloudProperties index 74bbf40dac9423f3e46a51994f7010803787d0b7..cb47574eb3f5916bd7de1766b2c7b129d2fc39d6 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/transportProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/transportProperties index eb75fa644ec95cfbe05834303ac91eeac237f644..341c3c4d04dc57242769b162ea1ba86e5c863430 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/transportProperties +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/turbulenceProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/turbulenceProperties +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/blockMeshDict.m4 b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/blockMeshDict.m4 index 142c387564f8fd4853fe37219753e96f79064bb6..69ce644176eda214a1a5e513eedba7a5ab0f0940 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/blockMeshDict.m4 +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/blockMeshDict.m4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/controlDict b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/controlDict index 45fd0dceb7e4f97415eb4290ba9265dcc3456554..35af2af583eb1d4eef471a0066a29d04c9b6be32 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/controlDict +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/fvSchemes b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/fvSchemes index 81f607beafcfd7131829d552c84ff991da15f757..f115b8cb1dc1cba7d010ccecf538a1282b73c779 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/fvSchemes +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/fvSolution b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..7f27acc8aafdc9c654d77e52adddcb26c0aa112e 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/fvSolution +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelDyMFoam/mixerVesselAMI2D/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/U b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/U index bda528b3bb9489c53e7cdacd21c3791b81690c12..5e8fc08a98a737e2209395bf1f05d2a31e678539 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/U +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/mu b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/mu index d5c92be5360871087bd7252de0e96582f1886f4a..8b9b8d86366451eb96ec9497bcd5378edd98a665 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/mu +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/mu @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/rho b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/rho index 1d7881d36c7c6c133e7501cc5a38ad3fc61bfe91..d83890345e4a72b4da28c9af0b6e16abc0056165 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/rho +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/0.orig/rho @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/g b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/g +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/kinematicCloudProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/kinematicCloudProperties index 02b9b044f58e3e4e08a63cebec3268d5df14e690..281da139e7763d0b77143c077874d6a5517499d4 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/transportProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/transportProperties index eb26b6d0f4a8135079170376806e1906f28e09ad..fc01ada633ccd64178df24305095f8a5099a06c2 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/transportProperties +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/turbulenceProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/turbulenceProperties +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/blockMeshDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/blockMeshDict index da978a849de2a02bbefb231d63c2401713bce2ea..9f0d7d4d458995f2ac61c73d1c10e64c0b4ab49e 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/blockMeshDict +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/controlDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/controlDict index d166972f242bac0e6174053124ddd31e738f24fb..c974d54191d51c1afb386620f08b8203b2d93052 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/controlDict +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/decomposeParDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/decomposeParDict index 82f934f6452d665e05510d521c458c6e7d3b2842..6549bfa2cd6829f22acbc3792b329e778fdb4c68 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/decomposeParDict +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/fvSchemes b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/fvSchemes index 51423a94bfac8d033f345b9424a0a6b7ac7fb099..49aeb6089232d42e28182a4daac228b05ba0bf27 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/fvSchemes +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/fvSolution b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/fvSolution index c67ffe5d2e00fedacf0926fef11262ee89d4096d..db196f13cfb9190243b984fc047ea9bda542b967 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/fvSolution +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/mapFieldsDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/mapFieldsDict index 63c36a8be7d4b2c339868782bcf89232d9a2a721..f43922e6f92a75d076bdf1abc278bc87929ccbd7 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/mapFieldsDict +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/mapFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/0/U b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/0/U index fd0d516e3b3f673b4de4978897fd37e4c3af8e14..8294201876f01dbbabfb2d315f773f02113f18c9 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/0/U +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/g b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/g +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/kinematicCloudPositions b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/kinematicCloudPositions index da5dd51efa8aa4b235eb337545f733afa6201082..0a255d29a8cd14b72be414aa0694b8004cef9004 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/kinematicCloudPositions +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/kinematicCloudPositions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/kinematicCloudProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/kinematicCloudProperties index 1da784f624cea73089d923a8d6db9d79f6dfaed6..dabc1185eec4947ed28d68e8c217f36b5a87ed06 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/transportProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/transportProperties index eb26b6d0f4a8135079170376806e1906f28e09ad..fc01ada633ccd64178df24305095f8a5099a06c2 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/transportProperties +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/turbulenceProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/turbulenceProperties +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/blockMeshDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/blockMeshDict index bf8c6788cbedd040dc4f12c21f235fed973ba029..eb00506d15788be9f56ceacfcdb54c6fcc007542 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/blockMeshDict +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/controlDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/controlDict index 35b68b4e043a945fc3ab1593fa3a2215df5a4168..2297f8c348bcbe9fb98fc7e1a926c9195b840245 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/controlDict +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/decomposeParDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/decomposeParDict index 82f934f6452d665e05510d521c458c6e7d3b2842..6549bfa2cd6829f22acbc3792b329e778fdb4c68 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/decomposeParDict +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/fvSchemes b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/fvSchemes index 51423a94bfac8d033f345b9424a0a6b7ac7fb099..49aeb6089232d42e28182a4daac228b05ba0bf27 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/fvSchemes +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/fvSolution b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/fvSolution index c67ffe5d2e00fedacf0926fef11262ee89d4096d..db196f13cfb9190243b984fc047ea9bda542b967 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/fvSolution +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/T b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/T index 883e38de4a58896da2c8c3da5c57320f1a1af5b1..c8592881f8e4d304571a39f9714a7cecad2f2a39 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/T +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/U b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/U index 645aa805d882aa78e85a216c4e77ee36b26bf938..301ff1620742ddcfdeebd9fd7d3a7937dd06e052 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/U +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -73,14 +73,18 @@ boundaryField injectionModels ( - // curvatureSeparation + // filmSeparation // BrunDrippingInjection ); forces (); - curvatureSeparationCoeffs + filmSeparationCoeffs { + // Mandatory entries + model OwenRyley; + + // Optional entries definedPatchRadii 0; minInvR1 0; deltaByR1Min 0; // h*invRi = 0.004*10 diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/finite-area/Uf_film b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/finite-area/Uf_film index 6456f40980a74745f4b86a770f421fda67451ce0..b84226c7740bbf8258cfcdbc121ca9755db93ee2 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/finite-area/Uf_film +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/finite-area/Uf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/finite-area/hf_film b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/finite-area/hf_film index 81c5e6eba07b85ac1e326358bb7bb73c04b5f1a2..ecf8c4de43b7dcf5034f6229d8254165f70fd88d 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/finite-area/hf_film +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/finite-area/hf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/p b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/p index ff98b50123ea81bb332482549940f929be2acab7..ab817c746a59008a67e96349de25e94423b99b60 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/p +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/g b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/g index 0c5535932669e8f0342cba1ae577082d7345c3c4..683643b6473b75453b962107d5d6de25216dfd9d 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/g +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/kinematicCloudProperties b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/kinematicCloudProperties index 250a6dc654fd91b52b034bfcad1c6e19f61ea2ae..dab807b3ac996185ca8c3f062a700d8e78b178f7 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/transportProperties b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/transportProperties index eb75fa644ec95cfbe05834303ac91eeac237f644..341c3c4d04dc57242769b162ea1ba86e5c863430 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/transportProperties +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/turbulenceProperties b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/turbulenceProperties index a046f4f8b7403aa503b3b638d5be0d034face443..2bd6145a306c3ed4eb7ec0b9ead2b8cc19dfa055 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/turbulenceProperties +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/blockMeshDict b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/blockMeshDict index b1e87c019ade170922c9bf86d9dc19a1b0d8b4b4..b22075cf28a5bd6482b7fa709eb463b7ff15664d 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/blockMeshDict +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/controlDict b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/controlDict index 130204e316ea9aad1c3da06738312a5c034134c7..f513cc4ccdc86b3aef54809712c2022836f18342 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/controlDict +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict index 52b4997f3772a476a0f4bd08d65dade34b45a16a..76efc36c079084d9d025c4ab090adc12dbe9297a 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-2x3x2 b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-2x3x2 index f7e3f71c5fec2e5555fcbe3d9ea21426511737a4..51ccbf20c2cc87f08580e01a0f42878dceb13eef 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-2x3x2 +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-2x3x2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-3x2x2 b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-3x2x2 index 7b2b5c67d0588d4bd2f65c65cd05c3a97278a06e..0c767a7cf352ff46d639c8317b5d7172e55ae919 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-3x2x2 +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-3x2x2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-6 b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-6 index 4208f348874b0ee87f2748ad2e5cd3ff20ceb40c..94e8805411a326ab5c43126d207e2653a058208b 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-6 +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-6 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-7 b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-7 index a8082bcb331cb1851883b3610ca19b1c703762b6..9cab618eda2fb1d30d906b2812e3b64cbcd180ae 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-7 +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/decomposeParDict-7 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/faOptions b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/faOptions index 771519bc13871fdc79272a588afcaed99dd40c9f..59e7cf16c1440467aaf3140a571295cca519e6ed 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/faOptions +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/faOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faMeshDefinition b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faMeshDefinition index e2dba35afc9b45c6037bdf1b301ecda81ce393dc..8009281d1a604b821f8c75af6a8832daed456038 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faMeshDefinition +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faSchemes b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faSchemes index 621ffe0fae8acff8a68ff736ee830411d7e5a737..5a9a7028e2a5684e22943290746237d11661d6aa 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faSchemes +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faSolution b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faSolution index f3cece4dc3e940000deec168e896f014f4dd14be..92dfd27ad742e8550476403faec24444279ce8ae 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faSolution +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/fvSchemes b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/fvSchemes index d9d0c242a6058d766e168e27d00cf44fd91af527..1055e3e95e266cd52f2e568d352c396ddc3dd689 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/fvSchemes +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/fvSolution b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/fvSolution index 1f457f9127cb307a5ca7d9dbad2b2c61583ce312..a0af83b1234cba6137a079a8c14f856ebecff68f 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/fvSolution +++ b/tutorials/lagrangian/kinematicParcelFoam/drippingChair/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/0.orig/U b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/0.orig/U index 9c560580bb5507bfad48dcd9a66cf990508cfa83..3b48d08fea46735efc51c7fa07cb2b2584fcff71 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/0.orig/U +++ b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/0.orig/p b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/0.orig/p index 7476b5b381c26fc671c2d20a966d8dc0b5eb9bc1..6385865f512fac057d1134b88ac1dcd5ee29adb5 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/0.orig/p +++ b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/g b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/g index 32870956d50713b0b982f27ec3b8d43ef09b4105..eab9f8dc41cb39bb83064d222605b53605806199 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/g +++ b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/kinematicCloudProperties.TEMPLATE b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/kinematicCloudProperties.TEMPLATE index 98cb55d7412ab803043c25dcbe1d2bfaa8710359..a12ad2ec0bfb8103f5952a19509c50d468d5d977 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/kinematicCloudProperties.TEMPLATE +++ b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/kinematicCloudProperties.TEMPLATE @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/parcelPositions b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/parcelPositions index 1bb045e621d719c76eddb7e972d5c5fa15366921..d81411f6a68a4a45b544952ab607f93933c8870c 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/parcelPositions +++ b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/parcelPositions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/transportProperties b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/transportProperties index 157e679b1308731a692f3cbf2214497445ed91ce..a7b910de70b395c3e44738975b2201af8ccce36b 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/transportProperties +++ b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/turbulenceProperties b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/turbulenceProperties index f0c14e0b36b0fbba454fc551ecfd76fba5351058..bd671808c9fa08a172a41e34eaf0ab8e6a373113 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/turbulenceProperties +++ b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/blockMeshDict b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/blockMeshDict index c7052ec7f637d159165b775b366c920cc5f20651..e1295943c83d48e7190e795d00444b6ddef6e71f 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/blockMeshDict +++ b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/controlDict b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/controlDict index 2cc6556a38e267b9ff4f2f31767393a4b1eeb368..e8a7860c8876fb55ada1ee428e5874eb2f80a0dd 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/controlDict +++ b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/fvSchemes b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/fvSchemes index a00f437cf4139620818178fcd93396b917a323f1..c050aa4dbd21dabe4e12dce8f750178aec54fdeb 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/fvSchemes +++ b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/fvSolution b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/fvSolution index 4647e99d9f9f26400212809b6078faa2856923fc..f6c63c4afbc1f692cb370b770df4e4b572ee6ab7 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/fvSolution +++ b/tutorials/lagrangian/kinematicParcelFoam/particleDrag/parcelInBox/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/T b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/T index 962a2e9c7aecdfe267e34a420562d1a94ce77b74..f744756a9a7f912c27ffc885a6802d2d71f38f70 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/T +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/U b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/U index 309578ad576262274f6080252f8c1d3f7be1d90b..89cfd7969c75fb4c1701a4afb56e3d41da9dada8 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/U +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -65,13 +65,14 @@ boundaryField injectionModels ( - curvatureSeparation + filmSeparation ); forces (); - curvatureSeparationCoeffs + filmSeparationCoeffs { + model OwenRyley; definedPatchRadii 0; minInvR1 0; deltaByR1Min 0; // h*invRi = 0.004*10 diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/epsilon b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/epsilon index f19581ebe683adc93382065c590231d3b16668e2..c62bcdb9ef408a18b500bd7fad979781cdeecb2e 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/epsilon +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/finite-area/Uf_film b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/finite-area/Uf_film index e4e89420f1dd08b3d63bc3028abf668c5ffb91cd..00b40b160a2ede52d47f209c614c2232d377cb1e 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/finite-area/Uf_film +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/finite-area/Uf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/finite-area/hf_film b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/finite-area/hf_film index 93123de58325ea514e90b98e85fc8e9988e99cca..ed30d80206245c6a0375a337965835fcb50bed0c 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/finite-area/hf_film +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/finite-area/hf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/k b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/k index 52bac5f093319e3c6118f76e16b7124759292904..d0bd81b5308bdc6c1dc1860331a09f32669da42e 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/k +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/nut b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/nut index d719b713d67dc0f66ad67b4de1c0c4b2216caf21..8c4f9cee81a920e81593119015ed3be2f0507992 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/nut +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/p b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/p index a224b88e8f2039ead71535ff1f20a468f7a61258..4d742c4292e9341b63f92f4a20abbd817828c84d 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/p +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/g b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/g index f1ac736cb343c2c965b64565fd3352e6a35ab943..ee6cc230a537a964d80bd42284ab85b71f7458d7 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/g +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/kinematicCloudProperties b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/kinematicCloudProperties index a05aabcdf342d475210a7a8ca3b750f260dfc4ed..b625dc171d7d2ebab61a3607a9f64d2a1d43eba9 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/transportProperties b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/transportProperties index eb75fa644ec95cfbe05834303ac91eeac237f644..341c3c4d04dc57242769b162ea1ba86e5c863430 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/transportProperties +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/turbulenceProperties b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/turbulenceProperties index 36bbbff19cb7d5a2f8d49b9eda7c73ecffe874c1..fc525261a719de930d0bb1ba1a45f3e4c8942652 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/turbulenceProperties +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/blockMeshDict b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/blockMeshDict index 0c2792932be91ac6c529d6f3a423343f5916e2aa..49b9c3e0725369c4d58c9ace5175fa120b016446 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/blockMeshDict +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/controlDict b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/controlDict index 77b99988390f4e33ac60f45f453e313179b0af5b..f3a6e68bd7036d15b1a2d8ad65257d7b49fe4091 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/controlDict +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/decomposeParDict b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/decomposeParDict index bf5a12db0f57577e51245864c3692f54db11373f..83f3bf69fe4379705829f599e3766c2c6c208214 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/decomposeParDict +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faMeshDefinition b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faMeshDefinition index f3e435003c1ba7036424c05084dfc65c553e46d4..23348b55ba8a1e4997e131a79c9e88d17efba3ed 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faMeshDefinition +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faSchemes b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faSchemes index 621ffe0fae8acff8a68ff736ee830411d7e5a737..5a9a7028e2a5684e22943290746237d11661d6aa 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faSchemes +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faSolution b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faSolution index d0c0795444b65723bb7147f076e4c94bb03dd5bd..7e7a74d1fd7a341b72b2adff2c9c532d6c2b58f6 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faSolution +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/fvSchemes b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/fvSchemes index d9d0c242a6058d766e168e27d00cf44fd91af527..1055e3e95e266cd52f2e568d352c396ddc3dd689 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/fvSchemes +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/fvSolution b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/fvSolution index 1f457f9127cb307a5ca7d9dbad2b2c61583ce312..a0af83b1234cba6137a079a8c14f856ebecff68f 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/fvSolution +++ b/tutorials/lagrangian/kinematicParcelFoam/pitzDailyWithSprinklers/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/0/U b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/0/U index 9ddc1b229a05585990dfbb660c48e0483d180e5f..0797fb6634ec592592e01886dd5fa1ea0252166b 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/0/U +++ b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/0/p b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/0/p index 59148da57a0dafd19fae22f2fa20691258b44470..bd99b446a9817e77d3af334abade244fa2e4bc08 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/0/p +++ b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/g b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/g index f1ac736cb343c2c965b64565fd3352e6a35ab943..ee6cc230a537a964d80bd42284ab85b71f7458d7 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/g +++ b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/kinematicCloudProperties b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/kinematicCloudProperties index d39ccef830a6367c34e2c1b774b79ed428f0271e..6d8bd7e3732adf187b28c2967dd705a3809cc597 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/transportProperties b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/transportProperties index eb75fa644ec95cfbe05834303ac91eeac237f644..341c3c4d04dc57242769b162ea1ba86e5c863430 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/transportProperties +++ b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/turbulenceProperties b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/turbulenceProperties index 587dc3ffe138e687ffd223b5c982a519c254cbd2..216a88a850e1f9f14c53c8804e8d9325f25b39dc 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/turbulenceProperties +++ b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/blockMeshDict b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/blockMeshDict index ee1e32500fbc3162945ca0dd7138757630e2680f..98a1bdd24916d204772386c0fabf1268394855c3 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/blockMeshDict +++ b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/controlDict b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/controlDict index d694a2fa03f78f8aa324331bbc3fed1f51593e42..cfc8ba933690d5df1412dbc672e976e2f7877282 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/controlDict +++ b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/decomposeParDict b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/decomposeParDict index bf5a12db0f57577e51245864c3692f54db11373f..83f3bf69fe4379705829f599e3766c2c6c208214 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/decomposeParDict +++ b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/fvSchemes b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/fvSchemes index a0ba745fc61b80abb1caecc3dfbb8ccbd1aaa8ad..803b16b16245ecd1d13f07ad3af7ec5b6fbe3742 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/fvSchemes +++ b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/fvSolution b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/fvSolution index 1b7796d252882379718da1a4b5e7cd0e3bbdc132..f639691e4734343be2d3d351ee923ee8b16d3911 100644 --- a/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/fvSolution +++ b/tutorials/lagrangian/kinematicParcelFoam/spinningDisk/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/N2 b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/N2 index 05380071912dab974efac053de2d4b3a79bdf338..57ed1a3cc3217d7ed0a489dd02b1d570f26adebf 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/N2 +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/O2 b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/O2 index d2684f760dde469d3e95d0209da27c33521c167c..1dd32382454335ffb5f4bd3a06cb76efac2c08ed 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/O2 +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/T b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/T index 295e3a80011afe020ac241c41edc43c15ffb3bde..0efbc6e09bd7b2f895a13b5f6addc53d23530670 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/T +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/U b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/U index effc02bebd1f69bc9332e546c5640291807ab732..08ca58e723b59cf4c175c98144e4059e7475d9f9 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/U +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/alphat b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/alphat index b5ca3535e44a14f5cba56bcaf442a9e9af7df3e1..bfa3e055c1c6bd5c5d2880e11522bd29f4a32d0e 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/alphat +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/k b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/k index 341873e269927f4f68e4c33bafca2106d57e5d5b..dcf955e179173b1741d26e71c3ae661fd24e7118 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/k +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/nut b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/nut index 61e630c4a357ee7cb2c746c92de9d82dfee8cc47..b8128a4525f276ff0b3246204fea0360cc24e888 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/nut +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/omega b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/omega index 6425ed3806136620bef23144dbdcab7647e754b4..bd50eeebad67e4827fce68695e4a93f6c8ebe063 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/omega +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/p b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/p index e78dd8fbf385d5c150167b24704731751b1d585f..ba52ad5f30caaf9f16dc84a3bf018eedaa1c9452 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/p +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/p_rgh b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/p_rgh index 6c6f4f6ca544f7ed1f6131a4e19daba7e9c19f8f..dac80743fb22fea4943641dcb21caa54420210c2 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/p_rgh +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/0/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/chemistryProperties b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/chemistryProperties index 982aa408518fa486af58d00dc51176f6173e695a..37b193eaeccb865d3deb26ce28032b777cec5ce2 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/combustionProperties b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/combustionProperties index b691a5baa2ffa9d3c0cb7ce3bc79ad865d79eeb4..6e8baafb67ce231ebb9dc4a842f89270300095cc 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/combustionProperties +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/foam.dat b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/foam.dat index e336ac015c3648bd844d4471efd05ac00ca9c296..2e89cf6088a5939a21b2503e8ee7d2f0ca55e464 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/foam.dat +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/foam.dat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/g b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/g +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/particleTrackDict b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/particleTrackDict index 38bb4f4cc835959d833016aa3bc65582e0fadfe1..66fd0fc4ce92d7337549e3c60b868258635651ad 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/particleTrackDict +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/particleTrackDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/radiationProperties b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/radiationProperties +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/reactingCloud1Properties index e6726e1783e794a82ab7173a47a0a7906108248e..a2e0bc23e6c60a2a0a42af2501c2cc4b89dc8127 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/thermophysicalProperties b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/thermophysicalProperties index f67fa8415408f09f554db7b579c34fb9d48a48f6..41f70c33478c5608445bd2fd00a9f6128e84150e 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/turbulenceProperties b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/turbulenceProperties index 1316444ecde5dfb2e963aeccf98c36f96fc2799b..3ac6ffcc8894a56ed264196f43cbcb7cbbfe7023 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/blockMeshDict b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/blockMeshDict index 53e01258b10e3025f21bc70939393b8d001b6a03..d95fe7c31e8a4ef7970880019e1a2695a5343129 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/blockMeshDict +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/controlDict b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/controlDict index 8d25e063f344e7907a52a6d1ebfa846500aff65a..d945279b05a22678e4eb9430cefbbe7e62eeebc7 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/controlDict +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/decomposeParDict b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/decomposeParDict index a1a1da626bd1ed4145dee7bfce761b4d52d35c42..fc04e0b67c670130122760a82774414e423a0be5 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/decomposeParDict +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/fvSchemes b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/fvSchemes index 9b7839ad8ccb17880d5d4e7816ca6876dffc7b06..b3ff8ade2ed5ecef10b4084cb34b99d1f1b85e95 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/fvSchemes +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/fvSolution b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/fvSolution index e4068b55ab381f4a2064f887a5cade1e48a88409..29370df4225c87e9ffec1cb3dfc15ae490860873 100644 --- a/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/fvSolution +++ b/tutorials/lagrangian/reactingHeterogenousParcelFoam/rectangularDuct/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/T index ef8b2a6d59b60d0a285db488c14ecf6ef50543c3..84f1c6cc563fe4816bbafdf1f75d5470b5ec4b59 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/U index c4dc6c00c66702f8e6d65ece6ac6b2fe633f5bf0..dbfc8c670c4804fe325cf54000cdddb3714db932 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/alphat b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/alphat index 7fe9dcb39d6b7aba11e38acfe5a2a2442657124b..58429ebb899660e82eded7bc9a58cb20e9499cd7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/alphat +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/k b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/k index 597c8483ae8eb465b4f49d6e9d58ec5f4d37dac2..13e7b13a938c577f25a3b7fce03fffa434bbec09 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/k +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/nut b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/nut index b75f0267a34bd2e98af42893ff7f5a901ae10267..a62bd89a2e05adcf1105502b588751953aae0ae8 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/nut +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/omega b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/omega index 06a84283b6ff4aea35fa20818ee84148ff8eecb2..cbf0085e98d997d6bf2128607296acf7fffc0038 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/omega +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/p index a6dce918dc9bdb9edfdea0d56b915648a165f7b8..7f52dde957ed49ff669a850480d02368f6fb9f10 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/fvOptions b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/fvOptions index fdfced049986e8ff8134d3635c5e2937a731b878..a3c29b8245f1d07316a513ba1416460f3376dec0 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/fvOptions +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/g b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/g index ecee6b505a417eafe5b8aad276affc2d226a758e..a6ab2659378c64c278a2ea40be6870bf2d117fd4 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/thermophysicalProperties index 1f148f1a165b8edfe79e6b6261d68081eb156762..68244b561629ad2549f484e8d08d616426cb9b34 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/turbulenceProperties index 28b2a28e4867dfb7fe8e891bc3a544bb1c8c504c..ac94b4c7c0983b14794ae35ab5ef84e1c4d0d993 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/blockMeshDict index bf5ea58195f6db1ae8876925e45405744f06e763..4bbd6297ef958eaee58074279bdda40cb7b426ef 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/controlDict index 4a402d09d44cf850966d9f4ff5ee08f6f2aea067..c934d19d814a66254021c9f33b7c86eaee572f22 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/decomposeParDict b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/decomposeParDict index 0d07be0fa44eaf74434669042a47b2ab76988ef3..594d1d4daadd4877665a872810d3ffd913d11810 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/decomposeParDict +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/fvSchemes index d2496fab456e5c4da0d9f672ecf49db3cadf81c1..f977f4cc1a18639a93915060f084ed8568d4f0dd 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/fvSolution index 2373aa834df27d5d1742d0fd7dca422b31e37f1b..204fdc40435a5ea84edcac9205ae22276f88d9e5 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/snappyHexMeshDict b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/snappyHexMeshDict index b509ab399c2e175edb7d61f0f8d02f803e2c507e..bac3eebe2a1a9f5c81a8df829c2f08f0e1c31374 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/snappyHexMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/snappyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/surfaceFeatureExtractDict b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/surfaceFeatureExtractDict index 486210108bc4c71be7437abb7d79e2088517d06c..f4fbdb5ebb394a3caaea2322d940a71e2fc4a236 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/surfaceFeatureExtractDict +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/CO2 b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/CO2 index 84b7ac23ee07a716c3a08754b48ab3ea72439d7b..df7faf078404cbaa7ec637a3d34124933190dbb9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/CO2 +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/CO2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/G b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/G index b48d93e1297d4a4e11d1daaab5976a448f9ccb71..dae3adcf982aa851bb773607fcd3bd46ebf02953 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/G +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/H2O index d36d44a9faf785c73742352b9fa827340e281d65..e0a2850d472e931641e04b7411701435cb66ae72 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/N2 b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/N2 index 18f0a22180eb81831353463f8aa900c441cdd8f4..cab2a07cbbb51e6fb6e88971acf48af6d3292371 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/N2 +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/O2 b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/O2 index 197b2a834a5e0a153a9098378656b391bd732867..4dfff9070207ef31b10bce69e4cb2e8e3fc12c00 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/O2 +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/T index 2dab58aa084c71a866835bec00b923643e909c3f..264cb9f66f21cf9dbb90cf5bfff0ca8789012839 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/alphat b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/alphat index 7fe9dcb39d6b7aba11e38acfe5a2a2442657124b..58429ebb899660e82eded7bc9a58cb20e9499cd7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/alphat +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/k b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/k index f50d439338598f5cf774c8aeb4698f7f179ca995..9dc6f7bb47efa5f5de1007b29bdc4071e7f32716 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/k +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/nut b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/nut index 5baea17a82c6936c059307caecae1490e6f1a289..068b68b294625892e42c9f48700b8f2776a3ee1a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/nut +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/omega b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/omega index cac960fbcfab807ffd317e9fd0f36e6995384e1a..edee30c58272c0f52800924dd24a1043ba8b7894 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/omega +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/p_rgh index 0da8cab0d10a0b9bf0ab48f2bfeed1f3c35a917f..57cd2285883697dfffef239a8dcedb5ec2b2bba1 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/chemistryProperties index 839d00e8785b2a0530f94ee6e3003f9d001deac5..cea9ea38480e6cea67da6ec8e28f165f32c8bdcb 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/combustionProperties index 1ee78eb5a6f4c022b6078ed342adbbd3ff903b70..058b581bf9d562e6aaee9dee4fb5f3937a10fda9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/fvOptions b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/fvOptions index 48e8d403bd98e309ce5272513fe54fdcaa7b279e..fa040899f4b61ce8f739d3f11580fe3ce13b0a51 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/fvOptions +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/g b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/g index ecee6b505a417eafe5b8aad276affc2d226a758e..a6ab2659378c64c278a2ea40be6870bf2d117fd4 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/particleTrackProperties b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/particleTrackProperties index ceee5410726a4f739fd718f180adabdd9cdc15d1..b4e61f60d0ed35a2b1bf3dc339c2e66c0e151c79 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/particleTrackProperties +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/particleTrackProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/reactingCloud1Properties index e9f56df44852062e3f7c7be5ef19bd84f5cab7e1..90862d8bc6f23bbffdc031351d037bdd27169ab7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/thermo.incompressiblePoly b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/thermo.incompressiblePoly index 0e19122a899abe1d420f72e9395b2d3cd80fe2fb..de0a524795800d5813ba389e3e0baf7d565739ed 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/thermo.incompressiblePoly +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/thermo.incompressiblePoly @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/thermophysicalProperties index 972d88725120f03b05a924702a9adad3ed502bfd..c412c71836e21554723513c0d346d8d498262508 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/turbulenceProperties index 469629610aa170c0ed5194fe542686cced8b4a8a..3aa7af7f7e61750169bc4a4ee225decc37c8234a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/controlDict index b69d4a4d1d74342941f0e8198a5f68b94c6ef989..3f232b4f22cbbb34ee1dbc7b48d97f53b343908c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/decomposeParDict b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/decomposeParDict index 0d07be0fa44eaf74434669042a47b2ab76988ef3..594d1d4daadd4877665a872810d3ffd913d11810 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/decomposeParDict +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/fvSchemes index a818e2f097c5063938e0ef33d166a6bdad24d9c2..7d62b9c1532d1f8fac7b4ec4ce94cf4d7b901482 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/fvSolution index bb6d616b2e6afe3b6dec6f8db6411d1098fa2566..833e9c24005c72beda0d4b7c4cb9a3940a9a80cb 100644 --- a/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/CH4 b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/CH4 index fe2009e6e37eafd35187181724a8ec7acd171f12..ed7ce1de10064cfbfdfb55266dd895caa019d0ec 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/CH4 +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/CH4 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/CO2 b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/CO2 index 18dd44fe701cb365e343f66e72ba6b81b623db06..7f0712e70b62fb41bb2c7d0db6ec448962dcf4d4 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/CO2 +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/CO2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/H2O b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/H2O index 6dc845dda319ead9c1960d2481133cb29a4062b7..c088060f8dd7174d63b9e355c6ffa35e30d98e7f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/N2 b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/N2 index 380399fc10c5f869b0a87a385fb5d194ec8f3aaf..5e779e5f7bd3333c3c79e06a2e6ead98d6d58b56 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/N2 +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/O2 b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/O2 index d3f6dcd50997be8afc4ade223932a31931791289..fabbf07455a04acf6bb92fa8a8ef8ff7247e74d9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/O2 +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/T b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/T index f606fca1d0eef94943ff7ffd0cd227955ec0f2ab..5d0e2be45f8c6a1f2ac6c1a2500ce32efc1a684a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/T +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/U b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/U index 17a0beea50a19ece6d7c640cf52d8cfcf9455e01..5832f4f2eb6474614bf0f55f78cc351e73f5c047 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/U +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/nut b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/nut index bf332911e86fb055270d3c3b121c27dc63bac7b3..ba54d60b36d46c9726b73132c1ff20f105a58f8e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/nut +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/p b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/p index 0a60074419f802ebb8342cba596e1df964603a80..aa72001d5d0f918847633cc221df23d918d5b4ba 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/p +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/p_rgh b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/p_rgh index 06a68e04dc2fbe96015aa2ec0585c582f58f6983..1aee88331dbdf0cc4bcd4a5080029692642cc218 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/rho b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/rho index 19ba441370ca93f44b59eb95ab79e8c6f1186d72..c38a0f219434b484aa012f207bb9d067683ff9f8 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/rho +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/0/rho @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/chemistryProperties index 2a53e35418d181524d8720ae783b6e373afbaee0..ce8314382eee20d414fd745a7e6983f1015825d4 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/combustionProperties index 08392152d938a109aad84f5a3f45b04c2a6b33b4..5937eeeaaee811ad999bbb11868b74e2365eb010 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/g b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/g index e9dfc3f353d2990103bc9b9b9ce6a0dd8943fe0f..7639c9e60f33602624b734b7495005cfe95e64fb 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/reactingCloud1Properties index 0212483fe57b972537876f221bed7869bac162ef..882aebc59de032d58d414b6a5e98caef4467a2b0 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/thermo.compressibleGas b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/thermo.compressibleGas index 035c536c4139d22ad86a55a61f83a19756189615..f7b55b336f13155d6bbfd2cbea3fc9a1f844c882 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/thermo.compressibleGas +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/thermo.compressibleGas @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/thermophysicalProperties index e26cb9e2369582c7ae7b97938a855c0574b021d8..1360f0879efe83adc385e901f0c91dccc5d2c40f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/blockMeshDict index 87e1bfc312cdedaf1067d01149d6d047af2822a0..86126b706fd27b32b6456f7c0d56575855018144 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/controlDict index 35f76706d35348f2b27a0eaf3e1cb488176b7c46..2c166cf189c876fc502a5f5544618fffd525adbe 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/fvSchemes index 560bba4abcf38791efccf7f76ba707ed40a4087c..03d73677f12185c64804fbc8193df9576c95f685 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/fvSolution index 3d43ed875d6fd7af601c30c66c2d4edeab5eca51..22bebd796cfd8beb5b07359cc779d467a458a074 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/H2O index a1a9af633bdf6fd64f064ad6b17b23fdf92f87a7..866c88502f168b7d7d4150327ce8e8fee1cde874 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/N2 b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/N2 index 5d48dbe5c144bf7ee607e1546dcab6c093abc49c..5a34bddf91619c9702db623b032404b61df897a5 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/N2 +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/O2 b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/O2 index 018bae43df4140f31e0f3e96101875eaeca63db0..5cf4e0d937cd87815dc92e5b56c8d4d7be85f27f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/O2 +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/T index f6e2e7337aec92e7d6c23f839ea8e9e54b779864..4d68435fc7f3f99eb5cb26dfa8f890a505beead4 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/U index bcb5fcb7d0155dbd9aa6d36adda428e605e35b45..d469ace5a308b0184c98671f265f93e2249c92e4 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/p index 0b1ed5e8e9e3aa3617f36951f0ac64daaed9e920..9438d03ec2f3fa22c369f29271337ce8a7619c03 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/p_rgh index b1f895148a80a5081c1e84673f87ff3085b7ac4d..512b68cabcaa653cd03f3beadb84ca5b496ba27e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/Tf b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/Tf index 01281c3072ab0a6be17d2d87aa4a6f0a8a328c4c..b8b9d623ad6171a5b6a99f0e7d2def4a76399f80 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/Tf +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/Tf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/Uf b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/Uf index 214037a9a2cdea7d878202eb8f5c53cc161728f8..35cdb2e18d3525aaef3dbee1bc39964ee0db2d9c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/Uf +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/Uf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/deltaf b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/deltaf index 60050d00c9d3e1143f1bcc34fa6d62ef1c0dd9f7..734eb15e9246cf9c797c93f4acb4d23bdaf7fa6d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/deltaf +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/0.orig/wallFilmRegion/deltaf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/chemistryProperties index dd7e1f6355216e5db552d7c8d0e5ada9a5e4d3b8..13e611425a92d0112f40fe649693404c4f2c4f4e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/combustionProperties index 1ee78eb5a6f4c022b6078ed342adbbd3ff903b70..058b581bf9d562e6aaee9dee4fb5f3937a10fda9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/foam.dat b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/foam.dat index 43121f99c5c6361233516e08ec09a64f31d21c94..007668dfcb0712de89f2764723f26e8f7028806c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/foam.dat +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/foam.dat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/g b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/parcelInjectionProperties b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/parcelInjectionProperties index e92cce84cfcdfb799c00c6983e6b4c68ac07c816..856a3f671f47a02a9e85ca8545491028d9c9a6ed 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/parcelInjectionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/parcelInjectionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/reactingCloud1Properties index 82e1f2e2e5f4acc43acb95772e7277694cc801c3..3a7c6c97612d7117f3b2f29092ab284f5882e512 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/surfaceFilmProperties b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/surfaceFilmProperties index 126f3339aadf1bc5f61c9e2900ebcf62e51dac0b..6327e7fbb6c43ca7dc5436464e51c6bf62efa8ce 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/surfaceFilmProperties +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/surfaceFilmProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/thermophysicalProperties index 11f1fb3b01297ece88d0dd1367a2c658b805a8e3..672ecf8c7c527a161d52c7e41b2b4abfa91d9c06 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/blockMeshDict index 3e46754e635a1153e5474bb874316ed921fd4e7e..332b9e96cd5500885eafe86c971b5b4e25c69004 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/controlDict index 0076041f8693d93436293d1e98a6f02a93bad5ac..8a1a6df4f41ffbf70c38368971837802e9ff3301 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/createPatchDict b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/createPatchDict index 80b1942240360b486c053aea3ab1b95ca032acdd..929a744d8282933328c5bdfd38f13953514f5a61 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/createPatchDict +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/extrudeToRegionMeshDict b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/extrudeToRegionMeshDict index 2877e8699ffc8c9d37f8ddb0c389ebab191e2d00..1ede96aceb2f213622b107ca94155e0e4b864a57 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/extrudeToRegionMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/extrudeToRegionMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/fvSchemes index 4baaf4a436181d9bb1456cd11d7ddfbcea421108..b3a772719c8387af22b5d32de204753a0ce0908c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/fvSolution index cc5d1a999a49feeed80b0c96bece957e176e91fc..df01b0ae9e277c74946b434d45ebed2a98dec19f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/topoSetDict b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/topoSetDict index 3f59dc6f1c3f5fa7959eb5a15df4d7ab1ad43713..e1db35e872696da52a20e78e9f0ab858dd0e2906 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/topoSetDict +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/wallFilmRegion/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/wallFilmRegion/fvSchemes index 4e04ebcab7e639d31b7d64d54bccaca292a94d03..b112cd7f22e2dd8c8edd4ec945e8b04e8cf49b9f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/wallFilmRegion/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/wallFilmRegion/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/wallFilmRegion/fvSolution b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/wallFilmRegion/fvSolution index 0952f80222a6bcb687ebc4a69947c9e54cd6fb5f..fce0cc27a26d336488eaf50ae7644c2328ffc885 100644 --- a/tutorials/lagrangian/reactingParcelFoam/cylinder/system/wallFilmRegion/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/cylinder/system/wallFilmRegion/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/G b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/G index a1cda6e7f5bbb759630823c7bfd5f074ff71fc5b..3524f717b70ee7357408b0ff5315259b291b7780 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/G +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/H2O index 409fb5939739bf6978db3ac8e273db4b5853f159..ebc92332e083b1a2167c1736564b71f1e9eda72d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/N2 b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/N2 index 9f00e9461bc2d6eb01dff516f16a01b700133a9f..c05619cb90dcf5d8c71c55d6f554d38f7f426bff 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/N2 +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/O2 b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/O2 index 056e56d12366a4624c02247ed5394dec0a0df85d..e7145a939fc03468c3e287a6c1387e9bdd921c4c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/O2 +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/T index d630919b623466e831272048af0fb752b29125b7..10c631773e72b9edf10611978087a300f3f2701c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/U index b927b8cb46340715f890309fef01af48c722a39c..9942362cc44c23239026ebc4c2c8b3de7755b399 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/alphat b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/alphat index 538dd7223dd3e6b281e0c757f9fd95cb77bdc9e8..6ab0523da594fd90e25fa32d71bd30f8c991dc92 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/alphat +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/epsilon b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/epsilon index 1055b3a3dd4b228c0426f0ce9bf2a3da5623faba..bf8b668c8ab48e1d209a1215a27b495dde80343b 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/epsilon +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/k b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/k index b6c2219c68e4d2405fcd35dfb0db76acc4752813..e7b08173a12161584ff232034ef688a8d18e34a9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/k +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/nut b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/nut index bf3ce3e598a0e35af4efb429d87e17c9b2aa9688..bab70c92a66a4e232ddcf7a4f5b9968b31e2bf7d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/nut +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/p index e69e12d9bb0796cbe995ccfc364b6fb69f763d31..2168c97756b57e276e10c5c28f3d3c25deba708b 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/p_rgh index bdfa75317af24b5dcb93c20e734500899161b07f..5c699dd13b949b6318440ca7f0ebdc38adf0aa15 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/filter/constant/chemistryProperties index 5dd96628574e364996744daae9263e051a98851f..a71f7bb516ca032a92b820613e49ed3659d30e03 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/filter/constant/combustionProperties index 1ee78eb5a6f4c022b6078ed342adbbd3ff903b70..058b581bf9d562e6aaee9dee4fb5f3937a10fda9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/fvOptions b/tutorials/lagrangian/reactingParcelFoam/filter/constant/fvOptions index b25fc21bd6863252b8577aec53f4c532edb4ba8d..cec81f926e051b34f6e4b9378404957987524e51 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/fvOptions +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/g b/tutorials/lagrangian/reactingParcelFoam/filter/constant/g index e9dfc3f353d2990103bc9b9b9ce6a0dd8943fe0f..7639c9e60f33602624b734b7495005cfe95e64fb 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/parcelInjectionProperties b/tutorials/lagrangian/reactingParcelFoam/filter/constant/parcelInjectionProperties index bd6c1499b46e02ff36a8a42d57ddd018e147b278..1d8c12d680f577458775b083baa74c7e7c5c0969 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/parcelInjectionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/parcelInjectionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties b/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties index 33d164de060a618d7ea6c0b43d156b7f552be47b..1de5121fd6504843e6f42651491ae6933394b156 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties.animate b/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties.animate index 33d164de060a618d7ea6c0b43d156b7f552be47b..1de5121fd6504843e6f42651491ae6933394b156 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties.animate +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties.animate @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties.static b/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties.static index 84bcd75bae366d3b53b2fcd274ca2adaac2fa820..2bf72b5390285682f9eeb3852827638cd45dfa08 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties.static +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/particleTrackProperties.static @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/filter/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/filter/constant/reactingCloud1Properties index 19e3c0ed83161b0d1305c4c09efcecdd5e6fd29e..6e45ee1458e7f5806ba19fd159cc2927f721b7b5 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/thermo.incompressiblePoly b/tutorials/lagrangian/reactingParcelFoam/filter/constant/thermo.incompressiblePoly index 5236c90cbc3aee7193fe25a711b273d85970d1d6..9f6e4b2b5cbae70efafc1d505adcd2e578079d4f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/thermo.incompressiblePoly +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/thermo.incompressiblePoly @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/filter/constant/thermophysicalProperties index b9d03cd004f5d938da45426908f2415f455ab62b..021ba6c4d99654f623d81566475c78014e46728f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/filter/constant/turbulenceProperties index 3cd62b220853610b3ef661d6e218b4297b54421f..ff3e1d0fa84a1f70a403eaa5d8d1ccbdc991cc96 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/filter/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/filter/system/blockMeshDict index d4a4b260df696bc05c11ac3994e70c52b8efc01c..1d6831c0684791b078d3c6b3d8eee4f0d14cf218 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/filter/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/system/changeDictionaryDict b/tutorials/lagrangian/reactingParcelFoam/filter/system/changeDictionaryDict index 1d5ab38adca955811a9a60a0f5e22dd78d3f3749..a58d6286d6d1ddd139b0c86a62bd8c34445ef155 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/system/changeDictionaryDict +++ b/tutorials/lagrangian/reactingParcelFoam/filter/system/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/filter/system/controlDict index 6b0c6e54149b62544fa1d3b85be821c0ce654f34..3618124828d7113b29b0d38715c3624e7141c29e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/filter/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/system/createBafflesDict b/tutorials/lagrangian/reactingParcelFoam/filter/system/createBafflesDict index 39a319ce39da4a4080a8880ecadd7572de4269cf..3977a6ebeb1f6eba283929c6bdfd986d11a2b57d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/system/createBafflesDict +++ b/tutorials/lagrangian/reactingParcelFoam/filter/system/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/system/decomposeParDict b/tutorials/lagrangian/reactingParcelFoam/filter/system/decomposeParDict index 556d114d0360092064205205ecd696c06876a178..b598e6d2f806cf5d32a055704280460d3a897a20 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/system/decomposeParDict +++ b/tutorials/lagrangian/reactingParcelFoam/filter/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/filter/system/fvSchemes index 75448f01eb18ea4c14e04853ff7a7d032646858e..5ab57d9138757809282d1c6a7ceed50663c372fb 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/filter/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/filter/system/fvSolution index 8da228da6cee6ca48f27ab1198687b77d4a2843e..65810178b285f375e899bcf101a3bbb15e220118 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/filter/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/system/topoSetDict b/tutorials/lagrangian/reactingParcelFoam/filter/system/topoSetDict index fb6c6818a22ac9767635a657130b6a32eb7bb084..416118b580ca595f32828ed7573dbce9515cb61f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/system/topoSetDict +++ b/tutorials/lagrangian/reactingParcelFoam/filter/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/H2O index 28340ece669f58b3ba671d14a16180394ca6c026..5ff6c723034ec9702563776bfa1b4cc8fc3aa5bc 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/N2 b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/N2 index e3af2c6293ae9308e35f41d0f847119b9ba8aaab..432786123d4c81e476ae38eaf3a9356334e7555b 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/N2 +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/O2 b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/O2 index 82eacf44ae9500ca333e8e871dee642e0e4b2432..f4d68f168e14a2cf74f68603ba69d750e7637e62 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/O2 +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/T index f4c35c8a47f534f0ec2be45cb8ee8ce1f168bb98..6ea965e3e144736893ed6a198079b7e87cec088b 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/U index e28a4ba9cc5e9309fd8f796795423cde017d7e00..7de05a25be468dbd5e3581267a51a10e536762a4 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/alphat b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/alphat index 5aad65e9aa7ed3f9367e1ba17b678f79be12eba1..36f117f314f1baed10b542884562ab29e55392a5 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/alphat +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/epsilon b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/epsilon index 594ea30b5a01712b9516e69c4cce7843c0f643f3..41b9001e62dca48e8b09ae9464f83f53fe95ccb6 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/epsilon +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/htcConv b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/htcConv index c73cc079d394622f68bbf031eee9c58effa5a919..3606395c56dac28dc1c7692cc0174f89cba4f3bb 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/htcConv +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/htcConv @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/k b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/k index d5e646d43e73f2790612404c2b0d87c3d85b27a3..d6f86b7d4433312bbe7390c5b9d1d629a4fef94a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/k +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/nut b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/nut index eb8f6f6e97f38e1d15ef3c20bedb155ac6feb43d..69c8950577c63df2047c988f9bfd9f6e3032a41a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/nut +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/p index d220918381e75dd57240b7cd9a108dd18622d9b1..866d013677184db59ab20fd54831dbed7da6092d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/p_rgh index fe4957c20a0e0149669966c62bec6da2c626247f..d6e11b38bcc1a9e312843aedb8b80afc92e54d8c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/Tf b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/Tf index d4842d5525629f43f98f278448a191c6a8ef9d5c..49e547b79c2938cabb4fb12e471439c6a9007bab 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/Tf +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/Tf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/Uf b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/Uf index 654be481df4c5405b44eb434847ccd87f1775ec8..df32fd7d18f267e696a1757b64bd4c473edc239a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/Uf +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/Uf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/deltaf b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/deltaf index cfbf94bc0e6e0a3d470f79d55eab44ef0e7477d1..b77a3d88f2019fdcf54ab10fd812c96318c789db 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/deltaf +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/0.orig/wallFilmRegion/deltaf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/chemistryProperties index dd7e1f6355216e5db552d7c8d0e5ada9a5e4d3b8..13e611425a92d0112f40fe649693404c4f2c4f4e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/combustionProperties index 1ee78eb5a6f4c022b6078ed342adbbd3ff903b70..058b581bf9d562e6aaee9dee4fb5f3937a10fda9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/foam.dat b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/foam.dat index 43121f99c5c6361233516e08ec09a64f31d21c94..007668dfcb0712de89f2764723f26e8f7028806c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/foam.dat +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/foam.dat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/g b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/reactingCloud1Properties index b012bbfd18fb17c7999ef0afa6372846723e1f44..fca427d3ede35d5b0717bc9b20b4c76f6186552d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/surfaceFilmProperties b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/surfaceFilmProperties index a7f924c539d0e8f471c84c397e038fa5dc005c52..ed6022fd0395493eca08042a60127244f8616713 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/surfaceFilmProperties +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/surfaceFilmProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/thermophysicalProperties index 11f1fb3b01297ece88d0dd1367a2c658b805a8e3..672ecf8c7c527a161d52c7e41b2b4abfa91d9c06 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/turbulenceProperties index bceccd3d1aef53a71bedfb8193e411439978f6bb..47293e5c2faecf35251c31c87b8870a8104ad017 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/patchifyObstacles b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/patchifyObstacles index 395a955564c9339af08eb749c0bd701a97f206f9..183675cc1aef9e26c2d95458bacf87d0df122bc9 100755 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/patchifyObstacles +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/patchifyObstacles @@ -2,7 +2,7 @@ #-----------------------------------------------------------------------------# # ========= | # # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox # -# \\ / O peration | Version: v2406 # +# \\ / O peration | Version: v2412 # # \\ / A nd | Website: www.openfoam.com # # \\/ M anipulation | # #-----------------------------------------------------------------------------# diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/blockMeshDict index df9dc2f18329634ac2beb957381729fb1126247d..c05e77e04e7e8bcc821b62bd7ce13c8d9635235f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/changeDictionaryDict b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/changeDictionaryDict index 800fe2e24049f7135f3e438e2d9d27123fd0a33b..510de89219657fb629ddb345c99bee6a43056d54 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/changeDictionaryDict +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/changeDictionaryDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/controlDict index 94553ac939c9d0b917bd4d222b5114aee44c378e..0d4b63774aeba9e1b6ad5e06297217e003acd3da 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/decomposeParDict b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/decomposeParDict +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/extrudeToRegionMeshDict b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/extrudeToRegionMeshDict index f7d0b3b9b999d54b5ccb6a736e280935567ec9d3..f588ee7474a5d7e52e6a84b0a4c74e176695eeb1 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/extrudeToRegionMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/extrudeToRegionMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/fvSchemes index 4bbcaede22838ed41a6629a1f90acffb5454b9b0..8cabaab590e26a9a39d49fd90d77e016c2729100 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/fvSolution index a579197d6eba93b6e9ec9d068d119ab9dd2c9408..e9da92c375bc6d4c125a0fa90a02262f7db16084 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/topoSetDict b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/topoSetDict index 30ad06bfd2b269f3dd9242b2d995d55fc54ec1bd..b644cda8c7000f968432ef746058ed4674188b9b 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/topoSetDict +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/decomposeParDict b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/decomposeParDict index 18068a3bf053588e3840c9b4cb68f764fb7ee84d..5a9fca91e0a8174b5f4f66095659aa5a299f2737 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/decomposeParDict +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/fvSchemes index f0aac9256ea3a246d251c4791d13ba56a2819b48..859e2c7189519174c07d02057e0d0134fab683ca 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/fvSolution b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/fvSolution index 325dc49228a27a21462899a262f7ad9c50da2739..3aed4b821a17b13988577f88d9c7f6214c3bfc88 100644 --- a/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/hotBoxes/system/wallFilmRegion.orig/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/T b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/T index 962a2e9c7aecdfe267e34a420562d1a94ce77b74..f744756a9a7f912c27ffc885a6802d2d71f38f70 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/T +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/U b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/U index cf80a66fa7880a0fe445c5c563f1bd7b8e03cfe8..c637132e560a17adca5047eb49b19b5ef54b10ee 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/U +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -68,13 +68,14 @@ boundaryField injectionModels ( - curvatureSeparation + filmSeparation ); forces (); - curvatureSeparationCoeffs + filmSeparationCoeffs { + model OwenRyley; definedPatchRadii 0; } diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/Ydefault b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/Ydefault index 904f64c8f2f7f64bbede49b6d90d2e39b7681359..3870bc94f422de9f2df3597cc7c8b10ae47e6d27 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/Ydefault +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/alphat b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/alphat index 22afb85dc45b25ea7a4841e10038843db34e7286..4683bdd422ebba7b35a85b17a68d679bbee1d430 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/alphat +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/epsilon b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/epsilon index f19581ebe683adc93382065c590231d3b16668e2..c62bcdb9ef408a18b500bd7fad979781cdeecb2e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/epsilon +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/finite-area/Uf_film b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/finite-area/Uf_film index e4e89420f1dd08b3d63bc3028abf668c5ffb91cd..00b40b160a2ede52d47f209c614c2232d377cb1e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/finite-area/Uf_film +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/finite-area/Uf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/finite-area/hf_film b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/finite-area/hf_film index 979f314e2b9217bdd07297ed68887eaf26e0e5f1..00a9ac38250127a28d01ac5829fc63dc40a387f3 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/finite-area/hf_film +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/finite-area/hf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/k b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/k index 52bac5f093319e3c6118f76e16b7124759292904..d0bd81b5308bdc6c1dc1860331a09f32669da42e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/k +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/nut b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/nut index d719b713d67dc0f66ad67b4de1c0c4b2216caf21..8c4f9cee81a920e81593119015ed3be2f0507992 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/nut +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/p b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/p index 9a430fd79f327a6a8321fd7f56f6069715b6ff5c..bbbea634dee840322c26a100337790dff120dbd5 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/p +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/p_rgh b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/p_rgh index 3901dae6fbc7e2ead46c5c0c77abaa568a78fbe2..b71532d2990acb63221ff88a50877f9727c05004 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/0/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/foam.dat b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/foam.dat index 55fd3d629d9c1b6e1a27c55d525bd4a6f742c85d..21cfd538c90a4ff1d37186f6f331e02fe59323aa 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/foam.dat +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/foam.dat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/g b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/g index f1ac736cb343c2c965b64565fd3352e6a35ab943..ee6cc230a537a964d80bd42284ab85b71f7458d7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/reactingCloud1Properties index f5bf54949049828b0dc9d02b00c37756688ddcdf..2a5d7d86f670b42f370b3bc708fee80f27d254d3 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/thermophysicalProperties index 3a3b1c6e711f74c494c87bfb7779270a2c3283f5..7b13df33337d26db10ada47112b3a9dfb1ef1449 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/turbulenceProperties index 36bbbff19cb7d5a2f8d49b9eda7c73ecffe874c1..fc525261a719de930d0bb1ba1a45f3e4c8942652 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/blockMeshDict index 0c2792932be91ac6c529d6f3a423343f5916e2aa..49b9c3e0725369c4d58c9ace5175fa120b016446 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/controlDict index 6ca4ee62c49d09eb181680c3a31a88297e7f3105..e68ac80b844f72c940731daeb8aa91fb33928110 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/decomposeParDict b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/decomposeParDict index 08503c0d08eb25452da6de33103bc2a4878e9c96..5029e3f08bb4536d169ef26e4f770d741b6af8c7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/decomposeParDict +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faMeshDefinition b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faMeshDefinition index f3e435003c1ba7036424c05084dfc65c553e46d4..23348b55ba8a1e4997e131a79c9e88d17efba3ed 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faMeshDefinition +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faSchemes b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faSchemes index 93913efce64d8b55b93f4dbe18a69f67c3ad70e8..8efc56d7d3050e99e498e6b1ba27943bc9ebf1b7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faSolution b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faSolution index 55f7f7eb2b9d8b40534b8ae6920ec7422c0b3b6c..8320d2cc752c5ab20cbe0096acda15d4b08cd3d0 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faSolution +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/fvSchemes index 2fdfe0b270c7f61b6cc500670816af02c440da17..db61773bf1411f45328a6510f8c3f7875c6abb6a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/fvSolution index 5dd76e8e146edc58e7add720901e34459a4602f8..3b1768db6bfba043e5d69b64fc8c96260b23d99d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/liquidFilmStepWithSprinklers/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/G b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/G index 9603dd637f7661d4eb9346013ce3af3f723cdf8e..d325d7d12700e27ea1d12ee6f38e3be57e89b9d3 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/G +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/H2O b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/H2O index 4e9145975ddcfa3ffd0a6f1340837cf228d26e0b..a579d2aa297c8efb16f925aaa37fd2f690be135c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/T b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/T index 30a90f48c14706d456e678565e87a6c6ceab6796..8529f33ca5e0d21f147210d99fb1cad08a7542ad 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/T +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/U b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/U index d1df69e45ca1fc74acfdd32869ca1a11861511a1..9f234d316cebf7c8b337b2921201656631f0b9e6 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/U +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/air b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/air index 91066b71e0387037bf234349b0865635c49209aa..34fe28d3ac9519ec14b62cd2be6c0f47c06633ff 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/air +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/p b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/p index ee0dff2856d44c67dc2420c6afb9cfc2d2f87dbe..7c1a70d913247ee296911d9f91187588190fddfe 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/p +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/p_rgh b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/p_rgh index bb3fd126cb6080b17746affd8d0ea40105d90645..56dac13a5d0f2f1a6d11a72478a3119b39c86ffd 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/0/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/chemistryProperties index 5f81f7124cc9d3c2e6c9c20c5f8d96804f6c6c91..5561a1babe047626f1583c6a48ebc0f7b1e50af6 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/combustionProperties index 1ff7d55e636bcf8fd41d3750700a004d52c7f975..fd3751776f8cc3ee167044882da18a14549ceaa8 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/g b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/g index e137e36f19ce9a2cab3cb7257cbba4ae6960a30b..cecfbffb34bf81debb8a7b8d8230eb2cb1425574 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/reactingCloud1Properties index f42217d614e6dda280cd977743bae7cb7c60cb0e..cd9c3a55e1d1e8735c729c1dc3a3345b324af349 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/thermo.incompressiblePoly b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/thermo.incompressiblePoly index 5e4f2c2b109a88321b73400223df7396db529e49..8c9727d73480d1abb5c5221376d82947a7f83ecc 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/thermo.incompressiblePoly +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/thermo.incompressiblePoly @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/thermophysicalProperties index fbb66a1bd6f500bf5ddfb7c6478504fbec95fad4..71338580861d540e4a198e9fae48e48b38cdc536 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/blockMeshDict index c65831f5f3a3baf9441045ecfb88c5b14c3ee1d1..435f0df31ff8df77e522d959583a4aeb67119d8f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/controlDict index 04275b9c5b2f32a868c3eae69b8f740e953ce782..9a5e0f5cf11994d30ab60357b325e399f614e3a1 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/fvSchemes index 3ea681e55cdf73d7f41edde25171f50d3d293941..edd7f293e1e89ad7761db56ec50048742e12c362 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/fvSolution index 2683fdc06ba67dddca274be72dea0ea0172d8bd2..2f7cc67fbfafd20bff0eb7eb5bb1c77ea844c457 100644 --- a/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/movingInjectorBox/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/G b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/G index 9603dd637f7661d4eb9346013ce3af3f723cdf8e..d325d7d12700e27ea1d12ee6f38e3be57e89b9d3 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/G +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/G @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/H2O index f01781b405c8fd0e5c8392c9b7f4479e17f16b28..2e419eabe073c6f6fb0cf8735d80bfaaea1c2017 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/T index 9656cfc48eacacf22d8cec0370b93faf2cb29fa2..43eaed80472d10d12a0300699ca7ec7be206d47d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/U index a4c48261f41bb9a1f3abcf075b5914a9c3417c51..6562d9dc5bd17e90707f3f3cbe5533b66fb33893 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/air b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/air index e8568e34614dc6eef9cebc39eea8785bb6a1b187..b3675b29b85f3c5639245abf219a233f322ec16f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/air +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/p index 21f775fbc70cfe4b02ecb3d9c4d6cfba1c45d003..ae6463b712191a7cfa6f7afa592495744d81e4e3 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/p_rgh index daf382ea50f0130c00b56b569f63ddbaaa611422..e470cd85ea28b6ab58c349608c30028d08aefc15 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/chemistryProperties index 5f81f7124cc9d3c2e6c9c20c5f8d96804f6c6c91..5561a1babe047626f1583c6a48ebc0f7b1e50af6 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/combustionProperties index 1ff7d55e636bcf8fd41d3750700a004d52c7f975..fd3751776f8cc3ee167044882da18a14549ceaa8 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/g b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/g index e137e36f19ce9a2cab3cb7257cbba4ae6960a30b..cecfbffb34bf81debb8a7b8d8230eb2cb1425574 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/radiationProperties index 8aee24e2bd6ea940708d9b07f3e5f142946abf31..bd9691d18df2d1ec2d9d488095aba6b04d8eb8f7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/reactingCloud1Positions b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/reactingCloud1Positions index ded680b16d94170733524e5824c5aeda66d4d7df..18828ee571c52f3676415c6aabefa63fbe6d19d7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/reactingCloud1Positions +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/reactingCloud1Positions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/reactingCloud1Properties index 0525f386dfb857d70884f21cbc19d30ee031ae42..c9fce13c8bc8574acc439f16556d0ee600edb342 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/thermo.incompressiblePoly b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/thermo.incompressiblePoly index 89d35671c42000c9d0d2cc810fb6b7002595de56..2cb3bc2aede245e8f3c4163296232a9d47a382f4 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/thermo.incompressiblePoly +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/thermo.incompressiblePoly @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/thermophysicalProperties index 1b45f92970b879b7427af361ea9ddba147161c98..73a0ee6e85c2149eddd2e59ade0cd7ad29c4128f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/blockMeshDict index c7052ec7f637d159165b775b366c920cc5f20651..e1295943c83d48e7190e795d00444b6ddef6e71f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/controlDict index 370637548438cfeaa2207cf3a46cc51172ba7fc7..1253e511a127486e225a519dd26f02bf36f181f2 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/fvSchemes index bab377f197a2e6706041725e50a1b2e3ca044c1e..502eb4b11e58ff8b74eef4084ff076abc7a99ed6 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/fvSolution index c4f01ab85c8efeddd939a02c715512b30efbb208..352e58793e3663073ac8f187d638424128c35c30 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/probesDict b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/probesDict index b91cc96791c7153382ca8b4cfab9c15afb555ac6..04250c836ceb2642d9c5e5977b4c1222a3dc4c16 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/probesDict +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/probesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/H2O index d36d723a7a1ccfc14ad14d3dc6be2940115bbf83..39774a747ced39bcc0480805cfbfc6b04d218417 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/N2 b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/N2 index 05380071912dab974efac053de2d4b3a79bdf338..57ed1a3cc3217d7ed0a489dd02b1d570f26adebf 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/N2 +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/O2 b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/O2 index 0242aaad91b813e0bcd5f3752ec53935413e3a1a..7aa1466f717e63a9ecb168a4d8a953660d58192f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/O2 +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/T index a5b3a74678a5a77029957054844bb16aace38063..4e6087293ab990d7edb8122da3c923287ab46bd1 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/U index 3ae034396726c6a10fcc17381b20b887d33e19a9..60dbceb9cc1efc2ea54e084abcce12900756791e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/alphat b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/alphat index b5ca3535e44a14f5cba56bcaf442a9e9af7df3e1..bfa3e055c1c6bd5c5d2880e11522bd29f4a32d0e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/alphat +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/k b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/k index 341873e269927f4f68e4c33bafca2106d57e5d5b..dcf955e179173b1741d26e71c3ae661fd24e7118 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/k +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/nut b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/nut index 61e630c4a357ee7cb2c746c92de9d82dfee8cc47..b8128a4525f276ff0b3246204fea0360cc24e888 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/nut +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/omega b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/omega index 6425ed3806136620bef23144dbdcab7647e754b4..bd50eeebad67e4827fce68695e4a93f6c8ebe063 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/omega +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/p index b682fe6a2f62ae2c298f919ab079ebeb2117e4e1..e0821d7d5f8f2be11a5e63d4e9a25476d8b5bf15 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/p_rgh index 746ffdd8af859bb46b8a378c9d31dc90826f880b..b155e791ab5f8c7a5c6460404241dcba60d1033b 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/chemistryProperties index f7798836e1de6d8e58e8d1b5a9f08a3ab1c57019..c9e0cf0a4a3cb6752ac277f5031b1cf3a0613d00 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/combustionProperties index b691a5baa2ffa9d3c0cb7ce3bc79ad865d79eeb4..6e8baafb67ce231ebb9dc4a842f89270300095cc 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/foam.dat b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/foam.dat index 43121f99c5c6361233516e08ec09a64f31d21c94..007668dfcb0712de89f2764723f26e8f7028806c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/foam.dat +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/foam.dat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/g b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/reactingCloud1Properties index e8c7a53427056a748c9032b0bec6786c15110e9b..a06e99bb241fc59108c192751a98113220fad401 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/thermophysicalProperties index 9c0c705ac52693fdcef2e6d48bb92dcf52c268b7..be45340773405b50c181bc9268341acf98b45499 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/turbulenceProperties index f03c65e40afe223431dc2e69ccbfdcd8e3f2d7a4..c7c3d8869ce7af7e294437e47eefdafbf1c39f67 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/blockMeshDict index 53e01258b10e3025f21bc70939393b8d001b6a03..d95fe7c31e8a4ef7970880019e1a2695a5343129 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/controlDict index d03eaad01102aaf14ba3552ac6a905af8eea6e77..4c909dd701d905325041e2b42839f19081d6ecb7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/decomposeParDict b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/decomposeParDict index f583b45c91f9bceb8a776fc67cb197f3242b65b8..4a72bcb0e8369eae05ee072f9fe6a53390e50949 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/decomposeParDict +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/fvSchemes index 0d96da2a6cc8495477ba7b621785455fd8268d33..6d20e21d849cd6bf25452b6c02d79cc589d75327 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/fvSolution index 218504d38f5040697cb9a91da50141c3a269c32e..6ae113cdca61b20ec63bbad412b58be427e62c68 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/rectangularChannel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/H2O index c2ba7522f2b4448199ff7dd4c1daa4728262af50..187d5a701773691bddda7dd32ea8dd80f7fcc17b 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/T index 41d389811c3d58e778cd6b689fc121380cc5274f..26e427894ec3918f4d271e8ef30873083a5112f5 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/U index bf9a320033e55d24d973dd3ec6b130598b0ac7eb..6de3da675f42b275da9c02b57078ac0ca34c8902 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/air b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/air index 8ff2875d77cb6693e1a8ec7c81d62cc21543f407..b60d7d38b3e4a59b79991bb6cd7db016e355e400 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/air +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/alphat b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/alphat index a01b3e5f3be1948a1a77023682211452f6482df4..08a5fd4f67c16b6ebf019e2bcbde8228e7efbb34 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/alphat +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/epsilon b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/epsilon index cee89b343aab8077fe24ba17a649c88f6dd5213b..c0c948b9f20d25eb74b7bc3ce0168bda2f2e3001 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/epsilon +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/k b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/k index 9c00be6fe2c5ce07ce760acd7624a70e8938ba1c..06057b7f720d237176abc5297a29947a76b8a3f4 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/k +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/nut b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/nut index e639b4a033ed25efd731341b3c2ac68555730233..90912388b90fa147b89b646d6f8090b84ffdd60f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/nut +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/p index d3fa77b8880506f27253d4905ae71f42a1537a66..f361ef667bc7f03b3ac5c901d83d919c9f01da7f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/p_rgh index 318dfd7d275074adb9c174771b3be91f2eadb433..8b28b8f3c3cb18135dc18357fb407305ab0b496c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/chemistryProperties index 42d7279fad4a4adb21a8db0c75af5e406410272f..f6ded50ea0eafbb0237cd8d6c694cdabebaf6f82 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/combustionProperties index 1ee78eb5a6f4c022b6078ed342adbbd3ff903b70..058b581bf9d562e6aaee9dee4fb5f3937a10fda9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/g b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/g index f3f73f48f66fd419fd91ac10d67c09b2b0198fbc..ed98f58dc864cfbd49cced2fc5acd77c0532dfdb 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/reactingCloud1Properties index ead242ab143f9d192ce8ead2161555e6ce16c515..4fde9e561e59e9122e63f434f8ce8a4083258c70 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/thermo.incompressiblePoly b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/thermo.incompressiblePoly index bded889fb8d3667e0dd5f8bdc6bc8f3aca5bffeb..c7682d06b14a3e7907a58400f4d4e91448117eb7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/thermo.incompressiblePoly +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/thermo.incompressiblePoly @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/thermophysicalProperties index ceae51bf0ab787d48043eea019be97eed3b8fe90..c53ea4a72ce42c71662764f6b2ed87dc93fae64a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/turbulenceProperties index 32c6219cd125c445d0e490219c2da318c355e7dd..5079284ca40553d5be4df2bbd6c57aabcf8c9b9a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/blockMeshDict index 7a4a1596856174c3b769d08e71fcc501ce6df73e..81e4bdab0ec2e2613e81d62328fc3c7afef6796a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/controlDict index aad9e102776a88e4a3a3a3b85bb497ecb7ecf80c..9e2c4b89143f073ceb5b3d495af94ffc8ba6c796 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/decomposeParDict b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/decomposeParDict index 4e4e597538b63c645df72a991dfa3bffd0f61e93..ee563d263c588e612857594c56062ec271de97cc 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/decomposeParDict +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/fvSchemes index a8de8d00aa17022ecb5c78747c094bcfb64531e3..bd556c52254ca8207a6f3e52b7085ec8ac65c3de 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/fvSolution index 5c5b0ad2024739789924f0cb0f548c47a3da37b5..897c4b928e2d0da0579ce4b9cc99b17db91cc1fc 100644 --- a/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/recycleParticles/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/H2O index ba6b369da537df8f5fdf1899d565555f778590b9..f700526bba2192051150cee057e4b10e7c894193 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/N2 b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/N2 index 28161e35033bad7a7f315943fa06ddf48886e166..380ded94c26e770b7952288ac3b8cde7728eb6be 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/N2 +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/O2 b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/O2 index c142ee24eb4d48906386d0c58b98235735e6b1a0..f12f3283318789ddff00e32c77995a3d61cb229b 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/O2 +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/T index 8b2c6a0de4dfae02554e159ab97e572689ecf1b8..d1badde7b1eb2b325636d13ce7f1a20f90d5c7cd 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/U index c815c086a5a1a047b5ca6d228b3960a16ad43328..449d5cf26fa5ecc8d56f8696f23fa979b9605af9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/p index 7ea8ddc27904de6ba7d9e4343bb02b425b453d81..ee8dcedc7750bc903bb59832aa678b0f19fe7d02 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/p_rgh index b6ef66de10152cd069c6fc38178ce271e7288051..360f76846efbca34360e5d1a8188fdcac03637c4 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/Tf b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/Tf index efbf3f47d915fccc7d8c18f2a67664f1e9233385..4584e005a1db639204b5d4c1b6239365389bcc0b 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/Tf +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/Tf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/Uf b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/Uf index 0a9ec1c334e9dffaef64ce34f353299a88596c7c..2f44a3138069b3910a4ad13feebcfc4eebb6d124 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/Uf +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/Uf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/deltaf b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/deltaf index 138a1b7aff8fe4d8d7e9be19b64d00975b3217a1..39b714f1c677d50eae0fef990547e7d2e1938679 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/deltaf +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/0.orig/wallFilmRegion/deltaf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/chemistryProperties index dd7e1f6355216e5db552d7c8d0e5ada9a5e4d3b8..13e611425a92d0112f40fe649693404c4f2c4f4e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/combustionProperties index 1ee78eb5a6f4c022b6078ed342adbbd3ff903b70..058b581bf9d562e6aaee9dee4fb5f3937a10fda9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/foam.dat b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/foam.dat index 43121f99c5c6361233516e08ec09a64f31d21c94..007668dfcb0712de89f2764723f26e8f7028806c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/foam.dat +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/foam.dat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/g b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/parcelInjectionProperties b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/parcelInjectionProperties index c72fc19f590fc0c61342b5dc701af4fdbb23a9fc..72d10d2110ebf705749266de69bc3291c2fcad16 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/parcelInjectionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/parcelInjectionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/reactingCloud1Properties index cc747ce112d2d7841f84c7abbc6878bdcf1e0947..a69cd2f1bd2ee75c38111f6843cf747cb8f59afb 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/surfaceFilmProperties b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/surfaceFilmProperties index d735281cd1077da3b05b4ec99511b70e6e663764..cf45a295e0344ea92986a12f33a32ebf97e6aa7f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/surfaceFilmProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/surfaceFilmProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/thermophysicalProperties index 11f1fb3b01297ece88d0dd1367a2c658b805a8e3..672ecf8c7c527a161d52c7e41b2b4abfa91d9c06 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/blockMeshDict index 1b11c84ebd949f8dba6f9d90619b7bc33b13a701..783f8211ba0e96d17d9ec84b8443c03597a39d87 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/controlDict index 6e28cfae1d7a42b758b9e167c98113713ddf45de..a3432b1c92a2aeed0558b882175c62e3dc7afb84 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/createPatchDict b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/createPatchDict index 102544d696d4320959c75f1ac16b1660168825ac..8a3df1fd14e6414dacd58561985af940bed73237 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/createPatchDict +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/extrudeToRegionMeshDict b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/extrudeToRegionMeshDict index 39b88af1dfbe1008e098b7c3e5765f04abb43afc..0368c737e99dc26f34923af2061c15b7d344b2bc 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/extrudeToRegionMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/extrudeToRegionMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/fvSchemes index 811b6cc5d1ebd97b560c494c0b2c2437cd320b29..124b03e44f7c1545aec6668567770015ae4387db 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/fvSolution index 489817e6e04ced42ee6543b8d6b35ddfca8745ba..dcd0b49dd7f4b5a4b85caeea5a25438c557d9c71 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion.topoSet b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion.topoSet index 3f59dc6f1c3f5fa7959eb5a15df4d7ab1ad43713..e1db35e872696da52a20e78e9f0ab858dd0e2906 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion.topoSet +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion.topoSet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/createPatchDict b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/createPatchDict index 7a9b2683cb23b4ba8369888190c6111c5790f763..a2234a9009d5480ccc1fb46499404d0d59b75fd9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/createPatchDict +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/fvSchemes index 1ce11a4062dd92d50d8a2e6b2fee3beb44b44e1a..14ca2035b749bcf5861b92d38b6b1dc7809b05d1 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/fvSolution b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/fvSolution index 96f6eb70cc2b7668aad1c21f0281697ee67c0680..ce774944d8567b550b973e9cdbd1ce7826c9662a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/rivuletPanel/system/wallFilmRegion/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/H2O index a3d2c5c9a96894bb1217c530250573741b6688e0..584b05fd1e4596adc3531fa5497f80ea16ed44b3 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/N2 b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/N2 index e3fe3e1f925ccf69bbef3714933e3d6fdfa28caf..636c6259f38b31a22ed01c0117ae223a1baaad25 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/N2 +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/O2 b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/O2 index 03937d79eea3db134213c8d21c0d3f6babc8ade6..aef01d61e326ef139b72c88f414de651b367f522 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/O2 +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/T index 7a59ec01d6d970e30cc274da25783424253124cc..67870ef00b8241d041919b2a30c3744fdc570919 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/U index 765ef261c4c9ee44b31c4707526194ae7a763f37..a45af717d9d180d4fc6ec7ea18c0f394664507e7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/p index 322975966e1a106cefe84a24c185748228394307..bf99bb2934d4f0c09308cc1b0e58aff0f53f3460 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/p_rgh index 4700410486c6324235efaee805682f2444ff481a..d8f5042e33d3c8d6fa42f93a8e162f4102ffeb1f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/Tf b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/Tf index d3b47f3b5844a193d52d09bceea1fe3b2ceb2b61..65d6299521a06ebf89b67c8ca5ce7fa949bad76a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/Tf +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/Tf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/Uf b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/Uf index 94932e50694638ce86ac7729647e758d721bd7bd..eaf15a9b27aba9f3c37357f59c101b3cdbeb8e5d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/Uf +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/Uf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/deltaf b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/deltaf index 94204c86acd4da04573f540f9dce1345b07c6a89..877cb898b357f80444c81b05aa2c3a06a351e4cf 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/deltaf +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/0.orig/wallFilmRegion/deltaf @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/chemistryProperties index dd7e1f6355216e5db552d7c8d0e5ada9a5e4d3b8..13e611425a92d0112f40fe649693404c4f2c4f4e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/combustionProperties index 1ee78eb5a6f4c022b6078ed342adbbd3ff903b70..058b581bf9d562e6aaee9dee4fb5f3937a10fda9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/foam.dat b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/foam.dat index 43121f99c5c6361233516e08ec09a64f31d21c94..007668dfcb0712de89f2764723f26e8f7028806c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/foam.dat +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/foam.dat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/g b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/parcelInjectionProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/parcelInjectionProperties index fc08a0725435a710563babde0bb37d2fa0dc9417..149e80dea248feab247d0f7b46a3cacaa1b3bf2c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/parcelInjectionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/parcelInjectionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/reactingCloud1Properties index c872269005347110d948359335bf50cc8e35779a..918d517dee964ce54703057d772df6c075c02f62 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/surfaceFilmProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/surfaceFilmProperties index 4fba8a103386d1417d60b15b85989358edc5f145..28cef7c44d1e25921572ca4656a3ce35df33950d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/surfaceFilmProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/surfaceFilmProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/thermophysicalProperties index 11f1fb3b01297ece88d0dd1367a2c658b805a8e3..672ecf8c7c527a161d52c7e41b2b4abfa91d9c06 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/blockMeshDict index 22dc87c043db624f437093002c5964ef829eb6f9..4d8aaaff4f711c23eba87ea7788cea6c30200d5c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/controlDict index f661dffb97773be6bcfb4f571ca6a84332d1a662..fdf2735e06e8dcc2790e42f0c0fe4c16b10e0f59 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/createPatchDict b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/createPatchDict index 102544d696d4320959c75f1ac16b1660168825ac..8a3df1fd14e6414dacd58561985af940bed73237 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/createPatchDict +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/extrudeToRegionMeshDict b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/extrudeToRegionMeshDict index 39b88af1dfbe1008e098b7c3e5765f04abb43afc..0368c737e99dc26f34923af2061c15b7d344b2bc 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/extrudeToRegionMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/extrudeToRegionMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/fvSchemes index 4bbcaede22838ed41a6629a1f90acffb5454b9b0..8cabaab590e26a9a39d49fd90d77e016c2729100 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/fvSolution index b82c78752d07619ca45d4894bffedaedbcd30789..7314702805264acab895ee37cd4ebf4f05457559 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion.topoSet b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion.topoSet index 3f59dc6f1c3f5fa7959eb5a15df4d7ab1ad43713..e1db35e872696da52a20e78e9f0ab858dd0e2906 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion.topoSet +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion.topoSet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/createPatchDict b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/createPatchDict index 9bbb14ff629f76877c273985b09b4218a82bcec1..851f4f8ee97d0b95a2c0b94a28d7099b273a9250 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/createPatchDict +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/createWallFilmRegionPatches.topoSet b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/createWallFilmRegionPatches.topoSet index 88239b5b0f63dee5a3fde4fe6cad47c7d78176ae..8eecc1705898204ac9bd33086f1b3921f93d0aaf 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/createWallFilmRegionPatches.topoSet +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/createWallFilmRegionPatches.topoSet @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/fvSchemes index 5070bcad30d2da084daaa1a6e2857a13d1823f1f..67dd986f777c2af08dc7942a3d17a8d9fd7b04c3 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/fvSolution b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/fvSolution index 40a1842d307883408c517299c38e4ce5ed39ded7..afc6978e6cda5cdc0e64e809fb94186860189087 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/wallFilmRegion/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/H2O index 27bd7d210db9804804f849ff4fdf36464c8ff9d0..7bbdbf4f129b1d7060dabad093d464e93cb4c8fa 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/N2 b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/N2 index 452798e49df30ec5b8d58a92f04b04219a748676..1de84603e4321e49e57c49ff86a7b81e65f16a96 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/N2 +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/O2 b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/O2 index f75bbe1dd000d986ee913b99ee414a4d94c7458b..78a5006290c4398acade82e8ff4272cadbb66341 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/O2 +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/T index 203ea78cda1bfa8e66665963f2c24e088eb2ab4a..de1f3a3d89b27b21f618538872fda2ba53dbd7ea 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/U index a5f15f66ead2452530afe42ce947cf0fe1bb193e..163f081b3b14617584a164a410a0ed712a3e174f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/Tf_film b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/Tf_film index 88b251d5d4f4312392c04f1e6077cbb6f141f8e8..95c9ede4bc0376a9b510d87f283908e5add76832 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/Tf_film +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/Tf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/Uf_film b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/Uf_film index 42ca5588ce57add4cb027a65b221ad65c2625d97..4bcbdb9496f6ce74e89da51962ebccd8e2ad47ee 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/Uf_film +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/Uf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/hf_film b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/hf_film index 4c73ab8c9f15f5235993af07e1475f5ef6fd59b3..a15ecfc8795785d5bb6c3ee9eb42d0e0e71f2faa 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/hf_film +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/finite-area/hf_film @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/p index 72784c00ca293610bf45ce59e232f749650ffa39..c8c8daa602208586625fb0083c6a5a8f243de565 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/p_rgh index 936a67a5de5961ceec7d74df778b0b0cf34615bc..d0d065c7957473728e64c846ee08cb5d43f8a3ad 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/chemistryProperties index dd7e1f6355216e5db552d7c8d0e5ada9a5e4d3b8..13e611425a92d0112f40fe649693404c4f2c4f4e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/combustionProperties index 1ee78eb5a6f4c022b6078ed342adbbd3ff903b70..058b581bf9d562e6aaee9dee4fb5f3937a10fda9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/foam.dat b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/foam.dat index 43121f99c5c6361233516e08ec09a64f31d21c94..007668dfcb0712de89f2764723f26e8f7028806c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/foam.dat +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/foam.dat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/g b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/parcelInjectionProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/parcelInjectionProperties index fc08a0725435a710563babde0bb37d2fa0dc9417..149e80dea248feab247d0f7b46a3cacaa1b3bf2c 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/parcelInjectionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/parcelInjectionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/reactingCloud1Properties index c872269005347110d948359335bf50cc8e35779a..918d517dee964ce54703057d772df6c075c02f62 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/surfaceFilmProperties.remove b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/surfaceFilmProperties.remove index 4fba8a103386d1417d60b15b85989358edc5f145..28cef7c44d1e25921572ca4656a3ce35df33950d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/surfaceFilmProperties.remove +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/surfaceFilmProperties.remove @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/thermophysicalProperties index 11f1fb3b01297ece88d0dd1367a2c658b805a8e3..672ecf8c7c527a161d52c7e41b2b4abfa91d9c06 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/blockMeshDict index 746b4f1d07afb89aced9bbd82ae61d5cac089a72..10097b530444f2e6b01da05f4aad2f446a3e6f60 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/controlDict index f661dffb97773be6bcfb4f571ca6a84332d1a662..fdf2735e06e8dcc2790e42f0c0fe4c16b10e0f59 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/createPatchDict b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/createPatchDict index 137ecf0a9a487437a3762ea4119f82198d00ada5..b6b0467634482a6dbf6fb79501fd25fcf526dedc 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/createPatchDict +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faMeshDefinition b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faMeshDefinition index c90e2b5c159e734bf0b492f7cb0034b587dd704f..c18d9920f0028283ba6501483191c8fae0271d8d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faMeshDefinition +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faMeshDefinition @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faSchemes b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faSchemes index 93913efce64d8b55b93f4dbe18a69f67c3ad70e8..8efc56d7d3050e99e498e6b1ba27943bc9ebf1b7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faSolution b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faSolution index 55f7f7eb2b9d8b40534b8ae6920ec7422c0b3b6c..8320d2cc752c5ab20cbe0096acda15d4b08cd3d0 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faSolution +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/finite-area/faSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/fvSchemes index 4bbcaede22838ed41a6629a1f90acffb5454b9b0..8cabaab590e26a9a39d49fd90d77e016c2729100 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/fvSolution index b82c78752d07619ca45d4894bffedaedbcd30789..7314702805264acab895ee37cd4ebf4f05457559 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/topoSetDict b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/topoSetDict index a59728176b7c0426bd40f10a919e52b48842db28..2469d0bb3d4d5a646a04778aa448463ae7e8e647 100644 --- a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/topoSetDict +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/H2O index ba115d8517f52fe7a02f4ef23d385d8f6c64618e..a3dda22f22e3ebd6f45698c3bc69d318df726b96 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/T index ebf49625e4d818f05eae7bdd7e549c5122493cd3..960a646b10e2dace01879da061690be592ddcc42 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/U index 16d7475eec7a90efc24c644294aa97b952999c1c..afbd9303e703ed360a28f810e087b4e925cb611a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/air b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/air index 565865a031924601bddb7626572cef815aecf82d..bfa0634cf1dcba54b54e375b4349780ba9a4b850 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/air +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/alphat b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/alphat index f99870b1675ca9a4f25f385f2f76b4e909509aea..7ec9812ed150c9f7f86324c26b67e3123e82e7e9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/alphat +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/k b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/k index 05da824e1bafada76c62f0a2b0dfb764c867a666..bc1b4517d6e19a6342ac78bfbfedb983065b5be8 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/k +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/nut b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/nut index ac9e5d970db0ba3842d9624ae705a512531e6e74..a46bff83627af9f9d9b2f105d173fa2f98c31cbe 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/nut +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/omega b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/omega index 57ccfe094d04de6e2e7740c851a978f7fd56c48b..35ebf05190878763d7a35547587e0e843d8dd71e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/omega +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/p index 3e1fa2464565570e3ea080ffdda94d73f8c466d3..bb5e02ff9061a358f014022fce34f93c76f48363 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/p_rgh index c97e0ade4515af9c4f8e64ee7f2085e827ec224a..973e84397c3e258e81f9643d79bda48bb6a3aa65 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/chemistryProperties index 5dd96628574e364996744daae9263e051a98851f..a71f7bb516ca032a92b820613e49ed3659d30e03 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/combustionProperties index 1ee78eb5a6f4c022b6078ed342adbbd3ff903b70..058b581bf9d562e6aaee9dee4fb5f3937a10fda9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/g b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/particleTrackProperties b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/particleTrackProperties index ceee5410726a4f739fd718f180adabdd9cdc15d1..b4e61f60d0ed35a2b1bf3dc339c2e66c0e151c79 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/particleTrackProperties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/particleTrackProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/radiationProperties index 51d999f19a183aedea98a6a64ab9e3e9e2b54d85..8aebb09df566d0566b688fc12710430bc6f94039 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/reactingCloud1Properties index ce63fe02941f4b1f1f66f55661fe9225322c55f4..2d84f7e79317901ac52c6f6469966b694cd40480 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/thermo.incompressiblePoly b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/thermo.incompressiblePoly index 5021947ada541d772ec5ff4af247b093b0913fdf..2d629877e48f1ec60cce6222c571ce7896001099 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/thermo.incompressiblePoly +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/thermo.incompressiblePoly @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/thermophysicalProperties index 0eebed33f0b289f275c9f03d28840cd1a2c00ec9..8d26c6a17bdc583f139d845ffb61cfd9992da00d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/turbulenceProperties index 1316444ecde5dfb2e963aeccf98c36f96fc2799b..3ac6ffcc8894a56ed264196f43cbcb7cbbfe7023 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/blockMeshDict index 3596b5b5c4dc87d04617a6e2e239881240541fcf..c9c6acb816fc3362629d67a83b0e3697450a6110 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/controlDict index 9303ab2c432df75e7c1326217cd12f5c70afbdb1..67c04d8dc5e2f546c31ec8c2d92dab4ba5800075 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/decomposeParDict b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/decomposeParDict index f583b45c91f9bceb8a776fc67cb197f3242b65b8..4a72bcb0e8369eae05ee072f9fe6a53390e50949 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/decomposeParDict +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/fvSchemes index ba46b4f44e8a8243bb619d1f4971f2d5e5902065..d03719dcc3209f8b918358e4da3819d055567a3f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/fvSolution index cbf23c5f50e3384263ca382094cca00bbaac4ab7..3061f28e32e4608d0f6bfb90a0740b4cbfe271f5 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/H2O b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/H2O index ba115d8517f52fe7a02f4ef23d385d8f6c64618e..a3dda22f22e3ebd6f45698c3bc69d318df726b96 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/T b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/T index ebf49625e4d818f05eae7bdd7e549c5122493cd3..960a646b10e2dace01879da061690be592ddcc42 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/T +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/U b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/U index 5d967dfeba57122e56f49b067e5c59f77f4f4e5c..ef3d1cd4c477ecc33fbcfd9d22ec4e5134c39a53 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/U +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/air b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/air index 565865a031924601bddb7626572cef815aecf82d..bfa0634cf1dcba54b54e375b4349780ba9a4b850 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/air +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/alphat b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/alphat index f99870b1675ca9a4f25f385f2f76b4e909509aea..7ec9812ed150c9f7f86324c26b67e3123e82e7e9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/alphat +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/k b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/k index 05da824e1bafada76c62f0a2b0dfb764c867a666..bc1b4517d6e19a6342ac78bfbfedb983065b5be8 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/k +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/nut b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/nut index ac9e5d970db0ba3842d9624ae705a512531e6e74..a46bff83627af9f9d9b2f105d173fa2f98c31cbe 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/nut +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/omega b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/omega index 57ccfe094d04de6e2e7740c851a978f7fd56c48b..35ebf05190878763d7a35547587e0e843d8dd71e 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/omega +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/p b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/p index 3e1fa2464565570e3ea080ffdda94d73f8c466d3..bb5e02ff9061a358f014022fce34f93c76f48363 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/p +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/p_rgh b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/p_rgh index bb5aae218c8c45d950598fa1204cf23b7f3a6a17..d39077ea0655ded248766244ef454f682c0f45bb 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/p_rgh +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/chemistryProperties b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/chemistryProperties index 982aa408518fa486af58d00dc51176f6173e695a..37b193eaeccb865d3deb26ce28032b777cec5ce2 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/chemistryProperties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/combustionProperties b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/combustionProperties index 1ee78eb5a6f4c022b6078ed342adbbd3ff903b70..058b581bf9d562e6aaee9dee4fb5f3937a10fda9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/combustionProperties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/g b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/g +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/particleTrackDict b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/particleTrackDict index 38bb4f4cc835959d833016aa3bc65582e0fadfe1..66fd0fc4ce92d7337549e3c60b868258635651ad 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/particleTrackDict +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/particleTrackDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/radiationProperties b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/radiationProperties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/reactingCloud1Properties index 62ff00b3083a1f5dd337b9a245a6442201166851..30572d59881fbcca9bbf02f556a55c4bbd5792ad 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/thermo.incompressiblePoly b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/thermo.incompressiblePoly index b05c0024fe3a6dcfe9131a379751964b4dac7511..f4380407c16010274b6533bdbb645536687d0ab9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/thermo.incompressiblePoly +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/thermo.incompressiblePoly @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/thermophysicalProperties b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/thermophysicalProperties index 4b57ceb2362407c618bdcc8e732074d5e8d63578..95b6425a13cdbba949d1897be2d7320af5a36b24 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/thermophysicalProperties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/turbulenceProperties b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/turbulenceProperties index 1316444ecde5dfb2e963aeccf98c36f96fc2799b..3ac6ffcc8894a56ed264196f43cbcb7cbbfe7023 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/turbulenceProperties +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/blockMeshDict index 3596b5b5c4dc87d04617a6e2e239881240541fcf..c9c6acb816fc3362629d67a83b0e3697450a6110 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/controlDict index 0ccb42367c6aeebd283d16f48804df16c9d3ddaf..bf71aa9718b282c537aa43f539a0441befe741f9 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/fvSchemes b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/fvSchemes index da37bf03fe5dda3fbc1c6fe1bb4e9897eefcce51..741b9773af7a2eb13fb8eacb93b4d00cea6a6b42 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/fvSchemes +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/fvSolution b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/fvSolution index fe5dcbf6262f290ff8665b5358f14b40f153abf9..0bcc1f5c78b5119f2be671884ac9c2ebc37f11cb 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/fvSolution +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/H2O b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/H2O index ba115d8517f52fe7a02f4ef23d385d8f6c64618e..a3dda22f22e3ebd6f45698c3bc69d318df726b96 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/H2O +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/H2O @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/T b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/T index ebf49625e4d818f05eae7bdd7e549c5122493cd3..960a646b10e2dace01879da061690be592ddcc42 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/T +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/U b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/U index 3326f6d4ad0cfabe2d71b7aac628b4cf5f2d8224..66be39bf1e01f3aad20962dffa6bc2b63dbedaf7 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/U +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/air b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/air index 565865a031924601bddb7626572cef815aecf82d..bfa0634cf1dcba54b54e375b4349780ba9a4b850 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/air +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/air @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/alphat b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/alphat index f99870b1675ca9a4f25f385f2f76b4e909509aea..7ec9812ed150c9f7f86324c26b67e3123e82e7e9 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/alphat +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/k b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/k index 05da824e1bafada76c62f0a2b0dfb764c867a666..bc1b4517d6e19a6342ac78bfbfedb983065b5be8 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/k +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/nut b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/nut index ac9e5d970db0ba3842d9624ae705a512531e6e74..a46bff83627af9f9d9b2f105d173fa2f98c31cbe 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/nut +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/omega b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/omega index 57ccfe094d04de6e2e7740c851a978f7fd56c48b..35ebf05190878763d7a35547587e0e843d8dd71e 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/omega +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/p b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/p index ef43614490dd675763464e5ae40f16af7f19244b..9eee79c89f50815555dadbc7275cfeed7c37b750 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/p +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/chemistryProperties b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/chemistryProperties index 982aa408518fa486af58d00dc51176f6173e695a..37b193eaeccb865d3deb26ce28032b777cec5ce2 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/chemistryProperties +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/combustionProperties b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/combustionProperties index b691a5baa2ffa9d3c0cb7ce3bc79ad865d79eeb4..6e8baafb67ce231ebb9dc4a842f89270300095cc 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/combustionProperties +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/g b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/g +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/particleTrackDict b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/particleTrackDict index 38bb4f4cc835959d833016aa3bc65582e0fadfe1..66fd0fc4ce92d7337549e3c60b868258635651ad 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/particleTrackDict +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/particleTrackDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/radiationProperties b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/radiationProperties +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/reactingCloud1Properties b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/reactingCloud1Properties index 072bba53c4a49dfec59fdc458d87994348367e88..fc3e925bdba745b0aea33a1f9c1be0a917eef4e0 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/reactingCloud1Properties +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/reactingCloud1Properties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/thermo.incompressiblePoly b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/thermo.incompressiblePoly index 5021947ada541d772ec5ff4af247b093b0913fdf..2d629877e48f1ec60cce6222c571ce7896001099 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/thermo.incompressiblePoly +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/thermo.incompressiblePoly @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/thermophysicalProperties b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/thermophysicalProperties index 4f5fd67446f9b7b6751e004c5638bf5916323170..195afe4b3027a806d88f9ad45125de6ed2d6aa46 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/thermophysicalProperties +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/turbulenceProperties b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/turbulenceProperties index 1316444ecde5dfb2e963aeccf98c36f96fc2799b..3ac6ffcc8894a56ed264196f43cbcb7cbbfe7023 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/turbulenceProperties +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/blockMeshDict b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/blockMeshDict index 3596b5b5c4dc87d04617a6e2e239881240541fcf..c9c6acb816fc3362629d67a83b0e3697450a6110 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/blockMeshDict +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/controlDict b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/controlDict index 8b35e953a0b8a4986f20e0c5dbe84fd9fc62d550..68865ce8374392282ef71f83a09c4fc291f5def9 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/controlDict +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/decomposeParDict b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/decomposeParDict index a1a1da626bd1ed4145dee7bfce761b4d52d35c42..fc04e0b67c670130122760a82774414e423a0be5 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/decomposeParDict +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvOptions b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvOptions index adff9583701972612d848d60cffd61f7829fa01d..6a1379972395163121613926ad0e54111dc64eea 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvOptions +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvOptions @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvSchemes b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvSchemes index b123b5d71b00e6a66f7b502cbdc7d4a9a28983ba..1f4db95d39f97f04ca9b9306e926869fe3829801 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvSchemes +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvSolution b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvSolution index 0cc96e8cb422558d3aafeb09739b8be9bc6e7372..2028136a16ad0a8879a2deae41753c29e8609211 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvSolution +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/N2 b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/N2 index 5fb01981d0a06e12da480e668b3f6a42c48c4b29..a28aacbd88b0c60ce80a61ab34833b592564a29a 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/N2 +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/N2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/O2 b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/O2 index a0d61f981299381267ee2a6ff67acb7b95369123..36552d7efac31c7e1f198d32b3528b4e9626273e 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/O2 +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/O2 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/T b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/T index bfc5e3c3d19dccca859262ca0d0d21d9dca1d282..5e26b3af91c8a8ef8a0505a0aa86b92791efcf32 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/T +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/U b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/U index 6efa3213fbb6f8369bed31f8646c9c953e71db36..7d8028c72200d1b6f73b33ed1e126cef3be801a7 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/U +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/Ydefault b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/Ydefault index 7622689d3559aac89f60328a41abb42db78edfe2..d8b3f3324849459b2bcc2c900acdecfe6f43eac8 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/Ydefault +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/Ydefault @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/alphat b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/alphat index 67e5fcd68881a0c1a7e32bd70e2227b1537c7c77..6d8b4206a7511f91a4bd1ea3474ccafbbab0860c 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/alphat +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/alphat @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/epsilon b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/epsilon index de2f0c3f0b3ba323443e1b5432b1a6a31a3b9d16..503d9ae321614ea99b59f48d5db79175887d42ae 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/epsilon +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/k b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/k index df1dcc92e2b0fff9098079040f102a19a667da00..ecc2534848716f68aeb54dfb10e5c8a0696786e6 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/k +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/nut b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/nut index 9fecf2e42cf86a2279dac130faf622acb09353e6..98c37455ea35383bf0538be82e7e3dd74c9081a8 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/nut +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/p b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/p index 275ae98f117cb6fc2980e1955e40e0b8c8a1f61b..497fada14bae58fe0124c21770069d704aceea3f 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/p +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/chemkin/transportProperties b/tutorials/lagrangian/sprayFoam/aachenBomb/chemkin/transportProperties index 43d1d36086ab23c107e872a4544d5a55a093a00f..3cdc72308dc990929bc4a7d788b535cc1acaa76b 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/chemkin/transportProperties +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/chemkin/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/chemistryProperties b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/chemistryProperties index 49d57ded9b0fdeb237039f74c66438cd24a9b101..74cdcaf6b94c705f2500d74f6d554a3e7e9a6fe2 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/chemistryProperties +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/chemistryProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/combustionProperties b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/combustionProperties index 6102a8f92840319f0f0598d7369ff530239d3adf..9426491baa85fa6abd6805279bc629354fbf5235 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/combustionProperties +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/combustionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/g b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/g +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/radiationProperties b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/radiationProperties +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/sprayCloudProperties b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/sprayCloudProperties index d1da621d7317b942e825ddd7cfe33487b85c084e..87fc0a6e7b4117f8ae0b1c50188a3150e7145dd9 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/sprayCloudProperties +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/sprayCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/thermophysicalProperties b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/thermophysicalProperties index 4ad836d95c250e86874561f9802dacb61a1a0575..829bc775215a819684ec8bb5a60715f3171a05b8 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/thermophysicalProperties +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/turbulenceProperties b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/turbulenceProperties index cb870a2f1eee35a81c61ca6c1fbd504aecd15eeb..ea97528d608567bfc98015cac7f9e74774a77c47 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/constant/turbulenceProperties +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/system/blockMeshDict b/tutorials/lagrangian/sprayFoam/aachenBomb/system/blockMeshDict index 1c9fad34dd1d5eaa050fbcfc5872c6db476d9343..99a66d6442427ff0bca447ca200377c754829218 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/system/blockMeshDict +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/system/controlDict b/tutorials/lagrangian/sprayFoam/aachenBomb/system/controlDict index 2850976502b84a9b6c5526dbd48d029e9c815475..e4124d1ddca2a113255e43e8967c9be142ed352a 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/system/controlDict +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/system/decomposeParDict b/tutorials/lagrangian/sprayFoam/aachenBomb/system/decomposeParDict index 1358705427f6464ccf15a3908dfec743d615f4e5..34049d0ce8fec3405db4392291340f215522a86b 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/system/decomposeParDict +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/system/fvSchemes b/tutorials/lagrangian/sprayFoam/aachenBomb/system/fvSchemes index 5f25fafb3912a6bd7b1d380d630fb0e87d7abe8b..de65bc7ccee26cb18e768ae4da911abe59ee1e17 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/system/fvSchemes +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/system/fvSolution b/tutorials/lagrangian/sprayFoam/aachenBomb/system/fvSolution index 88156d88768052c6bf891d855df9544a32bf5b1d..d07ac01880d28e2f18913d4567499f8ef8a92b66 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/system/fvSolution +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/T b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/T index 3654e1f1e7582514184d79fdc795eac8c8865521..71fbaa38cdc9197e9184eecedc9e7d42f352896e 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/T +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/U b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/U index a4437254b2cdc746cd6685ccd1a229d7b628c770..88c72c8469b3218658875892ec076bb879a26637 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/U +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/p b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/p index d79da956d708328a922b6f98206dc22dbe825e62..47010abeb9ad4f18170a689736d2bedc84d7a80f 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/p +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/dynamicMeshDict b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/dynamicMeshDict index 0033cdb4f2a3c16865b80b584cf3acd6a2023913..6845070220c036bcdfe10e09ea5d0ad0c4c001ec 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/dynamicMeshDict +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/g b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/g index b761ce1685ba3e3a995005f2b6d27ba30c2a4ba8..6cee1f640c3af8fa784d2602b3035ae00bf2b314 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/g +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/kinematicCloudProperties b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/kinematicCloudProperties index ede75ba42978ccd008a053eda7e70561d5b87b72..389831a146136a6b4d53446726a73deeeb2d8816 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/kinematicCloudProperties +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/kinematicCloudProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/thermophysicalProperties b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/thermophysicalProperties index 955221cf9e33fa780e9b368832c890a2eff58f1c..7b45dfb832ae6813276571e0c4e8fde1b6e10128 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/thermophysicalProperties +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/turbulenceProperties b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/turbulenceProperties +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/blockMeshDict b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/blockMeshDict index 20cc6b4ad358c14bcb050e385e58eb29e5e84f6f..c908fa525d785169f986d472064c495b3ecd4121 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/blockMeshDict +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/controlDict b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/controlDict index 4c389be358ee7cb978f4afc90fbc6015586adc45..22ba5df5ae6973194bc7b5152cfce3b9edf2b53d 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/controlDict +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/fvSchemes b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/fvSchemes index 9c2ac3e9b07fb6eae94cac842a14ca6b6d3d3f4c..4874ceaef7cce4926737c92e9bd1449dfaccf05c 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/fvSchemes +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/fvSolution b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/fvSolution index e8557ce5edba47b55014bb9ccc589becd1cb9936..ae7311c6cedb44077b2ced003e1d5d488880d601 100644 --- a/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/fvSolution +++ b/tutorials/lagrangian/uncoupledKinematicParcelDyMFoam/rotor2DAMI/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/PDRblockMesh/box0/system/PDRblockMeshDict b/tutorials/mesh/PDRblockMesh/box0/system/PDRblockMeshDict index dfceb8b01987f824b9ed0ffc46ec4573cb433a77..2ec32bd1ff114d523a993a716ee193e247662111 100644 --- a/tutorials/mesh/PDRblockMesh/box0/system/PDRblockMeshDict +++ b/tutorials/mesh/PDRblockMesh/box0/system/PDRblockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/PDRblockMesh/box0/system/controlDict b/tutorials/mesh/PDRblockMesh/box0/system/controlDict index 14f6b29f53de26834f16fedb44a8be5a83ef78f0..d25361ed9ecb24e0205ace7121803b3801027c67 100644 --- a/tutorials/mesh/PDRblockMesh/box0/system/controlDict +++ b/tutorials/mesh/PDRblockMesh/box0/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/PDRblockMesh/box0/system/fvSchemes b/tutorials/mesh/PDRblockMesh/box0/system/fvSchemes index a04c1fb001bdd5169eaba84849ee90a2f668ea04..6fb69c2e1f7a616122bb7f4a184083051d5794f6 100644 --- a/tutorials/mesh/PDRblockMesh/box0/system/fvSchemes +++ b/tutorials/mesh/PDRblockMesh/box0/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/PDRblockMesh/box0/system/fvSolution b/tutorials/mesh/PDRblockMesh/box0/system/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..7f27acc8aafdc9c654d77e52adddcb26c0aa112e 100644 --- a/tutorials/mesh/PDRblockMesh/box0/system/fvSolution +++ b/tutorials/mesh/PDRblockMesh/box0/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/mergePairs/system/blockMeshDict b/tutorials/mesh/blockMesh/mergePairs/system/blockMeshDict index fbbd4722030bb44ecd29e4d466aa03552d0cb664..b87f9767b6984cfff72abe0f4768a93840b0a096 100644 --- a/tutorials/mesh/blockMesh/mergePairs/system/blockMeshDict +++ b/tutorials/mesh/blockMesh/mergePairs/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/mergePairs/system/controlDict b/tutorials/mesh/blockMesh/mergePairs/system/controlDict index 468b34946173297764ef3b800f2a6af7bd0e757f..1d64d41849e345a70e301564597d4b95d5e79512 100644 --- a/tutorials/mesh/blockMesh/mergePairs/system/controlDict +++ b/tutorials/mesh/blockMesh/mergePairs/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/mergePairs/system/fvSchemes b/tutorials/mesh/blockMesh/mergePairs/system/fvSchemes index 51808e9ee6d8127afb334d4da45540edfc913135..578009903f1c2e680e170200a7091f359e392c23 100644 --- a/tutorials/mesh/blockMesh/mergePairs/system/fvSchemes +++ b/tutorials/mesh/blockMesh/mergePairs/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/mergePairs/system/fvSolution b/tutorials/mesh/blockMesh/mergePairs/system/fvSolution index c67ffe5d2e00fedacf0926fef11262ee89d4096d..db196f13cfb9190243b984fc047ea9bda542b967 100644 --- a/tutorials/mesh/blockMesh/mergePairs/system/fvSolution +++ b/tutorials/mesh/blockMesh/mergePairs/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/0.orig/U b/tutorials/mesh/blockMesh/pipe/0.orig/U index 050d9fc1e7ddd566fe9e814294ea7834991700a5..c00e06f9d8ab7c7d6e08e67b373e33dc0ff0ae17 100644 --- a/tutorials/mesh/blockMesh/pipe/0.orig/U +++ b/tutorials/mesh/blockMesh/pipe/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/0.orig/epsilon b/tutorials/mesh/blockMesh/pipe/0.orig/epsilon index 4b69979b23ef474ecdbf25af3fea2df42f55325f..db0c389f2692f2cf15e959eb7bc689d80c395a21 100644 --- a/tutorials/mesh/blockMesh/pipe/0.orig/epsilon +++ b/tutorials/mesh/blockMesh/pipe/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/0.orig/k b/tutorials/mesh/blockMesh/pipe/0.orig/k index e5bf780a45c95f413c112631508c32e241489b4e..c4cff06bb9a1301439f47bce4a31896081ae9813 100644 --- a/tutorials/mesh/blockMesh/pipe/0.orig/k +++ b/tutorials/mesh/blockMesh/pipe/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/0.orig/nuTilda b/tutorials/mesh/blockMesh/pipe/0.orig/nuTilda index 24e4294cadfdd6c3a74426c5677c04c98296d46e..460b6d6b3234bf68d81f3298282d02c1fc33af84 100644 --- a/tutorials/mesh/blockMesh/pipe/0.orig/nuTilda +++ b/tutorials/mesh/blockMesh/pipe/0.orig/nuTilda @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/0.orig/nut b/tutorials/mesh/blockMesh/pipe/0.orig/nut index e511b548cde7a9c40216317c498b7a25d057005c..38b74167abe14b29b1fe9e47d0a1c5fc50b6b53a 100644 --- a/tutorials/mesh/blockMesh/pipe/0.orig/nut +++ b/tutorials/mesh/blockMesh/pipe/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/0.orig/omega b/tutorials/mesh/blockMesh/pipe/0.orig/omega index 0bfddfe0d7c741886918d2321dea43b8c5ef078e..b06678a1afe2b698792ee1c816035bd7551b51e3 100644 --- a/tutorials/mesh/blockMesh/pipe/0.orig/omega +++ b/tutorials/mesh/blockMesh/pipe/0.orig/omega @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/0.orig/p b/tutorials/mesh/blockMesh/pipe/0.orig/p index 05b0435545421e638a5fe35686331f13d80b5d67..7cdfb6ff39112a1decd2b2acfd4776a1659b8d0a 100644 --- a/tutorials/mesh/blockMesh/pipe/0.orig/p +++ b/tutorials/mesh/blockMesh/pipe/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/0.orig/pointDisplacement b/tutorials/mesh/blockMesh/pipe/0.orig/pointDisplacement new file mode 100644 index 0000000000000000000000000000000000000000..b8d1e12ec7e83509943a19dbcd624bc82ba4574b --- /dev/null +++ b/tutorials/mesh/blockMesh/pipe/0.orig/pointDisplacement @@ -0,0 +1,78 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + arch "LSB;label=32;scalar=64"; + class pointVectorField; + location "0"; + object pointDisplacement; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 0 0 0 0 0]; + +internalField uniform (0 0 0); + + +// Some macros +__surfaceSlipDisplacement +{ + type surfaceSlipDisplacement; + value uniform (0 0 0); + geometry + { + box + { + type triSurfaceMesh; + file blockMesh.obj; + } + } + projectMode nearest; +} + +__edgeSlipDisplacement +{ + type edgeSlipDisplacement; + file "blockMesh.eMesh"; + // Underrelax the displacement on edges since conflicts with + // smoothing. TBD. + velocity (1 1 1); +} + + +boundaryField +{ + // Attract to feature lines + wallsEdges + { + ${__edgeSlipDisplacement}; + } + + // Attract to feature lines + boundaryEdges + { + ${__edgeSlipDisplacement}; + } + + // Attract to feature lines + sideEdges + { + ${__edgeSlipDisplacement}; + } + + // Default is to attract to surface + ".*" + { + ${__surfaceSlipDisplacement}; + } +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/blockMesh/pipe/Allclean b/tutorials/mesh/blockMesh/pipe/Allclean index 64435d02b1407ff6f433978ca54fecadc70675c1..09746eab8109993bfc6e213e321387ad6ed349fc 100755 --- a/tutorials/mesh/blockMesh/pipe/Allclean +++ b/tutorials/mesh/blockMesh/pipe/Allclean @@ -6,5 +6,11 @@ cd "${0%/*}" || exit # Run from this directory cleanCase0 rm -rf constant/geometry +rm -rf constant/extendedFeatureEdgeMesh +rm -rf constant/geometry + +#- From pointMesh generation +rm -rf constant/pointMesh +rm -rf constant/triSurface #------------------------------------------------------------------------------ diff --git a/tutorials/mesh/blockMesh/pipe/Allrun b/tutorials/mesh/blockMesh/pipe/Allrun index 9c48a0769cecbc408f32f23493ffbd00aafe3373..bc3ee363bbed60a8b485136ece9ea41ea9ed15f2 100755 --- a/tutorials/mesh/blockMesh/pipe/Allrun +++ b/tutorials/mesh/blockMesh/pipe/Allrun @@ -11,8 +11,29 @@ cp -f \ runApplication blockMesh +# See if we can improve the mesh with a bit of smoothing (whilst freezing +# the features) +# - feature-edge attraction conflicts with mesh smoothing so faces with +# three vertices on feature edge get distorted. + +#- Analyse mesh and +# - generate pointMesh with additional feature patches +# (in constant/pointMesh/boundary). +# - write .obj file with outside of mesh +mkdir -p constant/triSurface +runApplication surfaceMeshExtract -featureAngle 50 \ + constant/triSurface/blockMesh.obj + +#- Extract features from surface (original of blockMesh). Writes .eMesh. +runApplication surfaceFeatureExtract + +#- Set the initial field restore0Dir -runApplication $(getApplication) +#- Run mesh smoother +runApplication moveDynamicMesh + +#- Check mesh, generate postprocessing fields +runApplication checkMesh -writeFields '(nonOrthoAngle)' #------------------------------------------------------------------------------ diff --git a/tutorials/mesh/blockMesh/pipe/README.txt b/tutorials/mesh/blockMesh/pipe/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4e7d6df7abedfc8d9c6a9cc1f31c3ae6f775b34 --- /dev/null +++ b/tutorials/mesh/blockMesh/pipe/README.txt @@ -0,0 +1,12 @@ +Demos: + +- blockMesh: + - snapping to surface + - surface defined by extrusion of line + +- surfaceMeshExtract + - generation of additional pointPatches to handle features + +- moveDynamicMesh + - point-based smoothers + - feature-attraction through boundary conditions diff --git a/tutorials/mesh/blockMesh/pipe/constant/dynamicMeshDict b/tutorials/mesh/blockMesh/pipe/constant/dynamicMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..7936af238f96140f8776629f005d348dc5fd1b60 --- /dev/null +++ b/tutorials/mesh/blockMesh/pipe/constant/dynamicMeshDict @@ -0,0 +1,29 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object dynamicMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dynamicFvMesh dynamicMotionSolverFvMesh; + +motionSolverLibs (fvMotionSolvers); + +motionSolver displacementPointSmoothing; +displacementPointSmoothingCoeffs +{ + pointSmoother geometricElementTransform; + transformationParameter 0.667; + nPointSmootherIter 1; +} + +// ************************************************************************* // diff --git a/tutorials/mesh/blockMesh/pipe/constant/transportProperties b/tutorials/mesh/blockMesh/pipe/constant/transportProperties index 5818777c874d622f3010d6612ae5af09139a3ad1..415941cf8b7fb2239a122db7d1934738191235d4 100644 --- a/tutorials/mesh/blockMesh/pipe/constant/transportProperties +++ b/tutorials/mesh/blockMesh/pipe/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/constant/turbulenceProperties b/tutorials/mesh/blockMesh/pipe/constant/turbulenceProperties index f4d56f742f6eed4759458d60e85d3e0c2c9817f0..86f50844891c81d8b0cb0bb8e694a25499918a71 100644 --- a/tutorials/mesh/blockMesh/pipe/constant/turbulenceProperties +++ b/tutorials/mesh/blockMesh/pipe/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/system/blockMeshDict b/tutorials/mesh/blockMesh/pipe/system/blockMeshDict index c1ddc796cf88d4cce53fe3700fa1bb000b87241b..cbcb80d5d39f9152ccf93ac5bfd129db7ce87fad 100644 --- a/tutorials/mesh/blockMesh/pipe/system/blockMeshDict +++ b/tutorials/mesh/blockMesh/pipe/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/system/controlDict b/tutorials/mesh/blockMesh/pipe/system/controlDict index b98630e1a02dc49fa726353aea72d02fdbde16ff..bc966b1281a516e947fed91b0300dc7161a0be98 100644 --- a/tutorials/mesh/blockMesh/pipe/system/controlDict +++ b/tutorials/mesh/blockMesh/pipe/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -14,17 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -libs (blockMesh); - -DebugSwitches -{ - //project 1; - //searchableExtrudedCircle 1; - //projectCurve 1; - solution 1; -} - -application simpleFoam; +application moveDynamicMesh; startFrom startTime; @@ -32,7 +22,7 @@ startTime 0; stopAt endTime; -endTime 100; +endTime 10; deltaT 1; diff --git a/tutorials/mesh/blockMesh/pipe/system/fvSchemes b/tutorials/mesh/blockMesh/pipe/system/fvSchemes index 42ffbc9465f45a6653466a0df3130e9cda157acb..37d2881ab5ea2c3dd27c34d7d544ffa10dc5881f 100644 --- a/tutorials/mesh/blockMesh/pipe/system/fvSchemes +++ b/tutorials/mesh/blockMesh/pipe/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/system/fvSolution b/tutorials/mesh/blockMesh/pipe/system/fvSolution index 87030c47ce3f07b717118e4d7ece9ecdced599a9..38554e48bcd1c648c0ba1873a508eabee704dcb5 100644 --- a/tutorials/mesh/blockMesh/pipe/system/fvSolution +++ b/tutorials/mesh/blockMesh/pipe/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/pipe/system/surfaceFeatureExtractDict b/tutorials/mesh/blockMesh/pipe/system/surfaceFeatureExtractDict new file mode 100644 index 0000000000000000000000000000000000000000..7d92c37ea8efb005db271276636e17c18bd6fc59 --- /dev/null +++ b/tutorials/mesh/blockMesh/pipe/system/surfaceFeatureExtractDict @@ -0,0 +1,33 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object surfaceFeatureExtractDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +blockMesh.obj +{ + // How to obtain raw features (extractFromFile || extractFromSurface) + extractionMethod extractFromSurface; + + // Mark edges whose adjacent surface normals are at an angle less + // than includedAngle as features + // - 0 : selects no edges + // - 180: selects all edges + includedAngle 130; + + // Write features to obj format for postprocessing + writeObj yes; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/blockMesh/sphere/system/blockMeshDict b/tutorials/mesh/blockMesh/sphere/system/blockMeshDict index 7ef711d3bde6619ff85c17f6b46e035e5bce67c9..fbf6b233d7d078c0e8fed73b6fd7830c3dbc39c3 100644 --- a/tutorials/mesh/blockMesh/sphere/system/blockMeshDict +++ b/tutorials/mesh/blockMesh/sphere/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -35,7 +35,7 @@ geometry } // Box size -vo #eval{ sqrt($outerRadius/3) }; +vo #eval{ $outerRadius/sqrt(3) }; vertices ( diff --git a/tutorials/mesh/blockMesh/sphere/system/controlDict b/tutorials/mesh/blockMesh/sphere/system/controlDict index 468b34946173297764ef3b800f2a6af7bd0e757f..1d64d41849e345a70e301564597d4b95d5e79512 100644 --- a/tutorials/mesh/blockMesh/sphere/system/controlDict +++ b/tutorials/mesh/blockMesh/sphere/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/sphere/system/fvSchemes b/tutorials/mesh/blockMesh/sphere/system/fvSchemes index a04c1fb001bdd5169eaba84849ee90a2f668ea04..6fb69c2e1f7a616122bb7f4a184083051d5794f6 100644 --- a/tutorials/mesh/blockMesh/sphere/system/fvSchemes +++ b/tutorials/mesh/blockMesh/sphere/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/sphere/system/fvSolution b/tutorials/mesh/blockMesh/sphere/system/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..7f27acc8aafdc9c654d77e52adddcb26c0aa112e 100644 --- a/tutorials/mesh/blockMesh/sphere/system/fvSolution +++ b/tutorials/mesh/blockMesh/sphere/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/sphere7/0.orig/cellDisplacement b/tutorials/mesh/blockMesh/sphere7/0.orig/cellDisplacement new file mode 100644 index 0000000000000000000000000000000000000000..619aeac53e097a8a2fb847b0ffe3a01facc308eb --- /dev/null +++ b/tutorials/mesh/blockMesh/sphere7/0.orig/cellDisplacement @@ -0,0 +1,58 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + arch "LSB;label=32;scalar=64"; + class volVectorField; + location "1"; + object cellDisplacement; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 0 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + minX + { + type cellMotion; + value uniform (0 0 0); + } + maxX + { + type cellMotion; + value uniform (0 0 0); + } + minY + { + type cellMotion; + value uniform (0 0 0); + } + maxY + { + type cellMotion; + value uniform (0 0 0); + } + minZ + { + type cellMotion; + value uniform (0 0 0); + } + maxZ + { + type cellMotion; + value uniform (0 0 0); + } +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/blockMesh/sphere7/0.orig/pointDisplacement b/tutorials/mesh/blockMesh/sphere7/0.orig/pointDisplacement new file mode 100644 index 0000000000000000000000000000000000000000..635128bd6a155199e5c16f1dcfb79a2e55269068 --- /dev/null +++ b/tutorials/mesh/blockMesh/sphere7/0.orig/pointDisplacement @@ -0,0 +1,81 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + arch "LSB;label=32;scalar=64"; + class pointVectorField; + location "0"; + object pointDisplacement; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 0 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + minX + { + type surfaceSlipDisplacement; + value uniform (0 0 0); + velocity (0.1 0.1 0.1); + //velocity (100 100 100); + geometry + { + box + { + type triSurfaceMesh; + file box222.obj; + } + } + projectMode nearest; + } + maxX + { + $minX + } + minY + { + $minX + } + maxY + { + $minX + } + minZ + { + $minX + } + maxZ + { + $minX + } + boundaryEdges + { + type edgeSlipDisplacement; + file "box222.eMesh"; + //file "box222.extendedFeatureEdgeMesh"; + //- Underrelax motion by limiting displacement velocity + velocity (0.1 0.1 0.1); + //velocity (100 100 100); + } + boundaryPoints + { + type pointAttraction; + file "box222.eMesh"; + //- Underrelax motion by limiting displacement velocity + velocity (0.1 0.1 0.1); + //velocity (100 100 100); + } +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/blockMesh/sphere7/Allclean b/tutorials/mesh/blockMesh/sphere7/Allclean index d4f5975bc81100693691ef5bc2e8e027d5231e53..0d325ec274bd399cd9863381be036289c564420d 100755 --- a/tutorials/mesh/blockMesh/sphere7/Allclean +++ b/tutorials/mesh/blockMesh/sphere7/Allclean @@ -5,6 +5,14 @@ cd "${0%/*}" || exit # Run from this directory cleanCase0 -rm -rf constant +rm -rf constant/extendedFeatureEdgeMesh + +#- From pointMesh generation +rm -rf constant/pointMesh +rm -f constant/triSurface/blockMesh.obj +rm -f constant/triSurface/outside.obj + +#- From surfaceFeatureExtract +rm -f constant/triSurface/box222.eMesh #------------------------------------------------------------------------------ diff --git a/tutorials/mesh/blockMesh/sphere7/Allrun b/tutorials/mesh/blockMesh/sphere7/Allrun index c0ee92beedf30f397cf3c31f146983b44bf406d5..2da43c1d7fe8478a71dd401c154c724cbf813c0e 100755 --- a/tutorials/mesh/blockMesh/sphere7/Allrun +++ b/tutorials/mesh/blockMesh/sphere7/Allrun @@ -3,6 +3,44 @@ cd "${0%/*}" || exit # Run from this directory . ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions #------------------------------------------------------------------------------ +#- Run blockMesh with projection runApplication blockMesh +# Optional + + ##- Extrude very thin cells to make it harder. Note: requires a + ##- pointSmoother first before doing the displacementLaplacian + #runApplication extrudeMesh + + #- Refine some cells + runApplication topoSet + runApplication refineHexMesh c0 -overwrite + + +#- Generate pointMesh with additional feature patches +# (in constant/pointMesh/boundary). Extracted outside of mesh is not used. +runApplication surfaceMeshExtract -featureAngle 45 \ + constant/triSurface/blockMesh.obj + +#- Set the initial field +restore0Dir + +#- TBD. move triSurfaces to resources +#mkdir -p constant/triSurface +#cp -f \ +# "$FOAM_TUTORIALS"/resources/geometry/box222.obj \ +# constant/triSurface/ + +#- Extract features from surface. Writes .eMesh +runApplication surfaceFeatureExtract + +##- Morph mesh to the surface (.obj file) and feature-edges (.eMesh file) +#runApplication moveDynamicMesh + +runApplication decomposePar + +runParallel moveDynamicMesh + +runApplication reconstructPar + #------------------------------------------------------------------------------ diff --git a/tutorials/mesh/blockMesh/sphere7/constant/dynamicMeshDict b/tutorials/mesh/blockMesh/sphere7/constant/dynamicMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..d1c59ca2a7d0d9384a7f0493cce25a860ff08607 --- /dev/null +++ b/tutorials/mesh/blockMesh/sphere7/constant/dynamicMeshDict @@ -0,0 +1,53 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object dynamicMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dynamicFvMesh dynamicMotionSolverFvMesh; + +motionSolverLibs (fvMotionSolvers); + +//motionSolver displacementPointSmoothing; +//displacementPointSmoothingCoeffs +//{ +// //pointSmoother geometricElementTransform; +// //transformationParameter 0.667; +// pointSmoother laplacian; +// +// nPointSmootherIter 10; +// +// //relaxationFactors (1); +// //meshQuality {} +// //moveInternalFaces true; +//} + +motionSolver multiDisplacement; +solvers +{ + displacementLaplacian + { + motionSolver displacementLaplacian; + diffusivity uniform; + } + + displacementPointSmoothing + { + motionSolver displacementPointSmoothing; + pointSmoother laplacian; + nPointSmootherIter 10; + } +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/blockMesh/sphere7/constant/triSurface/box222.obj b/tutorials/mesh/blockMesh/sphere7/constant/triSurface/box222.obj new file mode 100644 index 0000000000000000000000000000000000000000..f1aceeca48a77cbe62aea577f651b129de3fa96d --- /dev/null +++ b/tutorials/mesh/blockMesh/sphere7/constant/triSurface/box222.obj @@ -0,0 +1,79 @@ +# Generated by Visualization Toolkit +v -1 -1 -1 +v -1 -1 1 +v -1 1 -1 +v -1 1 1 +v 1 -1 -1 +v 1 -1 1 +v 1 1 -1 +v 1 1 1 +v -1 -1 -1 +v -1 -1 1 +v 1 -1 -1 +v 1 -1 1 +v -1 1 -1 +v -1 1 1 +v 1 1 -1 +v 1 1 1 +v -1 -1 -1 +v 1 -1 -1 +v -1 1 -1 +v 1 1 -1 +v -1 -1 1 +v 1 -1 1 +v -1 1 1 +v 1 1 1 +vn -1 0 0 +vn -1 0 0 +vn -1 0 0 +vn -1 0 0 +vn 1 0 0 +vn 1 0 0 +vn 1 0 0 +vn 1 0 0 +vn 0 -1 0 +vn 0 -1 0 +vn 0 -1 0 +vn 0 -1 0 +vn 0 1 0 +vn 0 1 0 +vn 0 1 0 +vn 0 1 0 +vn 0 0 -1 +vn 0 0 -1 +vn 0 0 -1 +vn 0 0 -1 +vn 0 0 1 +vn 0 0 1 +vn 0 0 1 +vn 0 0 1 +vt -0.5 -0.5 +vt 1.5 -0.5 +vt -0.5 1.5 +vt 1.5 1.5 +vt 0.5 -0.5 +vt -1.5 -0.5 +vt 0.5 1.5 +vt -1.5 1.5 +vt 0.5 0.5 +vt 0.5 -1.5 +vt -1.5 0.5 +vt -1.5 -1.5 +vt -0.5 0.5 +vt -0.5 -1.5 +vt 1.5 0.5 +vt 1.5 -1.5 +vt 0.5 -0.5 +vt -1.5 -0.5 +vt 0.5 1.5 +vt -1.5 1.5 +vt -0.5 -0.5 +vt 1.5 -0.5 +vt -0.5 1.5 +vt 1.5 1.5 +f 1/1/1 2/2/2 4/4/4 3/3/3 +f 5/5/5 7/7/7 8/8/8 6/6/6 +f 9/9/9 11/11/11 12/12/12 10/10/10 +f 13/13/13 14/14/14 16/16/16 15/15/15 +f 17/17/17 19/19/19 20/20/20 18/18/18 +f 21/21/21 22/22/22 24/24/24 23/23/23 diff --git a/tutorials/mesh/blockMesh/sphere7/constant/triSurface/box422.obj b/tutorials/mesh/blockMesh/sphere7/constant/triSurface/box422.obj new file mode 100644 index 0000000000000000000000000000000000000000..f77a6fc86c684089966ad6b8b3b4de9ad0c8448a --- /dev/null +++ b/tutorials/mesh/blockMesh/sphere7/constant/triSurface/box422.obj @@ -0,0 +1,79 @@ +# Generated by Visualization Toolkit +v -2 -1 -1 +v -2 -1 1 +v -2 1 -1 +v -2 1 1 +v 2 -1 -1 +v 2 -1 1 +v 2 1 -1 +v 2 1 1 +v -2 -1 -1 +v -2 -1 1 +v 2 -1 -1 +v 2 -1 1 +v -2 1 -1 +v -2 1 1 +v 2 1 -1 +v 2 1 1 +v -2 -1 -1 +v 2 -1 -1 +v -2 1 -1 +v 2 1 -1 +v -2 -1 1 +v 2 -1 1 +v -2 1 1 +v 2 1 1 +vn -1 0 0 +vn -1 0 0 +vn -1 0 0 +vn -1 0 0 +vn 1 0 0 +vn 1 0 0 +vn 1 0 0 +vn 1 0 0 +vn 0 -1 0 +vn 0 -1 0 +vn 0 -1 0 +vn 0 -1 0 +vn 0 1 0 +vn 0 1 0 +vn 0 1 0 +vn 0 1 0 +vn 0 0 -1 +vn 0 0 -1 +vn 0 0 -1 +vn 0 0 -1 +vn 0 0 1 +vn 0 0 1 +vn 0 0 1 +vn 0 0 1 +vt -0.5 -0.5 +vt 1.5 -0.5 +vt -0.5 1.5 +vt 1.5 1.5 +vt 0.5 -0.5 +vt -1.5 -0.5 +vt 0.5 1.5 +vt -1.5 1.5 +vt 1.5 0.5 +vt 1.5 -1.5 +vt -2.5 0.5 +vt -2.5 -1.5 +vt -1.5 0.5 +vt -1.5 -1.5 +vt 2.5 0.5 +vt 2.5 -1.5 +vt 1.5 -0.5 +vt -2.5 -0.5 +vt 1.5 1.5 +vt -2.5 1.5 +vt -1.5 -0.5 +vt 2.5 -0.5 +vt -1.5 1.5 +vt 2.5 1.5 +f 1/1/1 2/2/2 4/4/4 3/3/3 +f 5/5/5 7/7/7 8/8/8 6/6/6 +f 9/9/9 11/11/11 12/12/12 10/10/10 +f 13/13/13 14/14/14 16/16/16 15/15/15 +f 17/17/17 19/19/19 20/20/20 18/18/18 +f 21/21/21 22/22/22 24/24/24 23/23/23 diff --git a/tutorials/mesh/blockMesh/sphere7/system/blockMeshDict b/tutorials/mesh/blockMesh/sphere7/system/blockMeshDict index 6253f9524d35a685f87fbcca7d8c3ad08af0a626..6f7f16b9b305a087844694beefd2c57cbef7d9e2 100644 --- a/tutorials/mesh/blockMesh/sphere7/system/blockMeshDict +++ b/tutorials/mesh/blockMesh/sphere7/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -38,7 +38,7 @@ geometry } // Outer box size -vo #eval{ sqrt($outerRadius/3) }; +vo #eval{ $outerRadius/sqrt(3) }; // Inner box size - % of overall dimension vi #eval{ $vo * $innerRatio }; @@ -127,16 +127,56 @@ faces boundary ( - walls + minX { - type wall; + type patch; faces ( (1 0) // block 1: x-min + ); + } + + maxX + { + type patch; + faces + ( (2 1) // block 2: x-max + ); + } + + minY + { + type patch; + faces + ( (3 2) // block 3: y-min + ); + } + + maxY + { + type patch; + faces + ( (4 3) // block 4: y-max + ); + } + + minZ + { + type patch; + faces + ( (5 4) // block 5: z-min + ); + } + + maxZ + { + type patch; + faces + ( (6 5) // block 6: z-max ); } diff --git a/tutorials/mesh/blockMesh/sphere7/system/controlDict b/tutorials/mesh/blockMesh/sphere7/system/controlDict index 468b34946173297764ef3b800f2a6af7bd0e757f..f7e12313664b10692a398d1e62abe805b8442f85 100644 --- a/tutorials/mesh/blockMesh/sphere7/system/controlDict +++ b/tutorials/mesh/blockMesh/sphere7/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -14,6 +14,11 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +DebugSwitches +{ + pointBoundaryMesh 1; +} + application blockMesh; startFrom startTime; @@ -22,9 +27,9 @@ startTime 0; stopAt endTime; -endTime 0; +endTime 20; -deltaT 0; +deltaT 1; writeControl timeStep; diff --git a/tutorials/mesh/blockMesh/sphere7/system/decomposeParDict b/tutorials/mesh/blockMesh/sphere7/system/decomposeParDict new file mode 100644 index 0000000000000000000000000000000000000000..1e8d5e4ce7b9da14328f177cf7842e0cb3bd4bc7 --- /dev/null +++ b/tutorials/mesh/blockMesh/sphere7/system/decomposeParDict @@ -0,0 +1,24 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + note "mesh decomposition control dictionary"; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +//- The total number of domains (mandatory) +numberOfSubdomains 2; + +//- The decomposition method (mandatory) +method scotch; + +// ************************************************************************* // diff --git a/tutorials/mesh/blockMesh/sphere7/system/extrudeMeshDict b/tutorials/mesh/blockMesh/sphere7/system/extrudeMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..2f1430c8450268c30f8996912f6a35b3c3d746e4 --- /dev/null +++ b/tutorials/mesh/blockMesh/sphere7/system/extrudeMeshDict @@ -0,0 +1,55 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object extrudeMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// What to extrude: +// patch : from patch of another case ('sourceCase') +// mesh : as above but with original case included +// surface : from externally read surface + +constructFrom mesh; + +// If construct from patch/mesh: +sourceCase "<case>"; + +// and one of sourcePatches or sourceFaceZones (but not both): +//sourceFaceZones (someFacesZone); +sourcePatches (".*"); + +// Flip surface normals before usage. Valid only for extrude from surface or +// patch. +flipNormals false; + +//- Linear extrusion in point-normal direction +extrudeModel linearNormal; + +nLayers 1; + +expansionRatio 1.0; + +linearNormalCoeffs +{ + thickness 1e-6; +} + +// Do front and back need to be merged? Usually only makes sense for 360 +// degree wedges. +mergeFaces false; + +// Merge small edges. Fraction of bounding box. +mergeTol 0; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/tutorials/mesh/blockMesh/sphere7/system/fvSchemes b/tutorials/mesh/blockMesh/sphere7/system/fvSchemes index a04c1fb001bdd5169eaba84849ee90a2f668ea04..91a22c549c7333091a5f84d9b57f59201b06687c 100644 --- a/tutorials/mesh/blockMesh/sphere7/system/fvSchemes +++ b/tutorials/mesh/blockMesh/sphere7/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -18,19 +18,27 @@ ddtSchemes {} gradSchemes -{} +{ + default Gauss linear; +} divSchemes {} laplacianSchemes -{} +{ + default Gauss linear corrected; +} interpolationSchemes -{} +{ + default linear; +} snGradSchemes -{} +{ + default corrected; +} // ************************************************************************* // diff --git a/tutorials/mesh/blockMesh/sphere7/system/fvSolution b/tutorials/mesh/blockMesh/sphere7/system/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..99280ba1ca868855fa7679d73cd7d3b4ba398740 100644 --- a/tutorials/mesh/blockMesh/sphere7/system/fvSolution +++ b/tutorials/mesh/blockMesh/sphere7/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -14,5 +14,20 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +solvers +{ + "cellDisplacement.*" + { + solver GAMG; + tolerance 1e-08; + relTol 0; + smoother GaussSeidel; + } +} + + +PIMPLE +{} + // ************************************************************************* // diff --git a/tutorials/mesh/blockMesh/sphere7/system/surfaceFeatureExtractDict b/tutorials/mesh/blockMesh/sphere7/system/surfaceFeatureExtractDict new file mode 100644 index 0000000000000000000000000000000000000000..404c64971d2966f8ce1b9a259ab2efb268f1ed0c --- /dev/null +++ b/tutorials/mesh/blockMesh/sphere7/system/surfaceFeatureExtractDict @@ -0,0 +1,33 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object surfaceFeatureExtractDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +box222.obj +{ + // How to obtain raw features (extractFromFile || extractFromSurface) + extractionMethod extractFromSurface; + + // Mark edges whose adjacent surface normals are at an angle less + // than includedAngle as features + // - 0 : selects no edges + // - 180: selects all edges + includedAngle 135; + + // Write features to obj format for postprocessing + writeObj yes; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/blockMesh/sphere7/system/topoSetDict b/tutorials/mesh/blockMesh/sphere7/system/topoSetDict new file mode 100644 index 0000000000000000000000000000000000000000..943791362f0128e35e401944270a4813af5e0593 --- /dev/null +++ b/tutorials/mesh/blockMesh/sphere7/system/topoSetDict @@ -0,0 +1,47 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object topoSetDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +actions +( + { + name c0; + type cellSet; + action new; + source boundaryToCell; + } + { + name c0; + type cellSet; + action subset; + source boxToCell; + sourceInfo + { + box (-100 -100 -100) (0 100 100); + } + } + { + name c0; + type cellSet; + action add; + source boxToCell; + sourceInfo + { + box (-0.3 -0.3 -0.3) (0 0 0); + } + } +); + +// ************************************************************************* // diff --git a/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/blockMeshDict b/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/blockMeshDict index 134c50971292b95e58057c0af788a36f491652ed..ca1338920be6909db89a64d9a3463161d40471cd 100644 --- a/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/blockMeshDict +++ b/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ @@ -45,7 +45,7 @@ geometry // Outer box size (approximate) -vo #eval{ sqrt($outerRadius/3) }; +vo #eval{ $outerRadius/sqrt(3) }; // Inner box size - % of overall dimension vi #eval{ $vo * $innerRatio }; diff --git a/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/controlDict b/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/controlDict index 468b34946173297764ef3b800f2a6af7bd0e757f..1d64d41849e345a70e301564597d4b95d5e79512 100644 --- a/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/controlDict +++ b/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/fvSchemes b/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/fvSchemes index a04c1fb001bdd5169eaba84849ee90a2f668ea04..6fb69c2e1f7a616122bb7f4a184083051d5794f6 100644 --- a/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/fvSchemes +++ b/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/fvSolution b/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..7f27acc8aafdc9c654d77e52adddcb26c0aa112e 100644 --- a/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/fvSolution +++ b/tutorials/mesh/blockMesh/sphere7ProjectedEdges/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/spheroid7Projected/system/blockMeshDict b/tutorials/mesh/blockMesh/spheroid7Projected/system/blockMeshDict index 5345423cfab7cd9031baaf79d98ee1ad34a177ba..5efe3bba70af342050343a8403f08981058b030d 100644 --- a/tutorials/mesh/blockMesh/spheroid7Projected/system/blockMeshDict +++ b/tutorials/mesh/blockMesh/spheroid7Projected/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/spheroid7Projected/system/controlDict b/tutorials/mesh/blockMesh/spheroid7Projected/system/controlDict index 468b34946173297764ef3b800f2a6af7bd0e757f..1d64d41849e345a70e301564597d4b95d5e79512 100644 --- a/tutorials/mesh/blockMesh/spheroid7Projected/system/controlDict +++ b/tutorials/mesh/blockMesh/spheroid7Projected/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/spheroid7Projected/system/fvSchemes b/tutorials/mesh/blockMesh/spheroid7Projected/system/fvSchemes index a04c1fb001bdd5169eaba84849ee90a2f668ea04..6fb69c2e1f7a616122bb7f4a184083051d5794f6 100644 --- a/tutorials/mesh/blockMesh/spheroid7Projected/system/fvSchemes +++ b/tutorials/mesh/blockMesh/spheroid7Projected/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/spheroid7Projected/system/fvSolution b/tutorials/mesh/blockMesh/spheroid7Projected/system/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..7f27acc8aafdc9c654d77e52adddcb26c0aa112e 100644 --- a/tutorials/mesh/blockMesh/spheroid7Projected/system/fvSolution +++ b/tutorials/mesh/blockMesh/spheroid7Projected/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/spheroidProjected/system/blockMeshDict b/tutorials/mesh/blockMesh/spheroidProjected/system/blockMeshDict index 11cabd0ac599b63993d532830dfa1633f202dd1e..ba999840b4e73dd2444b316466558f4a7a26902c 100644 --- a/tutorials/mesh/blockMesh/spheroidProjected/system/blockMeshDict +++ b/tutorials/mesh/blockMesh/spheroidProjected/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/spheroidProjected/system/controlDict b/tutorials/mesh/blockMesh/spheroidProjected/system/controlDict index 468b34946173297764ef3b800f2a6af7bd0e757f..1d64d41849e345a70e301564597d4b95d5e79512 100644 --- a/tutorials/mesh/blockMesh/spheroidProjected/system/controlDict +++ b/tutorials/mesh/blockMesh/spheroidProjected/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/spheroidProjected/system/fvSchemes b/tutorials/mesh/blockMesh/spheroidProjected/system/fvSchemes index a04c1fb001bdd5169eaba84849ee90a2f668ea04..6fb69c2e1f7a616122bb7f4a184083051d5794f6 100644 --- a/tutorials/mesh/blockMesh/spheroidProjected/system/fvSchemes +++ b/tutorials/mesh/blockMesh/spheroidProjected/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/blockMesh/spheroidProjected/system/fvSolution b/tutorials/mesh/blockMesh/spheroidProjected/system/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..7f27acc8aafdc9c654d77e52adddcb26c0aa112e 100644 --- a/tutorials/mesh/blockMesh/spheroidProjected/system/fvSolution +++ b/tutorials/mesh/blockMesh/spheroidProjected/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/Allclean b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/Allclean new file mode 100755 index 0000000000000000000000000000000000000000..971952b17a53d2f4436e1b03781426874d6642dd --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/Allclean @@ -0,0 +1,12 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions +#------------------------------------------------------------------------------ + +(cd inlet && cleanCase) +(cd top && cleanCase) +(cd bottom && cleanCase) + +cleanCase + +#------------------------------------------------------------------------------ diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/Allrun b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/Allrun new file mode 100755 index 0000000000000000000000000000000000000000..0f9fd8248aaf8209a53f574d83a8584baa57a642 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/Allrun @@ -0,0 +1,20 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + +runApplication blockMesh + +(cd inlet && runApplication blockMesh) +(cd top && runApplication blockMesh) +(cd bottom && runApplication blockMesh) + +runApplication -s inlet mergeMeshes . inlet -overwrite +runApplication -s top mergeMeshes . top -overwrite +runApplication -s bottom mergeMeshes . bottom -overwrite + +runApplication createPatch -overwrite + +runApplication checkMesh + +#------------------------------------------------------------------------------ diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/README.txt b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c437c9f11443a40dc68fbde0beb7964e37fabbf --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/README.txt @@ -0,0 +1 @@ +Equivalent of TJunctionSwitching but using mergeMeshes + createPatch diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/constant/transportProperties b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..415941cf8b7fb2239a122db7d1934738191235d4 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/constant/transportProperties @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +transportModel Newtonian; + +nu 1e-05; + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/constant/turbulenceProperties b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/constant/turbulenceProperties new file mode 100644 index 0000000000000000000000000000000000000000..2a94d70f95c842d9ce6d033e7882cbd8709f392d --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/constant/turbulenceProperties @@ -0,0 +1,29 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType RAS; + +RAS +{ + RASModel kEpsilon; + + turbulence on; + + printCoeffs on; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/blockMeshDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..703e7bd321c2d6f9569c507a577e849f114f1c8c --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/blockMeshDict @@ -0,0 +1,94 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// outlet1 +// +-+ +// | | +// | | +// | | +// | | +// +-----------+-+ +// |inlet | | +// +-----------+-+ +// | | +// | | +// | | +// | | +// +-+ +// outlet2 + +scale 1; + +vertices +( + (0.2 -0.21 0) //8=0 + (0.22 -0.21 0) //9=1 + (0.22 -0.02 0) //10=2 + (0.2 -0.02 0) //11=3 + (0.2 -0.21 0.01) //24=4 + (0.22 -0.21 0.01) //25=5 + (0.22 -0.02 0.01) //26=6 + (0.2 -0.02 0.01) //27=7 +); + +blocks +( + // bottom block + hex (0 1 2 3 4 5 6 7) bottom (5 50 1) simpleGrading (1 1 1) +); + +edges +( +); + +boundary +( + bottom_outlet + { + type patch; + faces + ( + (0 1 5 4) + ); + } + + bottom_walls + { + type wall; + faces + ( + // Bottom block + (0 4 7 3) + (1 2 6 5) + ); + } + + + // Central - Bottom block + // ~~~~~~~~~~~~~~~~~~~~~ + + bottom_couple + { + type wall; + faces + ( + (2 3 7 6) + ); + } +); + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/controlDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..4c24236719956e933bc654d9eaa9e90381e2fb40 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/controlDict @@ -0,0 +1,52 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application pimpleFoam; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 0.4; + +deltaT 0.001; + +writeControl adjustableRunTime; +writeInterval 0.01; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable true; + +adjustTimeStep yes; + +maxCo 1.0; + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/fvSchemes b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..97b8d71d485946ab5c4d3fb217fd1a71a15315ea --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/fvSchemes @@ -0,0 +1,60 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default Euler; +} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{ + default none; + + div(phi,U) Gauss limitedLinearV 1; + + turbulence Gauss limitedLinear 1; + div(phi,k) $turbulence; + div(phi,epsilon) $turbulence; + div(phi,nuTilda) $turbulence; + div(phi,s) $turbulence; + div(phi,R) $turbulence; + div(R) Gauss linear; + + div((nuEff*dev2(T(grad(U))))) Gauss linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/fvSolution b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..128b9b8932c24cda2f2d182e1bb186a867931148 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/bottom/system/fvSolution @@ -0,0 +1,73 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + p + { + solver GAMG; + tolerance 1e-06; + relTol 0.01; + smoother GaussSeidel; + } + + "(pFinal|pcorrFinal)" + { + solver GAMG; + tolerance 1e-06; + relTol 0; + smoother GaussSeidel; + } + + "(U|k|epsilon|s)" + { + solver smoothSolver; + smoother symGaussSeidel; + tolerance 1e-05; + relTol 0.1; + } + + "(U|k|epsilon|s)Final" + { + $U; + tolerance 1e-05; + relTol 0; + } +} + +PIMPLE +{ + nOuterCorrectors 1; + nCorrectors 2; + nNonOrthogonalCorrectors 0; + pRefCell 0; + pRefValue 0; + correctPhi false; +} + +relaxationFactors +{ + equations + { + "U.*" 1; + "k.*" 1; + "epsilon.*" 1; + "s.*" 1; + } +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/constant/transportProperties b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..415941cf8b7fb2239a122db7d1934738191235d4 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/constant/transportProperties @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +transportModel Newtonian; + +nu 1e-05; + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/constant/turbulenceProperties b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/constant/turbulenceProperties new file mode 100644 index 0000000000000000000000000000000000000000..2a94d70f95c842d9ce6d033e7882cbd8709f392d --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/constant/turbulenceProperties @@ -0,0 +1,29 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType RAS; + +RAS +{ + RASModel kEpsilon; + + turbulence on; + + printCoeffs on; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/blockMeshDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..a5edc58a46d079e90220c54117cf430b9a39ff44 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/blockMeshDict @@ -0,0 +1,285 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// outlet1 +// +-+ +// | | +// | | +// | | +// | | +// +-----------+-+ +// |inlet | | +// +-----------+-+ +// | | +// | | +// | | +// | | +// +-+ +// outlet2 + +scale 1; + +vertices +( + (0.0 -0.01 0) //0 + (0.19 -0.01 0) + (0.19 0.01 0) //2 + (0.0 0.01 0) + + (0.19 -0.02 0) //4 + (0.23 -0.02 0) + (0.23 0.02 0) //6 + (0.19 0.02 0) + + (0.2 -0.21 0) //8 + (0.22 -0.21 0) + (0.22 -0.02 0) //10 + (0.2 -0.02 0) + + (0.2 0.02 0) //12 + (0.22 0.02 0) + (0.22 0.21 0) //14 + (0.2 0.21 0) + + // Z + (0.0 -0.01 0.01) + (0.19 -0.01 0.01) + (0.19 0.01 0.01) + (0.0 0.01 0.01) + + (0.19 -0.02 0.01) + (0.23 -0.02 0.01) + (0.23 0.02 0.01) + (0.19 0.02 0.01) + + (0.2 -0.21 0.01) + (0.22 -0.21 0.01) + (0.22 -0.02 0.01) + (0.2 -0.02 0.01) + + (0.2 0.02 0.01) + (0.22 0.02 0.01) + (0.22 0.21 0.01) + (0.2 0.21 0.01) +); + +blocks +( + // inlet block + hex (0 1 2 3 16 17 18 19) inlet (50 5 1) simpleGrading (1 1 1) + + // central block + hex (4 5 6 7 20 21 22 23) central (12 12 1) simpleGrading (1 1 1) + + // bottom block + hex (8 9 10 11 24 25 26 27) bottom (5 50 1) simpleGrading (1 1 1) + + // top block + hex (12 13 14 15 28 29 30 31) top (5 50 1) simpleGrading (1 1 1) +); + +edges +( +); + +boundary +( + inlet + { + type patch; + faces + ( + (0 16 19 3) + ); + } + + outlet1 + { + type patch; + faces + ( + (8 9 25 24) + ); + } + + outlet2 + { + type patch; + faces + ( + (14 15 31 30) + ); + } + + walls + { + type wall; + faces + ( + // Inlet block + (2 3 19 18) + (0 1 17 16) + // Central block + (5 6 22 21) + // Bottom block + (8 24 27 11) + (9 10 26 25) + // Top block + (13 14 30 29) + (12 28 31 15) + ); + } + + + // Inlet - Central block + // ~~~~~~~~~~~~~~~~~~~~~ + + inlet_central_couple + { + type cyclicACMI; + neighbourPatch central_inlet_couple; + nonOverlapPatch inlet_central_blockage; + faces + ( + (1 2 18 17) + ); + } + inlet_central_blockage + { + type wall; + faces + ( + (1 2 18 17) + ); + } + central_inlet_couple + { + type cyclicACMI; + neighbourPatch inlet_central_couple; + nonOverlapPatch central_inlet_blockage; + faces + ( + (4 20 23 7) + ); + } + central_inlet_blockage + { + type wall; + faces + ( + (4 20 23 7) + ); + } + + + // Central - Bottom block + // ~~~~~~~~~~~~~~~~~~~~~ + + bottom_central_couple + { + type cyclicACMI; + neighbourPatch central_bottom_couple; + nonOverlapPatch bottom_central_blockage; + faces + ( + (10 11 27 26) + ); + + scale table + ( + (0.00 1.0) + (0.20 1.0) + (0.30 0.0) + ); + } + bottom_central_blockage + { + type wall; + faces + ( + (10 11 27 26) + ); + } + central_bottom_couple + { + type cyclicACMI; + neighbourPatch bottom_central_couple; + nonOverlapPatch central_bottom_blockage; + faces + ( + (4 5 21 20) + ); + } + central_bottom_blockage + { + type wall; + faces + ( + (4 5 21 20) + ); + } + + + // Central - Top block + // ~~~~~~~~~~~~~~~~~~~ + + top_central_couple + { + type cyclicACMI; + neighbourPatch central_top_couple; + nonOverlapPatch top_central_blockage; + faces + ( + (12 13 29 28) + ); + + scale table + ( + (0.00 0.0) + (0.20 0.0) + (0.30 1.0) + ); + } + top_central_blockage + { + type wall; + faces + ( + (12 13 29 28) + ); + } + central_top_couple + { + type cyclicACMI; + neighbourPatch top_central_couple; + nonOverlapPatch central_top_blockage; + faces + ( + (6 7 23 22) + ); + } + central_top_blockage + { + type wall; + faces + ( + (6 7 23 22) + ); + } +); + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/controlDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..4c24236719956e933bc654d9eaa9e90381e2fb40 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/controlDict @@ -0,0 +1,52 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application pimpleFoam; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 0.4; + +deltaT 0.001; + +writeControl adjustableRunTime; +writeInterval 0.01; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable true; + +adjustTimeStep yes; + +maxCo 1.0; + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/decomposeParDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/decomposeParDict new file mode 100644 index 0000000000000000000000000000000000000000..2a913e8d72a4843d091a95cefb32c4e05ffd0558 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/decomposeParDict @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +numberOfSubdomains 3; + +method scotch; + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/fvSchemes b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..97b8d71d485946ab5c4d3fb217fd1a71a15315ea --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/fvSchemes @@ -0,0 +1,60 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default Euler; +} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{ + default none; + + div(phi,U) Gauss limitedLinearV 1; + + turbulence Gauss limitedLinear 1; + div(phi,k) $turbulence; + div(phi,epsilon) $turbulence; + div(phi,nuTilda) $turbulence; + div(phi,s) $turbulence; + div(phi,R) $turbulence; + div(R) Gauss linear; + + div((nuEff*dev2(T(grad(U))))) Gauss linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/fvSolution b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..128b9b8932c24cda2f2d182e1bb186a867931148 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/central/system/fvSolution @@ -0,0 +1,73 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + p + { + solver GAMG; + tolerance 1e-06; + relTol 0.01; + smoother GaussSeidel; + } + + "(pFinal|pcorrFinal)" + { + solver GAMG; + tolerance 1e-06; + relTol 0; + smoother GaussSeidel; + } + + "(U|k|epsilon|s)" + { + solver smoothSolver; + smoother symGaussSeidel; + tolerance 1e-05; + relTol 0.1; + } + + "(U|k|epsilon|s)Final" + { + $U; + tolerance 1e-05; + relTol 0; + } +} + +PIMPLE +{ + nOuterCorrectors 1; + nCorrectors 2; + nNonOrthogonalCorrectors 0; + pRefCell 0; + pRefValue 0; + correctPhi false; +} + +relaxationFactors +{ + equations + { + "U.*" 1; + "k.*" 1; + "epsilon.*" 1; + "s.*" 1; + } +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/constant/transportProperties b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..415941cf8b7fb2239a122db7d1934738191235d4 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/constant/transportProperties @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +transportModel Newtonian; + +nu 1e-05; + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/constant/turbulenceProperties b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/constant/turbulenceProperties new file mode 100644 index 0000000000000000000000000000000000000000..2a94d70f95c842d9ce6d033e7882cbd8709f392d --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/constant/turbulenceProperties @@ -0,0 +1,29 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType RAS; + +RAS +{ + RASModel kEpsilon; + + turbulence on; + + printCoeffs on; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/constant/transportProperties b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..415941cf8b7fb2239a122db7d1934738191235d4 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/constant/transportProperties @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +transportModel Newtonian; + +nu 1e-05; + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/constant/turbulenceProperties b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/constant/turbulenceProperties new file mode 100644 index 0000000000000000000000000000000000000000..2a94d70f95c842d9ce6d033e7882cbd8709f392d --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/constant/turbulenceProperties @@ -0,0 +1,29 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType RAS; + +RAS +{ + RASModel kEpsilon; + + turbulence on; + + printCoeffs on; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/blockMeshDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..744f63eef1f1ec7e097f66a2e4034952a239244e --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/blockMeshDict @@ -0,0 +1,96 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// outlet1 +// +-+ +// | | +// | | +// | | +// | | +// +-----------+-+ +// |inlet | | +// +-----------+-+ +// | | +// | | +// | | +// | | +// +-+ +// outlet2 + +scale 1; + +vertices +( + (0.0 -0.01 0) //0 + (0.19 -0.01 0) + (0.19 0.01 0) //2 + (0.0 0.01 0) + + // Z + (0.0 -0.01 0.01) //16=4 + (0.19 -0.01 0.01) //17=5 + (0.19 0.01 0.01) //18=6 + (0.0 0.01 0.01) //19=7 +); + +blocks +( + // inlet block + hex (0 1 2 3 4 5 6 7) inlet (50 5 1) simpleGrading (1 1 1) +); + +edges +( +); + +boundary +( + inlet_inlet + { + type patch; + faces + ( + (0 4 7 3) + ); + } + + inlet_walls + { + type wall; + faces + ( + // Inlet block + (2 3 7 6) + (0 1 5 4) + ); + } + + + // Inlet - Central block + // ~~~~~~~~~~~~~~~~~~~~~ + + inlet_couple + { + type wall; + faces + ( + (1 2 6 5) + ); + } +); + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/controlDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..4c24236719956e933bc654d9eaa9e90381e2fb40 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/controlDict @@ -0,0 +1,52 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application pimpleFoam; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 0.4; + +deltaT 0.001; + +writeControl adjustableRunTime; +writeInterval 0.01; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable true; + +adjustTimeStep yes; + +maxCo 1.0; + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/fvSchemes b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..97b8d71d485946ab5c4d3fb217fd1a71a15315ea --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/fvSchemes @@ -0,0 +1,60 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default Euler; +} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{ + default none; + + div(phi,U) Gauss limitedLinearV 1; + + turbulence Gauss limitedLinear 1; + div(phi,k) $turbulence; + div(phi,epsilon) $turbulence; + div(phi,nuTilda) $turbulence; + div(phi,s) $turbulence; + div(phi,R) $turbulence; + div(R) Gauss linear; + + div((nuEff*dev2(T(grad(U))))) Gauss linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/fvSolution b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..128b9b8932c24cda2f2d182e1bb186a867931148 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/inlet/system/fvSolution @@ -0,0 +1,73 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + p + { + solver GAMG; + tolerance 1e-06; + relTol 0.01; + smoother GaussSeidel; + } + + "(pFinal|pcorrFinal)" + { + solver GAMG; + tolerance 1e-06; + relTol 0; + smoother GaussSeidel; + } + + "(U|k|epsilon|s)" + { + solver smoothSolver; + smoother symGaussSeidel; + tolerance 1e-05; + relTol 0.1; + } + + "(U|k|epsilon|s)Final" + { + $U; + tolerance 1e-05; + relTol 0; + } +} + +PIMPLE +{ + nOuterCorrectors 1; + nCorrectors 2; + nNonOrthogonalCorrectors 0; + pRefCell 0; + pRefValue 0; + correctPhi false; +} + +relaxationFactors +{ + equations + { + "U.*" 1; + "k.*" 1; + "epsilon.*" 1; + "s.*" 1; + } +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/blockMeshDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..c5472a70d849381d49d3a8399d0068e5fbf045ad --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/blockMeshDict @@ -0,0 +1,102 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// outlet1 +// +-+ +// | | +// | | +// | | +// | | +// +-----------+-+ +// |inlet | | +// +-----------+-+ +// | | +// | | +// | | +// | | +// +-+ +// outlet2 + +scale 1; + +vertices +( + (0.19 -0.02 0) //4=0 + (0.23 -0.02 0) //5=1 + (0.23 0.02 0) //6=2 + (0.19 0.02 0) //7=3 + + (0.19 -0.02 0.01) //20=4 + (0.23 -0.02 0.01) //21=5 + (0.23 0.02 0.01) //22=6 + (0.19 0.02 0.01) //23=7 +); + +blocks +( + // central block + hex (0 1 2 3 4 5 6 7) central (12 12 1) simpleGrading (1 1 1) +); + +edges +( +); + +boundary +( + central_walls + { + type wall; + faces + ( + // Central block + (1 2 6 5) + ); + } + + // Connecting to inlet + central_inlet + { + type wall; + faces + ( + (0 4 7 3) + ); + } + + // Connecting to bottom + central_bottom + { + type wall; + faces + ( + (0 1 5 4) + ); + } + + // Connecting to top + central_top + { + type wall; + faces + ( + (2 3 7 6) + ); + } +); + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/controlDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..9efecde5fc2d106587018e08b7c4cf2a2f27f89f --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/controlDict @@ -0,0 +1,52 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application pimpleFoam; + +startFrom latestTime; + +startTime 0; + +stopAt endTime; + +endTime 0.4; + +deltaT 0.001; + +writeControl adjustableRunTime; +writeInterval 0.01; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable true; + +adjustTimeStep yes; + +maxCo 1.0; + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/createPatchDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/createPatchDict new file mode 100644 index 0000000000000000000000000000000000000000..d3edb524b77346486f6612de285f5376bb8da9e8 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/createPatchDict @@ -0,0 +1,178 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object createPatchDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// Do a synchronisation of coupled points after creation of any patches. +// Note: this does not work with points that are on multiple coupled patches +// with transformations (i.e. cyclics). +pointSync false; + +// Patches to create. +patches +( + // Central <-> Inlet + // ~~~~~~~~~~~~~~~~~ + + { + //- Master side patch + name central_inlet_couple; + patchInfo + { + type cyclicACMI; + nonOverlapPatch central_inlet_blockage; + neighbourPatch inlet_central_couple; + } + constructFrom patches; + patches (central_inlet); + } + { + //- Blockage + name central_inlet_blockage; + patchInfo + { + type wall; + } + constructFrom patches; + patches (central_inlet); + } + + { + //- Master side patch + name inlet_central_couple; + patchInfo + { + type cyclicACMI; + nonOverlapPatch inlet_central_blockage; + neighbourPatch central_inlet_couple; + } + constructFrom patches; + patches (inlet_couple); + } + { + //- Blockage + name inlet_central_blockage; + patchInfo + { + type wall; + } + constructFrom patches; + patches (inlet_couple); + } + + + + // Central <-> Bottom + // ~~~~~~~~~~~~~~~~~~ + + { + //- Master side patch + name central_bottom_couple; + patchInfo + { + type cyclicACMI; + nonOverlapPatch central_bottom_blockage; + neighbourPatch bottom_central_couple; + } + constructFrom patches; + patches (central_bottom); + } + { + //- Blockage + name central_bottom_blockage; + patchInfo + { + type wall; + } + constructFrom patches; + patches (central_bottom); + } + + { + //- Master side patch + name bottom_central_couple; + patchInfo + { + type cyclicACMI; + nonOverlapPatch bottom_central_blockage; + neighbourPatch central_bottom_couple; + } + constructFrom patches; + patches (bottom_couple); + } + { + //- Blockage + name bottom_central_blockage; + patchInfo + { + type wall; + } + constructFrom patches; + patches (bottom_couple); + } + + + + // Central <-> Top + // ~~~~~~~~~~~~~~~ + + { + //- Master side patch + name central_top_couple; + patchInfo + { + type cyclicACMI; + nonOverlapPatch central_top_blockage; + neighbourPatch top_central_couple; + } + constructFrom patches; + patches (central_top); + } + { + //- Blockage + name central_top_blockage; + patchInfo + { + type wall; + } + constructFrom patches; + patches (central_top); + } + + { + //- Master side patch + name top_central_couple; + patchInfo + { + type cyclicACMI; + nonOverlapPatch top_central_blockage; + neighbourPatch central_top_couple; + } + constructFrom patches; + patches (top_couple); + } + { + //- Blockage + name top_central_blockage; + patchInfo + { + type wall; + } + constructFrom patches; + patches (top_couple); + } +); + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/fvSchemes b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..97b8d71d485946ab5c4d3fb217fd1a71a15315ea --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/fvSchemes @@ -0,0 +1,60 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default Euler; +} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{ + default none; + + div(phi,U) Gauss limitedLinearV 1; + + turbulence Gauss limitedLinear 1; + div(phi,k) $turbulence; + div(phi,epsilon) $turbulence; + div(phi,nuTilda) $turbulence; + div(phi,s) $turbulence; + div(phi,R) $turbulence; + div(R) Gauss linear; + + div((nuEff*dev2(T(grad(U))))) Gauss linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/fvSolution b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..128b9b8932c24cda2f2d182e1bb186a867931148 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/fvSolution @@ -0,0 +1,73 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + p + { + solver GAMG; + tolerance 1e-06; + relTol 0.01; + smoother GaussSeidel; + } + + "(pFinal|pcorrFinal)" + { + solver GAMG; + tolerance 1e-06; + relTol 0; + smoother GaussSeidel; + } + + "(U|k|epsilon|s)" + { + solver smoothSolver; + smoother symGaussSeidel; + tolerance 1e-05; + relTol 0.1; + } + + "(U|k|epsilon|s)Final" + { + $U; + tolerance 1e-05; + relTol 0; + } +} + +PIMPLE +{ + nOuterCorrectors 1; + nCorrectors 2; + nNonOrthogonalCorrectors 0; + pRefCell 0; + pRefValue 0; + correctPhi false; +} + +relaxationFactors +{ + equations + { + "U.*" 1; + "k.*" 1; + "epsilon.*" 1; + "s.*" 1; + } +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/topoSetDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/topoSetDict new file mode 100644 index 0000000000000000000000000000000000000000..9ce69b6183146247ba21463df6c29dfae75feb0c --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/system/topoSetDict @@ -0,0 +1,35 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object topoSetDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +actions +( + { + name central_inlet_A; + type faceSet; + action new; + source patchToFace; + patch central_inlet_A; + } + { + name inlet_couple_A; + type faceSet; + action new; + source patchToFace; + patch inlet_couple_A; + } +); + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/constant/transportProperties b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/constant/transportProperties new file mode 100644 index 0000000000000000000000000000000000000000..415941cf8b7fb2239a122db7d1934738191235d4 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/constant/transportProperties @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +transportModel Newtonian; + +nu 1e-05; + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/constant/turbulenceProperties b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/constant/turbulenceProperties new file mode 100644 index 0000000000000000000000000000000000000000..2a94d70f95c842d9ce6d033e7882cbd8709f392d --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/constant/turbulenceProperties @@ -0,0 +1,29 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType RAS; + +RAS +{ + RASModel kEpsilon; + + turbulence on; + + printCoeffs on; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/blockMeshDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..8c7a559fc809989305981535f76c434c684a71cc --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/blockMeshDict @@ -0,0 +1,96 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// outlet1 +// +-+ +// | | +// | | +// | | +// | | +// +-----------+-+ +// |inlet | | +// +-----------+-+ +// | | +// | | +// | | +// | | +// +-+ +// outlet2 + +scale 1; + +vertices +( + (0.2 0.02 0) //12=0 + (0.22 0.02 0) //13=1 + (0.22 0.21 0) //14=2 + (0.2 0.21 0) //15=3 + + // Z + (0.2 0.02 0.01) //28=4 + (0.22 0.02 0.01) //29=5 + (0.22 0.21 0.01) //30=6 + (0.2 0.21 0.01) //31=7 +); + +blocks +( + // top block + hex (0 1 2 3 4 5 6 7) top (5 50 1) simpleGrading (1 1 1) +); + +edges +( +); + +boundary +( + top_outlet + { + type patch; + faces + ( + //(14 15 31 30) + (2 3 7 6) + ); + } + + top_walls + { + type wall; + faces + ( + // Top block + (1 2 6 5) + (0 4 7 3) + ); + } + + // Central - Top block + // ~~~~~~~~~~~~~~~~~~~ + + top_couple + { + type wall; + faces + ( + (0 1 5 4) + ); + } +); + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/controlDict b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..4c24236719956e933bc654d9eaa9e90381e2fb40 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/controlDict @@ -0,0 +1,52 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application pimpleFoam; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 0.4; + +deltaT 0.001; + +writeControl adjustableRunTime; +writeInterval 0.01; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable true; + +adjustTimeStep yes; + +maxCo 1.0; + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/fvSchemes b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..97b8d71d485946ab5c4d3fb217fd1a71a15315ea --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/fvSchemes @@ -0,0 +1,60 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default Euler; +} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{ + default none; + + div(phi,U) Gauss limitedLinearV 1; + + turbulence Gauss limitedLinear 1; + div(phi,k) $turbulence; + div(phi,epsilon) $turbulence; + div(phi,nuTilda) $turbulence; + div(phi,s) $turbulence; + div(phi,R) $turbulence; + div(R) Gauss linear; + + div((nuEff*dev2(T(grad(U))))) Gauss linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/fvSolution b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..128b9b8932c24cda2f2d182e1bb186a867931148 --- /dev/null +++ b/tutorials/mesh/createPatch/TJunctionSwitching_createPatch/top/system/fvSolution @@ -0,0 +1,73 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + p + { + solver GAMG; + tolerance 1e-06; + relTol 0.01; + smoother GaussSeidel; + } + + "(pFinal|pcorrFinal)" + { + solver GAMG; + tolerance 1e-06; + relTol 0; + smoother GaussSeidel; + } + + "(U|k|epsilon|s)" + { + solver smoothSolver; + smoother symGaussSeidel; + tolerance 1e-05; + relTol 0.1; + } + + "(U|k|epsilon|s)Final" + { + $U; + tolerance 1e-05; + relTol 0; + } +} + +PIMPLE +{ + nOuterCorrectors 1; + nCorrectors 2; + nNonOrthogonalCorrectors 0; + pRefCell 0; + pRefValue 0; + correctPhi false; +} + +relaxationFactors +{ + equations + { + "U.*" 1; + "k.*" 1; + "epsilon.*" 1; + "s.*" 1; + } +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/bottomSolid/T b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/bottomSolid/T index 63a5856cf4ee82afa20b83d4ad8f1a8b956f33e3..8289fa5015b24ac50aa9984665834434edcc2af5 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/bottomSolid/T +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/bottomSolid/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/bottomSolid/p b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/bottomSolid/p index 30ac4aaab63204a0cd5d0a6752715b75451b5c76..fcfbef699b33f44f534329c442e1b530f023cc44 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/bottomSolid/p +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/bottomSolid/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/leftSolid/T b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/leftSolid/T index c7b3ff24018602b4f62761497fdb690bf6cdf9c9..ac4037a83b054ab91f1da860d69090b374059bb9 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/leftSolid/T +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/leftSolid/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/leftSolid/p b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/leftSolid/p index 30ac4aaab63204a0cd5d0a6752715b75451b5c76..fcfbef699b33f44f534329c442e1b530f023cc44 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/leftSolid/p +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/leftSolid/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/rightSolid/T b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/rightSolid/T index c7b3ff24018602b4f62761497fdb690bf6cdf9c9..ac4037a83b054ab91f1da860d69090b374059bb9 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/rightSolid/T +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/rightSolid/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/rightSolid/p b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/rightSolid/p index 30ac4aaab63204a0cd5d0a6752715b75451b5c76..fcfbef699b33f44f534329c442e1b530f023cc44 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/rightSolid/p +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/rightSolid/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/T b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/T index fda84bceb4da925a2e97658991b19f2cc64d3e3e..1eb0be76923d73e995a6895d7bb92ad67706ceb5 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/T +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/U b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/U index 50ba8b1ab50e297d8195b0701fb789b0be246459..27ac78af69dc655595bf7bca078c9185a9229f10 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/U +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/epsilon b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/epsilon index 4dfe315d0ed1adcc44e5bf0d4b972b45f6f43263..f9bb28ef12071975cfc0d489e2170a4e87dce8aa 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/epsilon +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/k b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/k index f5374733ec324eba7faa33f9b5dfb20fab590aae..01bd4a024a2554d84572626f46a3d640dbafa301 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/k +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/p b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/p index 6b27a91b5e952173286d4751e865aaf52268199b..1eda074a946d3be424e6acb455831f53706e66e5 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/p +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/p_rgh b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/p_rgh index 14f1d4e8c4a05d94eb392f3b54316488c52dc6ea..5c3e8af18292f318af55aae2df01411949b109fc 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/p_rgh +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/0.orig/topAir/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/bottomSolid/radiationProperties b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/bottomSolid/radiationProperties index 439eaa9c891f0a40a0d772dfe1b6c76b82d848f9..faa5b9558b5b73137b2176bbd94034da064401a3 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/bottomSolid/radiationProperties +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/bottomSolid/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/bottomSolid/thermophysicalProperties b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/bottomSolid/thermophysicalProperties index 73481e9db3c44f1e4fd5811b7eb8e177172823cf..75e1f7eb1ff368ef849e531304dcd21bc2a3fec4 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/bottomSolid/thermophysicalProperties +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/bottomSolid/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/g b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/g index 901753ac343c46a1bc3ecd153310bf7cf0011000..9cf6f545aad5439e9983fb28b2fffb40b4a30dc6 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/g +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/regionProperties b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/regionProperties index 530469f73cbab42595b2c634bbdeea9dcbfc6a8b..d5b5b0771c7558d9d85c40194baa7cf86e2a2e7f 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/regionProperties +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/regionProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/radiationProperties b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/radiationProperties index 7ebb935f7eee0ec9e41389821d7ba24157024595..5db64bee6faf01d3c7bc57407a9158e2e81cb765 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/radiationProperties +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/radiationProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/thermophysicalProperties b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/thermophysicalProperties index 6ebd5f8cba3e980ab3909b1e277bf796853cc198..6b7450ebafbcb3fb2e024b1c7da663f87d27967b 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/thermophysicalProperties +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/turbulenceProperties b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/turbulenceProperties +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/constant/topAir/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/blockMeshDict b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/blockMeshDict index d9630c8afd18987ee96f353ca32ea6a917b6991c..23956b59e7a3a1240c74ad15ca6aeeeed34dfd22 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/blockMeshDict +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/createPatchDict b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/createPatchDict index 628e2006633cb659b065d87c2912ec3f482644f4..a87698b4a7409581893724d773b295764418adf3 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/createPatchDict +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/fvSchemes b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/fvSchemes index 97b96c4d7c82b5685490d65840e9f6fe4560a174..9129a42d09476043e608abb7639221faccdb22bc 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/fvSchemes +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/fvSolution b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/fvSolution index 735ce18dc6ce9cbc64ec9c30310da61a807030ba..868f702458bd53a60729b457d231ef817dcd464c 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/fvSolution +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/bottomSolid/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/controlDict b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/controlDict index 0df80bdaa5fec375f433cce252754d8db5129982..05f83a06daf5bb91639560519aa15b0fdc61201b 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/controlDict +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/decomposeParDict b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/decomposeParDict index 3491143d39497e0a06d3691787beb66d8b22a6f9..8f06b2cf4ac21babfb13555194a0e199971da9c5 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/decomposeParDict +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/fvSchemes b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/fvSchemes index 8fcf587e233bf9ce7cd4965632acce4a918632fc..70717356e9271a54092db796320244f4f132f869 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/fvSchemes +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/fvSolution b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/fvSolution index 2f5abd0344d1365a722c1328ebaa037dfb164d2f..77a0889c827145fa2a2f73b85f8503f9cc3f08da 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/fvSolution +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/leftSolid/blockMeshDict b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/leftSolid/blockMeshDict index a15bbc6e628ab35d3917e3f5a5d67441a04307b2..3601d853ae0606a8ac0214fd4de4124671b34562 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/leftSolid/blockMeshDict +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/leftSolid/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/rightSolid/blockMeshDict b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/rightSolid/blockMeshDict index 2d7ad36e186ee14ac64a9c8581f07b5cdf246b4e..a2e7bd2021be106e31319b5888e96526b4476cd7 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/rightSolid/blockMeshDict +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/rightSolid/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/blockMeshDict b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/blockMeshDict index 1f4b695222768f47a8c83343e33b8e8de241a636..4910ff7b85a0851fd107731db910c37e7074786b 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/blockMeshDict +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/createPatchDict b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/createPatchDict index 994d59d69b0504fe3bcc6c10d03a63a0df5f2a8d..ac3e3ae50df0ae2c1ebfb20287a8633a65c0072b 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/createPatchDict +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/fvSchemes b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/fvSchemes index b92f1e137eb52a7f110efdb0830054e470b91780..7bce871901fbf70c9b19a9e014bc5398dab1069d 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/fvSchemes +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/fvSolution b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/fvSolution index 22f937a325da0c8cfad673ee085cb41743226f22..9d7fc303877b23c772ff7ffbd66006ea52c7a74c 100644 --- a/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/fvSolution +++ b/tutorials/mesh/createPatch/multiRegionHeater_autoPatch/system/topAir/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/constant/transportProperties b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/constant/transportProperties index 3213de39bebdabb8ebe819cb7e087f8647142975..2e4f94d5f65d60a93b514a834bc4838d64a03b50 100644 --- a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/constant/transportProperties +++ b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/blockMeshDict b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/blockMeshDict index 1255e383ea290f8f8c81013e108a091ab38bc708..10f58885cd7e5b92f5345781b1a48f72b41cc4b4 100644 --- a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/blockMeshDict +++ b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/controlDict b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/controlDict index 88560e1e0ed86630b19b5df83e483ff1260c57a8..fe9936ea9c6dae876b0c3f4a6f905bb75bdec388 100644 --- a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/controlDict +++ b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/decomposeParDict b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/decomposeParDict index ce4ddaf2be4aaf6eae9008656cc529f7709f1119..c275e4c9fb4c01bc793c051263cdef1f518385bd 100644 --- a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/decomposeParDict +++ b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/extrudeMeshDict b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/extrudeMeshDict index 44feb8461b5dbe06d889c6dfe9d089792f8ed90f..9fe923ca4417dcc597f42b44a85c0e21d7384a03 100644 --- a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/extrudeMeshDict +++ b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/extrudeMeshDict.flip b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/extrudeMeshDict.flip index 44feb8461b5dbe06d889c6dfe9d089792f8ed90f..9fe923ca4417dcc597f42b44a85c0e21d7384a03 100644 --- a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/extrudeMeshDict.flip +++ b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/extrudeMeshDict.flip @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/fvSchemes b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/fvSchemes index d98fb1d34a84bdff6f7d596c266fb5dd82eeb904..93dbf3dc7eb47bf13f0275f6c9f2f2a04b14cf72 100644 --- a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/fvSchemes +++ b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/fvSolution b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/fvSolution index ae01a253720d54147edd21b28b0d8c82480ce804..15987dde04a0e2921452d8cdfcc574f38809343c 100644 --- a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/fvSolution +++ b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/topoSetDict b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/topoSetDict index 11b49a733007a79b5d8d11a4139a6bf5769b7c8c..a6f408837fee82b6053416694f8c5b1fcf86561e 100644 --- a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/topoSetDict +++ b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/topoSetDict.flip b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/topoSetDict.flip index dd1558f8e772012cb3cc174f019ff3be7d4c75bc..0e2edabcdc6e02a50c929b5cde8de2d11ef7317c 100644 --- a/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/topoSetDict.flip +++ b/tutorials/mesh/extrudeMesh/faceZoneExtrusion/system/topoSetDict.flip @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/polyline/system/controlDict b/tutorials/mesh/extrudeMesh/polyline/system/controlDict index bdae8f9a92d3da3fa91fdce8cd3258fd2d991229..9f1e32b6671b87ec27163db94d24ad0ff70e4bb0 100644 --- a/tutorials/mesh/extrudeMesh/polyline/system/controlDict +++ b/tutorials/mesh/extrudeMesh/polyline/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/polyline/system/extrudeMeshDict b/tutorials/mesh/extrudeMesh/polyline/system/extrudeMeshDict index 0790a41bcdffa26d7e33573e74a839b4ec48693a..f76d10bddd47c2402c3c58af28e3ebd9cf9943fb 100644 --- a/tutorials/mesh/extrudeMesh/polyline/system/extrudeMeshDict +++ b/tutorials/mesh/extrudeMesh/polyline/system/extrudeMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/polyline/system/fvSchemes b/tutorials/mesh/extrudeMesh/polyline/system/fvSchemes index a04c1fb001bdd5169eaba84849ee90a2f668ea04..6fb69c2e1f7a616122bb7f4a184083051d5794f6 100644 --- a/tutorials/mesh/extrudeMesh/polyline/system/fvSchemes +++ b/tutorials/mesh/extrudeMesh/polyline/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/extrudeMesh/polyline/system/fvSolution b/tutorials/mesh/extrudeMesh/polyline/system/fvSolution index 2999073b91ebce15d75792e9bd64bd252e102e77..7f27acc8aafdc9c654d77e52adddcb26c0aa112e 100644 --- a/tutorials/mesh/extrudeMesh/polyline/system/fvSolution +++ b/tutorials/mesh/extrudeMesh/polyline/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/blockMeshDict b/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/blockMeshDict index cda933fe6579a76f89c2e64b98d82e3e57fd0d81..36beab20412970fefa9490051be24cb653858a85 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/blockMeshDict +++ b/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/decomposeParDict b/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/decomposeParDict index 4e4e597538b63c645df72a991dfa3bffd0f61e93..ee563d263c588e612857594c56062ec271de97cc 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/decomposeParDict +++ b/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/fvSolution b/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/fvSolution +++ b/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/blob/system/collapseDict b/tutorials/mesh/foamyHexMesh/blob/system/collapseDict index e01ad24a9618f3382f06f41b3e0b984af12b1c13..c0791867330615e0b5af894eda8fab59df371614 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/collapseDict +++ b/tutorials/mesh/foamyHexMesh/blob/system/collapseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/blob/system/controlDict b/tutorials/mesh/foamyHexMesh/blob/system/controlDict index 2205c0c03f249afc3b1f6c8470ebf520216c51ab..e8e3f825a13ab442d81b202508fa447197d1865d 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/controlDict +++ b/tutorials/mesh/foamyHexMesh/blob/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/blob/system/decomposeParDict b/tutorials/mesh/foamyHexMesh/blob/system/decomposeParDict index 4e4e597538b63c645df72a991dfa3bffd0f61e93..ee563d263c588e612857594c56062ec271de97cc 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/decomposeParDict +++ b/tutorials/mesh/foamyHexMesh/blob/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/blob/system/foamyHexMeshDict b/tutorials/mesh/foamyHexMesh/blob/system/foamyHexMeshDict index b7de05d8e169b42e4a6767321ef698c02822f056..cc74c65b94c7fc8ee92a1da4ee7460180dfe3181 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/foamyHexMeshDict +++ b/tutorials/mesh/foamyHexMesh/blob/system/foamyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/blob/system/fvSchemes b/tutorials/mesh/foamyHexMesh/blob/system/fvSchemes index c6ea61106dd38c69b2acc2cb1afb0926bf422803..d859ebbd471436490bf3eba57707b1799e66eedb 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/fvSchemes +++ b/tutorials/mesh/foamyHexMesh/blob/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/blob/system/fvSolution b/tutorials/mesh/foamyHexMesh/blob/system/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/fvSolution +++ b/tutorials/mesh/foamyHexMesh/blob/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/blob/system/meshQualityDict b/tutorials/mesh/foamyHexMesh/blob/system/meshQualityDict index 5f9377468c9a75fee00a2587c85efe26eb8d047b..9e42043088d32a2a9718f6a5dfeb6ac73c3605ad 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/meshQualityDict +++ b/tutorials/mesh/foamyHexMesh/blob/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/blob/system/topoSetDict b/tutorials/mesh/foamyHexMesh/blob/system/topoSetDict index b6100dafffdafbd8423f85b21c71732f1c6df8de..8c0f0a94f7454ad1111ad75d5f6eda59f22be19d 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/topoSetDict +++ b/tutorials/mesh/foamyHexMesh/blob/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/blockMeshDict b/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/blockMeshDict index 5f12fdb32444f6c6906e124e6d54ffd86195f88c..939254289c070d2c0c6df32f2beb6fa2e094a61c 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/blockMeshDict +++ b/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/decomposeParDict b/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/decomposeParDict index 665c1af6ca65fbb795f4f6f6f15a8c5d3b8d0a81..b2545c0a6b3d57a75bd2b0515fa351eda37c46e0 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/decomposeParDict +++ b/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/fvSolution b/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/fvSolution index 1f87451877a9b27b5496890211553d915394307d..6406912edade61b1fa624e7e78ab0338e0634c5d 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/fvSolution +++ b/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/collapseDict b/tutorials/mesh/foamyHexMesh/flange/system/collapseDict index e01ad24a9618f3382f06f41b3e0b984af12b1c13..c0791867330615e0b5af894eda8fab59df371614 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/collapseDict +++ b/tutorials/mesh/foamyHexMesh/flange/system/collapseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/controlDict b/tutorials/mesh/foamyHexMesh/flange/system/controlDict index 537b5f2060e2e1a2ea6d65a88852d45f40b1c4f2..eace9fc829d181644c583ff9580d86cc0d4ccbee 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/controlDict +++ b/tutorials/mesh/foamyHexMesh/flange/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/decomposeParDict b/tutorials/mesh/foamyHexMesh/flange/system/decomposeParDict index 665c1af6ca65fbb795f4f6f6f15a8c5d3b8d0a81..b2545c0a6b3d57a75bd2b0515fa351eda37c46e0 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/decomposeParDict +++ b/tutorials/mesh/foamyHexMesh/flange/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/faceSetDict b/tutorials/mesh/foamyHexMesh/flange/system/faceSetDict index 3fed3edc16fd5d1ee6624ebb8f2127fc4cf9505c..4ae50c13ab917c49ade546cadc5303333834cf18 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/faceSetDict +++ b/tutorials/mesh/foamyHexMesh/flange/system/faceSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/foamyHexMeshDict b/tutorials/mesh/foamyHexMesh/flange/system/foamyHexMeshDict index 9f51fe400b76ea2a04e30a02dab2d442575b4184..5636cba52e5a2a3b1a9f96ea308c70a40a503897 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/foamyHexMeshDict +++ b/tutorials/mesh/foamyHexMesh/flange/system/foamyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/fvSchemes b/tutorials/mesh/foamyHexMesh/flange/system/fvSchemes index 066da83f6e535d558882205aac47823dd9b8ea83..f62cf887d4c39828b91a7db30c888117afc197ea 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/fvSchemes +++ b/tutorials/mesh/foamyHexMesh/flange/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/fvSolution b/tutorials/mesh/foamyHexMesh/flange/system/fvSolution index 1f87451877a9b27b5496890211553d915394307d..6406912edade61b1fa624e7e78ab0338e0634c5d 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/fvSolution +++ b/tutorials/mesh/foamyHexMesh/flange/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/meshDict.geometry b/tutorials/mesh/foamyHexMesh/flange/system/meshDict.geometry index 45f3fec4872b5086fa4ddf6cf8e164cab692fa06..b134d08e78bec6028d7f38577700b0ac2ddc0196 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/meshDict.geometry +++ b/tutorials/mesh/foamyHexMesh/flange/system/meshDict.geometry @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/meshQualityDict b/tutorials/mesh/foamyHexMesh/flange/system/meshQualityDict index d6fdb5eef303f02d75bafba0e9cc4dd2b1cfcecb..0797502bf0d9251c2c52c3781c705f1a9a5a19d4 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/meshQualityDict +++ b/tutorials/mesh/foamyHexMesh/flange/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/topoSetDict-background b/tutorials/mesh/foamyHexMesh/flange/system/topoSetDict-background index f6a039b7be73e44482eed28f3cb16e046ed55dcd..10166088f1a068269ce6c3bb6e628cf36db59fb1 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/topoSetDict-background +++ b/tutorials/mesh/foamyHexMesh/flange/system/topoSetDict-background @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/flange/system/topoSetDict-slices b/tutorials/mesh/foamyHexMesh/flange/system/topoSetDict-slices index c454061a693c129a3f851cba375fc01c54ac5e0a..6bc1e2ac0f5f1886cfb4ed476121839567be9d3b 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/topoSetDict-slices +++ b/tutorials/mesh/foamyHexMesh/flange/system/topoSetDict-slices @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/U b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/U index 939adb3e68e168820f7ae36b2b4b5bf94699a1be..c7ff39caccd499e0cc4d563810873888990d9065 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/U +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/alpha.phase1 b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/alpha.phase1 index 66ddf63f6e8b73b94a60eae4155d449631294e3c..c61df8682eb7f034685eaa5bed4fd51d716a24a9 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/alpha.phase1 +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/alpha.phase1 @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/epsilon b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/epsilon index 764ad43f4b7b213094c7502e4f096acff886f797..8761f462abe1cbc83950755da85650f9622e360f 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/epsilon +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/epsilon @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/k b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/k index f6dfe347797cbba0f76b11e8a835a7072fdd27d2..5c8d5f74cb381582f5dfdfa3776af4a8848cc812 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/k +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/k @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/nut b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/nut index 468bb21929811bd97466faa917ccca05e912381b..e5015db5ef67ecc467bea6acc39588317326ee99 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/nut +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/nut @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/p_rgh b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/p_rgh index 4e0336a0bb7ddcdb4bbb9ea466e6a3389451c1c1..8f44a565e256054459150d2dc41a469981d80d52 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/p_rgh +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/0.orig/p_rgh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/constant/dynamicMeshDict b/tutorials/mesh/foamyHexMesh/mixerVessel/constant/dynamicMeshDict index d0b7e47928842f2280e69b5434ea59c013429d46..c42c1f3bb2de3a93ef7951c1b6c691712ca09821 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/constant/dynamicMeshDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/constant/g b/tutorials/mesh/foamyHexMesh/mixerVessel/constant/g index a91ff9e2472c1d9e51bc577ca7596ee048bd671f..c1fb981a3c4935a3d147ae7b4382e749ea52bb2d 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/constant/g +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/constant/g @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/constant/transportProperties b/tutorials/mesh/foamyHexMesh/mixerVessel/constant/transportProperties index cfbe0f21622b976ff0533f9a5caad4b3e0725bc0..88d1dc204f670b7ba4f74462c0ed6e66a17cc020 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/constant/transportProperties +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/constant/turbulenceProperties b/tutorials/mesh/foamyHexMesh/mixerVessel/constant/turbulenceProperties index e7c4ac009932518ab5fdb41c58cc715783a4a47d..14aad334bd8f512be2622597048383f55ccdd417 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/constant/turbulenceProperties +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/blockMeshDict b/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/blockMeshDict index 62ee511d22cdbc226637e3eb431145ed5b7196b9..66cb47440f8d17d130df9f3459a9ebd1243a1347 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/blockMeshDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/fvSolution b/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/fvSolution index 5c4f7cca601969b5ce63eaca990c119ef3a6fb26..f321d7e4dadf66e81b08558b8ce094cdcd532ebc 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/fvSolution +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict b/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict index 015f6c1874818cc41a78f0763cd3d72834a271f5..828c1844039b3f27b96a438e6af4eb59d5498a4f 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict.collapseFaces b/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict.collapseFaces index 601dbf9652bb3f372b162bb62cd3adbd5ad6213e..3b49c5720a7494d66d06ec2eca05afd1f6ddd29e 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict.collapseFaces +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict.collapseFaces @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict.indirectPatchFaces b/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict.indirectPatchFaces index 015f6c1874818cc41a78f0763cd3d72834a271f5..828c1844039b3f27b96a438e6af4eb59d5498a4f 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict.indirectPatchFaces +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/collapseDict.indirectPatchFaces @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict b/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict index d3cf123c7c75c34d7c56a7f281839f8baa8c7801..b7be59533f9c56c63a80d138afdf2d75b17fea0e 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict.flow b/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict.flow index d3cf123c7c75c34d7c56a7f281839f8baa8c7801..b7be59533f9c56c63a80d138afdf2d75b17fea0e 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict.flow +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict.flow @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict.mesh b/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict.mesh index 434febcf079885fa71669d46adf901b58b578645..e08dc5a782ea1e7ab8d4cf740e03bf4640b45068 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict.mesh +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/controlDict.mesh @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/createBafflesDict b/tutorials/mesh/foamyHexMesh/mixerVessel/system/createBafflesDict index 61199d9386df921d02a893e07033d054fd26157e..d5548ad6f4e4729b2d7771ff9ffd8945899f10ca 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/createBafflesDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/createBafflesDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/createPatchDict b/tutorials/mesh/foamyHexMesh/mixerVessel/system/createPatchDict index 8bf4d2b70b66877ac7185d32b75b6d3d72a29828..c358dccff49a680ecd5540689e92d988906fcd25 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/createPatchDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/createPatchDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/decomposeParDict b/tutorials/mesh/foamyHexMesh/mixerVessel/system/decomposeParDict index 665c1af6ca65fbb795f4f6f6f15a8c5d3b8d0a81..b2545c0a6b3d57a75bd2b0515fa351eda37c46e0 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/decomposeParDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/foamyHexMeshDict b/tutorials/mesh/foamyHexMesh/mixerVessel/system/foamyHexMeshDict index 99f2011a25d6bdaf267637e356af59308cb3ab8f..511bd757f3d645777575bdad39da0fb263d6011e 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/foamyHexMeshDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/foamyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/fvSchemes b/tutorials/mesh/foamyHexMesh/mixerVessel/system/fvSchemes index b831524c67a5b4d3698d648845a6b0c2bd1a7628..c0f29b678ffbae6da4be9bc83215ebf48c8510a6 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/fvSchemes +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/fvSolution b/tutorials/mesh/foamyHexMesh/mixerVessel/system/fvSolution index 5c4f7cca601969b5ce63eaca990c119ef3a6fb26..f321d7e4dadf66e81b08558b8ce094cdcd532ebc 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/fvSolution +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.cellShapeControl b/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.cellShapeControl index a28e457d8c1ae7a9b777363f286a46a95d8328bd..0d13333d7e2783e327d139cd7ca63f474f6e6460 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.cellShapeControl +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.cellShapeControl @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.conformationSurfaces b/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.conformationSurfaces index d07e4a4a77c9b46293413ecf50d09854dc6aab58..2015b87af674eba44a42b8d47ba5a3c4972ca6f6 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.conformationSurfaces +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.conformationSurfaces @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.geometry b/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.geometry index a9f68cf07ea169f6edc33fbfc78f6bd717a06b63..da5aa5c59659ac232d246c5965b038247a8b0512 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.geometry +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshDict.geometry @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshQualityDict b/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshQualityDict index eb78565dff06aa7bed9f503d710db1cbccd64adb..8ff1b34f8eee678469adf459375dfb222c6cadc4 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshQualityDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/setFieldsDict b/tutorials/mesh/foamyHexMesh/mixerVessel/system/setFieldsDict index da7fd96013b2ea2bd0f848de38468918dec54b44..f19a3ce418301c3ce1d969e97e4cc02fda7cca40 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/setFieldsDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/setFieldsDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/surfaceFeatureExtractDict b/tutorials/mesh/foamyHexMesh/mixerVessel/system/surfaceFeatureExtractDict index 103c683b8d6d72a9218eecc16c37d608ff57e547..4ebf522624d250328a0f12c9d95cebd669616673 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/surfaceFeatureExtractDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/simpleShapes/system/collapseDict b/tutorials/mesh/foamyHexMesh/simpleShapes/system/collapseDict index 4988b30fbfc0e64bb94e3d13ecd97789cfdefc76..897c11238aefc888719b362ff4ee678810928a4c 100644 --- a/tutorials/mesh/foamyHexMesh/simpleShapes/system/collapseDict +++ b/tutorials/mesh/foamyHexMesh/simpleShapes/system/collapseDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/simpleShapes/system/controlDict b/tutorials/mesh/foamyHexMesh/simpleShapes/system/controlDict index 29e9d5f115d6e2c6621e032e4560a1c58acd9540..e39f438d2f6f035c0e78e65f66a0a7c2b102a0a0 100644 --- a/tutorials/mesh/foamyHexMesh/simpleShapes/system/controlDict +++ b/tutorials/mesh/foamyHexMesh/simpleShapes/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/simpleShapes/system/foamyHexMeshDict b/tutorials/mesh/foamyHexMesh/simpleShapes/system/foamyHexMeshDict index 08b0beb968cebe479a153d1431a6c3dd52650c47..d3a6fcd27e592152596933cc7f929e0f91222a6e 100644 --- a/tutorials/mesh/foamyHexMesh/simpleShapes/system/foamyHexMeshDict +++ b/tutorials/mesh/foamyHexMesh/simpleShapes/system/foamyHexMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/simpleShapes/system/fvSchemes b/tutorials/mesh/foamyHexMesh/simpleShapes/system/fvSchemes index dcec9a067de016a30f8f4862572fa01bb8e27b52..979acd1861d0eb4e4287d02dbdd8c4ad7b97acfb 100644 --- a/tutorials/mesh/foamyHexMesh/simpleShapes/system/fvSchemes +++ b/tutorials/mesh/foamyHexMesh/simpleShapes/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/simpleShapes/system/fvSolution b/tutorials/mesh/foamyHexMesh/simpleShapes/system/fvSolution index 9ec97d6ab7482ae982cb7b9b9dd4f7c071ac9d80..398a7aea840685e7dde76a2c6ed237cc49087d67 100644 --- a/tutorials/mesh/foamyHexMesh/simpleShapes/system/fvSolution +++ b/tutorials/mesh/foamyHexMesh/simpleShapes/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/simpleShapes/system/meshQualityDict b/tutorials/mesh/foamyHexMesh/simpleShapes/system/meshQualityDict index 1f56af1ae7c6d9a570293f07bfbd12edd6201f98..70f669372c8ac180ecd04fdd0188248dd2c759d1 100644 --- a/tutorials/mesh/foamyHexMesh/simpleShapes/system/meshQualityDict +++ b/tutorials/mesh/foamyHexMesh/simpleShapes/system/meshQualityDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyHexMesh/simpleShapes/system/topoSetDict b/tutorials/mesh/foamyHexMesh/simpleShapes/system/topoSetDict index ed77ab9890d6517b859968ba532f908c606233a0..2f34bc7a4912e84b0881a09e2fe6afc5ce9ed5e3 100644 --- a/tutorials/mesh/foamyHexMesh/simpleShapes/system/topoSetDict +++ b/tutorials/mesh/foamyHexMesh/simpleShapes/system/topoSetDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/T b/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/T index ba9460fa2146b1e1c62068a5f033e269090c8fb3..c2bafbf09d2db799b9f08096f82cd7120b5d7911 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/T +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/T @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/U b/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/U index 0df23d7418911fbf7fab74f16c227b2db7900efb..5afa00d36d430965c0470e8ff2bc2ce6aefae6a4 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/U +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/U @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/p b/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/p index 8af6f887f57070b709451a34183bda69c4699158..4214709902cfe9c275f6099f7a8873d5aaad4bc6 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/p +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/0.orig/p @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/constant/thermophysicalProperties b/tutorials/mesh/foamyQuadMesh/OpenCFD/constant/thermophysicalProperties index 750f6dbc354485682cdc2f6455f3e5b671fe3548..592bc5f1a96be96ce40fd011b3cb5a3e35b1fd9f 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/constant/thermophysicalProperties +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/constant/thermophysicalProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/constant/turbulenceProperties b/tutorials/mesh/foamyQuadMesh/OpenCFD/constant/turbulenceProperties index a6da1b76871f514420bbbdeb744a8cadd9dc978a..dca9bd65dd470821ae01337eee5bc8e1d4b8e71f 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/constant/turbulenceProperties +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/constant/turbulenceProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict index 953d3d027066b5c36e822fb5b3b1d44c8cea0ea2..5c3370ebee4eaa8189a4a22545c102e42a367ed1 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict.mesher b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict.mesher index 953d3d027066b5c36e822fb5b3b1d44c8cea0ea2..5c3370ebee4eaa8189a4a22545c102e42a367ed1 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict.mesher +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict.mesher @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict.rhoCentralFoam b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict.rhoCentralFoam index d960f1a0abff481dd277049f2a73d67962c838ea..b4525d6b046aa75be847dc38070739745b5d3939 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict.rhoCentralFoam +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/controlDict.rhoCentralFoam @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/decomposeParDict b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/decomposeParDict index 665c1af6ca65fbb795f4f6f6f15a8c5d3b8d0a81..b2545c0a6b3d57a75bd2b0515fa351eda37c46e0 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/decomposeParDict +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/extrude2DMeshDict b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/extrude2DMeshDict index b3e63704c80f1f2332235f7c9caa410fd22b755e..03aabedd61c1b3367193d6c60218a84fc4e12898 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/extrude2DMeshDict +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/extrude2DMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/foamyQuadMeshDict b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/foamyQuadMeshDict index 67b54a9983af9966664ba3b7625432dcbd5ac30a..cbdff5879cf0917807c4e5acebcbadf317c636e0 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/foamyQuadMeshDict +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/foamyQuadMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/fvSchemes b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/fvSchemes index 4a2077cf7e75e1bcb12176ba0c93297ad2c26b49..45c426adbada939b63e308296ff9b65455f0e189 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/fvSchemes +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/fvSolution b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/fvSolution index b61de99ec2cf6afda1567bdd01160469840aa5b8..eddae3d0bceed671156f85d88c11c7d967888c9f 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/fvSolution +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/surfaceFeatureExtractDict b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/surfaceFeatureExtractDict index 5a0474f31725fa886126984f3e7d3e1c5bf9bc6f..7fc4ec6134258c35b9532dec138f0f29b945f2cb 100644 --- a/tutorials/mesh/foamyQuadMesh/OpenCFD/system/surfaceFeatureExtractDict +++ b/tutorials/mesh/foamyQuadMesh/OpenCFD/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/controlDict b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/controlDict index 457ffcd9ad19c19b1324dee6aabdef3c9a020c9e..ca057fad7fe53ba85f609941a501bcc6364a78ea 100644 --- a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/controlDict +++ b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/extrude2DMeshDict b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/extrude2DMeshDict index b3e63704c80f1f2332235f7c9caa410fd22b755e..03aabedd61c1b3367193d6c60218a84fc4e12898 100644 --- a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/extrude2DMeshDict +++ b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/extrude2DMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/foamyQuadMeshDict b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/foamyQuadMeshDict index 94c2a5beb671df28dd72143b84d036a44bf175d3..325fcfb768da2bf31c1606ec09009764b2ed4081 100644 --- a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/foamyQuadMeshDict +++ b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/foamyQuadMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/fvSchemes b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/fvSchemes index c6ea61106dd38c69b2acc2cb1afb0926bf422803..d859ebbd471436490bf3eba57707b1799e66eedb 100644 --- a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/fvSchemes +++ b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/fvSolution b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/fvSolution +++ b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/surfaceFeatureExtractDict b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/surfaceFeatureExtractDict index 9b6ca9a4ef54117c39b952e07b54fa12ec1a8aa1..d74d5fbe61c7048cc110bb5dfaa64cdb28ab7e6f 100644 --- a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/surfaceFeatureExtractDict +++ b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/square/system/controlDict b/tutorials/mesh/foamyQuadMesh/square/system/controlDict index 4a6b3df974f74440afe1690230025bf43c439a30..35e96a1970ed2f23dad1514d43936624026580d0 100644 --- a/tutorials/mesh/foamyQuadMesh/square/system/controlDict +++ b/tutorials/mesh/foamyQuadMesh/square/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/square/system/extrude2DMeshDict b/tutorials/mesh/foamyQuadMesh/square/system/extrude2DMeshDict index 2b2bf80fba4d0e385b680274014dd81da4d82fa6..70c860f9fabd4b18a453f982585c65bae0c8aac6 100644 --- a/tutorials/mesh/foamyQuadMesh/square/system/extrude2DMeshDict +++ b/tutorials/mesh/foamyQuadMesh/square/system/extrude2DMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/square/system/foamyQuadMeshDict b/tutorials/mesh/foamyQuadMesh/square/system/foamyQuadMeshDict index 50681a7d2b8590d86630dd7213b15e8a48a865bf..7c7e3964d39595a67b6348214d3594d493d6adb5 100644 --- a/tutorials/mesh/foamyQuadMesh/square/system/foamyQuadMeshDict +++ b/tutorials/mesh/foamyQuadMesh/square/system/foamyQuadMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/square/system/fvSchemes b/tutorials/mesh/foamyQuadMesh/square/system/fvSchemes index c6ea61106dd38c69b2acc2cb1afb0926bf422803..d859ebbd471436490bf3eba57707b1799e66eedb 100644 --- a/tutorials/mesh/foamyQuadMesh/square/system/fvSchemes +++ b/tutorials/mesh/foamyQuadMesh/square/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/square/system/fvSolution b/tutorials/mesh/foamyQuadMesh/square/system/fvSolution index c89b4c70181b9c46cda8e2e104927bd749728cd2..971e5e30b8f3454296e5ef3dce40fe8334155447 100644 --- a/tutorials/mesh/foamyQuadMesh/square/system/fvSolution +++ b/tutorials/mesh/foamyQuadMesh/square/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/foamyQuadMesh/square/system/surfaceFeatureExtractDict b/tutorials/mesh/foamyQuadMesh/square/system/surfaceFeatureExtractDict index ec62c16ffd76b9371cdb9209511ade21b982e135..c6f5efa540a3af5b4144d8c0faf64c319480dff3 100644 --- a/tutorials/mesh/foamyQuadMesh/square/system/surfaceFeatureExtractDict +++ b/tutorials/mesh/foamyQuadMesh/square/system/surfaceFeatureExtractDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/0.orig/pointDisplacement b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/0.orig/pointDisplacement index fa8773778b05dd6a5d17673ceb0e382ce995e740..f24d6417fb728f0509f137f52341cdd698c82ce9 100644 --- a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/0.orig/pointDisplacement +++ b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/0.orig/pointDisplacement @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/dynamicMeshDict b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/dynamicMeshDict index 1da97009efce8944178359e8be6dc235e101747f..8faf61f3e9dd8fe0f400e7fb8844af58fa0a866f 100644 --- a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/dynamicMeshDict +++ b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/dynamicMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/transportProperties b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/transportProperties index 80ab6e271d387f5dd52ad4510b6511b10d11b3f0..f0d68f134dd5843eea73fa135fa790e5c2d3ed03 100644 --- a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/transportProperties +++ b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/transportProperties @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/blockMeshDict b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/blockMeshDict index d562a3fe6f77764287a19465394f995bf14d1fad..756f0cd67b336089b7c2a117bf315bc31ae71019 100644 --- a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/blockMeshDict +++ b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/blockMeshDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/controlDict b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/controlDict index 776931db14f7d287fed6f091e04a114998888db2..c264696903097ce594b3c2b9d8719a3a0d2c5ef8 100644 --- a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/controlDict +++ b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/controlDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/decomposeParDict b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/decomposeParDict index b130e886b192974a445f7877a8081666f16b0c06..44f98eaa2865928819bffd31d631c04165747dae 100644 --- a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/decomposeParDict +++ b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/decomposeParDict @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/fvSchemes b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/fvSchemes index 3d4bc28c6f82968ceb05eef17859a8b957b71ca8..bc24dadac9e50a664de65ce5b5aa839b65f046f2 100644 --- a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/fvSchemes +++ b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/fvSchemes @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/fvSolution b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/fvSolution index 0921d182530885a2c1bba2f6970bb4188fa3724d..2994b5a17bbf885e10195f26d8fee9b1e35c674b 100644 --- a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/fvSolution +++ b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/fvSolution @@ -1,7 +1,7 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v2406 | +| \\ / O peration | Version: v2412 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ diff --git a/tutorials/mesh/moveDynamicMesh/badMove/0/pointDisplacement b/tutorials/mesh/moveDynamicMesh/badMove/0/pointDisplacement new file mode 100644 index 0000000000000000000000000000000000000000..ed3bf9b4689acc844ac3abf5490fba658930d3ba --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/badMove/0/pointDisplacement @@ -0,0 +1,62 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + arch "LSB;label=32;scalar=64"; + class pointVectorField; + location "0"; + object pointDisplacement; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 0 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + minX + { + type slip; + } + maxX + { + $minX + } + minY + { + $minX + } + maxY + { + $minX + } + minZ + { + $minX + } + maxZ + { + $minX + } + boundaryEdges + { + type uniformFixedValue; + uniformValue table + ( + ( 0.0 (0 0 0)) + ( 1.0 (1.0 -1.0 0)) + //(10.0 (0 0 0)) + ); + } +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/moveDynamicMesh/badMove/Allclean b/tutorials/mesh/moveDynamicMesh/badMove/Allclean new file mode 100755 index 0000000000000000000000000000000000000000..d75d84dc208ea2508f30906499740a9af916fb99 --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/badMove/Allclean @@ -0,0 +1,17 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions +#------------------------------------------------------------------------------ + +cleanCase + +rm -rf constant/extendedFeatureEdgeMesh + +#- From pointMesh generation +rm -rf constant/pointMesh +rm -rf constant/triSurface + +#- From surfaceFeatureExtract +rm -f constant/triSurface/box222.eMesh + +#------------------------------------------------------------------------------ diff --git a/tutorials/mesh/moveDynamicMesh/badMove/Allrun b/tutorials/mesh/moveDynamicMesh/badMove/Allrun new file mode 100755 index 0000000000000000000000000000000000000000..d9a8bee1c27549ed171bbfa2716f947e5fb533d7 --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/badMove/Allrun @@ -0,0 +1,24 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + +#- Generate mesh +runApplication blockMesh + +mkdir -p constant/triSurface +runApplication surfaceMeshExtract \ + -featureAngle 45 \ + -patches '(minX maxY)' \ + constant/triSurface/blockMesh.obj + +#- For postprocessing: extract new pointPatches as vtk files +setSet <<EOF +pointSet p0 new patchToPoint boundaryEdges +EOF + +#- Morph mesh to the surface (.obj file) and feature-edges (.eMesh file) +#- Note: needs point-based motion solver +runApplication moveDynamicMesh + +#------------------------------------------------------------------------------ diff --git a/tutorials/mesh/moveDynamicMesh/badMove/README.txt b/tutorials/mesh/moveDynamicMesh/badMove/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..c357006107b3d8eeae1b2feadc5df8e9bee5e0f5 --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/badMove/README.txt @@ -0,0 +1 @@ +Testing relaxation of mesh motion diff --git a/tutorials/mesh/moveDynamicMesh/badMove/constant/dynamicMeshDict b/tutorials/mesh/moveDynamicMesh/badMove/constant/dynamicMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..6c3c85e06acf0fe36dd32b7eb32077e0db7ced7a --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/badMove/constant/dynamicMeshDict @@ -0,0 +1,39 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object dynamicMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dynamicFvMesh dynamicMotionSolverFvMesh; + +// For point-bcs +motionSolverLibs (fvMotionSolvers); + +motionSolver displacementPointSmoothing; +displacementPointSmoothingCoeffs +{ + // Use geometricElementTransform to maintain relative sizes + //pointSmoother geometricElementTransform; + //transformationParameter 0.667; + //nPointSmootherIter 10; + + pointSmoother laplacian; + nPointSmootherIter 10; + relaxationFactors (1.0 0.8 0.6 0.4 0.2 0.0); + meshQuality + { + #includeEtc "caseDicts/meshQualityDict" + } +} + +// ************************************************************************* // diff --git a/tutorials/mesh/moveDynamicMesh/badMove/system/blockMeshDict b/tutorials/mesh/moveDynamicMesh/badMove/system/blockMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..ab617f30f88487f3a9994e9f6fbc182f2a1d7487 --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/badMove/system/blockMeshDict @@ -0,0 +1,95 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +scale 1; + +vertices +( + // Inner block + (-2 -2 -2) + ( 2 -2 -2) + ( 2 2 -2) + (-2 2 -2) + (-2 -2 2) + ( 2 -2 2) + ( 2 2 2) + (-2 2 2) +); + +blocks +( + hex (0 1 2 3 4 5 6 7) (5 5 4) grading (1 1 1) // Inner block +); + +boundary +( + minX + { + type patch; + faces + ( + (0 0) // block 0: x-min + ); + } + + maxX + { + type patch; + faces + ( + (0 1) // block 0: x-max + ); + } + + minY + { + type patch; + faces + ( + (0 2) // block 0: y-min + ); + } + + maxY + { + type patch; + faces + ( + (0 3) // block 0: y-max + ); + } + + minZ + { + type patch; + faces + ( + (0 4) // block 0: z-min + ); + } + + maxZ + { + type patch; + faces + ( + (0 5) // block 0: z-max + ); + } +); + + +// ************************************************************************* // diff --git a/tutorials/mesh/moveDynamicMesh/badMove/system/controlDict b/tutorials/mesh/moveDynamicMesh/badMove/system/controlDict new file mode 100644 index 0000000000000000000000000000000000000000..26f3714d561a907564ff475bd32a5c5de9369aa7 --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/badMove/system/controlDict @@ -0,0 +1,53 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +DebugSwitches +{ + pointBoundaryMesh 1; +} + +application moveDynamicMesh; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 10; + +deltaT 1; + +writeControl timeStep; + +writeInterval 1; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable true; + + +// ************************************************************************* // diff --git a/tutorials/mesh/moveDynamicMesh/badMove/system/fvSchemes b/tutorials/mesh/moveDynamicMesh/badMove/system/fvSchemes new file mode 100644 index 0000000000000000000000000000000000000000..91a22c549c7333091a5f84d9b57f59201b06687c --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/badMove/system/fvSchemes @@ -0,0 +1,44 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/moveDynamicMesh/badMove/system/fvSolution b/tutorials/mesh/moveDynamicMesh/badMove/system/fvSolution new file mode 100644 index 0000000000000000000000000000000000000000..99280ba1ca868855fa7679d73cd7d3b4ba398740 --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/badMove/system/fvSolution @@ -0,0 +1,33 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + "cellDisplacement.*" + { + solver GAMG; + tolerance 1e-08; + relTol 0; + smoother GaussSeidel; + } +} + + +PIMPLE +{} + + +// ************************************************************************* // diff --git a/tutorials/mesh/moveDynamicMesh/bendJunction/0/pointDisplacement b/tutorials/mesh/moveDynamicMesh/bendJunction/0/pointDisplacement new file mode 100644 index 0000000000000000000000000000000000000000..991c500636f2c1050e5940d5988613731785f26b --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/bendJunction/0/pointDisplacement @@ -0,0 +1,130 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class pointVectorField; + location "0"; + object pointDisplacement; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 0 0 0 0 0]; + +internalField uniform (0 0 0); + +_surfaceDisplacement +{ + type surfaceSlipDisplacement; + value $internalField; + projectMode nearest; +// // if fixedNormal : normal +// projectDirection (0 0 1); +// //- -1 or component to knock out before doing projection +// wedgePlane -1; +// relax 0.5; + //- Underrelax motion by limiting displacement velocity + velocity (100 100 100); +} + + +boundaryField +{ + //#includeEtc "caseDicts/setConstraintTypes" + + InletSmall + { + ${^_surfaceDisplacement} + geometry + { + InletSmall + { + type triSurfaceMesh; + file "InletSmall.obj"; + } + } + } + Outlet + { + ${^_surfaceDisplacement} + geometry + { + Outlet + { + type triSurfaceMesh; + file "Outlet.obj"; + } + } + } + SmallPipe + { + ${^_surfaceDisplacement} + geometry + { + SmallPipe + { + type triSurfaceMesh; + file "SmallPipe.obj"; + } + } + } + Inlet + { + ${^_surfaceDisplacement} + geometry + { + Inlet + { + type triSurfaceMesh; + file "Inlet.obj"; + } + } + } + BigPipe + { + ${^_surfaceDisplacement} + geometry + { + BigPipe + { + type triSurfaceMesh; + file "BigPipe.obj"; + } + } + } + + // Per-patch feature-edges + SmallPipeEdges + { + type edgeSlipDisplacement; + file "SmallPipe.eMesh"; + //file "box222.extendedFeatureEdgeMesh"; + //- Underrelax motion by limiting displacement velocity + velocity (100 100 100); + } + BigPipeEdges + { + type edgeSlipDisplacement; + file "BigPipe.eMesh"; + //file "box222.extendedFeatureEdgeMesh"; + //- Underrelax motion by limiting displacement velocity + velocity (100 100 100); + } + // Inter-patch feature-edges + boundaryEdges + { + type edgeSlipDisplacement; + file "geometry.eMesh"; + //file "box222.extendedFeatureEdgeMesh"; + //- Underrelax motion by limiting displacement velocity + velocity (100 100 100); + } +} + +// ************************************************************************* // diff --git a/tutorials/mesh/moveDynamicMesh/bendJunction/Allclean b/tutorials/mesh/moveDynamicMesh/bendJunction/Allclean new file mode 100755 index 0000000000000000000000000000000000000000..c0ceba7bef8401e0d57357211a744b094d989d20 --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/bendJunction/Allclean @@ -0,0 +1,16 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions +#------------------------------------------------------------------------------ + +#cleanCase0 +cleanCase + +rm -f constant/triSurface/boundary.obj +rm -f constant/triSurface/geometry.eMesh +rm -f constant/triSurface/geometry.obj +rm -f constant/triSurface/blockMesh.obj +rm -f constant/triSurface/outside*.obj +rm -rf constant/extendedFeatureEdgeMesh + +#------------------------------------------------------------------------------ diff --git a/tutorials/mesh/moveDynamicMesh/bendJunction/Allrun b/tutorials/mesh/moveDynamicMesh/bendJunction/Allrun new file mode 100755 index 0000000000000000000000000000000000000000..c3efbea1188bc802f55bed4f11194707fff708a6 --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/bendJunction/Allrun @@ -0,0 +1,54 @@ +#!/bin/sh +cd "${0%/*}" || exit # Run from this directory +. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions +#------------------------------------------------------------------------------ + + +# Add bit of preprocessing of the surface +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +# Add all surfaces +runApplication -s BigPipeInlet surfaceAdd \ + constant/triSurface/BigPipe.obj constant/triSurface/Inlet.obj \ + constant/triSurface/geometry.obj +runApplication -s InletSmall surfaceAdd \ + constant/triSurface/geometry.obj constant/triSurface/InletSmall.obj \ + constant/triSurface/geometry.obj +runApplication -s Outlet surfaceAdd \ + constant/triSurface/geometry.obj constant/triSurface/Outlet.obj \ + constant/triSurface/geometry.obj +runApplication -s SmallPipe surfaceAdd \ + constant/triSurface/geometry.obj constant/triSurface/SmallPipe.obj \ + constant/triSurface/geometry.obj + +# Extract features from surface +runApplication surfaceFeatureExtract + + + +# Generate mesh and features +# ~~~~~~~~~~~~~~~~~~~~~~~~~~ + +runApplication blockMesh +runApplication -s presmooth checkMesh + +# Detect feature edges on mesh and generate new point patches from these. +# Note we only are interested in inter-patch features for this particular +# geometry. +runApplication surfaceMeshExtract \ + -featureAngle 180 constant/triSurface/blockMesh.obj + +# Generate some VTK files for the added point patches +setSet <<POINTPATCH +#pointSet SmallPipeEdges new patchToPoint SmallPipeEdges +#pointSet BigPipeEdges new patchToPoint BigPipeEdges +pointSet boundaryEdges new patchToPoint boundaryEdges +POINTPATCH + +# Do mesh motion to conform to surface +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +runApplication moveDynamicMesh +runApplication -s postsmooth checkMesh + +#------------------------------------------------------------------------------ diff --git a/tutorials/mesh/moveDynamicMesh/bendJunction/README.txt b/tutorials/mesh/moveDynamicMesh/bendJunction/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f60bea01e52021c5721bb7240630653eb1c1ebc --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/bendJunction/README.txt @@ -0,0 +1,4 @@ +Copy of extBlockMesh/tutorial/bendJunction from +https://github.com/Etudes-NG/extBlockMesh + +Adapted to use simple OpenFOAM mesh motion solver diff --git a/tutorials/mesh/moveDynamicMesh/bendJunction/constant/dynamicMeshDict b/tutorials/mesh/moveDynamicMesh/bendJunction/constant/dynamicMeshDict new file mode 100644 index 0000000000000000000000000000000000000000..de5c2652738f00592f55d42ceb35c0e57cbb1bd9 --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/bendJunction/constant/dynamicMeshDict @@ -0,0 +1,38 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2412 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object dynamicMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dynamicFvMesh dynamicMotionSolverFvMesh; + +motionSolverLibs (fvMotionSolvers); + +//motionSolver displacementSBRStress; +//diffusivity uniform; + +motionSolver displacementPointSmoothing; +displacementPointSmoothingCoeffs +{ + // Use geometricElementTransform to maintain relative sizes + //pointSmoother geometricElementTransform; + //transformationParameter 0.667; + //nPointSmootherIter 10; + + pointSmoother laplacian; + nPointSmootherIter 10; +} + + +// ************************************************************************* // diff --git a/tutorials/mesh/moveDynamicMesh/bendJunction/constant/triSurface/BigPipe.obj b/tutorials/mesh/moveDynamicMesh/bendJunction/constant/triSurface/BigPipe.obj new file mode 100644 index 0000000000000000000000000000000000000000..907ec0eae5fedee38d3bf9090c565278d6fd945a --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/bendJunction/constant/triSurface/BigPipe.obj @@ -0,0 +1,23708 @@ +# Wavefront OBJ file +# Regions: +# 0 CATIASTL +# +# points : 8010 +# triangles : 15690 +# +v 69.8947 -9.79717e-15 3.8378 +v 69.0543 -9.79717e-15 11.4672 +v 21.2989 -9.79717e-15 66.681 +v 55.375 -9.79717e-15 42.8207 +v -23.9414 -9.79717e-15 65.7785 +v 64.9029 -9.79717e-15 26.2225 +v 68.3218 -9.79717e-15 15.236 +v 67.3837 -9.79717e-15 18.9588 +v 47.6121 -9.79717e-15 51.3136 +v 35.3019 -9.79717e-15 60.4465 +v 59.7304 -9.79717e-15 36.5005 +v 44.7272 -9.79717e-15 53.8468 +v 41.7077 -9.79717e-15 56.218 +v 69.5792 -9.79717e-15 7.66405 +v 24.9227 -9.79717e-15 65.413 +v 6.27475 -9.79717e-15 69.7182 +v 70 -9.79717e-15 0 +v -1.39617 -9.79717e-15 69.9861 +v 28.4716 -9.79717e-15 63.9482 +v -5.23111 -9.79717e-15 69.8043 +v 57.6394 -9.79717e-15 39.7203 +v 2.44297 -9.79717e-15 69.9574 +v -12.8423 -9.79717e-15 68.8119 +v -16.5956 -9.79717e-15 68.0043 +v 61.6417 -9.79717e-15 33.1708 +v 52.944 -9.79717e-15 45.7923 +v -20.299 -9.79717e-15 66.9922 +v 38.5628 -9.79717e-15 58.4201 +v 66.2429 -9.79717e-15 22.6247 +v 63.3676 -9.79717e-15 29.7414 +v -9.05031 -9.79717e-15 69.4125 +v 31.9347 -9.79717e-15 62.291 +v 50.3538 -9.79717e-15 48.6261 +v 10.0877 -9.79717e-15 69.2693 +v 17.6111 -9.79717e-15 67.7484 +v 13.8702 -9.79717e-15 68.6121 +v -19.9205 4.1183 67.2163 +v -19.9205 -4.1183 67.2163 +v 70.0735 4.1183 2.13608 +v 70.0735 -4.1183 2.13608 +v -13.7008 4.1183 68.7543 +v -13.7008 -4.1183 68.7543 +v 42.7933 4.1183 55.5301 +v 26.1541 4.1183 65.0448 +v 66.204 4.1183 23.0629 +v 59.8209 4.1183 36.5558 +v 41.0815 4.1183 56.8082 +v 66.204 -4.1183 23.0629 +v 59.8209 -4.1183 36.5558 +v 42.7933 -4.1183 55.5301 +v 41.0815 -4.1183 56.8082 +v 26.1541 -4.1183 65.0448 +v 61.9364 4.1183 32.8442 +v 24.1601 4.1183 65.8115 +v 61.9364 -4.1183 32.8442 +v 24.1601 -4.1183 65.8115 +v 18.051 4.1183 67.7423 +v 18.051 -4.1183 67.7423 +v 69.2938 4.1183 10.6408 +v 69.2938 -4.1183 10.6408 +v 69.8133 4.1183 6.40031 +v 69.8133 -4.1183 6.40031 +v 65.4705 4.1183 25.0694 +v 28.1238 4.1183 64.2177 +v 65.4705 -4.1183 25.0694 +v 28.1238 -4.1183 64.2177 +v -11.5996 4.1183 69.1398 +v -11.5996 -4.1183 69.1398 +v 49.228 4.1183 49.9146 +v 64.6763 4.1183 27.0526 +v 64.6763 -4.1183 27.0526 +v 49.228 -4.1183 49.9146 +v 15.9785 4.1183 68.2609 +v -23.9777 4.1183 65.8782 +v 15.9785 -4.1183 68.2609 +v -23.9777 -4.1183 65.8782 +v 63.822 4.1183 29.0106 +v 53.5793 4.1183 45.2119 +v 50.726 4.1183 48.3915 +v 46.0962 4.1183 52.8204 +v 70.1061 4.1183 0 +v 37.545 4.1183 59.205 +v 20.1066 4.1183 67.1609 +v 63.822 -4.1183 29.0106 +v 53.5793 -4.1183 45.2119 +v 50.726 -4.1183 48.3915 +v 46.0962 -4.1183 52.8204 +v 20.1066 -4.1183 67.1609 +v 70.1061 -4.1183 0 +v 37.545 -4.1183 59.205 +v 13.8912 4.1183 68.716 +v 13.8912 -4.1183 68.716 +v 68.517 4.1183 14.8417 +v 68.517 -4.1183 14.8417 +v 58.6793 4.1183 38.3615 +v 58.6793 -4.1183 38.3615 +v 69.5859 4.1183 8.5245 +v 69.5859 -4.1183 8.5245 +v -5.23903 4.1183 69.91 +v -5.23903 -4.1183 69.91 +v 60.9069 4.1183 34.7161 +v 39.3315 4.1183 58.0335 +v 35.7237 4.1183 60.3215 +v -17.8632 4.1183 67.7921 +v 60.9069 -4.1183 34.7161 +v 39.3315 -4.1183 58.0335 +v 35.7237 -4.1183 60.3215 +v -17.8632 -4.1183 67.7921 +v -9.48755 4.1183 69.4611 +v -9.48755 -4.1183 69.4611 +v -7.36671 4.1183 69.718 +v -7.36671 -4.1183 69.718 +v 56.2337 4.1183 41.8644 +v 22.1437 4.1183 66.5171 +v 54.932 4.1183 43.5584 +v 56.2337 -4.1183 41.8644 +v 54.932 -4.1183 43.5584 +v 22.1437 -4.1183 66.5171 +v -3.10649 4.1183 70.0372 +v -3.10649 -4.1183 70.0372 +v 1.16526 4.1183 70.0964 +v 1.16526 -4.1183 70.0964 +v 68.033 4.1183 16.9225 +v 68.033 -4.1183 16.9225 +v 5.43269 4.1183 69.8953 +v 5.43269 -4.1183 69.8953 +v 33.8691 4.1183 61.382 +v 30.0674 4.1183 63.331 +v 52.1769 4.1183 46.8235 +v 47.6842 4.1183 51.3914 +v 52.1769 -4.1183 46.8235 +v 47.6842 -4.1183 51.3914 +v 33.8691 -4.1183 61.382 +v 30.0674 -4.1183 63.331 +v 11.7911 4.1183 69.1074 +v 11.7911 -4.1183 69.1074 +v 69.9759 4.1183 4.27018 +v 69.9759 -4.1183 4.27018 +v 7.55982 4.1183 69.6973 +v 7.55982 -4.1183 69.6973 +v 67.4858 4.1183 18.9876 +v 67.4858 -4.1183 18.9876 +v -0.971066 4.1183 70.0993 +v -0.971066 -4.1183 70.0993 +v 9.67994 4.1183 69.4346 +v 9.67994 -4.1183 69.4346 +v 66.8759 4.1183 21.035 +v 68.9374 4.1183 12.7472 +v 68.9374 -4.1183 12.7472 +v 66.8759 -4.1183 21.035 +v 44.4654 4.1183 54.2004 +v 44.4654 -4.1183 54.2004 +v 3.30051 4.1183 70.0283 +v 3.30051 -4.1183 70.0283 +v 31.9831 4.1183 62.3854 +v 31.9831 -4.1183 62.3854 +v 57.4832 4.1183 40.1316 +v 57.4832 -4.1183 40.1316 +v 62.9084 4.1183 30.9418 +v 62.9084 -4.1183 30.9418 +v -15.7894 4.1183 68.3049 +v -15.7894 -4.1183 68.3049 +v -21.9593 4.1183 66.5782 +v -21.9593 -4.1183 66.5782 +v -15.861 8.22568 68.6146 +v -15.861 -8.22568 68.6146 +v 3.31548 8.22568 70.3459 +v 3.31548 -8.22568 70.3459 +v 58.9454 8.22568 38.5355 +v 58.9454 -8.22568 38.5355 +v -11.6522 8.22568 69.4533 +v -11.6522 -8.22568 69.4533 +v 61.1831 8.22568 34.8735 +v 41.2678 8.22568 57.0658 +v 61.1831 -8.22568 34.8735 +v 41.2678 -8.22568 57.0658 +v 64.9696 8.22568 27.1752 +v 52.4135 8.22568 47.0358 +v 64.9696 -8.22568 27.1752 +v 52.4135 -8.22568 47.0358 +v -7.40012 8.22568 70.0341 +v -7.40012 -8.22568 70.0341 +v -20.0109 8.22568 67.5212 +v -20.0109 -8.22568 67.5212 +v 68.8278 8.22568 14.909 +v 20.1978 8.22568 67.4655 +v 68.8278 -8.22568 14.909 +v 20.1978 -8.22568 67.4655 +v 69.2501 8.22568 12.805 +v 69.2501 -8.22568 12.805 +v 56.4887 8.22568 42.0543 +v 56.4887 -8.22568 42.0543 +v 24.2697 8.22568 66.1099 +v 24.2697 -8.22568 66.1099 +v 70.3913 8.22568 2.14577 +v 70.3913 -8.22568 2.14577 +v 35.8857 8.22568 60.595 +v 28.2514 8.22568 64.5089 +v 35.8857 -8.22568 60.595 +v 28.2514 -8.22568 64.5089 +v -0.97547 8.22568 70.4173 +v -0.97547 -8.22568 70.4173 +v 16.051 8.22568 68.5704 +v 16.051 -8.22568 68.5704 +v 70.1299 8.22568 6.42934 +v 70.1299 -8.22568 6.42934 +v 49.4512 8.22568 50.141 +v 47.9005 8.22568 51.6245 +v 49.4512 -8.22568 50.141 +v 47.9005 -8.22568 51.6245 +v 7.59411 8.22568 70.0134 +v 7.59411 -8.22568 70.0134 +v 63.1937 8.22568 31.0821 +v 44.6671 8.22568 54.4462 +v 37.7153 8.22568 59.4735 +v 63.1937 -8.22568 31.0821 +v 44.6671 -8.22568 54.4462 +v 37.7153 -8.22568 59.4735 +v -13.763 8.22568 69.0661 +v -13.763 -8.22568 69.0661 +v 18.1328 8.22568 68.0496 +v 18.1328 -8.22568 68.0496 +v 5.45733 8.22568 70.2122 +v 5.45733 -8.22568 70.2122 +v 67.1792 8.22568 21.1304 +v -5.26279 8.22568 70.2271 +v 67.1792 -8.22568 21.1304 +v -5.26279 -8.22568 70.2271 +v 66.5042 8.22568 23.1675 +v 62.2173 8.22568 32.9931 +v 50.956 8.22568 48.611 +v 46.3053 8.22568 53.06 +v 66.5042 -8.22568 23.1675 +v 62.2173 -8.22568 32.9931 +v 50.956 -8.22568 48.611 +v 46.3053 -8.22568 53.06 +v -9.53057 8.22568 69.7761 +v -9.53057 -8.22568 69.7761 +v 70.2933 8.22568 4.28955 +v 70.2933 -8.22568 4.28955 +v 34.0227 8.22568 61.6603 +v 32.1282 8.22568 62.6683 +v 64.1114 8.22568 29.1422 +v 32.1282 -8.22568 62.6683 +v 34.0227 -8.22568 61.6603 +v 64.1114 -8.22568 29.1422 +v 13.9543 8.22568 69.0277 +v 13.9543 -8.22568 69.0277 +v -22.0589 8.22568 66.8801 +v -22.0589 -8.22568 66.8801 +v 70.424 8.22568 0 +v 55.1811 8.22568 43.756 +v 26.2727 8.22568 65.3398 +v 70.424 -8.22568 0 +v 55.1811 -8.22568 43.756 +v 26.2727 -8.22568 65.3398 +v 1.17055 8.22568 70.4143 +v 1.17055 -8.22568 70.4143 +v 69.9015 8.22568 8.56316 +v 57.7439 8.22568 40.3136 +v 69.9015 -8.22568 8.56316 +v 57.7439 -8.22568 40.3136 +v 11.8445 8.22568 69.4208 +v 11.8445 -8.22568 69.4208 +v 67.7919 8.22568 19.0737 +v 67.7919 -8.22568 19.0737 +v -3.12058 8.22568 70.3548 +v -3.12058 -8.22568 70.3548 +v 53.8223 8.22568 45.417 +v 42.9874 8.22568 55.7819 +v 53.8223 -8.22568 45.417 +v 42.9874 -8.22568 55.7819 +v 39.5099 8.22568 58.2967 +v 30.2038 8.22568 63.6182 +v 39.5099 -8.22568 58.2967 +v 30.2038 -8.22568 63.6182 +v 69.6081 8.22568 10.689 +v 69.6081 -8.22568 10.689 +v 65.7674 8.22568 25.1831 +v 65.7674 -8.22568 25.1831 +v 60.0922 8.22568 36.7216 +v 60.0922 -8.22568 36.7216 +v -17.9442 8.22568 68.0995 +v -17.9442 -8.22568 68.0995 +v 22.2441 8.22568 66.8187 +v 22.2441 -8.22568 66.8187 +v 9.72384 8.22568 69.7495 +v 9.72384 -8.22568 69.7495 +v 68.3416 8.22568 16.9993 +v 68.3416 -8.22568 16.9993 +v -24.0864 8.22568 66.1769 +v -24.0864 -8.22568 66.1769 +v 70.953 12.3112 0 +v 70.953 -12.3112 0 +v 61.6427 12.3112 35.1355 +v 61.6427 -12.3112 35.1355 +v 70.1309 12.3112 10.7693 +v 70.1309 -12.3112 10.7693 +v -15.9801 12.3112 69.13 +v -15.9801 -12.3112 69.13 +v 3.34038 12.3112 70.8743 +v 3.34038 -12.3112 70.8743 +v 69.7702 12.3112 12.9012 +v 69.7702 -12.3112 12.9012 +v 28.4636 12.3112 64.9934 +v 28.4636 -12.3112 64.9934 +v -0.982796 12.3112 70.9462 +v -0.982796 -12.3112 70.9462 +v -7.4557 12.3112 70.5602 +v -7.4557 -12.3112 70.5602 +v 56.913 12.3112 42.3702 +v 56.913 -12.3112 42.3702 +v 68.8549 12.3112 17.1269 +v 68.8549 -12.3112 17.1269 +v 67.6838 12.3112 21.2891 +v 67.6838 -12.3112 21.2891 +v 70.6567 12.3112 6.47763 +v 70.6567 -12.3112 6.47763 +v 52.8072 12.3112 47.3891 +v 49.8226 12.3112 50.5176 +v 48.2603 12.3112 52.0122 +v 52.8072 -12.3112 47.3891 +v 49.8226 -12.3112 50.5176 +v 48.2603 -12.3112 52.0122 +v 22.4112 12.3112 67.3206 +v 20.3495 12.3112 67.9722 +v 22.4112 -12.3112 67.3206 +v 20.3495 -12.3112 67.9722 +v -22.2246 12.3112 67.3824 +v -22.2246 -12.3112 67.3824 +v -5.30232 12.3112 70.7546 +v -5.30232 -12.3112 70.7546 +v 68.301 12.3112 19.2169 +v -18.079 12.3112 68.611 +v 68.301 -12.3112 19.2169 +v -18.079 -12.3112 68.611 +v -24.2673 12.3112 66.674 +v -24.2673 -12.3112 66.674 +v 66.2614 12.3112 25.3722 +v 65.4576 12.3112 27.3794 +v 45.0026 12.3112 54.8552 +v 16.1716 12.3112 69.0855 +v 66.2614 -12.3112 25.3722 +v 65.4576 -12.3112 27.3794 +v 45.0026 -12.3112 54.8552 +v 16.1716 -12.3112 69.0855 +v 5.49832 12.3112 70.7396 +v 5.49832 -12.3112 70.7396 +v -3.14402 12.3112 70.8833 +v -3.14402 -12.3112 70.8833 +v 55.5956 12.3112 44.0846 +v 18.269 12.3112 68.5607 +v 55.5956 -12.3112 44.0846 +v 18.269 -12.3112 68.5607 +v 63.6684 12.3112 31.3156 +v -20.1612 12.3112 68.0283 +v 63.6684 -12.3112 31.3156 +v -20.1612 -12.3112 68.0283 +v -13.8663 12.3112 69.5848 +v -13.8663 -12.3112 69.5848 +v 1.17934 12.3112 70.9432 +v 1.17934 -12.3112 70.9432 +v 32.3695 12.3112 63.139 +v 58.1776 12.3112 40.6164 +v 54.2266 12.3112 45.7581 +v 30.4307 12.3112 64.096 +v -11.7397 12.3112 69.975 +v 32.3695 -12.3112 63.139 +v 58.1776 -12.3112 40.6164 +v 54.2266 -12.3112 45.7581 +v 30.4307 -12.3112 64.096 +v -11.7397 -12.3112 69.975 +v -9.60216 12.3112 70.3002 +v -9.60216 -12.3112 70.3002 +v 9.79688 12.3112 70.2734 +v 9.79688 -12.3112 70.2734 +v 70.4265 12.3112 8.62748 +v 70.4265 -12.3112 8.62748 +v 34.2783 12.3112 62.1235 +v 60.5435 12.3112 36.9974 +v 37.9986 12.3112 59.9202 +v 24.452 12.3112 66.6065 +v 34.2783 -12.3112 62.1235 +v 60.5435 -12.3112 36.9974 +v 37.9986 -12.3112 59.9202 +v 24.452 -12.3112 66.6065 +v 70.8212 12.3112 4.32176 +v 70.8212 -12.3112 4.32176 +v 70.92 12.3112 2.16189 +v 70.92 -12.3112 2.16189 +v 67.0037 12.3112 23.3415 +v 64.593 12.3112 29.3611 +v 14.0591 12.3112 69.5462 +v 67.0037 -12.3112 23.3415 +v 64.593 -12.3112 29.3611 +v 14.0591 -12.3112 69.5462 +v 11.9335 12.3112 69.9422 +v 11.9335 -12.3112 69.9422 +v 36.1552 12.3112 61.0502 +v 46.6531 12.3112 53.4585 +v 43.3103 12.3112 56.2009 +v 39.8067 12.3112 58.7346 +v 46.6531 -12.3112 53.4585 +v 43.3103 -12.3112 56.2009 +v 39.8067 -12.3112 58.7346 +v 36.1552 -12.3112 61.0502 +v 7.65115 12.3112 70.5392 +v 7.65115 -12.3112 70.5392 +v 41.5778 12.3112 57.4944 +v 41.5778 -12.3112 57.4944 +v 69.3447 12.3112 15.021 +v 69.3447 -12.3112 15.021 +v 62.6846 12.3112 33.241 +v 59.3881 12.3112 38.8249 +v 51.3387 12.3112 48.9761 +v 62.6846 -12.3112 33.241 +v 59.3881 -12.3112 38.8249 +v 51.3387 -12.3112 48.9761 +v 26.4701 12.3112 65.8305 +v 26.4701 -12.3112 65.8305 +v -3.17675 16.3642 71.6211 +v -3.17675 -16.3642 71.6211 +v -11.8619 16.3642 70.7034 +v -11.8619 -16.3642 70.7034 +v 70.0666 16.3642 15.1774 +v 70.0666 -16.3642 15.1774 +v 71.1596 16.3642 8.71729 +v 71.1596 -16.3642 8.71729 +v -16.1464 16.3642 69.8496 +v -16.1464 -16.3642 69.8496 +v 69.012 16.3642 19.417 +v 69.012 -16.3642 19.417 +v 53.3569 16.3642 47.8824 +v 48.7626 16.3642 52.5536 +v 53.3569 -16.3642 47.8824 +v 48.7626 -16.3642 52.5536 +v -22.4559 16.3642 68.0838 +v -22.4559 -16.3642 68.0838 +v 71.6915 16.3642 0 +v 32.7065 16.3642 63.7963 +v 47.1387 16.3642 54.015 +v 43.7611 16.3642 56.7859 +v 24.7065 16.3642 67.2998 +v 71.6915 -16.3642 0 +v 32.7065 -16.3642 63.7963 +v 47.1387 -16.3642 54.015 +v 43.7611 -16.3642 56.7859 +v 24.7065 -16.3642 67.2998 +v 9.89886 16.3642 71.0049 +v 9.89886 -16.3642 71.0049 +v 71.6583 16.3642 2.18439 +v 71.6583 -16.3642 2.18439 +v 34.6351 16.3642 62.7701 +v 57.5055 16.3642 42.8112 +v 22.6444 16.3642 68.0214 +v 34.6351 -16.3642 62.7701 +v 57.5055 -16.3642 42.8112 +v 22.6444 -16.3642 68.0214 +v 12.0577 16.3642 70.6703 +v 12.0577 -16.3642 70.6703 +v 67.7012 16.3642 23.5845 +v 30.7474 16.3642 64.7632 +v 67.7012 -16.3642 23.5845 +v 30.7474 -16.3642 64.7632 +v 36.5316 16.3642 61.6857 +v 56.1743 16.3642 44.5435 +v 56.1743 -16.3642 44.5435 +v 36.5316 -16.3642 61.6857 +v -7.53331 16.3642 71.2946 +v -7.53331 -16.3642 71.2946 +v -5.35752 16.3642 71.4911 +v -5.35752 -16.3642 71.4911 +v 66.1389 16.3642 27.6644 +v 26.7456 16.3642 66.5158 +v 20.5614 16.3642 68.6797 +v 14.2054 16.3642 70.2701 +v 66.1389 -16.3642 27.6644 +v 26.7456 -16.3642 66.5158 +v 20.5614 -16.3642 68.6797 +v 14.2054 -16.3642 70.2701 +v 60.0063 16.3642 39.2291 +v 54.791 16.3642 46.2344 +v 60.0063 -16.3642 39.2291 +v 54.791 -16.3642 46.2344 +v 1.19161 16.3642 71.6816 +v 1.19161 -16.3642 71.6816 +v 70.8609 16.3642 10.8814 +v 70.8609 -16.3642 10.8814 +v 3.37515 16.3642 71.6121 +v 3.37515 -16.3642 71.6121 +v 64.3311 16.3642 31.6415 +v 64.3311 -16.3642 31.6415 +v -9.70211 16.3642 71.032 +v -9.70211 -16.3642 71.032 +v 61.1737 16.3642 37.3825 +v 40.221 16.3642 59.346 +v 61.1737 -16.3642 37.3825 +v 40.221 -16.3642 59.346 +v 71.5584 16.3642 4.36675 +v 71.5584 -16.3642 4.36675 +v 65.2653 16.3642 29.6667 +v 65.2653 -16.3642 29.6667 +v 62.2844 16.3642 35.5012 +v 45.471 16.3642 55.4262 +v 28.7599 16.3642 65.67 +v 62.2844 -16.3642 35.5012 +v 45.471 -16.3642 55.4262 +v 28.7599 -16.3642 65.67 +v -0.993027 16.3642 71.6847 +v -0.993027 -16.3642 71.6847 +v 68.3884 16.3642 21.5107 +v 68.3884 -16.3642 21.5107 +v 16.3399 16.3642 69.8046 +v 16.3399 -16.3642 69.8046 +v 58.7832 16.3642 41.0392 +v 38.3941 16.3642 60.5439 +v 18.4592 16.3642 69.2744 +v 58.7832 -16.3642 41.0392 +v 38.3941 -16.3642 60.5439 +v 18.4592 -16.3642 69.2744 +v 5.55555 16.3642 71.476 +v 5.55555 -16.3642 71.476 +v 71.3922 16.3642 6.54506 +v -20.371 16.3642 68.7365 +v 71.3922 -16.3642 6.54506 +v -20.371 -16.3642 68.7365 +v -24.52 16.3642 67.368 +v -24.52 -16.3642 67.368 +v 51.8731 16.3642 49.4859 +v 50.3413 16.3642 51.0435 +v 42.0106 16.3642 58.0929 +v 51.8731 -16.3642 49.4859 +v 50.3413 -16.3642 51.0435 +v 42.0106 -16.3642 58.0929 +v 69.5716 16.3642 17.3052 +v 69.5716 -16.3642 17.3052 +v 70.4965 16.3642 13.0354 +v 70.4965 -16.3642 13.0354 +v 66.9512 16.3642 25.6363 +v 66.9512 -16.3642 25.6363 +v 63.3371 16.3642 33.587 +v 63.3371 -16.3642 33.587 +v 7.73079 16.3642 71.2735 +v 7.73079 -16.3642 71.2735 +v -18.2672 16.3642 69.3252 +v -18.2672 -16.3642 69.3252 +v -14.0107 16.3642 70.3092 +v -14.0107 -16.3642 70.3092 +v 67.0119 20.3737 28.0295 +v 67.0119 -20.3737 28.0295 +v 27.0986 20.3737 67.3937 +v 27.0986 -20.3737 67.3937 +v 56.9157 20.3737 45.1314 +v 56.9157 -20.3737 45.1314 +v 72.5029 20.3737 4.42439 +v 72.5029 -20.3737 4.42439 +v -22.7523 20.3737 68.9825 +v 31.1533 20.3737 65.618 +v -22.7523 -20.3737 68.9825 +v 31.1533 -20.3737 65.618 +v -20.6399 20.3737 69.6437 +v -20.6399 -20.3737 69.6437 +v 47.7609 20.3737 54.7279 +v 38.9009 20.3737 61.343 +v 10.0295 20.3737 71.942 +v 47.7609 -20.3737 54.7279 +v 38.9009 -20.3737 61.343 +v 10.0295 -20.3737 71.942 +v -5.42823 20.3737 72.4347 +v -5.42823 -20.3737 72.4347 +v -24.8436 20.3737 68.2572 +v 37.0137 20.3737 62.4998 +v 33.1381 20.3737 64.6383 +v 58.2645 20.3737 43.3763 +v 33.1381 -20.3737 64.6383 +v -24.8436 -20.3737 68.2572 +v 58.2645 -20.3737 43.3763 +v 37.0137 -20.3737 62.4998 +v -14.1956 20.3737 71.2372 +v -14.1956 -20.3737 71.2372 +v 72.6378 20.3737 0 +v 64.1731 20.3737 34.0303 +v 49.4062 20.3737 53.2473 +v 72.6378 -20.3737 0 +v 64.1731 -20.3737 34.0303 +v 49.4062 -20.3737 53.2473 +v 72.0988 20.3737 8.83235 +v 68.5948 20.3737 23.8957 +v 72.0988 -20.3737 8.83235 +v 68.5948 -20.3737 23.8957 +v 71.4269 20.3737 13.2075 +v 71.4269 -20.3737 13.2075 +v -1.00613 20.3737 72.6308 +v -1.00613 -20.3737 72.6308 +v 70.4899 20.3737 17.5336 +v 69.291 20.3737 21.7946 +v 59.559 20.3737 41.5809 +v 42.5651 20.3737 58.8597 +v 70.4899 -20.3737 17.5336 +v 69.291 -20.3737 21.7946 +v 59.559 -20.3737 41.5809 +v 42.5651 -20.3737 58.8597 +v 69.9229 20.3737 19.6733 +v 69.9229 -20.3737 19.6733 +v 1.20734 20.3737 72.6277 +v 1.20734 -20.3737 72.6277 +v 29.1395 20.3737 66.5368 +v 29.1395 -20.3737 66.5368 +v 71.7962 20.3737 11.025 +v 71.7962 -20.3737 11.025 +v 60.7983 20.3737 39.7468 +v 60.7983 -20.3737 39.7468 +v -18.5083 20.3737 70.2402 +v -18.5083 -20.3737 70.2402 +v -9.83017 20.3737 71.9695 +v -9.83017 -20.3737 71.9695 +v 66.1267 20.3737 30.0583 +v 22.9433 20.3737 68.9192 +v 18.7028 20.3737 70.1887 +v 66.1267 -20.3737 30.0583 +v 22.9433 -20.3737 68.9192 +v 18.7028 -20.3737 70.1887 +v 72.6041 20.3737 2.21322 +v 72.6041 -20.3737 2.21322 +v -7.63274 20.3737 72.2356 +v -7.63274 -20.3737 72.2356 +v 67.8348 20.3737 25.9747 +v 67.8348 -20.3737 25.9747 +v 72.3344 20.3737 6.63144 +v 72.3344 -20.3737 6.63144 +v 63.1064 20.3737 35.9698 +v 55.5142 20.3737 46.8446 +v 46.0712 20.3737 56.1577 +v 40.7519 20.3737 60.1293 +v 63.1064 -20.3737 35.9698 +v 55.5142 -20.3737 46.8446 +v 46.0712 -20.3737 56.1577 +v 40.7519 -20.3737 60.1293 +v -3.21867 20.3737 72.5664 +v -3.21867 -20.3737 72.5664 +v 70.9914 20.3737 15.3777 +v 70.9914 -20.3737 15.3777 +v -12.0185 20.3737 71.6366 +v -12.0185 -20.3737 71.6366 +v -16.3596 20.3737 70.7716 +v -16.3596 -20.3737 70.7716 +v 5.62888 20.3737 72.4194 +v 5.62888 -20.3737 72.4194 +v 12.2169 20.3737 71.603 +v 12.2169 -20.3737 71.603 +v 54.0611 20.3737 48.5144 +v 52.5578 20.3737 50.139 +v 25.0326 20.3737 68.1881 +v 54.0611 -20.3737 48.5144 +v 52.5578 -20.3737 50.139 +v 25.0326 -20.3737 68.1881 +v 16.5555 20.3737 70.726 +v 16.5555 -20.3737 70.726 +v 35.0922 20.3737 63.5986 +v 65.1802 20.3737 32.0592 +v 61.9812 20.3737 37.8759 +v 44.3387 20.3737 57.5354 +v 35.0922 -20.3737 63.5986 +v 65.1802 -20.3737 32.0592 +v 61.9812 -20.3737 37.8759 +v 44.3387 -20.3737 57.5354 +v 3.4197 20.3737 72.5572 +v 3.4197 -20.3737 72.5572 +v 51.0057 20.3737 51.7172 +v 51.0057 -20.3737 51.7172 +v 14.3929 20.3737 71.1976 +v 14.3929 -20.3737 71.1976 +v 20.8328 20.3737 69.5862 +v 20.8328 -20.3737 69.5862 +v 7.83283 20.3737 72.2142 +v 7.83283 -20.3737 72.2142 +v 7.95699 24.3292 73.3589 +v 7.95699 -24.3292 73.3589 +v 54.918 24.3292 49.2834 +v 54.918 -24.3292 49.2834 +v 31.6471 24.3292 66.6581 +v 31.6471 -24.3292 66.6581 +v -18.8017 24.3292 71.3536 +v -18.8017 -24.3292 71.3536 +v -9.98598 24.3292 73.1103 +v -9.98598 -24.3292 73.1103 +v 10.1885 24.3292 73.0824 +v 10.1885 -24.3292 73.0824 +v 21.163 24.3292 70.6892 +v 21.163 -24.3292 70.6892 +v 57.8179 24.3292 45.8468 +v 18.9993 24.3292 71.3012 +v 57.8179 -24.3292 45.8468 +v 18.9993 -24.3292 71.3012 +v 66.2134 24.3292 32.5673 +v 59.188 24.3292 44.0638 +v 43.2398 24.3292 59.7927 +v 66.2134 -24.3292 32.5673 +v 59.188 -24.3292 44.0638 +v 43.2398 -24.3292 59.7927 +v 73.481 24.3292 6.73656 +v 73.481 -24.3292 6.73656 +v 72.5591 24.3292 13.4169 +v -14.4206 24.3292 72.3663 +v 72.5591 -24.3292 13.4169 +v -14.4206 -24.3292 72.3663 +v 72.1167 24.3292 15.6215 +v 14.621 24.3292 72.3261 +v 72.1167 -24.3292 15.6215 +v 14.621 -24.3292 72.3261 +v 72.9343 24.3292 11.1998 +v 72.9343 -24.3292 11.1998 +v -3.2697 24.3292 73.7167 +v -3.2697 -24.3292 73.7167 +v 73.7892 24.3292 0 +v 71.6072 24.3292 17.8115 +v 53.3909 24.3292 50.9338 +v 41.3979 24.3292 61.0824 +v 73.7892 -24.3292 0 +v 71.6072 -24.3292 17.8115 +v 53.3909 -24.3292 50.9338 +v 41.3979 -24.3292 61.0824 +v 73.6522 24.3292 4.49452 +v 73.6522 -24.3292 4.49452 +v 71.0312 24.3292 19.9851 +v 71.0312 -24.3292 19.9851 +v 35.6485 24.3292 64.6067 +v 35.6485 -24.3292 64.6067 +v -7.75373 24.3292 73.3807 +v -7.75373 -24.3292 73.3807 +v 16.818 24.3292 71.847 +v 16.818 -24.3292 71.847 +v -1.02208 24.3292 73.7821 +v -1.02208 -24.3292 73.7821 +v 51.8142 24.3292 52.5369 +v 50.1894 24.3292 54.0913 +v 46.8015 24.3292 57.0479 +v 29.6014 24.3292 67.5914 +v 51.8142 -24.3292 52.5369 +v 50.1894 -24.3292 54.0913 +v 46.8015 -24.3292 57.0479 +v 29.6014 -24.3292 67.5914 +v -16.6189 24.3292 71.8934 +v -16.6189 -24.3292 71.8934 +v 1.22648 24.3292 73.779 +v 1.22648 -24.3292 73.779 +v 67.1749 24.3292 30.5347 +v 61.7621 24.3292 40.3769 +v 67.1749 -24.3292 30.5347 +v 61.7621 -24.3292 40.3769 +v 5.7181 24.3292 73.5673 +v 5.7181 -24.3292 73.5673 +v -23.1129 24.3292 70.0759 +v 69.6821 24.3292 24.2745 +v 68.9101 24.3292 26.3864 +v -23.1129 -24.3292 70.0759 +v 69.6821 -24.3292 24.2745 +v 68.9101 -24.3292 26.3864 +v -5.51427 24.3292 73.5828 +v -5.51427 -24.3292 73.5828 +v -25.2374 24.3292 69.3391 +v 37.6004 24.3292 63.4905 +v 68.0741 24.3292 28.4738 +v -25.2374 -24.3292 69.3391 +v 68.0741 -24.3292 28.4738 +v 37.6004 -24.3292 63.4905 +v 25.4294 24.3292 69.269 +v 25.4294 -24.3292 69.269 +v 33.6634 24.3292 65.6629 +v 62.9636 24.3292 38.4763 +v 60.5031 24.3292 42.24 +v 39.5175 24.3292 62.3154 +v 33.6634 -24.3292 65.6629 +v 62.9636 -24.3292 38.4763 +v 60.5031 -24.3292 42.24 +v 39.5175 -24.3292 62.3154 +v 3.4739 24.3292 73.7074 +v 3.4739 -24.3292 73.7074 +v 73.7549 24.3292 2.2483 +v 73.7549 -24.3292 2.2483 +v 56.3942 24.3292 47.5872 +v 48.518 24.3292 55.5954 +v 27.5282 24.3292 68.462 +v 56.3942 -24.3292 47.5872 +v 48.518 -24.3292 55.5954 +v 27.5282 -24.3292 68.462 +v 12.4105 24.3292 72.738 +v 12.4105 -24.3292 72.738 +v -12.209 24.3292 72.7721 +v -12.209 -24.3292 72.7721 +v 45.0415 24.3292 58.4474 +v 23.307 24.3292 70.0116 +v 45.0415 -24.3292 58.4474 +v 23.307 -24.3292 70.0116 +v -20.9671 24.3292 70.7476 +v -20.9671 -24.3292 70.7476 +v 65.1903 24.3292 34.5697 +v 64.1067 24.3292 36.54 +v 65.1903 -24.3292 34.5697 +v 64.1067 -24.3292 36.54 +v 73.2417 24.3292 8.97235 +v 73.2417 -24.3292 8.97235 +v 70.3893 24.3292 22.1401 +v 70.3893 -24.3292 22.1401 +v 5.82299 28.2202 74.9167 +v 5.82299 -28.2202 74.9167 +v 72.9206 28.2202 18.1383 +v 72.9206 -28.2202 18.1383 +v -1.04083 28.2202 75.1354 +v -1.04083 -28.2202 75.1354 +v 70.1741 28.2202 26.8704 +v 70.1741 -28.2202 26.8704 +v 75.1426 28.2202 0 +v 75.1426 -28.2202 0 +v -7.89595 28.2202 74.7266 +v -7.89595 -28.2202 74.7266 +v 38.2901 28.2202 64.6551 +v 38.2901 -28.2202 64.6551 +v 1.24898 28.2202 75.1323 +v 1.24898 -28.2202 75.1323 +v 74.2721 28.2202 11.4052 +v 74.2721 -28.2202 11.4052 +v 74.5851 28.2202 9.13692 +v 74.5851 -28.2202 9.13692 +v 72.3341 28.2202 20.3517 +v 55.9254 28.2202 50.1874 +v 52.7646 28.2202 53.5006 +v 42.1572 28.2202 62.2028 +v -10.1692 28.2202 74.4514 +v 72.3341 -28.2202 20.3517 +v 55.9254 -28.2202 50.1874 +v 52.7646 -28.2202 53.5006 +v 42.1572 -28.2202 62.2028 +v -10.1692 -28.2202 74.4514 +v -12.4329 28.2202 74.107 +v -12.4329 -28.2202 74.107 +v 67.4279 28.2202 33.1647 +v 67.4279 -28.2202 33.1647 +v 12.6382 28.2202 74.0722 +v 12.6382 -28.2202 74.0722 +v 69.3228 28.2202 28.9961 +v 62.8949 28.2202 41.1175 +v 61.6129 28.2202 43.0148 +v 58.8785 28.2202 46.6877 +v 57.4286 28.2202 48.46 +v 49.4079 28.2202 56.6152 +v 32.2276 28.2202 67.8808 +v 69.3228 -28.2202 28.9961 +v 62.8949 -28.2202 41.1175 +v 61.6129 -28.2202 43.0148 +v 58.8785 -28.2202 46.6877 +v 57.4286 -28.2202 48.46 +v 49.4079 -28.2202 56.6152 +v 32.2276 -28.2202 67.8808 +v -23.5369 28.2202 71.3613 +v 74.8288 28.2202 6.86013 +v 30.1443 28.2202 68.8312 +v -23.5369 -28.2202 71.3613 +v 74.8288 -28.2202 6.86013 +v 30.1443 -28.2202 68.8312 +v 10.3754 28.2202 74.4229 +v 10.3754 -28.2202 74.4229 +v 8.10294 28.2202 74.7045 +v 8.10294 -28.2202 74.7045 +v -19.1466 28.2202 72.6624 +v -19.1466 -28.2202 72.6624 +v 36.3024 28.2202 65.7918 +v 54.3702 28.2202 51.8681 +v 40.2424 28.2202 63.4584 +v -16.9237 28.2202 73.2121 +v 36.3024 -28.2202 65.7918 +v 54.3702 -28.2202 51.8681 +v 40.2424 -28.2202 63.4584 +v -16.9237 -28.2202 73.2121 +v -25.7003 28.2202 70.611 +v 19.3478 28.2202 72.6091 +v -25.7003 -28.2202 70.611 +v 19.3478 -28.2202 72.6091 +v 71.6805 28.2202 22.5462 +v 44.0329 28.2202 60.8894 +v 71.6805 -28.2202 22.5462 +v 44.0329 -28.2202 60.8894 +v 3.53762 28.2202 75.0593 +v 3.53762 -28.2202 75.0593 +v 17.1265 28.2202 73.1649 +v 17.1265 -28.2202 73.1649 +v -5.61542 28.2202 74.9325 +v -5.61542 -28.2202 74.9325 +v 73.4395 28.2202 15.908 +v 14.8892 28.2202 73.6528 +v 73.4395 -28.2202 15.908 +v 14.8892 -28.2202 73.6528 +v 73.8901 28.2202 13.663 +v 73.8901 -28.2202 13.663 +v 51.11 28.2202 55.0835 +v 47.6599 28.2202 58.0943 +v 25.8958 28.2202 70.5395 +v 51.11 -28.2202 55.0835 +v 47.6599 -28.2202 58.0943 +v 25.8958 -28.2202 70.5395 +v -3.32967 28.2202 75.0688 +v -3.32967 -28.2202 75.0688 +v 68.4071 28.2202 31.0948 +v 66.3861 28.2202 35.2038 +v 68.4071 -28.2202 31.0948 +v 66.3861 -28.2202 35.2038 +v -21.3517 28.2202 72.0453 +v -21.3517 -28.2202 72.0453 +v 34.2809 28.2202 66.8673 +v 60.2737 28.2202 44.8721 +v 45.8677 28.2202 59.5195 +v 34.2809 -28.2202 66.8673 +v 60.2737 -28.2202 44.8721 +v 45.8677 -28.2202 59.5195 +v 70.9602 28.2202 24.7198 +v 65.2826 28.2202 37.2102 +v 70.9602 -28.2202 24.7198 +v 65.2826 -28.2202 37.2102 +v 28.0331 28.2202 69.7178 +v 28.0331 -28.2202 69.7178 +v -14.6851 28.2202 73.6937 +v -14.6851 -28.2202 73.6937 +v 23.7345 28.2202 71.2958 +v 23.7345 -28.2202 71.2958 +v 21.5512 28.2202 71.9859 +v 21.5512 -28.2202 71.9859 +v 75.1078 28.2202 2.28954 +v 75.1078 -28.2202 2.28954 +v 75.0031 28.2202 4.57696 +v 75.0031 -28.2202 4.57696 +v 64.1186 28.2202 39.182 +v 64.1186 -28.2202 39.182 +v 26.4307 32.0363 71.9964 +v 26.4307 -32.0363 71.9964 +v 3.61069 32.0363 76.6096 +v 3.61069 -32.0363 76.6096 +v -24.023 32.0363 72.8352 +v -24.023 -32.0363 72.8352 +v 55.4932 32.0363 52.9393 +v 55.4932 -32.0363 52.9393 +v -5.7314 32.0363 76.4802 +v -5.7314 -32.0363 76.4802 +v 19.7474 32.0363 74.1088 +v 19.7474 -32.0363 74.1088 +v 76.1256 32.0363 9.32564 +v 76.1256 -32.0363 9.32564 +v 10.5897 32.0363 75.96 +v 10.5897 -32.0363 75.96 +v 37.0522 32.0363 67.1506 +v 70.7545 32.0363 29.595 +v 67.7572 32.0363 35.9309 +v 37.0522 -32.0363 67.1506 +v 70.7545 -32.0363 29.595 +v 67.7572 -32.0363 35.9309 +v 5.94325 32.0363 76.464 +v 5.94325 -32.0363 76.464 +v -1.06233 32.0363 76.6873 +v -1.06233 -32.0363 76.6873 +v 64.1939 32.0363 41.9667 +v 24.2247 32.0363 72.7683 +v 64.1939 -32.0363 41.9667 +v 24.2247 -32.0363 72.7683 +v -12.6897 32.0363 75.6376 +v -12.6897 -32.0363 75.6376 +v 12.8992 32.0363 75.6021 +v 12.8992 -32.0363 75.6021 +v 61.5186 32.0363 45.7989 +v 52.1656 32.0363 56.2211 +v 48.6443 32.0363 59.2942 +v 61.5186 -32.0363 45.7989 +v 52.1656 -32.0363 56.2211 +v 48.6443 -32.0363 59.2942 +v -8.05903 32.0363 76.2701 +v -8.05903 -32.0363 76.2701 +v 15.1967 32.0363 75.174 +v 15.1967 -32.0363 75.174 +v 62.8854 32.0363 43.9032 +v 41.0735 32.0363 64.7691 +v 30.7669 32.0363 70.2529 +v 62.8854 -32.0363 43.9032 +v 41.0735 -32.0363 64.7691 +v 30.7669 -32.0363 70.2529 +v 69.82 32.0363 31.7371 +v 69.82 -32.0363 31.7371 +v 53.8544 32.0363 54.6056 +v 46.8151 32.0363 60.7488 +v 53.8544 -32.0363 54.6056 +v 46.8151 -32.0363 60.7488 +v 1.27477 32.0363 76.6841 +v 1.27477 -32.0363 76.6841 +v 39.081 32.0363 65.9905 +v 65.4428 32.0363 39.9913 +v 65.4428 -32.0363 39.9913 +v 39.081 -32.0363 65.9905 +v 74.4268 32.0363 18.5129 +v 74.4268 -32.0363 18.5129 +v -14.9884 32.0363 75.2158 +v -14.9884 -32.0363 75.2158 +v 58.6147 32.0363 49.4609 +v 50.4284 32.0363 57.7845 +v 44.9424 32.0363 62.147 +v 28.6121 32.0363 71.1577 +v 58.6147 -32.0363 49.4609 +v 50.4284 -32.0363 57.7845 +v 44.9424 -32.0363 62.147 +v 28.6121 -32.0363 71.1577 +v -26.2311 32.0363 72.0694 +v 73.1609 32.0363 23.0119 +v -26.2311 -32.0363 72.0694 +v 73.1609 -32.0363 23.0119 +v 32.8932 32.0363 69.2828 +v 32.8932 -32.0363 69.2828 +v 8.2703 32.0363 76.2474 +v 8.2703 -32.0363 76.2474 +v 21.9963 32.0363 73.4727 +v 17.4802 32.0363 74.676 +v 21.9963 -32.0363 73.4727 +v 17.4802 -32.0363 74.676 +v 75.4162 32.0363 13.9452 +v 75.4162 -32.0363 13.9452 +v 76.6946 32.0363 0 +v 68.8205 32.0363 33.8497 +v 76.6946 -32.0363 0 +v 68.8205 -32.0363 33.8497 +v -17.2732 32.0363 74.7242 +v -17.2732 -32.0363 74.7242 +v 76.3744 32.0363 7.00182 +v 76.3744 -32.0363 7.00182 +v -10.3792 32.0363 75.9891 +v -10.3792 -32.0363 75.9891 +v 66.631 32.0363 37.9787 +v 66.631 -32.0363 37.9787 +v 72.4258 32.0363 25.2303 +v 71.6234 32.0363 27.4254 +v 72.4258 -32.0363 25.2303 +v 71.6234 -32.0363 27.4254 +v 34.9889 32.0363 68.2484 +v 34.9889 -32.0363 68.2484 +v 76.659 32.0363 2.33683 +v 76.659 -32.0363 2.33683 +v 73.8281 32.0363 20.772 +v 73.8281 -32.0363 20.772 +v -19.542 32.0363 74.1632 +v -19.542 -32.0363 74.1632 +v 60.0945 32.0363 47.652 +v 43.0279 32.0363 63.4875 +v 60.0945 -32.0363 47.652 +v 43.0279 -32.0363 63.4875 +v 74.9563 32.0363 16.2365 +v 74.9563 -32.0363 16.2365 +v 57.0805 32.0363 51.2239 +v -21.7926 32.0363 73.5333 +v 57.0805 -32.0363 51.2239 +v -21.7926 -32.0363 73.5333 +v -3.39844 32.0363 76.6193 +v -3.39844 -32.0363 76.6193 +v 76.5523 32.0363 4.67149 +v 76.5523 -32.0363 4.67149 +v 75.8061 32.0363 11.6408 +v 75.8061 -32.0363 11.6408 +v 6.07859 35.7675 78.2051 +v 6.07859 -35.7675 78.2051 +v -5.86191 35.7675 78.2217 +v -5.86191 -35.7675 78.2217 +v -15.3297 35.7675 76.9285 +v -15.3297 -35.7675 76.9285 +v 17.8782 35.7675 76.3765 +v 17.8782 -35.7675 76.3765 +v 8.45862 35.7675 77.9836 +v 8.45862 -35.7675 77.9836 +v 74.8269 35.7675 23.5359 +v 72.3657 35.7675 30.2689 +v 74.8269 -35.7675 23.5359 +v 72.3657 -35.7675 30.2689 +v -17.6666 35.7675 76.4257 +v -17.6666 -35.7675 76.4257 +v -26.8284 35.7675 73.7105 +v -26.8284 -35.7675 73.7105 +v 77.1335 35.7675 14.2627 +v 77.1335 -35.7675 14.2627 +v -8.24254 35.7675 78.0068 +v -8.24254 -35.7675 78.0068 +v 10.8308 35.7675 77.6897 +v 10.8308 -35.7675 77.6897 +v 74.075 35.7675 25.8048 +v 74.075 -35.7675 25.8048 +v -19.987 35.7675 75.8519 +v -19.987 -35.7675 75.8519 +v 68.1482 35.7675 38.8435 +v 64.3174 35.7675 44.9029 +v 61.4629 35.7675 48.7371 +v 68.1482 -35.7675 38.8435 +v 64.3174 -35.7675 44.9029 +v 61.4629 -35.7675 48.7371 +v 73.2543 35.7675 28.0499 +v -3.47583 35.7675 78.364 +v 73.2543 -35.7675 28.0499 +v -3.47583 -35.7675 78.364 +v 78.1135 35.7675 7.16125 +v 78.1135 -35.7675 7.16125 +v 78.2954 35.7675 4.77786 +v 78.2954 -35.7675 4.77786 +v 75.5092 35.7675 21.245 +v 69.3001 35.7675 36.7491 +v 29.2636 35.7675 72.778 +v 24.7763 35.7675 74.4253 +v 75.5092 -35.7675 21.245 +v 69.3001 -35.7675 36.7491 +v 29.2636 -35.7675 72.778 +v 24.7763 -35.7675 74.4253 +v 78.441 35.7675 0 +v 70.3876 35.7675 34.6205 +v 62.9194 35.7675 46.8417 +v 59.9494 35.7675 50.5872 +v 55.0807 35.7675 55.849 +v 47.8811 35.7675 62.1321 +v 45.9657 35.7675 63.5622 +v 44.0077 35.7675 64.9332 +v 31.4675 35.7675 71.8526 +v 78.441 -35.7675 0 +v 70.3876 -35.7675 34.6205 +v 62.9194 -35.7675 46.8417 +v 59.9494 -35.7675 50.5872 +v 55.0807 -35.7675 55.849 +v 47.8811 -35.7675 62.1321 +v 45.9657 -35.7675 63.5622 +v 44.0077 -35.7675 64.9332 +v 31.4675 -35.7675 71.8526 +v 76.6631 35.7675 16.6063 +v 76.6631 -35.7675 16.6063 +v 1.3038 35.7675 78.4302 +v 1.3038 -35.7675 78.4302 +v 15.5428 35.7675 76.8857 +v 15.5428 -35.7675 76.8857 +v 77.5322 35.7675 11.9059 +v 58.3802 35.7675 52.3903 +v 56.7568 35.7675 54.1448 +v 51.5767 35.7675 59.1003 +v 49.752 35.7675 60.6444 +v 77.5322 -35.7675 11.9059 +v 58.3802 -35.7675 52.3903 +v 56.7568 -35.7675 54.1448 +v 51.5767 -35.7675 59.1003 +v 49.752 -35.7675 60.6444 +v -24.57 35.7675 74.4937 +v 27.0325 35.7675 73.6359 +v 20.1971 35.7675 75.7963 +v -24.57 -35.7675 74.4937 +v 27.0325 -35.7675 73.6359 +v 20.1971 -35.7675 75.7963 +v -1.08652 35.7675 78.4335 +v -1.08652 -35.7675 78.4335 +v 3.69291 35.7675 78.3541 +v 3.69291 -35.7675 78.3541 +v 71.4098 35.7675 32.4597 +v 71.4098 -35.7675 32.4597 +v 13.1929 35.7675 77.3236 +v 13.1929 -35.7675 77.3236 +v 53.3535 35.7675 57.5014 +v 33.6422 35.7675 70.8604 +v 53.3535 -35.7675 57.5014 +v 33.6422 -35.7675 70.8604 +v -12.9787 35.7675 77.3599 +v -12.9787 -35.7675 77.3599 +v 77.859 35.7675 9.53799 +v 77.859 -35.7675 9.53799 +v 65.6557 35.7675 42.9223 +v 42.0088 35.7675 66.2439 +v 65.6557 -35.7675 42.9223 +v 42.0088 -35.7675 66.2439 +v 39.9709 35.7675 67.4931 +v 35.7856 35.7675 69.8025 +v 66.933 35.7675 40.9019 +v 22.4971 35.7675 75.1457 +v 35.7856 -35.7675 69.8025 +v 66.933 -35.7675 40.9019 +v 39.9709 -35.7675 67.4931 +v 22.4971 -35.7675 75.1457 +v 78.4046 35.7675 2.39004 +v 78.4046 -35.7675 2.39004 +v -10.6155 35.7675 77.7194 +v -10.6155 -35.7675 77.7194 +v 37.8959 35.7675 68.6797 +v 37.8959 -35.7675 68.6797 +v -22.2889 35.7675 75.2077 +v -22.2889 -35.7675 75.2077 +v 76.1215 35.7675 18.9344 +v 76.1215 -35.7675 18.9344 +v 77.373 39.4039 21.7694 +v 77.373 -39.4039 21.7694 +v -22.839 39.4039 77.0641 +v -22.839 -39.4039 77.0641 +v 69.8303 39.4039 39.8023 +v 61.4291 39.4039 51.8358 +v 69.8303 -39.4039 39.8023 +v 61.4291 -39.4039 51.8358 +v -20.4803 39.4039 77.7242 +v -20.4803 -39.4039 77.7242 +v -15.7081 39.4039 78.8273 +v -15.7081 -39.4039 78.8273 +v -13.299 39.4039 79.2693 +v -13.299 -39.4039 79.2693 +v 34.4726 39.4039 72.6095 +v 34.4726 -39.4039 72.6095 +v 1.33598 39.4039 80.3661 +v 1.33598 -39.4039 80.3661 +v 64.4724 39.4039 47.9979 +v 52.8497 39.4039 60.5591 +v 64.4724 -39.4039 47.9979 +v 52.8497 -39.4039 60.5591 +v 27.6998 39.4039 75.4534 +v 27.6998 -39.4039 75.4534 +v 76.6738 39.4039 24.1168 +v 76.6738 -39.4039 24.1168 +v 58.1577 39.4039 55.4813 +v 54.6704 39.4039 58.9206 +v 58.1577 -39.4039 55.4813 +v 54.6704 -39.4039 58.9206 +v 11.0981 39.4039 79.6073 +v 11.0981 -39.4039 79.6073 +v 79.7808 39.4039 9.77341 +v 25.3879 39.4039 76.2624 +v 79.7808 -39.4039 9.77341 +v 25.3879 -39.4039 76.2624 +v -6.00659 39.4039 80.1524 +v -6.00659 -39.4039 80.1524 +v 38.8312 39.4039 70.3749 +v 38.8312 -39.4039 70.3749 +v -18.1026 39.4039 78.3121 +v -18.1026 -39.4039 78.3121 +v 79.4459 39.4039 12.1997 +v 79.4459 -39.4039 12.1997 +v 80.3399 39.4039 2.44903 +v 80.3399 -39.4039 2.44903 +v 72.125 39.4039 35.475 +v 62.98 39.4039 49.9401 +v 56.4403 39.4039 57.2275 +v 47.1003 39.4039 65.1311 +v 72.125 -39.4039 35.475 +v 62.98 -39.4039 49.9401 +v 56.4403 -39.4039 57.2275 +v 47.1003 -39.4039 65.1311 +v -1.11334 39.4039 80.3695 +v -1.11334 -39.4039 80.3695 +v 15.9264 39.4039 78.7835 +v 15.9264 -39.4039 78.7835 +v -10.8776 39.4039 79.6377 +v -10.8776 -39.4039 79.6377 +v 8.6674 39.4039 79.9085 +v -8.44599 39.4039 79.9322 +v 8.6674 -39.4039 79.9085 +v -8.44599 -39.4039 79.9322 +v 78.0004 39.4039 19.4018 +v 78.0004 -39.4039 19.4018 +v 68.5851 39.4039 41.9115 +v 20.6956 39.4039 77.6671 +v 68.5851 -39.4039 41.9115 +v 20.6956 -39.4039 77.6671 +v 29.9859 39.4039 74.5744 +v 29.9859 -39.4039 74.5744 +v 80.3772 39.4039 0 +v 79.0373 39.4039 14.6147 +v 67.2763 39.4039 43.9818 +v 59.8212 39.4039 53.6835 +v 50.98 39.4039 62.1412 +v 43.0457 39.4039 67.879 +v 80.3772 -39.4039 0 +v 79.0373 -39.4039 14.6147 +v 67.2763 -39.4039 43.9818 +v 59.8212 -39.4039 53.6835 +v 50.98 -39.4039 62.1412 +v 43.0457 -39.4039 67.879 +v 75.0625 39.4039 28.7422 +v 75.0625 -39.4039 28.7422 +v -3.56162 39.4039 80.2982 +v -3.56162 -39.4039 80.2982 +v 32.2442 39.4039 73.6261 +v 32.2442 -39.4039 73.6261 +v -25.1765 39.4039 76.3324 +v -25.1765 -39.4039 76.3324 +v 80.0415 39.4039 7.33801 +v 80.0415 -39.4039 7.33801 +v -27.4906 39.4039 75.5298 +v 75.9034 39.4039 26.4418 +v 65.9049 39.4039 46.0112 +v 49.0629 39.4039 63.6657 +v -27.4906 -39.4039 75.5298 +v 75.9034 -39.4039 26.4418 +v 65.9049 -39.4039 46.0112 +v 49.0629 -39.4039 63.6657 +v 6.22862 39.4039 80.1355 +v 6.22862 -39.4039 80.1355 +v 78.5553 39.4039 17.0162 +v 74.1519 39.4039 31.016 +v 45.0939 39.4039 66.5359 +v 78.5553 -39.4039 17.0162 +v 74.1519 -39.4039 31.016 +v 45.0939 -39.4039 66.5359 +v 18.3195 39.4039 78.2617 +v 18.3195 -39.4039 78.2617 +v 13.5186 39.4039 79.2322 +v 13.5186 -39.4039 79.2322 +v 80.2279 39.4039 4.8958 +v 80.2279 -39.4039 4.8958 +v 36.6689 39.4039 71.5254 +v 73.1724 39.4039 33.2609 +v 36.6689 -39.4039 71.5254 +v 73.1724 -39.4039 33.2609 +v 40.9575 39.4039 69.1591 +v 40.9575 -39.4039 69.1591 +v 3.78406 39.4039 80.2881 +v 3.78406 -39.4039 80.2881 +v 23.0524 39.4039 77.0005 +v 23.0524 -39.4039 77.0005 +v 71.0106 39.4039 37.6561 +v 71.0106 -39.4039 37.6561 +v 82.1534 42.9357 7.53163 +v 82.1534 -42.9357 7.53163 +v 81.5421 42.9357 12.5216 +v 81.5421 -42.9357 12.5216 +v 80.628 42.9357 17.4651 +v 80.628 -42.9357 17.4651 +v 13.8752 42.9357 81.3227 +v 13.8752 -42.9357 81.3227 +v 61.3996 42.9357 55.0999 +v 61.3996 -42.9357 55.0999 +v -25.8408 42.9357 78.3464 +v -25.8408 -42.9357 78.3464 +v 69.0514 42.9357 45.1422 +v 69.0514 -42.9357 45.1422 +v -8.66884 42.9357 82.0412 +v -8.66884 -42.9357 82.0412 +v 18.8029 42.9357 80.3266 +v 18.8029 -42.9357 80.3266 +v -13.6499 42.9357 81.3609 +v -13.6499 -42.9357 81.3609 +v 66.1735 42.9357 49.2644 +v 66.1735 -42.9357 49.2644 +v 82.4596 42.9357 2.51365 +v 82.4596 -42.9357 2.51365 +v 80.0585 42.9357 19.9137 +v 80.0585 -42.9357 19.9137 +v 78.6969 42.9357 24.7531 +v 23.6607 42.9357 79.0322 +v 78.6969 -42.9357 24.7531 +v 23.6607 -42.9357 79.0322 +v 3.8839 42.9357 82.4065 +v 3.8839 -42.9357 82.4065 +v -28.216 42.9357 77.5227 +v 81.1228 42.9357 15.0003 +v 64.6417 42.9357 51.2578 +v 33.095 42.9357 75.5687 +v -23.4416 42.9357 79.0974 +v -28.216 -42.9357 77.5227 +v 81.1228 -42.9357 15.0003 +v 64.6417 -42.9357 51.2578 +v 33.095 -42.9357 75.5687 +v -23.4416 -42.9357 79.0974 +v 8.89609 42.9357 82.0169 +v 8.89609 -42.9357 82.0169 +v 75.1031 42.9357 34.1385 +v 74.028 42.9357 36.411 +v 28.4306 42.9357 77.4443 +v 75.1031 -42.9357 34.1385 +v 74.028 -42.9357 36.411 +v 28.4306 -42.9357 77.4443 +v 6.39297 42.9357 82.2499 +v 6.39297 -42.9357 82.2499 +v 1.37123 42.9357 82.4866 +v 1.37123 -42.9357 82.4866 +v -6.16508 42.9357 82.2673 +v -6.16508 -42.9357 82.2673 +v 77.9061 42.9357 27.1395 +v 72.8842 42.9357 38.6497 +v 77.9061 -42.9357 27.1395 +v 72.8842 -42.9357 38.6497 +v 11.391 42.9357 81.7078 +v 11.391 -42.9357 81.7078 +v -3.65559 42.9357 82.4169 +v -3.65559 -42.9357 82.4169 +v 42.0382 42.9357 70.9838 +v 42.0382 -42.9357 70.9838 +v 63.0499 42.9357 53.2035 +v 59.6922 42.9357 56.9451 +v 57.9295 42.9357 58.7375 +v 56.1129 42.9357 60.4753 +v 30.7771 42.9357 76.542 +v 21.2416 42.9357 79.7164 +v -16.1226 42.9357 80.9072 +v 63.0499 -42.9357 53.2035 +v 59.6922 -42.9357 56.9451 +v 57.9295 -42.9357 58.7375 +v 56.1129 -42.9357 60.4753 +v 30.7771 -42.9357 76.542 +v 21.2416 -42.9357 79.7164 +v -16.1226 -42.9357 80.9072 +v 77.043 42.9357 29.5006 +v 77.043 -42.9357 29.5006 +v 81.8858 42.9357 10.0313 +v 81.8858 -42.9357 10.0313 +v 82.3448 42.9357 5.02497 +v 82.3448 -42.9357 5.02497 +v 70.3948 42.9357 43.0173 +v 54.2442 42.9357 62.1569 +v 52.3251 42.9357 63.7808 +v 46.2837 42.9357 68.2915 +v 44.1815 42.9357 69.67 +v 26.0578 42.9357 78.2746 +v 70.3948 -42.9357 43.0173 +v 54.2442 -42.9357 62.1569 +v 52.3251 -42.9357 63.7808 +v 46.2837 -42.9357 68.2915 +v 44.1815 -42.9357 69.67 +v 26.0578 -42.9357 78.2746 +v -21.0207 42.9357 79.7749 +v -21.0207 -42.9357 79.7749 +v 16.3466 42.9357 80.8622 +v 16.3466 -42.9357 80.8622 +v 76.1084 42.9357 31.8344 +v -1.14271 42.9357 82.49 +v 76.1084 -42.9357 31.8344 +v -1.14271 -42.9357 82.49 +v 67.6439 42.9357 47.2252 +v 67.6439 -42.9357 47.2252 +v -11.1646 42.9357 81.739 +v -11.1646 -42.9357 81.739 +v 71.6728 42.9357 40.8525 +v 71.6728 -42.9357 40.8525 +v 50.3575 42.9357 65.3455 +v 48.343 42.9357 66.8496 +v 50.3575 -42.9357 65.3455 +v 48.343 -42.9357 66.8496 +v 35.3821 42.9357 74.5253 +v 35.3821 -42.9357 74.5253 +v 79.4145 42.9357 22.3438 +v -18.5803 42.9357 80.3784 +v 79.4145 -42.9357 22.3438 +v -18.5803 -42.9357 80.3784 +v 82.498 42.9357 0 +v 39.8558 42.9357 72.2318 +v 37.6365 42.9357 73.4126 +v 82.498 -42.9357 0 +v 37.6365 -42.9357 73.4126 +v 39.8558 -42.9357 72.2318 +v 3.99217 46.3537 84.7037 +v 3.99217 -46.3537 84.7037 +v 34.0176 46.3537 77.6753 +v 34.0176 -46.3537 77.6753 +v 82.8757 46.3537 17.952 +v 82.8757 -46.3537 17.952 +v 49.6907 46.3537 68.7131 +v 26.7841 46.3537 80.4566 +v 49.6907 -46.3537 68.7131 +v 26.7841 -46.3537 80.4566 +v -26.5612 46.3537 80.5305 +v -26.5612 -46.3537 80.5305 +v 73.6708 46.3537 41.9913 +v 73.6708 -46.3537 41.9913 +v 79.1907 46.3537 30.323 +v 47.574 46.3537 70.1952 +v 79.1907 -46.3537 30.323 +v 47.574 -46.3537 70.1952 +v 38.6856 46.3537 75.4591 +v 24.3203 46.3537 81.2353 +v 38.6856 -46.3537 75.4591 +v 24.3203 -46.3537 81.2353 +v 84.7977 46.3537 0 +v 80.0779 46.3537 27.896 +v 84.7977 -46.3537 0 +v 80.0779 -46.3537 27.896 +v 21.8338 46.3537 81.9386 +v 14.262 46.3537 83.5898 +v 21.8338 -46.3537 81.9386 +v 14.262 -46.3537 83.5898 +v 84.6403 46.3537 5.16505 +v 84.6403 -46.3537 5.16505 +v -3.7575 46.3537 84.7144 +v -3.7575 -46.3537 84.7144 +v 78.23 46.3537 32.7218 +v 16.8023 46.3537 83.1164 +v 78.23 -46.3537 32.7218 +v 16.8023 -46.3537 83.1164 +v 19.327 46.3537 82.5659 +v 19.327 -46.3537 82.5659 +v 83.8153 46.3537 12.8707 +v 72.3571 46.3537 44.2165 +v 36.3685 46.3537 76.6028 +v 83.8153 -46.3537 12.8707 +v 72.3571 -46.3537 44.2165 +v 36.3685 -46.3537 76.6028 +v 83.3842 46.3537 15.4185 +v 70.9763 46.3537 46.4007 +v 57.6771 46.3537 62.1611 +v 51.7613 46.3537 67.1672 +v 45.4131 46.3537 71.6122 +v 83.3842 -46.3537 15.4185 +v 70.9763 -46.3537 46.4007 +v 57.6771 -46.3537 62.1611 +v 51.7613 -46.3537 67.1672 +v 45.4131 -46.3537 71.6122 +v 9.14409 46.3537 84.3033 +v -8.9105 46.3537 84.3283 +v 9.14409 -46.3537 84.3033 +v -8.9105 -46.3537 84.3283 +v 11.7085 46.3537 83.9855 +v 11.7085 -46.3537 83.9855 +v 40.9669 46.3537 74.2454 +v 76.0917 46.3537 37.426 +v 31.6351 46.3537 78.6758 +v 40.9669 -46.3537 74.2454 +v 76.0917 -46.3537 37.426 +v 31.6351 -46.3537 78.6758 +v -14.0304 46.3537 83.629 +v -14.0304 -46.3537 83.629 +v -1.17456 46.3537 84.7896 +v -1.17456 -46.3537 84.7896 +v 43.21 46.3537 72.9626 +v 82.2902 46.3537 20.4688 +v 74.916 46.3537 39.7271 +v 68.0182 46.3537 50.6377 +v 64.8076 46.3537 54.6867 +v 63.1112 46.3537 56.6359 +v 82.2902 -46.3537 20.4688 +v 74.916 -46.3537 39.7271 +v 68.0182 -46.3537 50.6377 +v 64.8076 -46.3537 54.6867 +v 63.1112 -46.3537 56.6359 +v 43.21 -46.3537 72.9626 +v 1.40946 46.3537 84.786 +v 1.40946 -46.3537 84.786 +v 6.57118 46.3537 84.5427 +v 6.57118 -46.3537 84.5427 +v 84.7584 46.3537 2.58373 +v 84.7584 -46.3537 2.58373 +v 80.8907 46.3537 25.4431 +v 80.8907 -46.3537 25.4431 +v 84.4436 46.3537 7.74158 +v 84.4436 -46.3537 7.74158 +v 69.5295 46.3537 48.5417 +v 61.3563 46.3537 58.5326 +v 69.5295 -46.3537 48.5417 +v 61.3563 -46.3537 58.5326 +v -24.0951 46.3537 81.3024 +v -24.0951 -46.3537 81.3024 +v -6.33694 46.3537 84.5606 +v -6.33694 -46.3537 84.5606 +v 77.1967 46.3537 35.0902 +v 77.1967 -46.3537 35.0902 +v -29.0025 46.3537 79.6838 +v 81.6284 46.3537 22.9667 +v 29.2232 46.3537 79.6031 +v -29.0025 -46.3537 79.6838 +v 81.6284 -46.3537 22.9667 +v 29.2232 -46.3537 79.6031 +v -19.0982 46.3537 82.6191 +v -19.0982 -46.3537 82.6191 +v 59.5443 46.3537 60.3749 +v 55.7563 46.3537 63.8897 +v 59.5443 -46.3537 60.3749 +v 55.7563 -46.3537 63.8897 +v -21.6067 46.3537 81.9988 +v -21.6067 -46.3537 81.9988 +v -11.4758 46.3537 84.0176 +v -11.4758 -46.3537 84.0176 +v 53.7838 46.3537 65.5589 +v 53.7838 -46.3537 65.5589 +v 66.4438 46.3537 52.6866 +v 66.4438 -46.3537 52.6866 +v 84.1685 46.3537 10.3109 +v 84.1685 -46.3537 10.3109 +v -16.572 46.3537 83.1626 +v -16.572 -46.3537 83.1626 +v 79.4477 49.6488 36.1134 +v 79.4477 -49.6488 36.1134 +v 64.9515 49.6488 58.2874 +v 64.9515 -49.6488 58.2874 +v -22.2367 49.6488 84.3899 +v -22.2367 -49.6488 84.3899 +v 39.8137 49.6488 77.6595 +v 39.8137 -49.6488 77.6595 +v -3.86707 49.6488 87.1847 +v -3.86707 -49.6488 87.1847 +v 19.8906 49.6488 84.9735 +v -24.7977 49.6488 83.6732 +v 19.8906 -49.6488 84.9735 +v -24.7977 -49.6488 83.6732 +v -11.8104 49.6488 86.4676 +v -11.8104 -49.6488 86.4676 +v 73.0459 49.6488 47.7537 +v 66.6973 49.6488 56.2813 +v 61.2806 49.6488 62.1354 +v 73.0459 -49.6488 47.7537 +v 66.6973 -49.6488 56.2813 +v 61.2806 -49.6488 62.1354 +v -14.4395 49.6488 86.0676 +v -14.4395 -49.6488 86.0676 +v 12.0499 49.6488 86.4345 +v 12.0499 -49.6488 86.4345 +v -29.8482 49.6488 82.0074 +v -19.6551 49.6488 85.0282 +v -29.8482 -49.6488 82.0074 +v -19.6551 -49.6488 85.0282 +v 71.557 49.6488 49.9572 +v 57.3822 49.6488 65.7527 +v 37.429 49.6488 78.8365 +v 32.5575 49.6488 80.9699 +v 71.557 -49.6488 49.9572 +v 57.3822 -49.6488 65.7527 +v 37.429 -49.6488 78.8365 +v 32.5575 -49.6488 80.9699 +v 83.2494 49.6488 26.1851 +v 25.0294 49.6488 83.6041 +v 83.2494 -49.6488 26.1851 +v 25.0294 -49.6488 83.6041 +v -9.17033 49.6488 86.7873 +v -9.17033 -49.6488 86.7873 +v 27.5652 49.6488 82.8027 +v 27.5652 -49.6488 82.8027 +v 87.2299 49.6488 2.65907 +v 87.2299 -49.6488 2.65907 +v 14.6779 49.6488 86.0272 +v 14.6779 -49.6488 86.0272 +v 87.2704 49.6488 0 +v 75.819 49.6488 43.2158 +v 74.467 49.6488 45.5059 +v 59.359 49.6488 63.9737 +v 87.2704 -49.6488 0 +v 75.819 -49.6488 43.2158 +v 74.467 -49.6488 45.5059 +v 59.359 -49.6488 63.9737 +v 85.8157 49.6488 15.8681 +v 85.8157 -49.6488 15.8681 +v 6.7628 49.6488 87.008 +v 6.7628 -49.6488 87.008 +v 84.6898 49.6488 21.0657 +v 84.6898 -49.6488 21.0657 +v 1.45056 49.6488 87.2584 +v 1.45056 -49.6488 87.2584 +v 78.3105 49.6488 38.5174 +v 78.3105 -49.6488 38.5174 +v 17.2923 49.6488 85.5401 +v 17.2923 -49.6488 85.5401 +v -6.52173 49.6488 87.0264 +v -6.52173 -49.6488 87.0264 +v -17.0553 49.6488 85.5876 +v -17.0553 -49.6488 85.5876 +v 42.1614 49.6488 76.4103 +v 68.3812 49.6488 54.223 +v 63.1454 49.6488 60.2394 +v 55.3521 49.6488 67.4705 +v 51.1397 49.6488 70.7168 +v 35.0095 49.6488 79.9404 +v 42.1614 -49.6488 76.4103 +v 68.3812 -49.6488 54.223 +v 63.1454 -49.6488 60.2394 +v 55.3521 -49.6488 67.4705 +v 51.1397 -49.6488 70.7168 +v 35.0095 -49.6488 79.9404 +v 86.906 49.6488 7.96733 +v 86.906 -49.6488 7.96733 +v 84.0086 49.6488 23.6364 +v 84.0086 -49.6488 23.6364 +v 30.0753 49.6488 81.9244 +v 30.0753 -49.6488 81.9244 +v 48.9612 49.6488 72.2421 +v 48.9612 -49.6488 72.2421 +v 4.10858 49.6488 87.1737 +v 4.10858 -49.6488 87.1737 +v 82.4129 49.6488 28.7095 +v 82.4129 -49.6488 28.7095 +v 22.4705 49.6488 84.328 +v 22.4705 -49.6488 84.328 +v 53.2706 49.6488 69.1257 +v 46.7373 49.6488 73.7004 +v 53.2706 -49.6488 69.1257 +v 46.7373 -49.6488 73.7004 +v -1.20881 49.6488 87.262 +v -1.20881 -49.6488 87.262 +v 86.6229 49.6488 10.6116 +v 86.6229 -49.6488 10.6116 +v 77.1006 49.6488 40.8856 +v 77.1006 -49.6488 40.8856 +v 44.47 49.6488 75.0902 +v 80.5112 49.6488 33.6759 +v 70.0016 49.6488 52.1143 +v 80.5112 -49.6488 33.6759 +v 70.0016 -49.6488 52.1143 +v 44.47 -49.6488 75.0902 +v 87.1084 49.6488 5.31566 +v 87.1084 -49.6488 5.31566 +v 85.2923 49.6488 18.4755 +v 85.2923 -49.6488 18.4755 +v -27.3357 49.6488 82.8788 +v 81.4999 49.6488 31.2072 +v -27.3357 -49.6488 82.8788 +v 81.4999 -49.6488 31.2072 +v 9.41073 49.6488 86.7615 +v 9.41073 -49.6488 86.7615 +v 86.2593 49.6488 13.246 +v 86.2593 -49.6488 13.246 +v 87.8715 52.8122 19.0342 +v 87.8715 -52.8122 19.0342 +v -20.2495 52.8122 87.5995 +v -20.2495 -52.8122 87.5995 +v -25.5476 52.8122 86.2034 +v -25.5476 -52.8122 86.2034 +v 43.4364 52.8122 78.7209 +v 59.1174 52.8122 67.741 +v 43.4364 -52.8122 78.7209 +v 59.1174 -52.8122 67.741 +v 6.9673 52.8122 89.6391 +v 6.9673 -52.8122 89.6391 +v 68.7143 52.8122 57.9833 +v 36.0682 52.8122 82.3577 +v 68.7143 -52.8122 57.9833 +v 36.0682 -52.8122 82.3577 +v 66.9156 52.8122 60.05 +v 54.8815 52.8122 71.2161 +v 66.9156 -52.8122 60.05 +v 54.8815 -52.8122 71.2161 +v 15.1218 52.8122 88.6287 +v 15.1218 -52.8122 88.6287 +v 89.8677 52.8122 2.73948 +v 89.8677 -52.8122 2.73948 +v 17.8152 52.8122 88.1268 +v -22.9092 52.8122 86.9418 +v 17.8152 -52.8122 88.1268 +v -22.9092 -52.8122 86.9418 +v 89.534 52.8122 8.20826 +v 89.534 -52.8122 8.20826 +v 73.7209 52.8122 51.4679 +v 72.1184 52.8122 53.6902 +v 61.1539 52.8122 65.9083 +v 50.4418 52.8122 74.4267 +v 73.7209 -52.8122 51.4679 +v 72.1184 -52.8122 53.6902 +v 61.1539 -52.8122 65.9083 +v 50.4418 -52.8122 74.4267 +v -9.44764 52.8122 89.4117 +v -9.44764 -52.8122 89.4117 +v 83.9644 52.8122 32.1509 +v 79.4321 52.8122 42.1219 +v 78.1117 52.8122 44.5226 +v 83.9644 -52.8122 32.1509 +v 79.4321 -52.8122 42.1219 +v 78.1117 -52.8122 44.5226 +v -1.24537 52.8122 89.9008 +v -1.24537 -52.8122 89.9008 +v -12.1676 52.8122 89.0823 +v -12.1676 -52.8122 89.0823 +v 82.9458 52.8122 34.6943 +v 76.7189 52.8122 46.882 +v 75.2548 52.8122 49.1978 +v 57.0259 52.8122 69.5108 +v 82.9458 -52.8122 34.6943 +v 76.7189 -52.8122 46.882 +v 75.2548 -52.8122 49.1978 +v 57.0259 -52.8122 69.5108 +v -17.571 52.8122 88.1758 +v -17.571 -52.8122 88.1758 +v 12.4143 52.8122 89.0483 +v 12.4143 -52.8122 89.0483 +v -30.7508 52.8122 84.4872 +v 80.6786 52.8122 39.6821 +v 20.4921 52.8122 87.543 +v -30.7508 -52.8122 84.4872 +v 80.6786 -52.8122 39.6821 +v 20.4921 -52.8122 87.543 +v -28.1623 52.8122 85.385 +v -28.1623 -52.8122 85.385 +v 89.9094 52.8122 0 +v 86.549 52.8122 24.3511 +v 81.8502 52.8122 37.2055 +v 38.5608 52.8122 81.2205 +v 89.9094 -52.8122 0 +v 86.549 -52.8122 24.3511 +v 81.8502 -52.8122 37.2055 +v 38.5608 -52.8122 81.2205 +v 88.8678 52.8122 13.6466 +v 88.8678 -52.8122 13.6466 +v -6.71894 52.8122 89.658 +v -6.71894 -52.8122 89.658 +v 85.7669 52.8122 26.9769 +v 25.7863 52.8122 86.1323 +v 85.7669 -52.8122 26.9769 +v 25.7863 -52.8122 86.1323 +v -3.984 52.8122 89.8211 +v -3.984 -52.8122 89.8211 +v 45.8148 52.8122 77.3609 +v 48.1507 52.8122 75.9291 +v 48.1507 -52.8122 75.9291 +v 45.8148 -52.8122 77.3609 +v -14.8762 52.8122 88.6702 +v -14.8762 -52.8122 88.6702 +v 4.23283 52.8122 89.8098 +v 4.23283 -52.8122 89.8098 +v 89.7425 52.8122 5.47641 +v 89.7425 -52.8122 5.47641 +v 41.0177 52.8122 80.0079 +v 41.0177 -52.8122 80.0079 +v 9.6953 52.8122 89.3852 +v 9.6953 -52.8122 89.3852 +v 65.0549 52.8122 62.061 +v 63.1337 52.8122 64.0144 +v 33.5421 52.8122 83.4185 +v 65.0549 -52.8122 62.061 +v 63.1337 -52.8122 64.0144 +v 33.5421 -52.8122 83.4185 +v 89.2423 52.8122 10.9325 +v 89.2423 -52.8122 10.9325 +v 84.9051 52.8122 29.5776 +v 84.9051 -52.8122 29.5776 +v 52.6861 52.8122 72.8552 +v 52.6861 -52.8122 72.8552 +v 87.2508 52.8122 21.7027 +v 87.2508 -52.8122 21.7027 +v 30.9848 52.8122 84.4017 +v 30.9848 -52.8122 84.4017 +v 70.4491 52.8122 55.8627 +v 23.15 52.8122 86.878 +v 70.4491 -52.8122 55.8627 +v 23.15 -52.8122 86.878 +v 1.49442 52.8122 89.897 +v 1.49442 -52.8122 89.897 +v 88.4107 52.8122 16.348 +v 88.4107 -52.8122 16.348 +v 28.3987 52.8122 85.3066 +v 28.3987 -52.8122 85.3066 +v 1.54094 55.8355 92.695 +v 1.54094 -55.8355 92.695 +v 92.7078 55.8355 0 +v 92.7078 -55.8355 0 +v 83.1897 55.8355 40.9172 +v 83.1897 -55.8355 40.9172 +v 91.6337 55.8355 14.0713 +v 91.6337 -55.8355 14.0713 +v -26.3428 55.8355 88.8864 +v -26.3428 -55.8355 88.8864 +v 81.9043 55.8355 43.4329 +v 81.9043 -55.8355 43.4329 +v 4.36457 55.8355 92.605 +v 4.36457 -55.8355 92.605 +v -29.0388 55.8355 88.0425 +v 77.5971 55.8355 50.729 +v 72.6417 55.8355 57.6014 +v 60.9574 55.8355 69.8494 +v -29.0388 -55.8355 88.0425 +v 77.5971 -55.8355 50.729 +v 72.6417 -55.8355 57.6014 +v 60.9574 -55.8355 69.8494 +v 15.5924 55.8355 91.3872 +v 15.5924 -55.8355 91.3872 +v 31.9492 55.8355 87.0287 +v 31.9492 -55.8355 87.0287 +v 89.2428 55.8355 25.109 +v 85.5275 55.8355 35.7741 +v 80.5429 55.8355 45.9084 +v 49.6493 55.8355 78.2923 +v 89.2428 -55.8355 25.109 +v 85.5275 -55.8355 35.7741 +v 80.5429 -55.8355 45.9084 +v 49.6493 -55.8355 78.2923 +v -6.92806 55.8355 92.4486 +v -6.92806 -55.8355 92.4486 +v 21.1299 55.8355 90.2678 +v 21.1299 -55.8355 90.2678 +v -15.3392 55.8355 91.43 +v -15.3392 -55.8355 91.43 +v -18.1179 55.8355 90.9202 +v -18.1179 -55.8355 90.9202 +v 12.8007 55.8355 91.8198 +v 12.8007 -55.8355 91.8198 +v 42.2943 55.8355 82.4981 +v 87.5477 55.8355 30.4982 +v 39.761 55.8355 83.7485 +v 42.2943 -55.8355 82.4981 +v 87.5477 -55.8355 30.4982 +v 39.761 -55.8355 83.7485 +v 92.5357 55.8355 5.64686 +v 92.5357 -55.8355 5.64686 +v -31.7079 55.8355 87.1169 +v 44.7883 55.8355 81.1711 +v 44.7883 -55.8355 81.1711 +v -31.7079 -55.8355 87.1169 +v 23.8705 55.8355 89.582 +v -23.6222 55.8355 89.6478 +v 23.8705 -55.8355 89.582 +v -23.6222 -55.8355 89.6478 +v 76.0154 55.8355 53.0698 +v 70.853 55.8355 59.788 +v 67.0797 55.8355 63.9926 +v 63.0573 55.8355 67.9596 +v 52.0118 55.8355 76.7432 +v 76.0154 -55.8355 53.0698 +v 70.853 -55.8355 59.788 +v 67.0797 -55.8355 63.9926 +v 63.0573 -55.8355 67.9596 +v 52.0118 -55.8355 76.7432 +v 18.3697 55.8355 90.8697 +v 18.3697 -55.8355 90.8697 +v -1.28413 55.8355 92.6989 +v -1.28413 -55.8355 92.6989 +v 91.1624 55.8355 16.8568 +v 88.4363 55.8355 27.8165 +v 91.1624 -55.8355 16.8568 +v 88.4363 -55.8355 27.8165 +v 92.6648 55.8355 2.82474 +v 92.6648 -55.8355 2.82474 +v 92.0199 55.8355 11.2727 +v 92.0199 -55.8355 11.2727 +v -12.5463 55.8355 91.8549 +v -12.5463 -55.8355 91.8549 +v -4.10801 55.8355 92.6168 +v -4.10801 -55.8355 92.6168 +v 79.1067 55.8355 48.3411 +v 74.3631 55.8355 55.3613 +v 68.9984 55.8355 61.919 +v 58.8008 55.8355 71.6743 +v 56.5896 55.8355 73.4326 +v 79.1067 -55.8355 48.3411 +v 74.3631 -55.8355 55.3613 +v 68.9984 -55.8355 61.919 +v 58.8008 -55.8355 71.6743 +v 56.5896 -55.8355 73.4326 +v 7.18415 55.8355 92.429 +v 7.18415 -55.8355 92.429 +v 29.2826 55.8355 87.9617 +v 29.2826 -55.8355 87.9617 +v 9.99707 55.8355 92.1672 +v 9.99707 -55.8355 92.1672 +v 65.0987 55.8355 66.0068 +v 37.1908 55.8355 84.9211 +v 65.0987 -55.8355 66.0068 +v 37.1908 -55.8355 84.9211 +v 92.3207 55.8355 8.46373 +v 92.3207 -55.8355 8.46373 +v -20.8797 55.8355 90.326 +v -20.8797 -55.8355 90.326 +v 89.9664 55.8355 22.3782 +v 89.9664 -55.8355 22.3782 +v -9.74169 55.8355 92.1946 +v -9.74169 -55.8355 92.1946 +v 86.5778 55.8355 33.1516 +v 86.5778 -55.8355 33.1516 +v 34.586 55.8355 86.0148 +v 34.586 -55.8355 86.0148 +v 84.3978 55.8355 38.3635 +v 84.3978 -55.8355 38.3635 +v 90.6065 55.8355 19.6266 +v 90.6065 -55.8355 19.6266 +v 26.5889 55.8355 88.8131 +v 26.5889 -55.8355 88.8131 +v 54.3259 55.8355 75.1228 +v 54.3259 -55.8355 75.1228 +v 47.2407 55.8355 79.7688 +v 47.2407 -55.8355 79.7688 +v 43.6403 58.7108 85.1235 +v 43.6403 -58.7108 85.1235 +v -21.5442 58.7108 93.2004 +v -21.5442 -58.7108 93.2004 +v -12.9455 58.7108 94.7781 +v -12.9455 -58.7108 94.7781 +v 46.2136 58.7108 83.7543 +v 46.2136 -58.7108 83.7543 +v 4.50347 58.7108 95.5521 +v 4.50347 -58.7108 95.5521 +v -32.717 58.7108 89.8892 +v 95.6581 58.7108 0 +v 95.6581 -58.7108 0 +v -32.717 -58.7108 89.8892 +v -15.8273 58.7108 94.3397 +v -15.8273 -58.7108 94.3397 +v 92.8295 58.7108 23.0904 +v 92.8295 -58.7108 23.0904 +v 81.6242 58.7108 49.8795 +v 81.6242 -58.7108 49.8795 +v -18.6945 58.7108 93.8136 +v -18.6945 -58.7108 93.8136 +v 87.0836 58.7108 39.5844 +v 78.4345 58.7108 54.7587 +v 18.9543 58.7108 93.7615 +v 87.0836 -58.7108 39.5844 +v 78.4345 -58.7108 54.7587 +v 18.9543 -58.7108 93.7615 +v -27.1811 58.7108 91.7151 +v -27.1811 -58.7108 91.7151 +v 94.5499 58.7108 14.5191 +v 94.5499 -58.7108 14.5191 +v -29.963 58.7108 90.8444 +v -29.963 -58.7108 90.8444 +v 92.0828 58.7108 25.9081 +v 92.0828 -58.7108 25.9081 +v 13.2081 58.7108 94.7419 +v 13.2081 -58.7108 94.7419 +v 93.4899 58.7108 20.2512 +v 88.2493 58.7108 36.9126 +v 58.3905 58.7108 75.7695 +v 93.4899 -58.7108 20.2512 +v 88.2493 -58.7108 36.9126 +v 58.3905 -58.7108 75.7695 +v -1.325 58.7108 95.649 +v -1.325 -58.7108 95.649 +v 21.8023 58.7108 93.1404 +v 21.8023 -58.7108 93.1404 +v 24.6301 58.7108 92.4329 +v 24.6301 -58.7108 92.4329 +v 90.3338 58.7108 31.4688 +v 27.4351 58.7108 91.6395 +v 90.3338 -58.7108 31.4688 +v 27.4351 -58.7108 91.6395 +v 91.2507 58.7108 28.7018 +v 89.333 58.7108 34.2066 +v 80.0665 58.7108 52.3434 +v 74.9535 58.7108 59.4344 +v 51.2293 58.7108 80.7839 +v 41.0263 58.7108 86.4136 +v 91.2507 -58.7108 28.7018 +v 89.333 -58.7108 34.2066 +v 80.0665 -58.7108 52.3434 +v 74.9535 -58.7108 59.4344 +v 51.2293 -58.7108 80.7839 +v 41.0263 -58.7108 86.4136 +v 7.41278 58.7108 95.3705 +v 7.41278 -58.7108 95.3705 +v -4.23874 58.7108 95.5642 +v -4.23874 -58.7108 95.5642 +v 95.2587 58.7108 8.73308 +v 95.2587 -58.7108 8.73308 +v 85.8371 58.7108 42.2194 +v 53.667 58.7108 79.1854 +v 10.3152 58.7108 95.1003 +v 85.8371 -58.7108 42.2194 +v 53.667 -58.7108 79.1854 +v 10.3152 -58.7108 95.1003 +v 84.5108 58.7108 44.8152 +v 35.6867 58.7108 88.7521 +v 84.5108 -58.7108 44.8152 +v 35.6867 -58.7108 88.7521 +v 48.7441 58.7108 82.3073 +v 83.1061 58.7108 47.3693 +v 76.7296 58.7108 57.1231 +v 69.2144 58.7108 66.0291 +v 83.1061 -58.7108 47.3693 +v 76.7296 -58.7108 57.1231 +v 69.2144 -58.7108 66.0291 +v 48.7441 -58.7108 82.3073 +v 94.9483 58.7108 11.6315 +v 94.9483 -58.7108 11.6315 +v -24.374 58.7108 92.5007 +v -24.374 -58.7108 92.5007 +v 16.0886 58.7108 94.2955 +v 16.0886 -58.7108 94.2955 +v 95.4805 58.7108 5.82656 +v 95.4805 -58.7108 5.82656 +v 30.2145 58.7108 90.761 +v 30.2145 -58.7108 90.761 +v 1.58997 58.7108 95.6449 +v 1.58997 -58.7108 95.6449 +v 94.0636 58.7108 17.3932 +v 94.0636 -58.7108 17.3932 +v 73.1078 58.7108 61.6906 +v 62.8973 58.7108 72.0723 +v 73.1078 -58.7108 61.6906 +v 62.8973 -58.7108 72.0723 +v 32.9659 58.7108 89.7983 +v 32.9659 -58.7108 89.7983 +v 95.6137 58.7108 2.91463 +v 95.6137 -58.7108 2.91463 +v 71.1942 58.7108 63.8895 +v 60.6721 58.7108 73.9553 +v 56.0548 58.7108 77.5135 +v 71.1942 -58.7108 63.8895 +v 60.6721 -58.7108 73.9553 +v 56.0548 -58.7108 77.5135 +v 67.1704 58.7108 68.1074 +v 65.0641 58.7108 70.1224 +v 67.1704 -58.7108 68.1074 +v 65.0641 -58.7108 70.1224 +v -10.0517 58.7108 95.1286 +v -10.0517 -58.7108 95.1286 +v -7.14854 58.7108 95.3907 +v -7.14854 -58.7108 95.3907 +v 38.3743 58.7108 87.6236 +v 38.3743 -58.7108 87.6236 +v 71.4534 61.4304 68.165 +v 71.4534 -61.4304 68.165 +v 87.2446 61.4304 46.2649 +v 87.2446 -61.4304 46.2649 +v 92.2228 61.4304 35.3131 +v 92.2228 -61.4304 35.3131 +v 75.4727 61.4304 63.6862 +v 75.4727 -61.4304 63.6862 +v 93.256 61.4304 32.4868 +v 93.256 -61.4304 32.4868 +v 16.6091 61.4304 97.3458 +v 16.6091 -61.4304 97.3458 +v 31.1919 61.4304 93.697 +v 31.1919 -61.4304 93.697 +v 55.403 61.4304 81.747 +v 55.403 -61.4304 81.747 +v 28.3225 61.4304 94.6039 +v 28.3225 -61.4304 94.6039 +v 34.0323 61.4304 92.7031 +v 34.0323 -61.4304 92.7031 +v 98.5692 61.4304 6.01505 +v 98.5692 -61.4304 6.01505 +v 97.1064 61.4304 17.9559 +v 97.1064 -61.4304 17.9559 +v 50.3209 61.4304 84.9698 +v 95.0616 61.4304 26.7462 +v 82.6566 61.4304 54.0366 +v 77.3781 61.4304 61.3571 +v 95.0616 -61.4304 26.7462 +v 82.6566 -61.4304 54.0366 +v 77.3781 -61.4304 61.3571 +v 50.3209 -61.4304 84.9698 +v -7.37979 61.4304 98.4764 +v -7.37979 -61.4304 98.4764 +v 4.64915 61.4304 98.643 +v 4.64915 -61.4304 98.643 +v 25.4269 61.4304 95.4229 +v 7.65257 61.4304 98.4556 +v 25.4269 -61.4304 95.4229 +v 7.65257 -61.4304 98.4556 +v -25.1624 61.4304 95.493 +v -25.1624 -61.4304 95.493 +v 84.2646 61.4304 51.493 +v 79.2117 61.4304 58.9709 +v 69.3433 61.4304 70.3105 +v 64.9319 61.4304 74.4037 +v 84.2646 -61.4304 51.493 +v 79.2117 -61.4304 58.9709 +v 69.3433 -61.4304 70.3105 +v 64.9319 -61.4304 74.4037 +v 98.0198 61.4304 12.0077 +v 98.0198 -61.4304 12.0077 +v 88.6138 61.4304 43.5851 +v 42.3535 61.4304 89.209 +v 88.6138 -61.4304 43.5851 +v 42.3535 -61.4304 89.209 +v -4.37585 61.4304 98.6555 +v -4.37585 -61.4304 98.6555 +v -10.3769 61.4304 98.2058 +v -10.3769 -61.4304 98.2058 +v 89.9007 61.4304 40.8649 +v 52.8865 61.4304 83.3971 +v 22.5076 61.4304 96.1534 +v 89.9007 -61.4304 40.8649 +v 52.8865 -61.4304 83.3971 +v 22.5076 -61.4304 96.1534 +v 36.8411 61.4304 91.6231 +v 36.8411 -61.4304 91.6231 +v -1.36786 61.4304 98.7431 +v -1.36786 -61.4304 98.7431 +v 98.7525 61.4304 0 +v 91.104 61.4304 38.1067 +v 85.7945 61.4304 48.9017 +v 67.1688 61.4304 72.3907 +v 60.2794 61.4304 78.2206 +v 98.7525 -61.4304 0 +v 91.104 -61.4304 38.1067 +v 85.7945 -61.4304 48.9017 +v 67.1688 -61.4304 72.3907 +v 60.2794 -61.4304 78.2206 +v 13.6353 61.4304 97.8067 +v 13.6353 -61.4304 97.8067 +v 97.6084 61.4304 14.9888 +v 97.6084 -61.4304 14.9888 +v 80.9717 61.4304 56.53 +v 57.8681 61.4304 80.0209 +v 80.9717 -61.4304 56.53 +v 57.8681 -61.4304 80.0209 +v -13.3643 61.4304 97.8441 +v -13.3643 -61.4304 97.8441 +v 94.2025 61.4304 29.6302 +v 94.2025 -61.4304 29.6302 +v 39.6157 61.4304 90.4581 +v 39.6157 -61.4304 90.4581 +v -16.3393 61.4304 97.3914 +v -16.3393 -61.4304 97.3914 +v 10.6489 61.4304 98.1767 +v 10.6489 -61.4304 98.1767 +v -28.0604 61.4304 94.682 +v -28.0604 -61.4304 94.682 +v -33.7754 61.4304 92.797 +v 47.7086 61.4304 86.4636 +v 47.7086 -61.4304 86.4636 +v -33.7754 -61.4304 92.797 +v 98.3401 61.4304 9.01558 +v 98.3401 -61.4304 9.01558 +v 95.8324 61.4304 23.8373 +v 95.8324 -61.4304 23.8373 +v -22.2411 61.4304 96.2154 +v -22.2411 -61.4304 96.2154 +v 45.052 61.4304 87.8771 +v 45.052 -61.4304 87.8771 +v 1.64141 61.4304 98.7389 +v 1.64141 -61.4304 98.7389 +v 19.5674 61.4304 96.7945 +v 19.5674 -61.4304 96.7945 +v 73.4972 61.4304 65.9563 +v 73.4972 -61.4304 65.9563 +v 96.5142 61.4304 20.9063 +v 96.5142 -61.4304 20.9063 +v -30.9322 61.4304 93.7831 +v -30.9322 -61.4304 93.7831 +v -19.2992 61.4304 96.8484 +v -19.2992 -61.4304 96.8484 +v 62.6347 61.4304 76.3476 +v 62.6347 -61.4304 76.3476 +v 98.7067 61.4304 3.00892 +v 98.7067 -61.4304 3.00892 +v 14.0814 63.9871 101.006 +v 14.0814 -63.9871 101.006 +v 101.226 63.9871 12.4005 +v 101.226 -63.9871 12.4005 +v -16.8738 63.9871 100.577 +v -16.8738 -63.9871 100.577 +v -31.944 63.9871 96.8508 +v -31.944 -63.9871 96.8508 +v 83.6204 63.9871 58.3792 +v 83.6204 -63.9871 58.3792 +v 101.936 63.9871 3.10735 +v 101.936 -63.9871 3.10735 +v 32.2122 63.9871 96.7619 +v 32.2122 -63.9871 96.7619 +v 57.2153 63.9871 84.421 +v 57.2153 -63.9871 84.421 +v 23.2439 63.9871 99.2987 +v 23.2439 -63.9871 99.2987 +v 87.021 63.9871 53.1774 +v -25.9855 63.9871 98.6167 +v 87.021 -63.9871 53.1774 +v -25.9855 -63.9871 98.6167 +v 96.3065 63.9871 33.5494 +v 96.3065 -63.9871 33.5494 +v 49.2692 63.9871 89.2919 +v 73.7907 63.9871 70.3948 +v 49.2692 -63.9871 89.2919 +v 73.7907 -63.9871 70.3948 +v 26.2586 63.9871 98.5443 +v 26.2586 -63.9871 98.5443 +v 38.0462 63.9871 94.6202 +v 38.0462 -63.9871 94.6202 +v 98.1712 63.9871 27.6211 +v 85.3604 63.9871 55.8042 +v 62.2512 63.9871 80.7793 +v 43.7389 63.9871 92.1271 +v 98.1712 -63.9871 27.6211 +v 85.3604 -63.9871 55.8042 +v 62.2512 -63.9871 80.7793 +v 43.7389 -63.9871 92.1271 +v 97.284 63.9871 30.5995 +v 97.284 -63.9871 30.5995 +v 94.0842 63.9871 39.3532 +v 90.0985 63.9871 47.7782 +v 77.9415 63.9871 65.7695 +v 75.9014 63.9871 68.1138 +v 69.366 63.9871 74.7587 +v 67.0559 63.9871 76.8375 +v 54.6165 63.9871 86.1251 +v 94.0842 -63.9871 39.3532 +v 90.0985 -63.9871 47.7782 +v 77.9415 -63.9871 65.7695 +v 75.9014 -63.9871 68.1138 +v 69.366 -63.9871 74.7587 +v 67.0559 -63.9871 76.8375 +v 54.6165 -63.9871 86.1251 +v 101.794 63.9871 6.2118 +v 101.794 -63.9871 6.2118 +v 95.2395 63.9871 36.4683 +v 95.2395 -63.9871 36.4683 +v 99.6713 63.9871 21.5902 +v 29.249 63.9871 97.6985 +v 99.6713 -63.9871 21.5902 +v 29.249 -63.9871 97.6985 +v 20.2075 63.9871 99.9608 +v 20.2075 -63.9871 99.9608 +v 88.6009 63.9871 50.5013 +v 35.1455 63.9871 95.7355 +v 88.6009 -63.9871 50.5013 +v 35.1455 -63.9871 95.7355 +v -34.8802 63.9871 95.8325 +v 40.9116 63.9871 93.4171 +v -34.8802 -63.9871 95.8325 +v 40.9116 -63.9871 93.4171 +v 81.8028 63.9871 60.8999 +v 71.6116 63.9871 72.6105 +v 64.6836 63.9871 78.845 +v 81.8028 -63.9871 60.8999 +v 71.6116 -63.9871 72.6105 +v 64.6836 -63.9871 78.845 +v 100.801 63.9871 15.4791 +v 100.801 -63.9871 15.4791 +v -28.9782 63.9871 97.7792 +v -28.9782 -63.9871 97.7792 +v 91.5125 63.9871 45.0108 +v 91.5125 -63.9871 45.0108 +v 46.5257 63.9871 90.7517 +v 46.5257 -63.9871 90.7517 +v 79.9093 63.9871 63.3641 +v 79.9093 -63.9871 63.3641 +v -7.62119 63.9871 101.698 +v -7.62119 -63.9871 101.698 +v 51.967 63.9871 87.7493 +v 59.761 63.9871 82.6385 +v 59.761 -63.9871 82.6385 +v 51.967 -63.9871 87.7493 +v 92.8414 63.9871 42.2016 +v 17.1524 63.9871 100.53 +v 92.8414 -63.9871 42.2016 +v 17.1524 -63.9871 100.53 +v -4.51899 63.9871 101.883 +v -4.51899 -63.9871 101.883 +v 10.9972 63.9871 101.388 +v 10.9972 -63.9871 101.388 +v 98.9672 63.9871 24.6171 +v 98.9672 -63.9871 24.6171 +v -22.9687 63.9871 99.3627 +v -22.9687 -63.9871 99.3627 +v 7.9029 63.9871 101.676 +v 7.9029 -63.9871 101.676 +v -19.9305 63.9871 100.016 +v -19.9305 -63.9871 100.016 +v 4.80123 63.9871 101.87 +v 4.80123 -63.9871 101.87 +v -1.4126 63.9871 101.973 +v -1.4126 -63.9871 101.973 +v 101.557 63.9871 9.3105 +v 101.557 -63.9871 9.3105 +v 1.6951 63.9871 101.969 +v 1.6951 -63.9871 101.969 +v -10.7163 63.9871 101.418 +v -10.7163 -63.9871 101.418 +v 100.283 63.9871 18.5432 +v 100.283 -63.9871 18.5432 +v -13.8015 63.9871 101.045 +v -13.8015 -63.9871 101.045 +v 101.983 63.9871 0 +v 101.983 -63.9871 0 +v 70 9.79717e-15 -100 +v -117.911 9.79717e-15 31.5765 +v 70.1061 -4.1183 -100 +v 70.1061 4.1183 -100 +v -117.947 -4.1183 31.6761 +v -117.947 4.1183 31.6761 +v 70.424 -8.22568 -100 +v 70.424 8.22568 -100 +v -118.056 -8.22568 31.9749 +v -118.056 8.22568 31.9749 +v 70.953 -12.3112 -100 +v 70.953 12.3112 -100 +v -118.237 -12.3112 32.472 +v -118.237 12.3112 32.472 +v -118.489 -16.3642 33.166 +v -118.489 16.3642 33.166 +v 71.6915 -16.3642 -100 +v 71.6915 16.3642 -100 +v 11.3593 66.3742 104.726 +v 11.3593 -66.3742 104.726 +v 102.953 66.3742 22.301 +v 102.953 -66.3742 22.301 +v 8.16309 66.3742 105.024 +v 8.16309 -66.3742 105.024 +v 104.12 66.3742 15.9887 +v 104.12 -66.3742 15.9887 +v 24.0091 66.3742 102.568 +v 24.0091 -66.3742 102.568 +v 102.226 66.3742 25.4275 +v 102.226 -66.3742 25.4275 +v 100.487 66.3742 31.6069 +v 100.487 -66.3742 31.6069 +v -4.66778 66.3742 105.237 +v -4.66778 -66.3742 105.237 +v 103.585 66.3742 19.1537 +v 103.585 -66.3742 19.1537 +v -26.8411 66.3742 101.864 +v -26.8411 -66.3742 101.864 +v 101.403 66.3742 28.5305 +v 101.403 -66.3742 28.5305 +v 14.545 66.3742 104.331 +v 14.545 -66.3742 104.331 +v -11.0691 66.3742 104.757 +v -11.0691 -66.3742 104.757 +v 105.145 66.3742 6.41632 +v 105.145 -66.3742 6.41632 +v -14.2559 66.3742 104.371 +v -14.2559 -66.3742 104.371 +v 71.6497 66.3742 77.22 +v 71.6497 -66.3742 77.22 +v -29.9323 66.3742 100.998 +v -29.9323 -66.3742 100.998 +v 17.7171 66.3742 103.84 +v 17.7171 -66.3742 103.84 +v 50.8913 66.3742 92.2317 +v 50.8913 -66.3742 92.2317 +v 53.6779 66.3742 90.6383 +v 93.0649 66.3742 49.3513 +v 45.179 66.3742 95.1603 +v 93.0649 -66.3742 49.3513 +v 53.6779 -66.3742 90.6383 +v 45.179 -66.3742 95.1603 +v 33.2728 66.3742 99.9477 +v 33.2728 -66.3742 99.9477 +v 105.34 66.3742 0 +v 48.0575 66.3742 93.7395 +v 80.5076 66.3742 67.9349 +v 78.4003 66.3742 70.3563 +v 73.9693 66.3742 75.0011 +v 36.3027 66.3742 98.8875 +v 105.34 -66.3742 0 +v 48.0575 -66.3742 93.7395 +v 80.5076 -66.3742 67.9349 +v 78.4003 -66.3742 70.3563 +v 73.9693 -66.3742 75.0011 +v 36.3027 -66.3742 98.8875 +v -36.0286 66.3742 98.9877 +v 95.8981 66.3742 43.591 +v 42.2585 66.3742 96.4927 +v -36.0286 -66.3742 98.9877 +v 95.8981 -66.3742 43.591 +v 42.2585 -66.3742 96.4927 +v 99.4772 66.3742 34.654 +v 88.1707 66.3742 57.6415 +v 99.4772 -66.3742 34.654 +v 88.1707 -66.3742 57.6415 +v 39.2988 66.3742 97.7355 +v 39.2988 -66.3742 97.7355 +v 91.518 66.3742 52.164 +v 86.3735 66.3742 60.3013 +v 66.8132 66.3742 81.4409 +v 91.518 -66.3742 52.164 +v 86.3735 -66.3742 60.3013 +v 66.8132 -66.3742 81.4409 +v -32.9958 66.3742 100.039 +v -32.9958 -66.3742 100.039 +v 56.4147 66.3742 88.9607 +v 56.4147 -66.3742 88.9607 +v 4.9593 66.3742 105.224 +v 4.9593 -66.3742 105.224 +v 104.901 66.3742 9.61703 +v 104.901 -66.3742 9.61703 +v 69.2636 66.3742 79.3673 +v 64.3007 66.3742 83.4388 +v 59.0991 66.3742 87.2005 +v 69.2636 -66.3742 79.3673 +v 64.3007 -66.3742 83.4388 +v 59.0991 -66.3742 87.2005 +v -1.45911 66.3742 105.33 +v -1.45911 -66.3742 105.33 +v 89.8861 66.3742 54.9282 +v 84.4961 66.3742 62.905 +v 89.8861 -66.3742 54.9282 +v 84.4961 -66.3742 62.905 +v 30.212 66.3742 100.915 +v 30.212 -66.3742 100.915 +v 82.5402 66.3742 65.4503 +v 76.2202 66.3742 72.7125 +v 82.5402 -66.3742 65.4503 +v 76.2202 -66.3742 72.7125 +v 94.5254 66.3742 46.4927 +v 94.5254 -66.3742 46.4927 +v 105.292 66.3742 3.20965 +v 105.292 -66.3742 3.20965 +v 61.7286 66.3742 85.3593 +v 61.7286 -66.3742 85.3593 +v 98.3752 66.3742 37.6689 +v 98.3752 -66.3742 37.6689 +v 97.1818 66.3742 40.6488 +v 97.1818 -66.3742 40.6488 +v -20.5867 66.3742 103.309 +v -20.5867 -66.3742 103.309 +v -17.4294 66.3742 103.889 +v -17.4294 -66.3742 103.889 +v 27.1232 66.3742 101.789 +v 27.1232 -66.3742 101.789 +v 104.559 66.3742 12.8088 +v 104.559 -66.3742 12.8088 +v -23.7249 66.3742 102.634 +v -23.7249 -66.3742 102.634 +v 20.8728 66.3742 103.252 +v 20.8728 -66.3742 103.252 +v 1.75091 66.3742 105.326 +v 1.75091 -66.3742 105.326 +v -7.87211 66.3742 105.046 +v -7.87211 -66.3742 105.046 +v -118.813 -20.3737 34.0552 +v -118.813 20.3737 34.0552 +v 72.6378 -20.3737 -100 +v 72.6378 20.3737 -100 +v -119.207 -24.3292 35.1371 +v -119.207 24.3292 35.1371 +v 73.7892 -24.3292 -100 +v 73.7892 24.3292 -100 +v 75.1426 -28.2202 -100 +v 75.1426 28.2202 -100 +v -119.67 -28.2202 36.409 +v -119.67 28.2202 36.409 +v 103.803 68.5852 32.6499 +v 103.803 -68.5852 32.6499 +v 1.80869 68.5852 108.801 +v 1.80869 -68.5852 108.801 +v -11.4344 68.5852 108.214 +v -11.4344 -68.5852 108.214 +v -34.0846 68.5852 103.341 +v -34.0846 -68.5852 103.341 +v -18.0045 68.5852 107.317 +v -18.0045 -68.5852 107.317 +v 108.009 68.5852 13.2315 +v 108.009 -68.5852 13.2315 +v 107.556 68.5852 16.5163 +v 107.556 -68.5852 16.5163 +v 37.5006 68.5852 102.151 +v 37.5006 -68.5852 102.151 +v -1.50726 68.5852 108.806 +v -1.50726 -68.5852 108.806 +v -21.266 68.5852 106.718 +v -21.266 -68.5852 106.718 +v 31.209 68.5852 104.245 +v 31.209 -68.5852 104.245 +v -37.2175 68.5852 102.254 +v -37.2175 -68.5852 102.254 +v 102.76 68.5852 35.7975 +v 102.76 -68.5852 35.7975 +v -24.5078 68.5852 106.021 +v -24.5078 -68.5852 106.021 +v 24.8014 68.5852 105.952 +v 24.8014 -68.5852 105.952 +v 105.599 68.5852 26.2666 +v 105.599 -68.5852 26.2666 +v 108.615 68.5852 6.62805 +v 108.615 -68.5852 6.62805 +v 34.3707 68.5852 103.246 +v 34.3707 -68.5852 103.246 +v 106.35 68.5852 23.0369 +v 106.35 -68.5852 23.0369 +v 21.5616 68.5852 106.659 +v 21.5616 -68.5852 106.659 +v 5.12295 68.5852 108.696 +v 5.12295 -68.5852 108.696 +v 63.7655 68.5852 88.176 +v 63.7655 -68.5852 88.176 +v -14.7263 68.5852 107.815 +v -14.7263 -68.5852 107.815 +v 99.0626 68.5852 45.0295 +v 89.2237 68.5852 62.2911 +v 71.5492 68.5852 81.9863 +v 99.0626 -68.5852 45.0295 +v 89.2237 -68.5852 62.2911 +v 71.5492 -68.5852 81.9863 +v -8.13187 68.5852 108.512 +v -8.13187 -68.5852 108.512 +v 85.2638 68.5852 67.6101 +v 78.7353 68.5852 75.1119 +v 66.4226 68.5852 86.1922 +v 85.2638 -68.5852 67.6101 +v 78.7353 -68.5852 75.1119 +v 66.4226 -68.5852 86.1922 +v 55.4492 68.5852 93.6292 +v 55.4492 -68.5852 93.6292 +v 97.6446 68.5852 48.0269 +v 69.0179 68.5852 84.1283 +v 61.0492 68.5852 90.0779 +v 97.6446 -68.5852 48.0269 +v 69.0179 -68.5852 84.1283 +v 61.0492 -68.5852 90.0779 +v 49.6433 68.5852 96.8328 +v 49.6433 -68.5852 96.8328 +v -30.92 68.5852 104.331 +v -30.92 -68.5852 104.331 +v 96.1359 68.5852 50.9798 +v 87.2843 68.5852 64.9808 +v 83.1642 68.5852 70.1766 +v 96.1359 -68.5852 50.9798 +v 87.2843 -68.5852 64.9808 +v 83.1642 -68.5852 70.1766 +v 101.621 68.5852 38.9119 +v 101.621 -68.5852 38.9119 +v 94.5379 68.5852 53.8853 +v 91.0802 68.5852 59.5436 +v 94.5379 -68.5852 53.8853 +v 91.0802 -68.5852 59.5436 +v 46.6698 68.5852 98.3004 +v 46.6698 -68.5852 98.3004 +v 100.389 68.5852 41.9902 +v 100.389 -68.5852 41.9902 +v 15.0249 68.5852 107.774 +v 15.0249 -68.5852 107.774 +v 43.653 68.5852 99.6768 +v 43.653 -68.5852 99.6768 +v 52.5707 68.5852 95.2753 +v 52.5707 -68.5852 95.2753 +v -4.82181 68.5852 108.71 +v -4.82181 -68.5852 108.71 +v 74.0141 68.5852 79.7682 +v 58.2763 68.5852 91.8963 +v 74.0141 -68.5852 79.7682 +v 58.2763 -68.5852 91.8963 +v 80.9874 68.5852 72.678 +v 76.4102 68.5852 77.476 +v 80.9874 -68.5852 72.678 +v 76.4102 -68.5852 77.476 +v 92.8522 68.5852 56.7408 +v 92.8522 -68.5852 56.7408 +v 40.5956 68.5852 100.961 +v 40.5956 -68.5852 100.961 +v 104.749 68.5852 29.4719 +v 104.749 -68.5852 29.4719 +v 108.817 68.5852 0 +v 108.817 -68.5852 0 +v -27.7268 68.5852 105.225 +v -27.7268 -68.5852 105.225 +v 107.003 68.5852 19.7858 +v 107.003 -68.5852 19.7858 +v 11.7341 68.5852 108.182 +v 11.7341 -68.5852 108.182 +v 28.0182 68.5852 105.148 +v 28.0182 -68.5852 105.148 +v 8.43246 68.5852 108.489 +v 8.43246 -68.5852 108.489 +v 18.3018 68.5852 107.267 +v 18.3018 -68.5852 107.267 +v 108.766 68.5852 3.31556 +v 108.766 -68.5852 3.31556 +v 108.362 68.5852 9.93438 +v 108.362 -68.5852 9.93438 +v 76.6946 -32.0363 -100 +v 76.6946 32.0363 -100 +v -120.2 -32.0363 37.8674 +v -120.2 32.0363 37.8674 +v 78.441 -35.7675 -100 +v 78.441 35.7675 -100 +v -120.798 -35.7675 39.5084 +v -120.798 35.7675 39.5084 +v 25.6185 70.6143 109.443 +v 25.6185 -70.6143 109.443 +v 107.223 70.6143 33.7256 +v 107.223 -70.6143 33.7256 +v 109.854 70.6143 23.7959 +v 109.854 -70.6143 23.7959 +v 51.2789 70.6143 100.023 +v 51.2789 -70.6143 100.023 +v 45.0913 70.6143 102.961 +v 45.0913 -70.6143 102.961 +v 15.52 70.6143 111.325 +v 15.52 -70.6143 111.325 +v 48.2075 70.6143 101.539 +v 48.2075 -70.6143 101.539 +v 12.1208 70.6143 111.746 +v 12.1208 -70.6143 111.746 +v 1.86828 70.6143 112.386 +v 1.86828 -70.6143 112.386 +v 5.29174 70.6143 112.277 +v 5.29174 -70.6143 112.277 +v 41.9332 70.6143 104.287 +v 41.9332 -70.6143 104.287 +v 111.568 70.6143 13.6674 +v 111.568 -70.6143 13.6674 +v 104.97 70.6143 40.194 +v 104.97 -70.6143 40.194 +v -18.5977 70.6143 110.853 +v -18.5977 -70.6143 110.853 +v -15.2115 70.6143 111.368 +v -15.2115 -70.6143 111.368 +v -35.2076 70.6143 106.745 +v -35.2076 -70.6143 106.745 +v -28.6403 70.6143 108.692 +v -28.6403 -70.6143 108.692 +v 85.9043 70.6143 72.4888 +v 85.9043 -70.6143 72.4888 +v 22.272 70.6143 110.173 +v 22.272 -70.6143 110.173 +v 90.1601 70.6143 67.1217 +v 88.0731 70.6143 69.8377 +v 73.9066 70.6143 84.6876 +v 65.8665 70.6143 91.0812 +v 90.1601 -70.6143 67.1217 +v 88.0731 -70.6143 69.8377 +v 73.9066 -70.6143 84.6876 +v 65.8665 -70.6143 91.0812 +v 103.696 70.6143 43.3737 +v 103.696 -70.6143 43.3737 +v 57.2762 70.6143 96.7141 +v 81.3295 70.6143 77.5866 +v 78.9277 70.6143 80.0287 +v 81.3295 -70.6143 77.5866 +v 78.9277 -70.6143 80.0287 +v 57.2762 -70.6143 96.7141 +v 32.2372 70.6143 107.68 +v 32.2372 -70.6143 107.68 +v 97.6528 70.6143 55.6607 +v 76.4527 70.6143 82.3964 +v 63.0607 70.6143 93.0458 +v 97.6528 -70.6143 55.6607 +v 76.4527 -70.6143 82.3964 +v 63.0607 -70.6143 93.0458 +v -31.9388 70.6143 107.769 +v -31.9388 -70.6143 107.769 +v 94.0811 70.6143 61.5054 +v 94.0811 -70.6143 61.5054 +v -38.4437 70.6143 105.623 +v 92.1634 70.6143 64.3435 +v 83.6558 70.6143 75.0726 +v 71.2919 70.6143 86.9002 +v 68.6111 70.6143 89.032 +v -38.4437 -70.6143 105.623 +v 92.1634 -70.6143 64.3435 +v 83.6558 -70.6143 75.0726 +v 71.2919 -70.6143 86.9002 +v 68.6111 -70.6143 89.032 +v -25.3153 70.6143 109.514 +v -25.3153 -70.6143 109.514 +v 99.3034 70.6143 52.6595 +v 95.9115 70.6143 58.6103 +v 99.3034 -70.6143 52.6595 +v 95.9115 -70.6143 58.6103 +v 54.3027 70.6143 98.4144 +v 54.3027 -70.6143 98.4144 +v 60.1964 70.6143 94.924 +v 38.7362 70.6143 105.516 +v 60.1964 -70.6143 94.924 +v 38.7362 -70.6143 105.516 +v 109.078 70.6143 27.132 +v 109.078 -70.6143 27.132 +v -21.9667 70.6143 110.234 +v -21.9667 -70.6143 110.234 +v 111.1 70.6143 17.0605 +v 111.1 -70.6143 17.0605 +v 110.528 70.6143 20.4377 +v 110.528 -70.6143 20.4377 +v 102.326 70.6143 46.5131 +v 102.326 -70.6143 46.5131 +v -11.8111 70.6143 111.78 +v -11.8111 -70.6143 111.78 +v -1.55692 70.6143 112.391 +v -1.55692 -70.6143 112.391 +v 112.35 70.6143 3.4248 +v 112.35 -70.6143 3.4248 +v 18.9048 70.6143 110.801 +v 18.9048 -70.6143 110.801 +v 35.5032 70.6143 106.648 +v 35.5032 -70.6143 106.648 +v 100.862 70.6143 49.6093 +v 100.862 -70.6143 49.6093 +v 106.146 70.6143 36.977 +v 106.146 -70.6143 36.977 +v -8.3998 70.6143 112.088 +v -8.3998 -70.6143 112.088 +v -4.98067 70.6143 112.291 +v -4.98067 -70.6143 112.291 +v 111.933 70.6143 10.2617 +v 111.933 -70.6143 10.2617 +v 112.193 70.6143 6.84643 +v 112.193 -70.6143 6.84643 +v 112.402 70.6143 0 +v 108.201 70.6143 30.443 +v 112.402 -70.6143 0 +v 108.201 -70.6143 30.443 +v 8.71029 70.6143 112.064 +v 8.71029 -70.6143 112.064 +v 28.9413 70.6143 108.612 +v 28.9413 -70.6143 108.612 +v 80.3772 -39.4039 -100 +v 80.3772 39.4039 -100 +v -121.46 -39.4039 41.3278 +v -121.46 39.4039 41.3278 +v -122.185 -42.9357 43.3207 +v -122.185 42.9357 43.3207 +v 82.498 -42.9357 -100 +v 82.498 42.9357 -100 +v -8.67518 72.4562 115.762 +v -8.67518 -72.4562 115.762 +v 116.087 72.4562 0 +v 109.625 72.4562 38.1892 +v 116.087 -72.4562 0 +v 109.625 -72.4562 38.1892 +v 108.411 72.4562 41.5117 +v 108.411 -72.4562 41.5117 +v 110.738 72.4562 34.8313 +v 26.4584 72.4562 113.031 +v 110.738 -72.4562 34.8313 +v 26.4584 -72.4562 113.031 +v 114.152 72.4562 21.1077 +v 114.152 -72.4562 21.1077 +v 12.5181 72.4562 115.41 +v 12.5181 -72.4562 115.41 +v 40.0061 72.4562 108.976 +v 40.0061 -72.4562 108.976 +v 16.0288 72.4562 114.975 +v 16.0288 -72.4562 114.975 +v 23.0022 72.4562 113.785 +v 23.0022 -72.4562 113.785 +v 102.559 72.4562 54.3859 +v 102.559 -72.4562 54.3859 +v 5.46523 72.4562 115.958 +v 5.46523 -72.4562 115.958 +v -22.6868 72.4562 113.848 +v -22.6868 -72.4562 113.848 +v -5.14396 72.4562 115.973 +v -5.14396 -72.4562 115.973 +v -19.2074 72.4562 114.487 +v -19.2074 -72.4562 114.487 +v -1.60796 72.4562 116.076 +v -1.60796 -72.4562 116.076 +v 112.654 72.4562 28.0215 +v 112.654 -72.4562 28.0215 +v 100.854 72.4562 57.4855 +v 100.854 -72.4562 57.4855 +v 46.5695 72.4562 106.336 +v 46.5695 -72.4562 106.336 +v 1.92953 72.4562 116.071 +v 1.92953 -72.4562 116.071 +v 52.9601 72.4562 103.302 +v 52.9601 -72.4562 103.302 +v 111.748 72.4562 31.441 +v 111.748 -72.4562 31.441 +v -26.1452 72.4562 113.104 +v -26.1452 -72.4562 113.104 +v 113.456 72.4562 24.576 +v 113.456 -72.4562 24.576 +v 104.168 72.4562 51.2357 +v 104.168 -72.4562 51.2357 +v 88.7206 72.4562 74.8653 +v 88.7206 -72.4562 74.8653 +v 99.0558 72.4562 60.5318 +v 99.0558 -72.4562 60.5318 +v 115.871 72.4562 7.07088 +v 115.871 -72.4562 7.07088 +v 36.6671 72.4562 110.144 +v 36.6671 -72.4562 110.144 +v 93.116 72.4562 69.3223 +v 90.9605 72.4562 72.1273 +v 78.9591 72.4562 85.0977 +v 76.3296 72.4562 87.464 +v 93.116 -72.4562 69.3223 +v 90.9605 -72.4562 72.1273 +v 78.9591 -72.4562 85.0977 +v 76.3296 -72.4562 87.464 +v 81.5153 72.4562 82.6523 +v 65.1281 72.4562 96.0963 +v 81.5153 -72.4562 82.6523 +v 65.1281 -72.4562 96.0963 +v -15.7102 72.4562 115.019 +v -15.7102 -72.4562 115.019 +v 49.7879 72.4562 104.868 +v 49.7879 -72.4562 104.868 +v 86.3983 72.4562 77.5338 +v 83.9958 72.4562 80.1303 +v 70.8604 72.4562 91.9509 +v 86.3983 -72.4562 77.5338 +v 83.9958 -72.4562 80.1303 +v 70.8604 -72.4562 91.9509 +v 29.8901 72.4562 112.173 +v 29.8901 -72.4562 112.173 +v 97.1655 72.4562 63.5218 +v 62.1699 72.4562 98.036 +v 97.1655 -72.4562 63.5218 +v 62.1699 -72.4562 98.036 +v 95.1849 72.4562 66.4529 +v 73.6292 72.4562 89.7491 +v 95.1849 -72.4562 66.4529 +v 73.6292 -72.4562 89.7491 +v 56.083 72.4562 101.641 +v 59.1539 72.4562 99.8848 +v 56.083 -72.4562 101.641 +v 59.1539 -72.4562 99.8848 +v 68.0258 72.4562 94.0672 +v 68.0258 -72.4562 94.0672 +v -32.9859 72.4562 111.302 +v -32.9859 -72.4562 111.302 +v 43.3079 72.4562 107.706 +v 33.2941 72.4562 111.21 +v 43.3079 -72.4562 107.706 +v 33.2941 -72.4562 111.21 +v 114.742 72.4562 17.6198 +v 114.742 -72.4562 17.6198 +v 107.096 72.4562 44.7957 +v 107.096 -72.4562 44.7957 +v -12.1983 72.4562 115.444 +v -12.1983 -72.4562 115.444 +v 105.681 72.4562 48.038 +v -29.5793 72.4562 112.255 +v 105.681 -72.4562 48.038 +v -29.5793 -72.4562 112.255 +v 8.99585 72.4562 115.738 +v 8.99585 -72.4562 115.738 +v 115.226 72.4562 14.1155 +v 115.226 -72.4562 14.1155 +v 19.5245 72.4562 114.433 +v 19.5245 -72.4562 114.433 +v 115.602 72.4562 10.5981 +v 115.602 -72.4562 10.5981 +v -39.704 72.4562 109.086 +v -36.3618 72.4562 110.245 +v -36.3618 -72.4562 110.245 +v -39.704 -72.4562 109.086 +v 116.033 72.4562 3.53708 +v 116.033 -72.4562 3.53708 +v 84.7977 -46.3537 -100 +v 84.7977 46.3537 -100 +v -122.972 -46.3537 45.4818 +v -122.972 46.3537 45.4818 +v 115.382 74.1059 32.4634 +v 115.382 -74.1059 32.4634 +v 9.28838 74.1059 119.501 +v 9.28838 -74.1059 119.501 +v -26.9954 74.1059 116.782 +v -26.9954 -74.1059 116.782 +v 12.9252 74.1059 119.163 +v 12.9252 -74.1059 119.163 +v 30.8621 74.1059 115.82 +v 30.8621 -74.1059 115.82 +v 117.864 74.1059 21.7941 +v 117.864 -74.1059 21.7941 +v -5.31123 74.1059 119.744 +v -5.31123 -74.1059 119.744 +v 114.339 74.1059 35.964 +v 114.339 -74.1059 35.964 +v 100.325 74.1059 65.5874 +v 100.325 -74.1059 65.5874 +v 110.578 74.1059 46.2523 +v 110.578 -74.1059 46.2523 +v 119.806 74.1059 3.6521 +v 119.806 -74.1059 3.6521 +v 34.3767 74.1059 114.826 +v 34.3767 -74.1059 114.826 +v 119.361 74.1059 10.9427 +v 119.361 -74.1059 10.9427 +v -34.0585 74.1059 114.921 +v -34.0585 -74.1059 114.921 +v -40.9951 74.1059 112.633 +v -40.9951 -74.1059 112.633 +v 119.639 74.1059 7.30081 +v 119.639 -74.1059 7.30081 +v 20.1594 74.1059 118.154 +v 20.1594 -74.1059 118.154 +v -37.5443 74.1059 113.83 +v 51.4069 74.1059 108.278 +v -37.5443 -74.1059 113.83 +v 51.4069 -74.1059 108.278 +v 116.317 74.1059 28.9327 +v 116.317 -74.1059 28.9327 +v 109.118 74.1059 49.6001 +v 109.118 -74.1059 49.6001 +v 41.307 74.1059 112.519 +v 41.307 -74.1059 112.519 +v 1.99227 74.1059 119.845 +v 1.99227 -74.1059 119.845 +v 54.6822 74.1059 106.662 +v 54.6822 -74.1059 106.662 +v 70.2379 74.1059 97.1261 +v 27.3188 74.1059 116.707 +v 70.2379 -74.1059 97.1261 +v 27.3188 -74.1059 116.707 +v 23.7502 74.1059 117.485 +v 23.7502 -74.1059 117.485 +v -19.832 74.1059 118.21 +v -19.832 -74.1059 118.21 +v -8.95728 74.1059 119.527 +v -8.95728 -74.1059 119.527 +v 104.134 74.1059 59.3548 +v 84.166 74.1059 85.34 +v 104.134 -74.1059 59.3548 +v 84.166 -74.1059 85.34 +v 76.0235 74.1059 92.6676 +v 76.0235 -74.1059 92.6676 +v 93.9184 74.1059 74.4727 +v 91.6056 74.1059 77.2997 +v 73.1646 74.1059 94.9409 +v 93.9184 -74.1059 74.4727 +v 91.6056 -74.1059 77.2997 +v 73.1646 -74.1059 94.9409 +v 81.5267 74.1059 87.8649 +v 81.5267 -74.1059 87.8649 +v 96.1439 74.1059 71.5765 +v 89.2078 74.1059 80.055 +v -12.595 74.1059 119.198 +v 96.1439 -74.1059 71.5765 +v 89.2078 -74.1059 80.055 +v -12.595 -74.1059 119.198 +v 16.55 74.1059 118.714 +v 16.55 -74.1059 118.714 +v 86.7272 74.1059 82.7359 +v 78.8117 74.1059 90.3082 +v 67.2459 74.1059 99.2211 +v 86.7272 -74.1059 82.7359 +v 78.8117 -74.1059 90.3082 +v 67.2459 -74.1059 99.2211 +v 98.2802 74.1059 68.6138 +v 98.2802 -74.1059 68.6138 +v -30.5411 74.1059 115.906 +v -30.5411 -74.1059 115.906 +v 64.1915 74.1059 101.224 +v 64.1915 -74.1059 101.224 +v -16.2211 74.1059 118.759 +v -16.2211 -74.1059 118.759 +v 44.7162 74.1059 111.208 +v 44.7162 -74.1059 111.208 +v 118.972 74.1059 14.5745 +v 118.972 -74.1059 14.5745 +v 48.0839 74.1059 109.794 +v 48.0839 -74.1059 109.794 +v 107.556 74.1059 52.9018 +v 107.556 -74.1059 52.9018 +v 117.145 74.1059 25.3752 +v 117.145 -74.1059 25.3752 +v 118.473 74.1059 18.1928 +v 118.473 -74.1059 18.1928 +v 37.8595 74.1059 113.726 +v 37.8595 -74.1059 113.726 +v 119.862 74.1059 0 +v 119.862 -74.1059 0 +v 5.64295 74.1059 119.729 +v 5.64295 -74.1059 119.729 +v 61.0775 74.1059 103.133 +v 61.0775 -74.1059 103.133 +v 111.936 74.1059 42.8616 +v 111.936 -74.1059 42.8616 +v -1.66025 74.1059 119.85 +v -1.66025 -74.1059 119.85 +v 57.9067 74.1059 104.946 +v 102.277 74.1059 62.5001 +v 57.9067 -74.1059 104.946 +v 102.277 -74.1059 62.5001 +v 105.894 74.1059 56.1544 +v 105.894 -74.1059 56.1544 +v 113.19 74.1059 39.4311 +v 113.19 -74.1059 39.4311 +v -23.4246 74.1059 117.551 +v -23.4246 -74.1059 117.551 +v -123.817 -49.6488 47.8054 +v -123.817 49.6488 47.8054 +v 87.2704 -49.6488 -100 +v 87.2704 49.6488 -100 +v -124.72 -52.8122 50.2852 +v -124.72 52.8122 50.2852 +v 89.9094 -52.8122 -100 +v 89.9094 52.8122 -100 +v -1.71364 75.5591 123.705 +v -1.71364 -75.5591 123.705 +v 122.283 75.5591 18.7778 +v 122.283 -75.5591 18.7778 +v -27.8636 75.5591 120.538 +v -27.8636 -75.5591 120.538 +v 111.015 75.5591 54.6031 +v 111.015 -75.5591 54.6031 +v 20.8078 75.5591 121.954 +v 20.8078 -75.5591 121.954 +v 116.83 75.5591 40.6992 +v 69.4086 75.5591 102.412 +v 116.83 -75.5591 40.6992 +v 69.4086 -75.5591 102.412 +v 49.6303 75.5591 113.325 +v 49.6303 -75.5591 113.325 +v 5.82443 75.5591 123.579 +v 5.82443 -75.5591 123.579 +v 120.912 75.5591 26.1913 +v 120.912 -75.5591 26.1913 +v 121.654 75.5591 22.495 +v 121.654 -75.5591 22.495 +v 46.1543 75.5591 114.785 +v 46.1543 -75.5591 114.785 +v 56.4408 75.5591 110.092 +v 107.483 75.5591 61.2637 +v 56.4408 -75.5591 110.092 +v 107.483 -75.5591 61.2637 +v 2.05634 75.5591 123.7 +v 2.05634 -75.5591 123.7 +v 122.799 75.5591 15.0432 +v 122.799 -75.5591 15.0432 +v 53.0602 75.5591 111.76 +v 53.0602 -75.5591 111.76 +v 112.627 75.5591 51.1953 +v 66.2559 75.5591 104.479 +v 112.627 -75.5591 51.1953 +v 66.2559 -75.5591 104.479 +v -20.4698 75.5591 122.011 +v -20.4698 -75.5591 122.011 +v 42.6355 75.5591 116.138 +v 42.6355 -75.5591 116.138 +v 24.514 75.5591 121.264 +v 24.514 -75.5591 121.264 +v 17.0823 75.5591 122.532 +v 17.0823 -75.5591 122.532 +v 35.4823 75.5591 118.519 +v 35.4823 -75.5591 118.519 +v 123.717 75.5591 0 +v 123.717 -75.5591 0 +v 115.536 75.5591 44.2401 +v 115.536 -75.5591 44.2401 +v 119.093 75.5591 33.5075 +v 114.135 75.5591 47.7398 +v 119.093 -75.5591 33.5075 +v 114.135 -75.5591 47.7398 +v 31.8547 75.5591 119.545 +v 31.8547 -75.5591 119.545 +v 13.3409 75.5591 122.995 +v 13.3409 -75.5591 122.995 +v 101.441 75.5591 70.8205 +v 101.441 -75.5591 70.8205 +v 84.1487 75.5591 90.6907 +v 81.3463 75.5591 93.2125 +v 84.1487 -75.5591 90.6907 +v 81.3463 -75.5591 93.2125 +v 59.7691 75.5591 108.321 +v 99.236 75.5591 73.8784 +v 94.5518 75.5591 79.7858 +v 89.5164 75.5591 85.3968 +v 86.8729 75.5591 88.0846 +v 59.7691 -75.5591 108.321 +v 99.236 -75.5591 73.8784 +v 94.5518 -75.5591 79.7858 +v 89.5164 -75.5591 85.3968 +v 86.8729 -75.5591 88.0846 +v 123.487 75.5591 7.53561 +v 123.487 -75.5591 7.53561 +v 78.4684 75.5591 95.6478 +v 75.5177 75.5591 97.9943 +v 78.4684 -75.5591 95.6478 +v 75.5177 -75.5591 97.9943 +v -31.5233 75.5591 119.633 +v -31.5233 -75.5591 119.633 +v -13.0001 75.5591 123.032 +v -13.0001 -75.5591 123.032 +v 96.9389 75.5591 76.8678 +v 92.0768 75.5591 82.6296 +v 96.9389 -75.5591 76.8678 +v 92.0768 -75.5591 82.6296 +v -5.48205 75.5591 123.595 +v -5.48205 -75.5591 123.595 +v 9.5871 75.5591 123.345 +v 9.5871 -75.5591 123.345 +v -42.3136 75.5591 116.256 +v -42.3136 -75.5591 116.256 +v 28.1974 75.5591 120.46 +v 28.1974 -75.5591 120.46 +v 63.0418 75.5591 106.45 +v 63.0418 -75.5591 106.45 +v 109.3 75.5591 57.9604 +v 109.3 -75.5591 57.9604 +v -38.7517 75.5591 117.491 +v -9.24535 75.5591 123.371 +v -38.7517 -75.5591 117.491 +v -9.24535 -75.5591 123.371 +v 103.552 75.5591 67.6968 +v 103.552 -75.5591 67.6968 +v 120.058 75.5591 29.8632 +v 120.058 -75.5591 29.8632 +v -16.7427 75.5591 122.578 +v -16.7427 -75.5591 122.578 +v 118.016 75.5591 37.1206 +v 118.016 -75.5591 37.1206 +v 105.566 75.5591 64.5102 +v 105.566 -75.5591 64.5102 +v 123.659 75.5591 3.76956 +v 123.659 -75.5591 3.76956 +v -24.1779 75.5591 121.331 +v -24.1779 -75.5591 121.331 +v 39.077 75.5591 117.383 +v 39.077 -75.5591 117.383 +v 123.2 75.5591 11.2947 +v 123.2 -75.5591 11.2947 +v 72.4968 75.5591 100.25 +v 72.4968 -75.5591 100.25 +v -35.1539 75.5591 118.617 +v -35.1539 -75.5591 118.617 +v -125.677 -55.8355 52.9148 +v -125.677 55.8355 52.9148 +v 92.7078 -55.8355 -100 +v 92.7078 55.8355 -100 +v 51.2047 76.812 116.92 +v 51.2047 -76.812 116.92 +v 25.2916 76.812 125.11 +v 25.2916 -76.812 125.11 +v -43.6558 76.812 119.943 +v 43.988 76.812 119.822 +v -43.6558 -76.812 119.943 +v 43.988 -76.812 119.822 +v 125.513 76.812 23.2086 +v 125.513 -76.812 23.2086 +v 29.0919 76.812 124.282 +v 29.0919 -76.812 124.282 +v 120.537 76.812 41.9903 +v 120.537 -76.812 41.9903 +v -9.53864 76.812 127.284 +v -9.53864 -76.812 127.284 +v 126.694 76.812 15.5204 +v 126.694 -76.812 15.5204 +v -24.9449 76.812 125.18 +v -36.269 76.812 122.38 +v -24.9449 -76.812 125.18 +v -36.269 -76.812 122.38 +v 47.6184 76.812 118.426 +v 47.6184 -76.812 118.426 +v 108.915 76.812 66.5566 +v 108.915 -76.812 66.5566 +v 9.89122 76.812 127.257 +v 9.89122 -76.812 127.257 +v 104.659 76.812 73.067 +v 104.659 -76.812 73.067 +v 106.837 76.812 69.8443 +v 32.8652 76.812 123.338 +v 106.837 -76.812 69.8443 +v 32.8652 -76.812 123.338 +v 2.12158 76.812 127.623 +v 2.12158 -76.812 127.623 +v 102.384 76.812 76.222 +v 102.384 -76.812 76.222 +v 6.00919 76.812 127.5 +v 6.00919 -76.812 127.5 +v 124.748 76.812 27.0221 +v 124.748 -76.812 27.0221 +v -39.981 76.812 121.218 +v -39.981 -76.812 121.218 +v 126.162 76.812 19.3735 +v 126.162 -76.812 19.3735 +v 68.3577 76.812 107.794 +v 68.3577 -76.812 107.794 +v 127.108 76.812 11.653 +v 127.108 -76.812 11.653 +v 89.6286 76.812 90.8789 +v 89.6286 -76.812 90.8789 +v -1.76801 76.812 127.629 +v -1.76801 -76.812 127.629 +v -13.4125 76.812 126.935 +v -13.4125 -76.812 126.935 +v 97.5511 76.812 82.3167 +v 97.5511 -76.812 82.3167 +v 86.818 76.812 93.5676 +v -32.5233 76.812 123.428 +v 86.818 -76.812 93.5676 +v -32.5233 -76.812 123.428 +v -17.2738 76.812 126.467 +v -17.2738 -76.812 126.467 +v 94.9977 76.812 85.2508 +v 92.3561 76.812 88.1057 +v 80.9576 76.812 98.682 +v 94.9977 -76.812 85.2508 +v 92.3561 -76.812 88.1057 +v 80.9576 -76.812 98.682 +v 83.9268 76.812 96.1694 +v 83.9268 -76.812 96.1694 +v 40.3167 76.812 121.107 +v 40.3167 -76.812 121.107 +v 110.892 76.812 63.2071 +v 110.892 -76.812 63.2071 +v 54.7434 76.812 115.306 +v 54.7434 -76.812 115.306 +v 74.7965 76.812 103.43 +v 74.7965 -76.812 103.43 +v 127.582 76.812 3.88913 +v 127.582 -76.812 3.88913 +v 117.755 76.812 49.2542 +v 117.755 -76.812 49.2542 +v 65.0416 76.812 109.826 +v 36.6079 76.812 122.279 +v 65.0416 -76.812 109.826 +v 36.6079 -76.812 122.279 +v 121.76 76.812 38.2981 +v 121.76 -76.812 38.2981 +v 112.767 76.812 59.799 +v 112.767 -76.812 59.799 +v -5.65595 76.812 127.516 +v -5.65595 -76.812 127.516 +v 116.2 76.812 52.8193 +v 71.6104 76.812 105.661 +v 116.2 -76.812 52.8193 +v 71.6104 -76.812 105.661 +v 100.014 76.812 79.3062 +v 21.4678 76.812 125.823 +v 100.014 -76.812 79.3062 +v 21.4678 -76.812 125.823 +v 122.87 76.812 34.5704 +v 77.9133 76.812 101.103 +v 122.87 -76.812 34.5704 +v 77.9133 -76.812 101.103 +v 58.2313 76.812 113.584 +v 58.2313 -76.812 113.584 +v -21.1192 76.812 125.882 +v -21.1192 -76.812 125.882 +v 13.7641 76.812 126.897 +v 13.7641 -76.812 126.897 +v 61.6651 76.812 111.757 +v 61.6651 -76.812 111.757 +v 114.536 76.812 56.3353 +v 114.536 -76.812 56.3353 +v 17.6241 76.812 126.419 +v 17.6241 -76.812 126.419 +v 119.201 76.812 45.6434 +v 119.201 -76.812 45.6434 +v 123.867 76.812 30.8106 +v 123.867 -76.812 30.8106 +v 127.404 76.812 7.77466 +v 127.404 -76.812 7.77466 +v -28.7475 76.812 124.362 +v -28.7475 -76.812 124.362 +v 127.641 76.812 0 +v 127.641 -76.812 0 +v 95.6581 -58.7108 -100 +v 95.6581 58.7108 -100 +v -126.686 -58.7108 55.6872 +v -126.686 58.7108 55.6872 +v -37.401 77.8612 126.199 +v -37.401 -77.8612 126.199 +v 49.1047 77.8612 122.122 +v 49.1047 -77.8612 122.122 +v -25.7235 77.8612 129.087 +v -25.7235 -77.8612 129.087 +v 107.925 77.8612 75.3476 +v 107.925 -77.8612 75.3476 +v -29.6447 77.8612 128.243 +v -29.6447 -77.8612 128.243 +v 33.8909 77.8612 127.187 +v 18.1742 77.8612 130.364 +v 33.8909 -77.8612 127.187 +v 18.1742 -77.8612 130.364 +v 83.4844 77.8612 101.762 +v -33.5384 77.8612 127.28 +v 83.4844 -77.8612 101.762 +v -33.5384 -77.8612 127.28 +v -9.83635 77.8612 131.257 +v -9.83635 -77.8612 131.257 +v 45.3609 77.8612 123.562 +v 45.3609 -77.8612 123.562 +v 6.19674 77.8612 131.479 +v 6.19674 -77.8612 131.479 +v -45.0184 77.8612 123.687 +v -45.0184 -77.8612 123.687 +v 63.5897 77.8612 115.245 +v 63.5897 -77.8612 115.245 +v 124.299 77.8612 43.3008 +v 124.299 -77.8612 43.3008 +v 110.171 77.8612 72.0242 +v 110.171 -77.8612 72.0242 +v 29.9999 77.8612 128.161 +v 29.9999 -77.8612 128.161 +v 56.452 77.8612 118.905 +v 56.452 -77.8612 118.905 +v 103.135 77.8612 81.7814 +v 86.5462 77.8612 99.171 +v 103.135 -77.8612 81.7814 +v 86.5462 -77.8612 99.171 +v 92.4261 77.8612 93.7153 +v 80.345 77.8612 104.258 +v 92.4261 -77.8612 93.7153 +v 80.345 -77.8612 104.258 +v 130.648 77.8612 16.0049 +v 130.648 -77.8612 16.0049 +v 119.826 77.8612 54.4678 +v 97.9627 77.8612 87.9116 +v 119.826 -77.8612 54.4678 +v 97.9627 -77.8612 87.9116 +v 131.075 77.8612 12.0167 +v 131.075 -77.8612 12.0167 +v 100.596 77.8612 84.8859 +v 100.596 -77.8612 84.8859 +v 126.705 77.8612 35.6494 +v 126.705 -77.8612 35.6494 +v 2.18779 77.8612 131.607 +v 2.18779 -77.8612 131.607 +v 67.0716 77.8612 113.254 +v 95.2386 77.8612 90.8556 +v 89.5277 77.8612 96.4879 +v 95.2386 -77.8612 90.8556 +v 89.5277 -77.8612 96.4879 +v 67.0716 -77.8612 113.254 +v -5.83248 77.8612 131.496 +v -5.83248 -77.8612 131.496 +v 112.314 77.8612 68.6339 +v 70.4912 77.8612 111.158 +v 112.314 -77.8612 68.6339 +v 70.4912 -77.8612 111.158 +v -17.813 77.8612 130.414 +v -17.813 -77.8612 130.414 +v 131.381 77.8612 8.01731 +v 131.381 -77.8612 8.01731 +v 26.081 77.8612 129.015 +v 26.081 -77.8612 129.015 +v 130.1 77.8612 19.9782 +v 130.1 -77.8612 19.9782 +v 131.625 77.8612 0 +v 131.625 -77.8612 0 +v -13.8311 77.8612 130.896 +v -13.8311 -77.8612 130.896 +v 114.354 77.8612 65.1799 +v 114.354 -77.8612 65.1799 +v 41.575 77.8612 124.887 +v 41.575 -77.8612 124.887 +v 118.111 77.8612 58.0936 +v -21.7783 77.8612 129.811 +v 118.111 -77.8612 58.0936 +v -21.7783 -77.8612 129.811 +v -41.2288 77.8612 125.001 +v -41.2288 -77.8612 125.001 +v 127.733 77.8612 31.7722 +v 127.733 -77.8612 31.7722 +v 129.431 77.8612 23.933 +v 129.431 -77.8612 23.933 +v 10.1999 77.8612 131.229 +v 10.1999 -77.8612 131.229 +v 121.43 77.8612 50.7915 +v 116.286 77.8612 61.6654 +v 121.43 -77.8612 50.7915 +v 116.286 -77.8612 61.6654 +v 122.922 77.8612 47.068 +v 122.922 -77.8612 47.068 +v 77.131 77.8612 106.658 +v 77.131 -77.8612 106.658 +v 131.564 77.8612 4.01052 +v 131.564 -77.8612 4.01052 +v 73.8454 77.8612 108.959 +v 52.8028 77.8612 120.57 +v 73.8454 -77.8612 108.959 +v 52.8028 -77.8612 120.57 +v 14.1937 77.8612 130.857 +v 14.1937 -77.8612 130.857 +v 60.0487 77.8612 117.129 +v 125.56 77.8612 39.4934 +v 60.0487 -77.8612 117.129 +v 125.56 -77.8612 39.4934 +v 105.579 77.8612 78.601 +v 105.579 -77.8612 78.601 +v -1.82319 77.8612 131.612 +v -1.82319 -77.8612 131.612 +v 37.7505 77.8612 126.095 +v 37.7505 -77.8612 126.095 +v 22.1379 77.8612 129.75 +v 22.1379 -77.8612 129.75 +v 128.642 77.8612 27.8655 +v 128.642 -77.8612 27.8655 +v -127.745 -61.4304 58.595 +v -127.745 61.4304 58.595 +v 98.7525 -61.4304 -100 +v 98.7525 61.4304 -100 +v 101.983 -63.9871 -100 +v 101.983 63.9871 -100 +v -128.85 -63.9871 61.6305 +v -128.85 63.9871 61.6305 +v 134.651 78.7038 16.4952 +v 134.651 -78.7038 16.4952 +v -26.5116 78.7038 133.042 +v -26.5116 -78.7038 133.042 +v -18.3587 78.7038 134.41 +v -18.3587 -78.7038 134.41 +v 135.658 78.7038 0 +v 135.658 -78.7038 0 +v 106.295 78.7038 84.2869 +v 106.295 -78.7038 84.2869 +v 115.755 78.7038 70.7366 +v 100.964 78.7038 90.6049 +v 115.755 -78.7038 70.7366 +v 100.964 -78.7038 90.6049 +v 130.587 78.7038 36.7416 +v 130.587 -78.7038 36.7416 +v 30.919 78.7038 132.087 +v 30.919 -78.7038 132.087 +v 69.1265 78.7038 116.724 +v 82.8065 78.7038 107.452 +v 82.8065 -78.7038 107.452 +v 69.1265 -78.7038 116.724 +v 34.9292 78.7038 131.084 +v 34.9292 -78.7038 131.084 +v 128.107 78.7038 44.6274 +v 128.107 -78.7038 44.6274 +v 134.086 78.7038 20.5903 +v 134.086 -78.7038 20.5903 +v -1.87904 78.7038 135.645 +v -1.87904 -78.7038 135.645 +v 103.678 78.7038 87.4865 +v 103.678 -78.7038 87.4865 +v -14.2548 78.7038 134.906 +v -14.2548 -78.7038 134.906 +v 111.232 78.7038 77.656 +v 111.232 -78.7038 77.656 +v 6.38659 78.7038 135.507 +v 6.38659 -78.7038 135.507 +v 61.8884 78.7038 120.718 +v 121.73 78.7038 59.8734 +v 61.8884 -78.7038 120.718 +v 121.73 -78.7038 59.8734 +v 54.4206 78.7038 124.263 +v 54.4206 -78.7038 124.263 +v 135.091 78.7038 12.3848 +v 135.091 -78.7038 12.3848 +v -10.1377 78.7038 135.278 +v -10.1377 -78.7038 135.278 +v 98.1564 78.7038 93.6391 +v 98.1564 -78.7038 93.6391 +v 129.407 78.7038 40.7034 +v 129.407 -78.7038 40.7034 +v 133.396 78.7038 24.6662 +v 133.396 -78.7038 24.6662 +v 14.6285 78.7038 134.867 +v 14.6285 -78.7038 134.867 +v 10.5124 78.7038 135.25 +v 10.5124 -78.7038 135.25 +v -42.492 78.7038 128.831 +v 72.6509 78.7038 114.564 +v -42.492 -78.7038 128.831 +v 72.6509 -78.7038 114.564 +v 79.4941 78.7038 109.926 +v 79.4941 -78.7038 109.926 +v 2.25482 78.7038 135.639 +v 2.25482 -78.7038 135.639 +v 119.849 78.7038 63.5546 +v 119.849 -78.7038 63.5546 +v 38.907 78.7038 129.958 +v 38.907 -78.7038 129.958 +v 123.498 78.7038 56.1365 +v 123.498 -78.7038 56.1365 +v 132.583 78.7038 28.7192 +v 132.583 -78.7038 28.7192 +v 113.546 78.7038 74.2308 +v 113.546 -78.7038 74.2308 +v 76.1078 78.7038 112.297 +v 76.1078 -78.7038 112.297 +v 125.151 78.7038 52.3476 +v -34.5659 78.7038 131.18 +v 125.151 -78.7038 52.3476 +v -34.5659 -78.7038 131.18 +v 92.2706 78.7038 99.444 +v 92.2706 -78.7038 99.444 +v -30.5529 78.7038 132.172 +v -30.5529 -78.7038 132.172 +v -38.5468 78.7038 130.066 +v -38.5468 -78.7038 130.066 +v 117.857 78.7038 67.1768 +v 86.0421 78.7038 104.88 +v 117.857 -78.7038 67.1768 +v 86.0421 -78.7038 104.88 +v 131.646 78.7038 32.7456 +v 131.646 -78.7038 32.7456 +v -46.3976 78.7038 127.476 +v 95.2577 78.7038 96.5864 +v -46.3976 -78.7038 127.476 +v 95.2577 -78.7038 96.5864 +v -6.01116 78.7038 135.524 +v -6.01116 -78.7038 135.524 +v 126.688 78.7038 48.51 +v 42.8487 78.7038 128.713 +v 126.688 -78.7038 48.51 +v 42.8487 -78.7038 128.713 +v 65.5379 78.7038 118.776 +v 65.5379 -78.7038 118.776 +v 26.88 78.7038 132.968 +v 26.88 -78.7038 132.968 +v 50.6091 78.7038 125.864 +v 50.6091 -78.7038 125.864 +v 18.731 78.7038 134.358 +v 18.731 -78.7038 134.358 +v 89.1977 78.7038 102.209 +v 89.1977 -78.7038 102.209 +v 58.1815 78.7038 122.548 +v 58.1815 -78.7038 122.548 +v -22.4456 78.7038 133.788 +v -22.4456 -78.7038 133.788 +v 22.8161 78.7038 133.725 +v 22.8161 -78.7038 133.725 +v 108.814 78.7038 81.0091 +v 46.7506 78.7038 127.347 +v 108.814 -78.7038 81.0091 +v 46.7506 -78.7038 127.347 +v 135.406 78.7038 8.26294 +v 135.406 -78.7038 8.26294 +v 135.595 78.7038 4.13339 +v 135.595 -78.7038 4.13339 +v -129.998 -66.3742 64.7857 +v -129.998 66.3742 64.7857 +v 105.34 -66.3742 -100 +v 105.34 66.3742 -100 +v -27.3071 79.3378 137.034 +v -27.3071 -79.3378 137.034 +v 74.8308 79.3378 118.001 +v 74.8308 -79.3378 118.001 +v -23.1191 79.3378 137.802 +v -23.1191 -79.3378 137.802 +v 121.393 79.3378 69.1925 +v 121.393 -79.3378 69.1925 +v 137.399 79.3378 25.4063 +v 137.399 -79.3378 25.4063 +v 119.229 79.3378 72.8592 +v 119.229 -79.3378 72.8592 +v 88.6239 79.3378 108.027 +v 88.6239 -79.3378 108.027 +v 123.445 79.3378 65.4616 +v 123.445 -79.3378 65.4616 +v 138.691 79.3378 16.9902 +v 138.691 -79.3378 16.9902 +v 2.32248 79.3378 139.709 +v 2.32248 -79.3378 139.709 +v 136.561 79.3378 29.581 +v 136.561 -79.3378 29.581 +v 139.728 79.3378 0 +v 139.728 -79.3378 0 +v 106.789 79.3378 90.1117 +v 106.789 -79.3378 90.1117 +v -35.6031 79.3378 135.116 +v -35.6031 -79.3378 135.116 +v 63.7455 79.3378 124.34 +v 63.7455 -79.3378 124.34 +v 135.596 79.3378 33.7282 +v 135.596 -79.3378 33.7282 +v 130.489 79.3378 49.9656 +v 130.489 -79.3378 49.9656 +v -1.93543 79.3378 139.715 +v -1.93543 -79.3378 139.715 +v -10.4419 79.3378 139.337 +v -10.4419 -79.3378 139.337 +v 101.102 79.3378 96.4489 +v 101.102 -79.3378 96.4489 +v 67.5044 79.3378 122.34 +v 116.953 79.3378 76.4582 +v 67.5044 -79.3378 122.34 +v 116.953 -79.3378 76.4582 +v 56.0535 79.3378 127.992 +v 56.0535 -79.3378 127.992 +v 128.906 79.3378 53.9184 +v 127.203 79.3378 57.821 +v 128.906 -79.3378 53.9184 +v 127.203 -79.3378 57.821 +v 78.3915 79.3378 115.666 +v 78.3915 -79.3378 115.666 +v 98.116 79.3378 99.4846 +v 48.1534 79.3378 131.169 +v 98.116 -79.3378 99.4846 +v 48.1534 -79.3378 131.169 +v 139.145 79.3378 12.7564 +v 139.145 -79.3378 12.7564 +v 85.2912 79.3378 110.677 +v 85.2912 -79.3378 110.677 +v 103.993 79.3378 93.3236 +v 103.993 -79.3378 93.3236 +v 71.2007 79.3378 120.227 +v 71.2007 -79.3378 120.227 +v 6.57823 79.3378 139.573 +v 6.57823 -79.3378 139.573 +v -31.4697 79.3378 136.138 +v -31.4697 -79.3378 136.138 +v 40.0745 79.3378 133.858 +v 40.0745 -79.3378 133.858 +v 91.8742 79.3378 105.276 +v 91.8742 -79.3378 105.276 +v -47.7898 79.3378 131.301 +v 52.1277 79.3378 129.641 +v -47.7898 -79.3378 131.301 +v 52.1277 -79.3378 129.641 +v 114.57 79.3378 79.9861 +v -39.7035 79.3378 133.969 +v 114.57 -79.3378 79.9861 +v -39.7035 -79.3378 133.969 +v 44.1344 79.3378 132.575 +v 44.1344 -79.3378 132.575 +v 125.382 79.3378 61.6699 +v 125.382 -79.3378 61.6699 +v -6.19154 79.3378 139.591 +v -6.19154 -79.3378 139.591 +v 139.469 79.3378 8.51088 +v 139.469 -79.3378 8.51088 +v 81.8794 79.3378 113.224 +v 81.8794 -79.3378 113.224 +v 31.8467 79.3378 136.051 +v 31.8467 -79.3378 136.051 +v -18.9096 79.3378 138.443 +v -18.9096 -79.3378 138.443 +v 134.506 79.3378 37.844 +v 134.506 -79.3378 37.844 +v 109.485 79.3378 86.8161 +v 109.485 -79.3378 86.8161 +v 35.9773 79.3378 135.017 +v 35.9773 -79.3378 135.017 +v 112.079 79.3378 83.4399 +v 112.079 -79.3378 83.4399 +v 59.9273 79.3378 126.225 +v 59.9273 -79.3378 126.225 +v 95.0393 79.3378 102.428 +v 95.0393 -79.3378 102.428 +v 19.2931 79.3378 138.39 +v 19.2931 -79.3378 138.39 +v 23.5007 79.3378 137.738 +v 23.5007 -79.3378 137.738 +v 27.6866 79.3378 136.958 +v 27.6866 -79.3378 136.958 +v -14.6826 79.3378 138.955 +v -14.6826 -79.3378 138.955 +v 138.109 79.3378 21.2081 +v 138.109 -79.3378 21.2081 +v 10.8279 79.3378 139.308 +v 10.8279 -79.3378 139.308 +v 15.0675 79.3378 138.913 +v 15.0675 -79.3378 138.913 +v -43.767 79.3378 132.697 +v -43.767 -79.3378 132.697 +v 131.951 79.3378 45.9665 +v 131.951 -79.3378 45.9665 +v 139.663 79.3378 4.25742 +v 139.663 -79.3378 4.25742 +v 133.29 79.3378 41.9248 +v 133.29 -79.3378 41.9248 +v -131.187 -68.5852 68.0521 +v -131.187 68.5852 68.0521 +v 108.817 -68.5852 -100 +v 108.817 68.5852 -100 +v 19.8589 79.7614 142.448 +v 19.8589 -79.7614 142.448 +v 37.0324 79.7614 138.977 +v 37.0324 -79.7614 138.977 +v 107.043 79.7614 96.0605 +v 100.993 79.7614 102.402 +v 107.043 -79.7614 96.0605 +v 100.993 -79.7614 102.402 +v 115.366 79.7614 85.8869 +v 87.7926 79.7614 113.923 +v 115.366 -79.7614 85.8869 +v 87.7926 -79.7614 113.923 +v -32.3926 79.7614 140.131 +v -32.3926 -79.7614 140.131 +v 94.5686 79.7614 108.364 +v 94.5686 -79.7614 108.364 +v 143.225 79.7614 13.1306 +v 143.225 -79.7614 13.1306 +v 127.065 79.7614 67.3814 +v 45.4288 79.7614 136.463 +v 127.065 -79.7614 67.3814 +v 45.4288 -79.7614 136.463 +v 104.067 79.7614 99.2775 +v 104.067 -79.7614 99.2775 +v 120.383 79.7614 78.7004 +v 120.383 -79.7614 78.7004 +v 24.1899 79.7614 141.777 +v 24.1899 -79.7614 141.777 +v 109.921 79.7614 92.7544 +v 109.921 -79.7614 92.7544 +v -15.1132 79.7614 143.03 +v -15.1132 -79.7614 143.03 +v 84.2807 79.7614 116.545 +v 84.2807 -79.7614 116.545 +v 130.934 79.7614 59.5167 +v 130.934 -79.7614 59.5167 +v 143.559 79.7614 8.76048 +v 143.559 -79.7614 8.76048 +v -19.4642 79.7614 142.503 +v -19.4642 -79.7614 142.503 +v 142.16 79.7614 21.8301 +v 142.16 -79.7614 21.8301 +v 49.5656 79.7614 135.015 +v 49.5656 -79.7614 135.015 +v -40.8679 79.7614 137.898 +v -40.8679 -79.7614 137.898 +v -23.7971 79.7614 141.844 +v -23.7971 -79.7614 141.844 +v 69.4841 79.7614 125.928 +v 69.4841 -79.7614 125.928 +v -10.7481 79.7614 143.424 +v -10.7481 -79.7614 143.424 +v 73.2888 79.7614 123.752 +v 129.06 79.7614 63.4785 +v 129.06 -79.7614 63.4785 +v 73.2888 -79.7614 123.752 +v -6.37312 79.7614 143.685 +v -6.37312 -79.7614 143.685 +v 135.821 79.7614 47.3146 +v 135.821 -79.7614 47.3146 +v 15.5093 79.7614 142.987 +v 15.5093 -79.7614 142.987 +v -36.6473 79.7614 139.079 +v -36.6473 -79.7614 139.079 +v 134.316 79.7614 51.431 +v 134.316 -79.7614 51.431 +v 117.929 79.7614 82.3319 +v 77.0254 79.7614 121.462 +v 117.929 -79.7614 82.3319 +v 77.0254 -79.7614 121.462 +v 97.8265 79.7614 105.432 +v 97.8265 -79.7614 105.432 +v 2.39059 79.7614 143.806 +v 2.39059 -79.7614 143.806 +v 61.6848 79.7614 129.926 +v 61.6848 -79.7614 129.926 +v 140.566 79.7614 30.4485 +v 140.566 -79.7614 30.4485 +v 80.6905 79.7614 119.059 +v 80.6905 -79.7614 119.059 +v -49.1914 79.7614 135.152 +v -49.1914 -79.7614 135.152 +v 143.759 79.7614 4.38228 +v 143.759 -79.7614 4.38228 +v 122.725 79.7614 74.9959 +v 122.725 -79.7614 74.9959 +v 6.77115 79.7614 143.667 +v 6.77115 -79.7614 143.667 +v 139.573 79.7614 34.7173 +v 139.573 -79.7614 34.7173 +v 11.1454 79.7614 143.393 +v 11.1454 -79.7614 143.393 +v 137.199 79.7614 43.1543 +v 53.6564 79.7614 133.443 +v 137.199 -79.7614 43.1543 +v 53.6564 -79.7614 133.443 +v 132.686 79.7614 55.4996 +v 132.686 -79.7614 55.4996 +v 124.953 79.7614 71.2217 +v 124.953 -79.7614 71.2217 +v 32.7807 79.7614 140.04 +v 32.7807 -79.7614 140.04 +v 65.6149 79.7614 127.987 +v 65.6149 -79.7614 127.987 +v 91.223 79.7614 111.195 +v 91.223 -79.7614 111.195 +v -1.99219 79.7614 143.812 +v -1.99219 -79.7614 143.812 +v -45.0505 79.7614 136.588 +v -45.0505 -79.7614 136.588 +v 41.2497 79.7614 137.784 +v 41.2497 -79.7614 137.784 +v 141.428 79.7614 26.1514 +v 141.428 -79.7614 26.1514 +v 112.696 79.7614 89.3622 +v 112.696 -79.7614 89.3622 +v 138.45 79.7614 38.9539 +v 138.45 -79.7614 38.9539 +v 57.6974 79.7614 131.746 +v 57.6974 -79.7614 131.746 +v -28.1079 79.7614 141.053 +v -28.1079 -79.7614 141.053 +v 143.826 79.7614 0 +v 143.826 -79.7614 0 +v 142.759 79.7614 17.4884 +v 142.759 -79.7614 17.4884 +v 28.4986 79.7614 140.974 +v 28.4986 -79.7614 140.974 +v -132.413 -70.6143 71.4212 +v -132.413 70.6143 71.4212 +v 112.402 -70.6143 -100 +v 112.402 70.6143 -100 +v -15.5455 79.9735 147.121 +v -15.5455 -79.9735 147.121 +v 20.4269 79.9735 146.523 +v 20.4269 -79.9735 146.523 +v 134.679 79.9735 61.2192 +v 134.679 -79.9735 61.2192 +v -28.9119 79.9735 145.087 +v -28.9119 -79.9735 145.087 +v 90.3039 79.9735 117.181 +v 90.3039 -79.9735 117.181 +v 6.96484 79.9735 147.776 +v 6.96484 -79.9735 147.776 +v 144.587 79.9735 31.3195 +v 144.587 -79.9735 31.3195 +v 2.45898 79.9735 147.92 +v 2.45898 -79.9735 147.92 +v 93.8324 79.9735 114.376 +v 86.6916 79.9735 119.879 +v 93.8324 -79.9735 114.376 +v 86.6916 -79.9735 119.879 +v 118.666 79.9735 88.3437 +v 118.666 -79.9735 88.3437 +v -46.3392 79.9735 140.495 +v 38.0918 79.9735 142.952 +v -46.3392 -79.9735 140.495 +v 38.0918 -79.9735 142.952 +v 136.482 79.9735 57.0872 +v 136.482 -79.9735 57.0872 +v 71.4718 79.9735 129.53 +v 42.4297 79.9735 141.725 +v -42.0369 79.9735 141.842 +v 71.4718 -79.9735 129.53 +v 42.4297 -79.9735 141.725 +v -42.0369 -79.9735 141.842 +v 46.7283 79.9735 140.367 +v 46.7283 -79.9735 140.367 +v 141.124 79.9735 44.3887 +v 141.124 -79.9735 44.3887 +v 97.2738 79.9735 111.463 +v 97.2738 -79.9735 111.463 +v 146.842 79.9735 17.9887 +v 146.842 -79.9735 17.9887 +v 24.8819 79.9735 145.833 +v 24.8819 -79.9735 145.833 +v 128.528 79.9735 73.2591 +v 128.528 -79.9735 73.2591 +v 15.953 79.9735 147.077 +v 15.953 -79.9735 147.077 +v 143.566 79.9735 35.7104 +v 143.566 -79.9735 35.7104 +v 139.706 79.9735 48.6681 +v 139.706 -79.9735 48.6681 +v -37.6956 79.9735 143.057 +v -37.6956 -79.9735 143.057 +v 121.303 79.9735 84.687 +v 82.9987 79.9735 122.464 +v 121.303 -79.9735 84.687 +v 82.9987 -79.9735 122.464 +v -24.4778 79.9735 145.901 +v -24.4778 -79.9735 145.901 +v 11.4642 79.9735 147.495 +v 11.4642 -79.9735 147.495 +v 132.751 79.9735 65.2944 +v 132.751 -79.9735 65.2944 +v 130.7 79.9735 69.3089 +v 130.7 -79.9735 69.3089 +v 59.3479 79.9735 135.514 +v 59.3479 -79.9735 135.514 +v 75.3853 79.9735 127.292 +v 75.3853 -79.9735 127.292 +v 126.236 79.9735 77.1412 +v 63.4493 79.9735 133.643 +v 126.236 -79.9735 77.1412 +v 63.4493 -79.9735 133.643 +v 142.411 79.9735 40.0682 +v 142.411 -79.9735 40.0682 +v -50.5985 79.9735 139.018 +v 100.625 79.9735 108.448 +v -50.5985 -79.9735 139.018 +v 100.625 -79.9735 108.448 +v -11.0556 79.9735 147.527 +v -11.0556 -79.9735 147.527 +v 67.4919 79.9735 131.648 +v 107.044 79.9735 102.117 +v 67.4919 -79.9735 131.648 +v 107.044 -79.9735 102.117 +v 33.7184 79.9735 144.046 +v 33.7184 -79.9735 144.046 +v -20.0209 79.9735 146.579 +v -20.0209 -79.9735 146.579 +v 29.3138 79.9735 145.007 +v 29.3138 -79.9735 145.007 +v 145.474 79.9735 26.8995 +v 145.474 -79.9735 26.8995 +v 50.9835 79.9735 138.878 +v 50.9835 -79.9735 138.878 +v -2.04918 79.9735 147.926 +v -2.04918 -79.9735 147.926 +v 103.882 79.9735 105.331 +v 103.882 -79.9735 105.331 +v 147.665 79.9735 9.01108 +v 147.665 -79.9735 9.01108 +v 115.919 79.9735 91.9184 +v 113.065 79.9735 95.4077 +v 110.105 79.9735 98.8084 +v 115.919 -79.9735 91.9184 +v 113.065 -79.9735 95.4077 +v 110.105 -79.9735 98.8084 +v 147.872 79.9735 4.50763 +v 147.872 -79.9735 4.50763 +v 147.94 79.9735 0 +v 147.94 -79.9735 0 +v 138.158 79.9735 52.9022 +v 55.1913 79.9735 137.26 +v 138.158 -79.9735 52.9022 +v 55.1913 -79.9735 137.26 +v 79.2288 79.9735 124.936 +v 79.2288 -79.9735 124.936 +v 146.226 79.9735 22.4545 +v 146.226 -79.9735 22.4545 +v 123.827 79.9735 80.9517 +v 123.827 -79.9735 80.9517 +v 147.322 79.9735 13.5062 +v 147.322 -79.9735 13.5062 +v -6.55542 79.9735 147.795 +v -6.55542 -79.9735 147.795 +v -33.3192 79.9735 144.139 +v -33.3192 -79.9735 144.139 +v 116.087 -72.4562 -100 +v 116.087 72.4562 -100 +v -133.673 -72.4562 74.8839 +v -133.673 72.4562 74.8839 +v -2.10624 79.9735 152.045 +v -2.10624 -79.9735 152.045 +v -11.3635 79.9735 151.635 +v -11.3635 -79.9735 151.635 +v 85.31 79.9735 125.874 +v 85.31 -79.9735 125.874 +v -20.5784 79.9735 150.661 +v -20.5784 -79.9735 150.661 +v 113.171 79.9735 101.56 +v 110.024 79.9735 104.961 +v 113.171 -79.9735 101.56 +v 110.024 -79.9735 104.961 +v 61.0005 79.9735 139.288 +v 61.0005 -79.9735 139.288 +v 152.06 79.9735 0 +v 152.06 -79.9735 0 +v 138.43 79.9735 62.924 +v 81.435 79.9735 128.415 +v 65.2162 79.9735 137.365 +v 138.43 -79.9735 62.924 +v 81.435 -79.9735 128.415 +v 65.2162 -79.9735 137.365 +v 151.989 79.9735 4.63315 +v 151.989 -79.9735 4.63315 +v 127.275 79.9735 83.206 +v 96.4454 79.9735 117.561 +v 127.275 -79.9735 83.206 +v 96.4454 -79.9735 117.561 +v 73.462 79.9735 133.137 +v 73.462 -79.9735 133.137 +v 150.932 79.9735 18.4896 +v 150.932 -79.9735 18.4896 +v 99.9826 79.9735 114.567 +v 99.9826 -79.9735 114.567 +v 142.005 79.9735 54.3754 +v 142.005 -79.9735 54.3754 +v 2.52745 79.9735 152.039 +v 2.52745 -79.9735 152.039 +v 7.15879 79.9735 151.891 +v 7.15879 -79.9735 151.891 +v 34.6574 79.9735 148.058 +v 34.6574 -79.9735 148.058 +v 140.283 79.9735 58.6769 +v 140.283 -79.9735 58.6769 +v 148.613 79.9735 32.1917 +v 148.613 -79.9735 32.1917 +v 43.6113 79.9735 145.672 +v 43.6113 -79.9735 145.672 +v 151.425 79.9735 13.8823 +v 151.425 -79.9735 13.8823 +v 56.7282 79.9735 141.082 +v 56.7282 -79.9735 141.082 +v 121.971 79.9735 90.8038 +v 121.971 -79.9735 90.8038 +v 124.681 79.9735 87.0453 +v 106.775 79.9735 108.265 +v 124.681 -79.9735 87.0453 +v 106.775 -79.9735 108.265 +v 132.107 79.9735 75.2991 +v 132.107 -79.9735 75.2991 +v -52.0075 79.9735 142.889 +v 136.448 79.9735 67.1126 +v -52.0075 -79.9735 142.889 +v 136.448 -79.9735 67.1126 +v 103.427 79.9735 111.468 +v 103.427 -79.9735 111.468 +v 25.5748 79.9735 149.894 +v 25.5748 -79.9735 149.894 +v 151.777 79.9735 9.26201 +v 151.777 -79.9735 9.26201 +v -15.9784 79.9735 151.218 +v -15.9784 -79.9735 151.218 +v -38.7453 79.9735 147.041 +v -38.7453 -79.9735 147.041 +v 150.298 79.9735 23.0798 +v 150.298 -79.9735 23.0798 +v 77.4845 79.9735 130.837 +v 77.4845 -79.9735 130.837 +v 48.0295 79.9735 144.275 +v 48.0295 -79.9735 144.275 +v 146.376 79.9735 41.184 +v 39.1525 79.9735 146.933 +v 146.376 -79.9735 41.184 +v 39.1525 -79.9735 146.933 +v 89.1057 79.9735 123.217 +v 89.1057 -79.9735 123.217 +v -47.6296 79.9735 144.408 +v -47.6296 -79.9735 144.408 +v 11.7835 79.9735 151.603 +v 11.7835 -79.9735 151.603 +v 92.8186 79.9735 120.445 +v 92.8186 -79.9735 120.445 +v -43.2075 79.9735 145.792 +v -43.2075 -79.9735 145.792 +v 145.054 79.9735 45.6248 +v 145.054 -79.9735 45.6248 +v 149.525 79.9735 27.6486 +v 134.34 79.9735 71.239 +v 149.525 -79.9735 27.6486 +v 134.34 -79.9735 71.239 +v 129.751 79.9735 79.2894 +v 129.751 -79.9735 79.2894 +v -25.1594 79.9735 149.964 +v -25.1594 -79.9735 149.964 +v 119.147 79.9735 94.478 +v 119.147 -79.9735 94.478 +v 52.4032 79.9735 142.745 +v 52.4032 -79.9735 142.745 +v 116.213 79.9735 98.0645 +v 116.213 -79.9735 98.0645 +v -6.73797 79.9735 151.911 +v -6.73797 -79.9735 151.911 +v 147.563 79.9735 36.7048 +v 147.563 -79.9735 36.7048 +v 143.596 79.9735 50.0233 +v 143.596 -79.9735 50.0233 +v 69.3713 79.9735 135.314 +v 69.3713 -79.9735 135.314 +v 20.9958 79.9735 150.603 +v 20.9958 -79.9735 150.603 +v -34.2471 79.9735 148.153 +v -34.2471 -79.9735 148.153 +v 30.1301 79.9735 149.045 +v 30.1301 -79.9735 149.045 +v -29.7171 79.9735 149.128 +v -29.7171 -79.9735 149.128 +v 16.3972 79.9735 151.173 +v 16.3972 -79.9735 151.173 +v -134.964 -74.1059 78.4312 +v -134.964 74.1059 78.4312 +v 119.862 -74.1059 -100 +v 119.862 74.1059 -100 +v 21.5638 79.7614 154.678 +v 21.5638 -79.7614 154.678 +v 142.175 79.7614 64.6265 +v 142.175 -79.7614 64.6265 +v 156.174 79.7614 0 +v 156.174 -79.7614 0 +v -11.6709 79.7614 155.737 +v -11.6709 -79.7614 155.737 +v -30.5211 79.7614 153.163 +v -30.5211 -79.7614 153.163 +v 155.522 79.7614 14.2579 +v 155.522 -79.7614 14.2579 +v -6.92028 79.7614 156.021 +v -6.92028 -79.7614 156.021 +v 128.054 79.7614 89.4005 +v 128.054 -79.7614 89.4005 +v 154.365 79.7614 23.7043 +v 154.365 -79.7614 23.7043 +v 109.664 79.7614 111.194 +v 35.5951 79.7614 152.064 +v 109.664 -79.7614 111.194 +v 35.5951 -79.7614 152.064 +v -16.4107 79.7614 155.309 +v -16.4107 -79.7614 155.309 +v 140.14 79.7614 68.9285 +v 140.14 -79.7614 68.9285 +v 66.9807 79.7614 141.081 +v 66.9807 -79.7614 141.081 +v 156.102 79.7614 4.75851 +v 156.102 -79.7614 4.75851 +v 83.6384 79.7614 131.89 +v 83.6384 -79.7614 131.89 +v 151.556 79.7614 37.6979 +v 151.556 -79.7614 37.6979 +v 150.337 79.7614 42.2982 +v 150.337 -79.7614 42.2982 +v 148.978 79.7614 46.8593 +v 125.271 79.7614 93.2607 +v 148.978 -79.7614 46.8593 +v 125.271 -79.7614 93.2607 +v 155.015 79.7614 18.9899 +v 155.015 -79.7614 18.9899 +v -39.7936 79.7614 151.019 +v -39.7936 -79.7614 151.019 +v 26.2668 79.7614 153.949 +v 26.2668 -79.7614 153.949 +v 12.1023 79.7614 155.704 +v 12.1023 -79.7614 155.704 +v 113.001 79.7614 107.801 +v 99.0549 79.7614 120.741 +v 113.001 -79.7614 107.801 +v 99.0549 -79.7614 120.741 +v 153.571 79.7614 28.3966 +v 153.571 -79.7614 28.3966 +v -44.3766 79.7614 149.737 +v -44.3766 -79.7614 149.737 +v 102.688 79.7614 117.667 +v 102.688 -79.7614 117.667 +v -21.1352 79.7614 154.737 +v -21.1352 -79.7614 154.737 +v 58.2631 79.7614 144.899 +v 30.9453 79.7614 153.077 +v 58.2631 -79.7614 144.899 +v 30.9453 -79.7614 153.077 +v 91.5165 79.7614 126.551 +v 91.5165 -79.7614 126.551 +v 95.33 79.7614 123.703 +v 95.33 -79.7614 123.703 +v 145.848 79.7614 55.8466 +v 62.651 79.7614 143.057 +v 145.848 -79.7614 55.8466 +v 62.651 -79.7614 143.057 +v 44.7912 79.7614 149.613 +v 44.7912 -79.7614 149.613 +v -53.4147 79.7614 146.756 +v 119.358 79.7614 100.718 +v 106.225 79.7614 114.484 +v -53.4147 -79.7614 146.756 +v 119.358 -79.7614 100.718 +v 106.225 -79.7614 114.484 +v 133.262 79.7614 81.4346 +v 133.262 -79.7614 81.4346 +v 40.2118 79.7614 150.908 +v 40.2118 -79.7614 150.908 +v 147.481 79.7614 51.3768 +v 147.481 -79.7614 51.3768 +v 87.6181 79.7614 129.28 +v 87.6181 -79.7614 129.28 +v -25.8402 79.7614 154.021 +v -25.8402 -79.7614 154.021 +v 49.329 79.7614 148.179 +v 49.329 -79.7614 148.179 +v 79.581 79.7614 134.377 +v 71.2483 79.7614 138.975 +v 122.371 79.7614 97.0343 +v 71.2483 -79.7614 138.975 +v 122.371 -79.7614 97.0343 +v 79.581 -79.7614 134.377 +v 152.634 79.7614 33.0626 +v 152.634 -79.7614 33.0626 +v 16.8409 79.7614 155.263 +v 16.8409 -79.7614 155.263 +v 144.078 79.7614 60.2645 +v 144.078 -79.7614 60.2645 +v 135.681 79.7614 77.3364 +v 135.681 -79.7614 77.3364 +v 2.59583 79.7614 156.152 +v 2.59583 -79.7614 156.152 +v 7.35248 79.7614 156.001 +v 7.35248 -79.7614 156.001 +v 155.884 79.7614 9.5126 +v 155.884 -79.7614 9.5126 +v 130.719 79.7614 85.4572 +v 130.719 -79.7614 85.4572 +v -35.1737 79.7614 152.162 +v -35.1737 -79.7614 152.162 +v 75.4497 79.7614 136.74 +v 75.4497 -79.7614 136.74 +v 137.975 79.7614 73.1664 +v 116.233 79.7614 104.308 +v 137.975 -79.7614 73.1664 +v 116.233 -79.7614 104.308 +v -48.9183 79.7614 148.315 +v -48.9183 -79.7614 148.315 +v -2.16322 79.7614 156.159 +v -2.16322 -79.7614 156.159 +v 53.821 79.7614 146.607 +v 53.821 -79.7614 146.607 +v -136.283 -75.5591 82.0536 +v -136.283 75.5591 82.0536 +v 123.717 -75.5591 -100 +v 123.717 75.5591 -100 +v 160.197 79.3378 4.88337 +v 160.197 -79.3378 4.88337 +v 41.2669 79.3378 154.868 +v 41.2669 -79.3378 154.868 +v -7.10186 79.3378 160.114 +v -7.10186 -79.3378 160.114 +v 101.654 79.3378 123.909 +v 101.654 -79.3378 123.909 +v 77.4294 79.3378 140.327 +v 77.4294 -79.3378 140.327 +v 152.887 79.3378 48.0888 +v 152.887 -79.3378 48.0888 +v -21.6898 79.3378 158.797 +v -21.6898 -79.3378 158.797 +v 22.1296 79.3378 158.737 +v 22.1296 -79.3378 158.737 +v 89.9172 79.3378 132.672 +v 89.9172 -79.3378 132.672 +v 159.083 79.3378 19.4882 +v 159.083 -79.3378 19.4882 +v 131.414 79.3378 91.7462 +v 131.414 -79.3378 91.7462 +v 2.66395 79.3378 160.25 +v 2.66395 -79.3378 160.25 +v 125.582 79.3378 99.5804 +v 125.582 -79.3378 99.5804 +v 143.817 79.3378 70.7371 +v 143.817 -79.3378 70.7371 +v -45.541 79.3378 153.665 +v -45.541 -79.3378 153.665 +v 93.9178 79.3378 129.871 +v 93.9178 -79.3378 129.871 +v 64.2949 79.3378 146.81 +v 64.2949 -79.3378 146.81 +v -26.5182 79.3378 158.063 +v -26.5182 -79.3378 158.063 +v 156.639 79.3378 33.9302 +v 156.639 -79.3378 33.9302 +v 50.6234 79.3378 152.067 +v 50.6234 -79.3378 152.067 +v 36.529 79.3378 156.053 +v 36.529 -79.3378 156.053 +v -36.0966 79.3378 156.154 +v -36.0966 -79.3378 156.154 +v 157.6 79.3378 29.1417 +v 157.6 -79.3378 29.1417 +v 12.4199 79.3378 159.79 +v 12.4199 -79.3378 159.79 +v 97.8313 79.3378 126.949 +v 97.8313 -79.3378 126.949 +v 151.351 79.3378 52.7248 +v 147.859 79.3378 61.8458 +v 151.351 -79.3378 52.7248 +v 147.859 -79.3378 61.8458 +v 136.758 79.3378 83.5714 +v 136.758 -79.3378 83.5714 +v -11.9771 79.3378 159.824 +v -11.9771 -79.3378 159.824 +v 73.1177 79.3378 142.621 +v 73.1177 -79.3378 142.621 +v 17.2828 79.3378 159.337 +v 17.2828 -79.3378 159.337 +v 115.966 79.3378 110.63 +v 115.966 -79.3378 110.63 +v 122.49 79.3378 103.36 +v 112.542 79.3378 114.112 +v 122.49 -79.3378 103.36 +v 112.542 -79.3378 114.112 +v 139.241 79.3378 79.3656 +v 139.241 -79.3378 79.3656 +v -54.8162 79.3378 150.606 +v -54.8162 -79.3378 150.606 +v 119.283 79.3378 107.045 +v 119.283 -79.3378 107.045 +v -2.21999 79.3378 160.257 +v -2.21999 -79.3378 160.257 +v 59.7918 79.3378 148.701 +v 59.7918 -79.3378 148.701 +v 158.415 79.3378 24.3262 +v 158.415 -79.3378 24.3262 +v 154.282 79.3378 43.4081 +v 154.282 -79.3378 43.4081 +v 81.6691 79.3378 137.903 +v 128.558 79.3378 95.7077 +v 128.558 -79.3378 95.7077 +v 81.6691 -79.3378 137.903 +v -40.8377 79.3378 154.982 +v -40.8377 -79.3378 154.982 +v 159.974 79.3378 9.7622 +v 159.974 -79.3378 9.7622 +v 145.906 79.3378 66.3222 +v 134.149 79.3378 87.6995 +v 145.906 -79.3378 66.3222 +v 134.149 -79.3378 87.6995 +v -16.8413 79.3378 159.385 +v -16.8413 -79.3378 159.385 +v 155.533 79.3378 38.6871 +v 155.533 -79.3378 38.6871 +v -50.2019 79.3378 152.207 +v -50.2019 -79.3378 152.207 +v 31.7572 79.3378 157.094 +v 31.7572 -79.3378 157.094 +v 160.272 79.3378 0 +v 149.674 79.3378 57.3119 +v 160.272 -79.3378 0 +v 149.674 -79.3378 57.3119 +v 105.382 79.3378 120.755 +v 105.382 -79.3378 120.755 +v 45.9665 79.3378 153.539 +v 45.9665 -79.3378 153.539 +v 7.5454 79.3378 160.094 +v 7.5454 -79.3378 160.094 +v 85.833 79.3378 135.351 +v 85.833 -79.3378 135.351 +v 26.956 79.3378 157.989 +v 26.956 -79.3378 157.989 +v 159.603 79.3378 14.632 +v 159.603 -79.3378 14.632 +v 141.595 79.3378 75.0862 +v 109.013 79.3378 117.488 +v 141.595 -79.3378 75.0862 +v 109.013 -79.3378 117.488 +v 68.7382 79.3378 144.783 +v 68.7382 -79.3378 144.783 +v 55.2332 79.3378 150.454 +v 55.2332 -79.3378 150.454 +v -31.3219 79.3378 157.182 +v -31.3219 -79.3378 157.182 +v -137.625 -76.812 85.7414 +v -137.625 76.812 85.7414 +v 127.641 -76.812 -100 +v 127.641 76.812 -100 +v 160.617 78.7038 34.7919 +v 160.617 -78.7038 34.7919 +v 115.4 78.7038 117.01 +v 115.4 -78.7038 117.01 +v 155.195 78.7038 54.0639 +v 155.195 -78.7038 54.0639 +v 22.6917 78.7038 162.768 +v 22.6917 -78.7038 162.768 +v 158.2 78.7038 44.5106 +v 158.2 -78.7038 44.5106 +v 142.778 78.7038 81.3814 +v 142.778 -78.7038 81.3814 +v -7.28223 78.7038 164.181 +v -7.28223 -78.7038 164.181 +v -17.269 78.7038 163.433 +v -17.269 -78.7038 163.433 +v 7.73704 78.7038 164.16 +v 7.73704 -78.7038 164.16 +v 164.037 78.7038 10.0101 +v 164.037 -78.7038 10.0101 +v -51.4769 78.7038 156.072 +v -51.4769 -78.7038 156.072 +v 74.9748 78.7038 146.244 +v 151.614 78.7038 63.4165 +v 74.9748 -78.7038 146.244 +v 151.614 -78.7038 63.4165 +v -46.6976 78.7038 157.568 +v -46.6976 -78.7038 157.568 +v -12.2813 78.7038 163.883 +v -12.2813 -78.7038 163.883 +v -37.0134 78.7038 160.12 +v -37.0134 -78.7038 160.12 +v 51.9091 78.7038 155.929 +v 51.9091 -78.7038 155.929 +v 65.9278 78.7038 150.539 +v 65.9278 -78.7038 150.539 +v -27.1917 78.7038 162.077 +v -27.1917 -78.7038 162.077 +v 163.123 78.7038 19.9831 +v 163.123 -78.7038 19.9831 +v 100.316 78.7038 130.173 +v 100.316 -78.7038 130.173 +v 140.232 78.7038 85.6939 +v 140.232 -78.7038 85.6939 +v -41.8749 78.7038 158.918 +v -41.8749 -78.7038 158.918 +v 147.47 78.7038 72.5337 +v 111.781 78.7038 120.471 +v 147.47 -78.7038 72.5337 +v 111.781 -78.7038 120.471 +v 162.438 78.7038 24.9441 +v 162.438 -78.7038 24.9441 +v 96.3032 78.7038 133.17 +v 61.3104 78.7038 152.478 +v 96.3032 -78.7038 133.17 +v 61.3104 -78.7038 152.478 +v 88.013 78.7038 138.788 +v 88.013 -78.7038 138.788 +v 153.476 78.7038 58.7675 +v 153.476 -78.7038 58.7675 +v -56.2084 78.7038 154.431 +v 118.912 78.7038 113.439 +v -56.2084 -78.7038 154.431 +v 118.912 -78.7038 113.439 +v 145.191 78.7038 76.9933 +v 145.191 -78.7038 76.9933 +v 134.752 78.7038 94.0764 +v 134.752 -78.7038 94.0764 +v 131.823 78.7038 98.1385 +v 131.823 -78.7038 98.1385 +v 79.3959 78.7038 143.891 +v 159.483 78.7038 39.6697 +v 122.313 78.7038 109.763 +v 108.059 78.7038 123.822 +v 79.3959 -78.7038 143.891 +v 159.483 -78.7038 39.6697 +v 122.313 -78.7038 109.763 +v 108.059 -78.7038 123.822 +v -2.27637 78.7038 164.327 +v -2.27637 -78.7038 164.327 +v 42.315 78.7038 158.801 +v 42.315 -78.7038 158.801 +v 56.6361 78.7038 154.275 +v 56.6361 -78.7038 154.275 +v 128.771 78.7038 102.109 +v 128.771 -78.7038 102.109 +v 149.611 78.7038 68.0067 +v 149.611 -78.7038 68.0067 +v -22.2407 78.7038 162.831 +v -22.2407 -78.7038 162.831 +v 137.556 78.7038 89.9269 +v 137.556 -78.7038 89.9269 +v 12.7353 78.7038 163.848 +v 12.7353 -78.7038 163.848 +v 156.77 78.7038 49.3102 +v 156.77 -78.7038 49.3102 +v 37.4568 78.7038 160.017 +v 37.4568 -78.7038 160.017 +v 92.2009 78.7038 136.042 +v 92.2009 -78.7038 136.042 +v 125.601 78.7038 105.986 +v 125.601 -78.7038 105.986 +v 2.73161 78.7038 164.32 +v 2.73161 -78.7038 164.32 +v 17.7217 78.7038 163.384 +v 17.7217 -78.7038 163.384 +v 161.603 78.7038 29.8819 +v 161.603 -78.7038 29.8819 +v 164.342 78.7038 0 +v 32.5638 78.7038 161.084 +v 164.342 -78.7038 0 +v 32.5638 -78.7038 161.084 +v 27.6406 78.7038 162.001 +v 27.6406 -78.7038 162.001 +v 70.484 78.7038 148.46 +v 70.484 -78.7038 148.46 +v 104.236 78.7038 127.057 +v 104.236 -78.7038 127.057 +v 83.7433 78.7038 141.406 +v 83.7433 -78.7038 141.406 +v 47.1339 78.7038 157.438 +v 47.1339 -78.7038 157.438 +v -32.1174 78.7038 161.174 +v -32.1174 -78.7038 161.174 +v 164.266 78.7038 5.0074 +v 164.266 -78.7038 5.0074 +v 163.656 78.7038 15.0036 +v 163.656 -78.7038 15.0036 +v 131.625 -77.8612 -100 +v 131.625 77.8612 -100 +v -138.988 -77.8612 89.485 +v -138.988 77.8612 89.485 +v 106.793 77.8612 130.174 +v 106.793 -77.8612 130.174 +v 102.777 77.8612 133.368 +v 102.777 -77.8612 133.368 +v -7.46092 77.8612 168.21 +v -7.46092 -77.8612 168.21 +v 168.297 77.8612 5.13027 +v 168.297 -77.8612 5.13027 +v 160.617 77.8612 50.5201 +v 160.617 -77.8612 50.5201 +v 125.314 77.8612 112.457 +v 125.314 -77.8612 112.457 +v 62.8148 77.8612 156.219 +v 62.8148 -77.8612 156.219 +v -22.7864 77.8612 166.826 +v -22.7864 -77.8612 166.826 +v 53.1828 77.8612 159.755 +v 53.1828 -77.8612 159.755 +v 7.92689 77.8612 168.188 +v 7.92689 -77.8612 168.188 +v 81.3441 77.8612 147.422 +v 81.3441 -77.8612 147.422 +v 58.0258 77.8612 158.061 +v 58.0258 -77.8612 158.061 +v 131.931 77.8612 104.615 +v 131.931 -77.8612 104.615 +v 168.375 77.8612 0 +v 90.1726 77.8612 142.194 +v 168.375 -77.8612 0 +v 90.1726 -77.8612 142.194 +v 157.242 77.8612 60.2095 +v 157.242 -77.8612 60.2095 +v 148.754 77.8612 78.8825 +v 148.754 -77.8612 78.8825 +v 114.524 77.8612 123.428 +v 114.524 -77.8612 123.428 +v 164.559 77.8612 35.6456 +v 164.559 -77.8612 35.6456 +v 13.0478 77.8612 167.869 +v 13.0478 -77.8612 167.869 +v 18.1566 77.8612 167.393 +v 18.1566 -77.8612 167.393 +v 128.682 77.8612 108.586 +v 128.682 -77.8612 108.586 +v -12.5827 77.8612 167.904 +v -12.5827 -77.8612 167.904 +v 48.2905 77.8612 161.301 +v 48.2905 -77.8612 161.301 +v 165.568 77.8612 30.6151 +v 165.568 -77.8612 30.6151 +v 135.057 77.8612 100.547 +v 135.057 -77.8612 100.547 +v 163.396 77.8612 40.6431 +v 163.396 -77.8612 40.6431 +v 72.2135 77.8612 152.103 +v 72.2135 -77.8612 152.103 +v 85.7982 77.8612 144.875 +v 94.4633 77.8612 139.38 +v 94.4633 -77.8612 139.38 +v 85.7982 -77.8612 144.875 +v 168.062 77.8612 10.2558 +v 168.062 -77.8612 10.2558 +v 38.3759 77.8612 163.943 +v 38.3759 -77.8612 163.943 +v 43.3533 77.8612 162.698 +v 43.3533 -77.8612 162.698 +v 138.058 77.8612 96.3848 +v 138.058 -77.8612 96.3848 +v -27.8589 77.8612 166.054 +v -27.8589 -77.8612 166.054 +v 76.8145 77.8612 149.832 +v 153.282 77.8612 69.6754 +v 76.8145 -77.8612 149.832 +v 153.282 -77.8612 69.6754 +v 162.082 77.8612 45.6028 +v 162.082 -77.8612 45.6028 +v -37.9216 77.8612 164.049 +v -37.9216 -77.8612 164.049 +v 28.3188 77.8612 165.977 +v 28.3188 -77.8612 165.977 +v 155.334 77.8612 64.9726 +v 146.281 77.8612 83.3783 +v -47.8434 77.8612 161.435 +v 155.334 -77.8612 64.9726 +v 146.281 -77.8612 83.3783 +v -47.8434 -77.8612 161.435 +v 143.673 77.8612 87.7967 +v 143.673 -77.8612 87.7967 +v 23.2485 77.8612 166.762 +v 23.2485 -77.8612 166.762 +v 67.5455 77.8612 154.233 +v 67.5455 -77.8612 154.233 +v 110.71 77.8612 126.86 +v 98.6662 77.8612 136.437 +v 110.71 -77.8612 126.86 +v 98.6662 -77.8612 136.437 +v -57.5877 77.8612 158.221 +v -57.5877 -77.8612 158.221 +v 167.672 77.8612 15.3717 +v 167.672 -77.8612 15.3717 +v -52.74 77.8612 159.902 +v -52.74 -77.8612 159.902 +v -42.9024 77.8612 162.818 +v -42.9024 -77.8612 162.818 +v -17.6928 77.8612 167.443 +v -17.6928 -77.8612 167.443 +v 140.931 77.8612 92.1335 +v 140.931 -77.8612 92.1335 +v -2.33223 77.8612 168.359 +v -2.33223 -77.8612 168.359 +v 159.003 77.8612 55.3905 +v 159.003 -77.8612 55.3905 +v -32.9055 77.8612 165.128 +v -32.9055 -77.8612 165.128 +v 167.126 77.8612 20.4734 +v 167.126 -77.8612 20.4734 +v 2.79863 77.8612 168.352 +v 2.79863 -77.8612 168.352 +v 33.3629 77.8612 165.037 +v 33.3629 -77.8612 165.037 +v 118.232 77.8612 119.881 +v 118.232 -77.8612 119.881 +v 151.088 77.8612 74.3135 +v 151.088 -77.8612 74.3135 +v 166.424 77.8612 25.5562 +v 166.424 -77.8612 25.5562 +v 121.829 77.8612 116.223 +v 121.829 -77.8612 116.223 +v 135.658 -78.7038 -100 +v 135.658 78.7038 -100 +v -140.367 -78.7038 93.2744 +v -140.367 78.7038 93.2744 +v 113.33 76.812 129.861 +v 113.33 -76.812 129.861 +v 149.742 76.812 85.3511 +v 149.742 -76.812 85.3511 +v 159.009 76.812 66.5099 +v 159.009 -76.812 66.5099 +v 144.266 76.812 94.3134 +v 144.266 -76.812 94.3134 +v 23.7986 76.812 170.708 +v 23.7986 -76.812 170.708 +v 8.11444 76.812 172.168 +v 8.11444 -76.812 172.168 +v -18.1114 76.812 171.405 +v -18.1114 -76.812 171.405 +v -58.9502 76.812 161.964 +v -58.9502 -76.812 161.964 +v 167.262 76.812 41.6047 +v 167.262 -76.812 41.6047 +v 168.452 76.812 36.489 +v 168.452 -76.812 36.489 +v 109.32 76.812 133.254 +v 109.32 -76.812 133.254 +v 171.08 76.812 20.9579 +v 171.08 -76.812 20.9579 +v 172.279 76.812 5.25165 +v 172.279 -76.812 5.25165 +v 170.362 76.812 26.1608 +v 170.362 -76.812 26.1608 +v 124.712 76.812 118.973 +v 124.712 -76.812 118.973 +v 160.962 76.812 61.6341 +v 160.962 -76.812 61.6341 +v 2.86485 76.812 172.335 +v 2.86485 -76.812 172.335 +v 147.072 76.812 89.874 +v 147.072 -76.812 89.874 +v 73.9221 76.812 155.702 +v 73.9221 -76.812 155.702 +v 54.4412 76.812 163.535 +v 54.4412 -76.812 163.535 +v -23.3256 76.812 170.773 +v -23.3256 -76.812 170.773 +v 128.279 76.812 115.118 +v 128.279 -76.812 115.118 +v 172.039 76.812 10.4984 +v 172.039 -76.812 10.4984 +v 169.486 76.812 31.3395 +v 169.486 -76.812 31.3395 +v 101.001 76.812 139.665 +v 101.001 -76.812 139.665 +v -28.518 76.812 169.983 +v -28.518 -76.812 169.983 +v 165.917 76.812 46.6818 +v 164.417 76.812 51.7154 +v 165.917 -76.812 46.6818 +v 164.417 -76.812 51.7154 +v 87.8282 76.812 148.303 +v 87.8282 -76.812 148.303 +v -2.38741 76.812 172.342 +v -2.38741 -76.812 172.342 +v 135.053 76.812 107.09 +v 135.053 -76.812 107.09 +v 83.2687 76.812 150.91 +v 83.2687 -76.812 150.91 +v 156.909 76.812 71.3239 +v 156.909 -76.812 71.3239 +v -53.9879 76.812 163.685 +v 59.3987 76.812 161.8 +v -53.9879 -76.812 163.685 +v 59.3987 -76.812 161.8 +v 96.6983 76.812 142.678 +v 96.6983 -76.812 142.678 +v -43.9175 76.812 166.67 +v -43.9175 -76.812 166.67 +v 141.325 76.812 98.6653 +v 141.325 -76.812 98.6653 +v 18.5862 76.812 171.354 +v 18.5862 -76.812 171.354 +v 138.253 76.812 102.926 +v 131.727 76.812 111.156 +v 138.253 -76.812 102.926 +v 131.727 -76.812 111.156 +v 34.1522 76.812 168.941 +v 34.1522 -76.812 168.941 +v 44.3791 76.812 166.548 +v 44.3791 -76.812 166.548 +v 152.273 76.812 80.7489 +v 152.273 -76.812 80.7489 +v -12.8804 76.812 171.877 +v -12.8804 -76.812 171.877 +v 69.1437 76.812 157.882 +v 69.1437 -76.812 157.882 +v 105.209 76.812 136.523 +v 105.209 -76.812 136.523 +v -48.9754 76.812 165.254 +v -48.9754 -76.812 165.254 +v 121.029 76.812 122.717 +v 92.3061 76.812 145.558 +v 121.029 -76.812 122.717 +v 92.3061 -76.812 145.558 +v 78.6319 76.812 153.377 +v 78.6319 -76.812 153.377 +v 49.4331 76.812 165.118 +v 49.4331 -76.812 165.118 +v 117.234 76.812 126.348 +v 117.234 -76.812 126.348 +v -33.6841 76.812 169.035 +v -33.6841 -76.812 169.035 +v 154.663 76.812 76.0717 +v 154.663 -76.812 76.0717 +v 39.2839 76.812 167.822 +v 39.2839 -76.812 167.822 +v 171.639 76.812 15.7354 +v 171.639 -76.812 15.7354 +v 28.9889 76.812 169.904 +v 28.9889 -76.812 169.904 +v -38.8188 76.812 167.931 +v -38.8188 -76.812 167.931 +v 13.3565 76.812 171.841 +v 13.3565 -76.812 171.841 +v 64.301 76.812 159.915 +v 64.301 -76.812 159.915 +v 162.765 76.812 56.7011 +v 162.765 -76.812 56.7011 +v -7.63745 76.812 172.19 +v -7.63745 -76.812 172.19 +v 172.359 76.812 0 +v 172.359 -76.812 0 +v 139.728 -79.3378 -100 +v 139.728 79.3378 -100 +v -141.759 -79.3378 97.0995 +v -141.759 79.3378 97.0995 +v -18.5238 75.5591 175.307 +v -18.5238 -75.5591 175.307 +v 174.975 75.5591 21.4351 +v 174.975 -75.5591 21.4351 +v 55.6808 75.5591 167.259 +v 55.6808 -75.5591 167.259 +v 173.345 75.5591 32.0531 +v 173.345 -75.5591 32.0531 +v 50.5587 75.5591 168.878 +v 50.5587 -75.5591 168.878 +v -7.81135 75.5591 176.11 +v -7.81135 -75.5591 176.11 +v 176.202 75.5591 5.37123 +v 176.202 -75.5591 5.37123 +v 166.471 75.5591 57.9922 +v 166.471 -75.5591 57.9922 +v 2.93008 75.5591 176.259 +v 2.93008 -75.5591 176.259 +v -34.451 75.5591 172.884 +v -34.451 -75.5591 172.884 +v 60.7512 75.5591 165.484 +v 60.7512 -75.5591 165.484 +v 168.161 75.5591 52.893 +v 168.161 -75.5591 52.893 +v 34.9299 75.5591 172.788 +v 34.9299 -75.5591 172.788 +v 141.401 75.5591 105.269 +v 107.605 75.5591 139.632 +v 141.401 -75.5591 105.269 +v 107.605 -75.5591 139.632 +v 171.071 75.5591 42.552 +v 171.071 -75.5591 42.552 +v 162.63 75.5591 68.0243 +v 153.152 75.5591 87.2945 +v 162.63 -75.5591 68.0243 +v 153.152 -75.5591 87.2945 +v 172.288 75.5591 37.3199 +v 172.288 -75.5591 37.3199 +v 80.4224 75.5591 156.87 +v 80.4224 -75.5591 156.87 +v 175.547 75.5591 16.0937 +v 175.547 -75.5591 16.0937 +v 98.9001 75.5591 145.927 +v 98.9001 -75.5591 145.927 +v 8.29921 75.5591 176.088 +v 8.29921 -75.5591 176.088 +v 147.55 75.5591 96.4609 +v 115.91 75.5591 132.818 +v 147.55 -75.5591 96.4609 +v 115.91 -75.5591 132.818 +v 40.1784 75.5591 171.644 +v 40.1784 -75.5591 171.644 +v 150.421 75.5591 91.9204 +v 150.421 -75.5591 91.9204 +v 45.3896 75.5591 170.34 +v 45.3896 -75.5591 170.34 +v -44.9175 75.5591 170.465 +v -44.9175 -75.5591 170.465 +v 89.828 75.5591 151.68 +v 89.828 -75.5591 151.68 +v 155.741 75.5591 82.5875 +v 155.741 -75.5591 82.5875 +v 144.543 75.5591 100.912 +v 75.6053 75.5591 159.247 +v 144.543 -75.5591 100.912 +v 75.6053 -75.5591 159.247 +v 70.7181 75.5591 161.477 +v 70.7181 -75.5591 161.477 +v 13.6606 75.5591 175.753 +v 13.6606 -75.5591 175.753 +v 24.3404 75.5591 174.595 +v 24.3404 -75.5591 174.595 +v 174.241 75.5591 26.7565 +v 174.241 -75.5591 26.7565 +v -60.2925 75.5591 165.652 +v -60.2925 -75.5591 165.652 +v 29.6489 75.5591 173.772 +v 29.6489 -75.5591 173.772 +v 123.785 75.5591 125.511 +v 123.785 -75.5591 125.511 +v 176.283 75.5591 0 +v 158.185 75.5591 77.8039 +v 103.3 75.5591 142.846 +v 176.283 -75.5591 0 +v 158.185 -75.5591 77.8039 +v 103.3 -75.5591 142.846 +v -2.44177 75.5591 176.266 +v -2.44177 -75.5591 176.266 +v 131.2 75.5591 117.739 +v 131.2 -75.5591 117.739 +v 175.956 75.5591 10.7375 +v 175.956 -75.5591 10.7375 +v 164.627 75.5591 63.0375 +v 164.627 -75.5591 63.0375 +v 111.809 75.5591 136.288 +v 94.4079 75.5591 148.872 +v 111.809 -75.5591 136.288 +v 94.4079 -75.5591 148.872 +v 85.1647 75.5591 154.346 +v 85.1647 -75.5591 154.346 +v 19.0094 75.5591 175.255 +v 19.0094 -75.5591 175.255 +v -13.1737 75.5591 175.79 +v -13.1737 -75.5591 175.79 +v 169.695 75.5591 47.7447 +v 169.695 -75.5591 47.7447 +v 160.482 75.5591 72.948 +v 160.482 -75.5591 72.948 +v -29.1674 75.5591 173.854 +v -29.1674 -75.5591 173.854 +v -39.7027 75.5591 171.754 +v -39.7027 -75.5591 171.754 +v 127.552 75.5591 121.682 +v 127.552 -75.5591 121.682 +v -55.2172 75.5591 167.412 +v 65.7651 75.5591 163.557 +v -55.2172 -75.5591 167.412 +v 65.7651 -75.5591 163.557 +v -23.8567 75.5591 174.662 +v -23.8567 -75.5591 174.662 +v -50.0906 75.5591 169.017 +v -50.0906 -75.5591 169.017 +v 134.727 75.5591 113.687 +v 134.727 -75.5591 113.687 +v 119.903 75.5591 129.225 +v 119.903 -75.5591 129.225 +v 138.128 75.5591 109.529 +v 138.128 -75.5591 109.529 +v -143.161 -79.7614 100.95 +v -143.161 79.7614 100.95 +v 143.826 -79.7614 -100 +v 143.826 79.7614 -100 +v 141.148 74.1059 111.924 +v 141.148 -74.1059 111.924 +v 2.99415 74.1059 180.113 +v 2.99415 -74.1059 180.113 +v 150.777 74.1059 98.5702 +v 150.777 -74.1059 98.5702 +v 13.9593 74.1059 179.596 +v 13.9593 -74.1059 179.596 +v -35.2044 74.1059 176.665 +v -35.2044 -74.1059 176.665 +v 56.8983 74.1059 170.916 +v 56.8983 -74.1059 170.916 +v 35.6937 74.1059 176.566 +v 35.6937 -74.1059 176.566 +v 51.6642 74.1059 172.57 +v 51.6642 -74.1059 172.57 +v 82.181 74.1059 160.3 +v 159.146 74.1059 84.3935 +v 82.181 -74.1059 160.3 +v 159.146 -74.1059 84.3935 +v 62.0796 74.1059 169.103 +v 62.0796 -74.1059 169.103 +v 118.445 74.1059 135.723 +v 118.445 -74.1059 135.723 +v 173.405 74.1059 48.7887 +v 173.405 -74.1059 48.7887 +v 156.501 74.1059 89.2034 +v 156.501 -74.1059 89.2034 +v 180.138 74.1059 0 +v 91.7923 74.1059 154.997 +v 180.138 -74.1059 0 +v 91.7923 -74.1059 154.997 +v 19.4251 74.1059 179.088 +v 19.4251 -74.1059 179.088 +v -24.3783 74.1059 178.481 +v -24.3783 -74.1059 178.481 +v 105.559 74.1059 145.969 +v 105.559 -74.1059 145.969 +v 170.112 74.1059 59.2603 +v 170.112 -74.1059 59.2603 +v 168.227 74.1059 64.416 +v 168.227 -74.1059 64.416 +v 30.2973 74.1059 177.572 +v 30.2973 -74.1059 177.572 +v -13.4618 74.1059 179.635 +v -13.4618 -74.1059 179.635 +v 24.8727 74.1059 178.413 +v 24.8727 -74.1059 178.413 +v 177.135 74.1059 32.754 +v 177.135 -74.1059 32.754 +v 87.027 74.1059 157.721 +v 87.027 -74.1059 157.721 +v -56.4246 74.1059 171.073 +v -56.4246 -74.1059 171.073 +v 153.71 74.1059 93.9304 +v 96.4723 74.1059 152.128 +v 153.71 -74.1059 93.9304 +v 96.4723 -74.1059 152.128 +v -45.8997 74.1059 174.192 +v -45.8997 -74.1059 174.192 +v 147.704 74.1059 103.118 +v 147.704 -74.1059 103.118 +v 126.492 74.1059 128.256 +v 109.958 74.1059 142.685 +v 101.063 74.1059 149.118 +v 126.492 -74.1059 128.256 +v 109.958 -74.1059 142.685 +v 101.063 -74.1059 149.118 +v 166.186 74.1059 69.5118 +v 166.186 -74.1059 69.5118 +v 67.2032 74.1059 167.133 +v 67.2032 -74.1059 167.133 +v -51.186 74.1059 172.713 +v -51.186 -74.1059 172.713 +v 114.254 74.1059 139.268 +v 114.254 -74.1059 139.268 +v 130.341 74.1059 124.342 +v 130.341 -74.1059 124.342 +v 77.2586 74.1059 162.73 +v 77.2586 -74.1059 162.73 +v 180.055 74.1059 5.48868 +v 180.055 -74.1059 5.48868 +v 41.057 74.1059 175.397 +v 41.057 -74.1059 175.397 +v -7.98216 74.1059 179.961 +v -7.98216 -74.1059 179.961 +v 134.069 74.1059 120.313 +v 134.069 -74.1059 120.313 +v 176.055 74.1059 38.136 +v 176.055 -74.1059 38.136 +v 178.051 74.1059 27.3416 +v 178.051 -74.1059 27.3416 +v 174.811 74.1059 43.4825 +v 174.811 -74.1059 43.4825 +v 122.525 74.1059 132.051 +v 122.525 -74.1059 132.051 +v 8.48069 74.1059 179.939 +v 8.48069 -74.1059 179.939 +v 46.3821 74.1059 174.065 +v 46.3821 -74.1059 174.065 +v 163.991 74.1059 74.5431 +v 163.991 -74.1059 74.5431 +v -29.8052 74.1059 177.655 +v -29.8052 -74.1059 177.655 +v 178.802 74.1059 21.9038 +v 178.802 -74.1059 21.9038 +v -61.6109 74.1059 169.275 +v -61.6109 -74.1059 169.275 +v -40.5709 74.1059 175.51 +v -40.5709 -74.1059 175.51 +v 171.838 74.1059 54.0496 +v 72.2645 74.1059 165.008 +v 171.838 -74.1059 54.0496 +v 72.2645 -74.1059 165.008 +v 137.673 74.1059 116.173 +v 137.673 -74.1059 116.173 +v 161.644 74.1059 79.5052 +v 161.644 -74.1059 79.5052 +v 144.493 74.1059 107.571 +v 144.493 -74.1059 107.571 +v 179.386 74.1059 16.4457 +v 179.386 -74.1059 16.4457 +v 179.804 74.1059 10.9723 +v 179.804 -74.1059 10.9723 +v -18.9288 74.1059 179.141 +v -18.9288 -74.1059 179.141 +v -2.49516 74.1059 180.121 +v -2.49516 -74.1059 180.121 +v 147.94 -79.9735 -100 +v 147.94 79.9735 -100 +v -144.568 -79.9735 104.816 +v -144.568 79.9735 104.816 +v 183.913 72.4562 0 +v 183.913 -72.4562 0 +v 3.0569 72.4562 183.888 +v 3.0569 -72.4562 183.888 +v 175.439 72.4562 55.1823 +v 162.481 72.4562 86.162 +v 175.439 -72.4562 55.1823 +v 162.481 -72.4562 86.162 +v 133.072 72.4562 126.948 +v 133.072 -72.4562 126.948 +v 171.752 72.4562 65.7658 +v 171.752 -72.4562 65.7658 +v -62.902 72.4562 172.822 +v -62.902 -72.4562 172.822 +v -46.8616 72.4562 177.843 +v -46.8616 -72.4562 177.843 +v 19.8321 72.4562 182.841 +v 19.8321 -72.4562 182.841 +v 173.676 72.4562 60.5022 +v 173.676 -72.4562 60.5022 +v 140.558 72.4562 118.607 +v 129.142 72.4562 130.944 +v 140.558 -72.4562 118.607 +v 129.142 -72.4562 130.944 +v 8.65841 72.4562 183.709 +v 8.65841 -72.4562 183.709 +v 47.3541 72.4562 177.712 +v 47.3541 -72.4562 177.712 +v 180.847 72.4562 33.4404 +v 180.847 -72.4562 33.4404 +v 83.9031 72.4562 163.659 +v 83.9031 -72.4562 163.659 +v 183.145 72.4562 16.7903 +v -24.8892 72.4562 182.221 +v 183.145 -72.4562 16.7903 +v -24.8892 -72.4562 182.221 +v 156.931 72.4562 95.8988 +v 147.521 72.4562 109.825 +v 156.931 -72.4562 95.8988 +v 147.521 -72.4562 109.825 +v -2.54745 72.4562 183.895 +v -2.54745 -72.4562 183.895 +v 159.781 72.4562 91.0727 +v -52.2586 72.4562 176.332 +v 159.781 -72.4562 91.0727 +v -52.2586 -72.4562 176.332 +v 167.428 72.4562 76.1052 +v 167.428 -72.4562 76.1052 +v 73.7788 72.4562 168.466 +v 73.7788 -72.4562 168.466 +v 58.0907 72.4562 174.498 +v 58.0907 -72.4562 174.498 +v 36.4417 72.4562 180.267 +v 36.4417 -72.4562 180.267 +v 165.031 72.4562 81.1713 +v 63.3805 72.4562 172.647 +v 165.031 -72.4562 81.1713 +v 63.3805 -72.4562 172.647 +v 78.8776 72.4562 166.14 +v 78.8776 -72.4562 166.14 +v 14.2519 72.4562 183.36 +v 14.2519 -72.4562 183.36 +v 103.181 72.4562 152.243 +v 103.181 -72.4562 152.243 +v -8.14943 72.4562 183.732 +v -8.14943 -72.4562 183.732 +v -41.4211 72.4562 179.188 +v -41.4211 -72.4562 179.188 +v 182.548 72.4562 22.3628 +v 182.548 -72.4562 22.3628 +v 144.106 72.4562 114.269 +v 144.106 -72.4562 114.269 +v -13.7438 72.4562 183.399 +v -13.7438 -72.4562 183.399 +v 125.093 72.4562 134.818 +v 125.093 -72.4562 134.818 +v 150.799 72.4562 105.28 +v 150.799 -72.4562 105.28 +v 93.7159 72.4562 158.245 +v 120.927 72.4562 138.567 +v 107.771 72.4562 149.028 +v 120.927 -72.4562 138.567 +v 107.771 -72.4562 149.028 +v 93.7159 -72.4562 158.245 +v 68.6115 72.4562 170.636 +v 68.6115 -72.4562 170.636 +v -35.9421 72.4562 180.367 +v -35.9421 -72.4562 180.367 +v 25.3939 72.4562 182.152 +v 25.3939 -72.4562 182.152 +v 178.475 72.4562 44.3937 +v 178.475 -72.4562 44.3937 +v -19.3255 72.4562 182.895 +v -19.3255 -72.4562 182.895 +v 88.8508 72.4562 161.027 +v 88.8508 -72.4562 161.027 +v 98.494 72.4562 155.316 +v 98.494 -72.4562 155.316 +v -30.4298 72.4562 181.378 +v -30.4298 -72.4562 181.378 +v -57.607 72.4562 174.658 +v -57.607 -72.4562 174.658 +v 183.572 72.4562 11.2022 +v 183.572 -72.4562 11.2022 +v 52.7469 72.4562 176.187 +v 52.7469 -72.4562 176.187 +v 30.9322 72.4562 181.293 +v 30.9322 -72.4562 181.293 +v 41.9174 72.4562 179.073 +v 41.9174 -72.4562 179.073 +v 181.782 72.4562 27.9145 +v 181.782 -72.4562 27.9145 +v 153.937 72.4562 100.636 +v 116.649 72.4562 142.187 +v 153.937 -72.4562 100.636 +v 116.649 -72.4562 142.187 +v 183.828 72.4562 5.6037 +v 183.828 -72.4562 5.6037 +v 136.878 72.4562 122.835 +v 136.878 -72.4562 122.835 +v 169.669 72.4562 70.9685 +v 169.669 -72.4562 70.9685 +v 177.039 72.4562 49.8111 +v 177.039 -72.4562 49.8111 +v 112.262 72.4562 145.675 +v 112.262 -72.4562 145.675 +v 179.745 72.4562 38.9351 +v 179.745 -72.4562 38.9351 +v 152.06 -79.9735 -100 +v 152.06 79.9735 -100 +v -145.977 -79.9735 108.688 +v -145.977 79.9735 108.688 +v 139.621 70.6143 125.296 +v 100.467 70.6143 158.428 +v 139.621 -70.6143 125.296 +v 100.467 -70.6143 158.428 +v -2.59849 70.6143 187.58 +v -2.59849 -70.6143 187.58 +v 59.2546 70.6143 177.994 +v 59.2546 -70.6143 177.994 +v 187.598 70.6143 0 +v 187.598 -70.6143 0 +v 37.1718 70.6143 183.878 +v 37.1718 -70.6143 183.878 +v 186.206 70.6143 22.8109 +v 186.206 -70.6143 22.8109 +v 187.511 70.6143 5.71598 +v 187.511 -70.6143 5.71598 +v 20.2295 70.6143 186.504 +v 20.2295 -70.6143 186.504 +v 150.477 70.6143 112.026 +v 150.477 -70.6143 112.026 +v 69.9863 70.6143 174.055 +v 69.9863 -70.6143 174.055 +v 14.5374 70.6143 187.034 +v 14.5374 -70.6143 187.034 +v 146.994 70.6143 116.559 +v 146.994 -70.6143 116.559 +v 173.068 70.6143 72.3905 +v 173.068 -70.6143 72.3905 +v 8.83189 70.6143 187.39 +v 8.83189 -70.6143 187.39 +v 183.346 70.6143 39.7152 +v 183.346 -70.6143 39.7152 +v 3.11815 70.6143 187.572 +v 3.11815 -70.6143 187.572 +v 186.815 70.6143 17.1267 +v 186.815 -70.6143 17.1267 +v 165.737 70.6143 87.8884 +v 165.737 -70.6143 87.8884 +v -58.7613 70.6143 178.158 +v -58.7613 -70.6143 178.158 +v -53.3057 70.6143 179.865 +v -53.3057 -70.6143 179.865 +v 180.587 70.6143 50.8092 +v 180.587 -70.6143 50.8092 +v 187.25 70.6143 11.4267 +v 187.25 -70.6143 11.4267 +v -25.3879 70.6143 185.872 +v -25.3879 -70.6143 185.872 +v 105.248 70.6143 155.293 +v 105.248 -70.6143 155.293 +v 177.156 70.6143 61.7144 +v 177.156 -70.6143 61.7144 +v 143.374 70.6143 120.983 +v 118.986 70.6143 145.036 +v 114.511 70.6143 148.594 +v 143.374 -70.6143 120.983 +v 118.986 -70.6143 145.036 +v 114.511 -70.6143 148.594 +v 153.82 70.6143 107.389 +v 127.599 70.6143 137.519 +v 153.82 -70.6143 107.389 +v 127.599 -70.6143 137.519 +v -42.251 70.6143 182.778 +v -42.251 -70.6143 182.778 +v 85.5843 70.6143 166.938 +v 75.2571 70.6143 171.841 +v 85.5843 -70.6143 166.938 +v 75.2571 -70.6143 171.841 +v -36.6623 70.6143 183.981 +v -36.6623 -70.6143 183.981 +v 170.782 70.6143 77.6301 +v 170.782 -70.6143 77.6301 +v 182.051 70.6143 45.2832 +v 182.051 -70.6143 45.2832 +v 90.631 70.6143 164.253 +v -47.8005 70.6143 181.406 +v 90.631 -70.6143 164.253 +v -47.8005 -70.6143 181.406 +v 184.471 70.6143 34.1104 +v 184.471 -70.6143 34.1104 +v -14.0192 70.6143 187.074 +v -14.0192 -70.6143 187.074 +v 160.076 70.6143 97.8203 +v 135.739 70.6143 129.492 +v 109.931 70.6143 152.014 +v 160.076 -70.6143 97.8203 +v 135.739 -70.6143 129.492 +v 109.931 -70.6143 152.014 +v -64.1624 70.6143 176.285 +v 162.982 70.6143 92.8975 +v -64.1624 -70.6143 176.285 +v 162.982 -70.6143 92.8975 +v -8.31272 70.6143 187.414 +v -8.31272 -70.6143 187.414 +v 131.73 70.6143 133.568 +v 131.73 -70.6143 133.568 +v 48.3029 70.6143 181.273 +v 48.3029 -70.6143 181.273 +v 80.4581 70.6143 169.469 +v 80.4581 -70.6143 169.469 +v 123.35 70.6143 141.343 +v 123.35 -70.6143 141.343 +v 95.5936 70.6143 161.415 +v 168.338 70.6143 82.7977 +v 168.338 -70.6143 82.7977 +v 95.5936 -70.6143 161.415 +v 175.194 70.6143 67.0836 +v 175.194 -70.6143 67.0836 +v 31.5519 70.6143 184.926 +v -19.7127 70.6143 186.56 +v 31.5519 -70.6143 184.926 +v -19.7127 -70.6143 186.56 +v 42.7572 70.6143 182.661 +v 42.7572 -70.6143 182.661 +v -31.0395 70.6143 185.012 +v -31.0395 -70.6143 185.012 +v 25.9027 70.6143 185.801 +v 25.9027 -70.6143 185.801 +v 64.6505 70.6143 176.106 +v 64.6505 -70.6143 176.106 +v 53.8037 70.6143 179.717 +v 53.8037 -70.6143 179.717 +v 178.955 70.6143 56.2879 +v 178.955 -70.6143 56.2879 +v 185.425 70.6143 28.4739 +v 185.425 -70.6143 28.4739 +v 157.021 70.6143 102.652 +v 157.021 -70.6143 102.652 +v 156.174 -79.7614 -100 +v 156.174 79.7614 -100 +v -147.384 -79.7614 112.554 +v -147.384 79.7614 112.554 +v 190.828 68.5852 11.645 +v 190.828 -68.5852 11.645 +v 87.2199 68.5852 170.129 +v 87.2199 -68.5852 170.129 +v 142.289 68.5852 127.69 +v 76.6954 68.5852 175.125 +v 142.289 -68.5852 127.69 +v 76.6954 -68.5852 175.125 +v 182.375 68.5852 57.3637 +v 182.375 -68.5852 57.3637 +v 180.542 68.5852 62.8939 +v 180.542 -68.5852 62.8939 +v -14.2872 68.5852 190.649 +v -14.2872 -68.5852 190.649 +v -8.47159 68.5852 190.996 +v -8.47159 -68.5852 190.996 +v 190.385 68.5852 17.454 +v 190.385 -68.5852 17.454 +v 37.8823 68.5852 187.393 +v 37.8823 -68.5852 187.393 +v -48.7141 68.5852 184.873 +v -48.7141 -68.5852 184.873 +v 191.183 68.5852 0 +v 112.032 68.5852 154.919 +v 191.183 -68.5852 0 +v 112.032 -68.5852 154.919 +v -31.6327 68.5852 188.548 +v -31.6327 -68.5852 188.548 +v 9.00068 68.5852 190.971 +v 9.00068 -68.5852 190.971 +v 125.707 68.5852 144.044 +v 107.259 68.5852 158.261 +v 125.707 -68.5852 144.044 +v 107.259 -68.5852 158.261 +v 176.376 68.5852 73.7739 +v 176.376 -68.5852 73.7739 +v 186.85 68.5852 40.4743 +v 186.85 -68.5852 40.4743 +v 156.76 68.5852 109.441 +v 156.76 -68.5852 109.441 +v 14.8153 68.5852 190.609 +v 14.8153 -68.5852 190.609 +v 3.17774 68.5852 191.157 +v 3.17774 -68.5852 191.157 +v 92.3631 68.5852 167.392 +v 92.3631 -68.5852 167.392 +v 189.765 68.5852 23.2468 +v 189.765 -68.5852 23.2468 +v 138.333 68.5852 131.967 +v 138.333 -68.5852 131.967 +v -54.3244 68.5852 183.303 +v -54.3244 -68.5852 183.303 +v -25.8731 68.5852 189.425 +v -25.8731 -68.5852 189.425 +v 65.886 68.5852 179.472 +v 54.832 68.5852 183.152 +v 65.886 -68.5852 179.472 +v 54.832 -68.5852 183.152 +v 20.6161 68.5852 190.069 +v 20.6161 -68.5852 190.069 +v 174.046 68.5852 79.1137 +v 174.046 -68.5852 79.1137 +v 168.904 68.5852 89.5681 +v 168.904 -68.5852 89.5681 +v 184.038 68.5852 51.7802 +v 184.038 -68.5852 51.7802 +v 166.097 68.5852 94.6729 +v 26.3978 68.5852 189.352 +v 166.097 -68.5852 94.6729 +v 26.3978 -68.5852 189.352 +v 188.968 68.5852 29.018 +v 188.968 -68.5852 29.018 +v 134.248 68.5852 136.12 +v 134.248 -68.5852 136.12 +v -20.0895 68.5852 190.125 +v -20.0895 -68.5852 190.125 +v 187.997 68.5852 34.7623 +v 187.997 -68.5852 34.7623 +v 71.3238 68.5852 177.381 +v 71.3238 -68.5852 177.381 +v 60.3871 68.5852 181.396 +v 60.3871 -68.5852 181.396 +v 146.114 68.5852 123.296 +v 146.114 -68.5852 123.296 +v -2.64815 68.5852 191.165 +v -2.64815 -68.5852 191.165 +v -43.0585 68.5852 186.271 +v -43.0585 -68.5852 186.271 +v 102.387 68.5852 161.456 +v 102.387 -68.5852 161.456 +v -59.8843 68.5852 181.563 +v 178.542 68.5852 68.3656 +v -59.8843 -68.5852 181.563 +v 178.542 -68.5852 68.3656 +v 121.26 68.5852 147.808 +v 43.5744 68.5852 186.152 +v 121.26 -68.5852 147.808 +v 43.5744 -68.5852 186.152 +v 49.2261 68.5852 184.737 +v 49.2261 -68.5852 184.737 +v 163.135 68.5852 99.6898 +v 153.353 68.5852 114.167 +v 163.135 -68.5852 99.6898 +v 153.353 -68.5852 114.167 +v 81.9957 68.5852 172.707 +v 81.9957 -68.5852 172.707 +v -37.363 68.5852 187.497 +v -37.363 -68.5852 187.497 +v 171.555 68.5852 84.3801 +v 171.555 -68.5852 84.3801 +v 97.4206 68.5852 164.5 +v 97.4206 -68.5852 164.5 +v 116.7 68.5852 151.434 +v 116.7 -68.5852 151.434 +v 32.1549 68.5852 188.46 +v 32.1549 -68.5852 188.46 +v 191.095 68.5852 5.82522 +v 191.095 -68.5852 5.82522 +v 160.022 68.5852 104.614 +v 160.022 -68.5852 104.614 +v 149.803 68.5852 118.786 +v 149.803 -68.5852 118.786 +v -65.3886 68.5852 179.654 +v -65.3886 -68.5852 179.654 +v 130.038 68.5852 140.147 +v 130.038 -68.5852 140.147 +v 185.53 68.5852 46.1487 +v 185.53 -68.5852 46.1487 +v 160.272 -79.3378 -100 +v 160.272 79.3378 -100 +v -148.786 -79.3378 116.404 +v -148.786 79.3378 116.404 +v 15.0846 66.3742 194.074 +v 15.0846 -66.3742 194.074 +v 9.16433 66.3742 194.444 +v 9.16433 -66.3742 194.444 +v -43.8414 66.3742 189.658 +v -43.8414 -66.3742 189.658 +v 188.903 66.3742 46.9877 +v 148.771 66.3742 125.537 +v 188.903 -66.3742 46.9877 +v 148.771 -66.3742 125.537 +v 159.61 66.3742 111.431 +v 159.61 -66.3742 111.431 +v -60.9731 66.3742 184.864 +v -60.9731 -66.3742 184.864 +v 191.415 66.3742 35.3943 +v 191.415 -66.3742 35.3943 +v 174.674 66.3742 85.9143 +v 50.1211 66.3742 188.096 +v 174.674 -66.3742 85.9143 +v 50.1211 -66.3742 188.096 +v 104.249 66.3742 164.391 +v 104.249 -66.3742 164.391 +v 183.825 66.3742 64.0374 +v 183.825 -66.3742 64.0374 +v -2.6963 66.3742 194.641 +v -2.6963 -66.3742 194.641 +v -20.4547 66.3742 193.582 +v -20.4547 -66.3742 193.582 +v 32.7396 66.3742 191.887 +v 32.7396 -66.3742 191.887 +v 123.465 66.3742 150.495 +v 123.465 -66.3742 150.495 +v 20.9909 66.3742 193.524 +v 20.9909 -66.3742 193.524 +v 94.0425 66.3742 170.436 +v 118.822 66.3742 154.187 +v 114.069 66.3742 157.736 +v 94.0425 -66.3742 170.436 +v 118.822 -66.3742 154.187 +v 114.069 -66.3742 157.736 +v 83.4866 66.3742 175.847 +v 83.4866 -66.3742 175.847 +v 181.788 66.3742 69.6087 +v 181.788 -66.3742 69.6087 +v 190.247 66.3742 41.2102 +v 190.247 -66.3742 41.2102 +v 194.569 66.3742 5.93114 +v 194.569 -66.3742 5.93114 +v -55.3121 66.3742 186.636 +v -55.3121 -66.3742 186.636 +v 3.23552 66.3742 194.633 +v 3.23552 -66.3742 194.633 +v 72.6206 66.3742 180.606 +v 72.6206 -66.3742 180.606 +v -26.3435 66.3742 192.869 +v -26.3435 -66.3742 192.869 +v -38.0423 66.3742 190.906 +v -38.0423 -66.3742 190.906 +v 171.975 66.3742 91.1966 +v 144.876 66.3742 130.012 +v 136.688 66.3742 138.595 +v 171.975 -66.3742 91.1966 +v 144.876 -66.3742 130.012 +v 136.688 -66.3742 138.595 +v 193.215 66.3742 23.6695 +v 193.215 -66.3742 23.6695 +v 194.66 66.3742 0 +v 132.402 66.3742 142.695 +v 194.66 -66.3742 0 +v 132.402 -66.3742 142.695 +v 88.8057 66.3742 173.222 +v 88.8057 -66.3742 173.222 +v 109.21 66.3742 161.138 +v 109.21 -66.3742 161.138 +v 61.485 66.3742 184.694 +v 61.485 -66.3742 184.694 +v 156.141 66.3742 116.243 +v 152.527 66.3742 120.946 +v 156.141 -66.3742 116.243 +v 152.527 -66.3742 120.946 +v -32.2079 66.3742 191.977 +v -32.2079 -66.3742 191.977 +v 26.8777 66.3742 192.795 +v 26.8777 -66.3742 192.795 +v -8.62562 66.3742 194.468 +v -8.62562 -66.3742 194.468 +v 99.1918 66.3742 167.491 +v 166.101 66.3742 101.502 +v 166.101 -66.3742 101.502 +v 99.1918 -66.3742 167.491 +v 177.211 66.3742 80.5522 +v 177.211 -66.3742 80.5522 +v 192.404 66.3742 29.5456 +v 192.404 -66.3742 29.5456 +v -14.5469 66.3742 194.115 +v -14.5469 -66.3742 194.115 +v -66.5775 66.3742 182.92 +v -66.5775 -66.3742 182.92 +v 193.847 66.3742 17.7714 +v 193.847 -66.3742 17.7714 +v 38.571 66.3742 190.8 +v 38.571 -66.3742 190.8 +v 179.583 66.3742 75.1153 +v 179.583 -66.3742 75.1153 +v 140.848 66.3742 134.366 +v 140.848 -66.3742 134.366 +v -49.5998 66.3742 188.234 +v -49.5998 -66.3742 188.234 +v 194.298 66.3742 11.8568 +v 194.298 -66.3742 11.8568 +v 185.691 66.3742 58.4067 +v 185.691 -66.3742 58.4067 +v 44.3667 66.3742 189.536 +v 44.3667 -66.3742 189.536 +v 55.829 66.3742 186.482 +v 55.829 -66.3742 186.482 +v 169.117 66.3742 96.3942 +v 169.117 -66.3742 96.3942 +v 127.993 66.3742 146.663 +v 127.993 -66.3742 146.663 +v 78.0898 66.3742 178.31 +v 78.0898 -66.3742 178.31 +v 187.384 66.3742 52.7217 +v 187.384 -66.3742 52.7217 +v 162.931 66.3742 106.516 +v 67.084 66.3742 182.735 +v 162.931 -66.3742 106.516 +v 67.084 -66.3742 182.735 +v -150.178 -78.7038 120.229 +v -150.178 78.7038 120.229 +v 164.342 -78.7038 -100 +v 164.342 78.7038 -100 +v 111.093 63.9871 163.918 +v 111.093 -63.9871 163.918 +v -67.7259 63.9871 186.075 +v 158.834 63.9871 118.248 +v -67.7259 -63.9871 186.075 +v 158.834 -63.9871 118.248 +v -56.2662 63.9871 189.855 +v -56.2662 -63.9871 189.855 +v -14.7978 63.9871 197.463 +v -14.7978 -63.9871 197.463 +v -2.74281 63.9871 197.998 +v -2.74281 -63.9871 197.998 +v 165.742 63.9871 108.353 +v 165.742 -63.9871 108.353 +v -8.7744 63.9871 197.823 +v -8.7744 -63.9871 197.823 +v 195.723 63.9871 30.0553 +v 195.723 -63.9871 30.0553 +v 56.792 63.9871 189.698 +v 56.792 -63.9871 189.698 +v 73.8733 63.9871 183.721 +v 73.8733 -63.9871 183.721 +v 198.017 63.9871 0 +v 198.017 -63.9871 0 +v 33.3043 63.9871 195.196 +v 33.3043 -63.9871 195.196 +v 45.1319 63.9871 192.805 +v 45.1319 -63.9871 192.805 +v 184.924 63.9871 70.8093 +v 184.924 -63.9871 70.8093 +v -44.5976 63.9871 192.93 +v -44.5976 -63.9871 192.93 +v 95.6646 63.9871 173.376 +v 95.6646 -63.9871 173.376 +v 151.337 63.9871 127.703 +v 151.337 -63.9871 127.703 +v 196.548 63.9871 24.0778 +v 196.548 -63.9871 24.0778 +v 168.966 63.9871 103.253 +v 168.966 -63.9871 103.253 +v 172.034 63.9871 98.0569 +v 172.034 -63.9871 98.0569 +v 194.716 63.9871 36.0048 +v 194.716 -63.9871 36.0048 +v -62.0248 63.9871 188.052 +v -62.0248 -63.9871 188.052 +v 130.201 63.9871 149.193 +v -38.6985 63.9871 194.199 +v 130.201 -63.9871 149.193 +v -38.6985 -63.9871 194.199 +v 188.893 63.9871 59.4141 +v 188.893 -63.9871 59.4141 +v 116.036 63.9871 160.457 +v 116.036 -63.9871 160.457 +v 125.594 63.9871 153.091 +v 125.594 -63.9871 153.091 +v 192.162 63.9871 47.7982 +v 134.686 63.9871 145.157 +v 192.162 -63.9871 47.7982 +v 134.686 -63.9871 145.157 +v 68.2411 63.9871 185.887 +v 68.2411 -63.9871 185.887 +v 197.19 63.9871 18.0779 +v 197.19 -63.9871 18.0779 +v 162.363 63.9871 113.353 +v 162.363 -63.9871 113.353 +v 100.903 63.9871 170.38 +v 143.277 63.9871 136.684 +v 143.277 -63.9871 136.684 +v 100.903 -63.9871 170.38 +v 197.925 63.9871 6.03344 +v 197.925 -63.9871 6.03344 +v 190.616 63.9871 53.6311 +v 190.616 -63.9871 53.6311 +v 186.995 63.9871 65.142 +v 186.995 -63.9871 65.142 +v -50.4553 63.9871 191.481 +v -50.4553 -63.9871 191.481 +v 147.376 63.9871 132.255 +v 147.376 -63.9871 132.255 +v -20.8075 63.9871 196.921 +v -20.8075 -63.9871 196.921 +v 50.9856 63.9871 191.341 +v 50.9856 -63.9871 191.341 +v 21.353 63.9871 196.863 +v 21.353 -63.9871 196.863 +v 15.3448 63.9871 197.422 +v 15.3448 -63.9871 197.422 +v 84.9266 63.9871 178.881 +v 84.9266 -63.9871 178.881 +v 155.158 63.9871 123.032 +v 155.158 -63.9871 123.032 +v 182.68 63.9871 76.4109 +v 79.4368 63.9871 181.385 +v 182.68 -63.9871 76.4109 +v 79.4368 -63.9871 181.385 +v 3.29133 63.9871 197.99 +v 3.29133 -63.9871 197.99 +v 90.3375 63.9871 176.21 +v 90.3375 -63.9871 176.21 +v 27.3414 63.9871 196.12 +v 27.3414 -63.9871 196.12 +v 106.047 63.9871 167.227 +v 106.047 -63.9871 167.227 +v 177.687 63.9871 87.3962 +v 177.687 -63.9871 87.3962 +v -26.7979 63.9871 196.195 +v -26.7979 -63.9871 196.195 +v 174.942 63.9871 92.7696 +v 174.942 -63.9871 92.7696 +v 9.3224 63.9871 197.798 +v 9.3224 -63.9871 197.798 +v 180.268 63.9871 81.9416 +v 180.268 -63.9871 81.9416 +v 62.5456 63.9871 187.88 +v 62.5456 -63.9871 187.88 +v 197.65 63.9871 12.0613 +v 197.65 -63.9871 12.0613 +v 193.529 63.9871 41.921 +v 193.529 -63.9871 41.921 +v -32.7634 63.9871 195.288 +v -32.7634 -63.9871 195.288 +v 39.2363 63.9871 194.091 +v 39.2363 -63.9871 194.091 +v 120.871 63.9871 156.847 +v 120.871 -63.9871 156.847 +v 139.046 63.9871 140.986 +v 139.046 -63.9871 140.986 +v 161.425 61.4304 120.177 +v 161.425 -61.4304 120.177 +v 149.78 61.4304 134.412 +v 149.78 -61.4304 134.412 +v 27.7874 61.4304 199.32 +v 27.7874 -61.4304 199.32 +v 196.686 61.4304 42.6049 +v 196.686 -61.4304 42.6049 +v -33.2979 61.4304 198.474 +v -33.2979 -61.4304 198.474 +v 168.445 61.4304 110.121 +v 136.883 61.4304 147.525 +v 168.445 -61.4304 110.121 +v 136.883 -61.4304 147.525 +v -2.78755 61.4304 201.228 +v -2.78755 -61.4304 201.228 +v 69.3543 61.4304 188.919 +v 69.3543 -61.4304 188.919 +v -68.8307 61.4304 189.111 +v 75.0784 61.4304 186.718 +v -68.8307 -61.4304 189.111 +v 75.0784 -61.4304 186.718 +v 177.796 61.4304 94.283 +v 177.796 -61.4304 94.283 +v -39.3298 61.4304 197.367 +v -39.3298 -61.4304 197.367 +v 91.8112 61.4304 179.084 +v 91.8112 -61.4304 179.084 +v 33.8476 61.4304 198.381 +v 33.8476 -61.4304 198.381 +v 180.586 61.4304 88.8219 +v 180.586 -61.4304 88.8219 +v 200.407 61.4304 18.3728 +v 200.407 -61.4304 18.3728 +v -15.0392 61.4304 200.685 +v -15.0392 -61.4304 200.685 +v 165.012 61.4304 115.202 +v 165.012 -61.4304 115.202 +v 198.916 61.4304 30.5456 +v 198.916 -61.4304 30.5456 +v 171.723 61.4304 104.938 +v 171.723 -61.4304 104.938 +v 45.8682 61.4304 195.951 +v 39.8764 61.4304 197.257 +v 45.8682 -61.4304 195.951 +v 39.8764 -61.4304 197.257 +v 183.208 61.4304 83.2784 +v 183.208 -61.4304 83.2784 +v 122.843 61.4304 159.405 +v 122.843 -61.4304 159.405 +v 201.154 61.4304 6.13187 +v 201.154 -61.4304 6.13187 +v -21.147 61.4304 200.133 +v -21.147 -61.4304 200.133 +v 153.805 61.4304 129.786 +v 153.805 -61.4304 129.786 +v 86.312 61.4304 181.799 +v -57.1841 61.4304 192.952 +v 86.312 -61.4304 181.799 +v -57.1841 -61.4304 192.952 +v 63.5659 61.4304 190.945 +v 63.5659 -61.4304 190.945 +v 102.549 61.4304 173.16 +v 195.296 61.4304 48.578 +v 195.296 -61.4304 48.578 +v 102.549 -61.4304 173.16 +v 112.906 61.4304 166.592 +v 112.906 -61.4304 166.592 +v 190.046 61.4304 66.2046 +v 190.046 -61.4304 66.2046 +v 9.47448 61.4304 201.024 +v 9.47448 -61.4304 201.024 +v 15.5951 61.4304 200.642 +v 15.5951 -61.4304 200.642 +v 200.874 61.4304 12.258 +v 200.874 -61.4304 12.258 +v 185.661 61.4304 77.6575 +v 127.643 61.4304 155.589 +v 185.661 -61.4304 77.6575 +v 127.643 -61.4304 155.589 +v 193.726 61.4304 54.506 +v 193.726 -61.4304 54.506 +v 157.689 61.4304 125.039 +v 145.615 61.4304 138.913 +v 157.689 -61.4304 125.039 +v 145.615 -61.4304 138.913 +v 107.777 61.4304 169.955 +v 107.777 -61.4304 169.955 +v -8.91754 61.4304 201.05 +v -8.91754 -61.4304 201.05 +v 199.754 61.4304 24.4706 +v 199.754 -61.4304 24.4706 +v 51.8174 61.4304 194.462 +v 51.8174 -61.4304 194.462 +v 80.7327 61.4304 184.344 +v 80.7327 -61.4304 184.344 +v -51.2784 61.4304 194.605 +v -51.2784 -61.4304 194.605 +v 191.975 61.4304 60.3833 +v 191.975 -61.4304 60.3833 +v -63.0367 61.4304 191.12 +v -63.0367 -61.4304 191.12 +v 141.314 61.4304 143.286 +v 132.324 61.4304 151.627 +v 141.314 -61.4304 143.286 +v 132.324 -61.4304 151.627 +v 187.941 61.4304 71.9645 +v 174.84 61.4304 99.6565 +v 187.941 -61.4304 71.9645 +v 174.84 -61.4304 99.6565 +v 197.893 61.4304 36.5922 +v 197.893 -61.4304 36.5922 +v 97.2252 61.4304 176.204 +v 97.2252 -61.4304 176.204 +v -27.2351 61.4304 199.396 +v -27.2351 -61.4304 199.396 +v 201.247 61.4304 0 +v 201.247 -61.4304 0 +v 117.929 61.4304 163.074 +v 117.929 -61.4304 163.074 +v 3.34502 61.4304 201.22 +v 3.34502 -61.4304 201.22 +v 57.7184 61.4304 192.793 +v 57.7184 -61.4304 192.793 +v -45.3251 61.4304 196.077 +v -45.3251 -61.4304 196.077 +v 21.7013 61.4304 200.074 +v 21.7013 -61.4304 200.074 +v -151.557 -77.8612 124.019 +v -151.557 77.8612 124.019 +v 168.375 -77.8612 -100 +v 168.375 77.8612 -100 +v 203.962 58.7108 12.4465 +v 203.962 -58.7108 12.4465 +v -69.889 58.7108 192.018 +v -69.889 -58.7108 192.018 +v 183.362 58.7108 90.1877 +v 163.907 58.7108 122.024 +v 183.362 -58.7108 90.1877 +v 163.907 -58.7108 122.024 +v 3.39645 58.7108 204.314 +v 3.39645 -58.7108 204.314 +v 188.515 58.7108 78.8515 +v 188.515 -58.7108 78.8515 +v 22.035 58.7108 203.15 +v 22.035 -58.7108 203.15 +v 134.359 58.7108 153.958 +v 134.359 -58.7108 153.958 +v 203.488 58.7108 18.6553 +v 203.488 -58.7108 18.6553 +v 199.71 58.7108 43.26 +v 199.71 -58.7108 43.26 +v 196.704 58.7108 55.3441 +v 196.704 -58.7108 55.3441 +v 114.642 58.7108 169.153 +v 114.642 -58.7108 169.153 +v 202.826 58.7108 24.8468 +v 202.826 -58.7108 24.8468 +v 109.435 58.7108 172.568 +v 109.435 -58.7108 172.568 +v 194.927 58.7108 61.3118 +v 194.927 -58.7108 61.3118 +v 28.2146 58.7108 202.385 +v 28.2146 -58.7108 202.385 +v 98.7201 58.7108 178.913 +v 98.7201 -58.7108 178.913 +v 198.299 58.7108 49.3249 +v 198.299 -58.7108 49.3249 +v 200.936 58.7108 37.1549 +v -33.8099 58.7108 201.525 +v 200.936 -58.7108 37.1549 +v -33.8099 -58.7108 201.525 +v 177.529 58.7108 101.189 +v 177.529 -58.7108 101.189 +v 143.487 58.7108 145.489 +v 143.487 -58.7108 145.489 +v -27.6539 58.7108 202.462 +v -27.6539 -58.7108 202.462 +v 46.5735 58.7108 198.964 +v 46.5735 -58.7108 198.964 +v -21.4721 58.7108 203.211 +v -21.4721 -58.7108 203.211 +v 119.743 58.7108 165.582 +v 64.5433 58.7108 193.881 +v 119.743 -58.7108 165.582 +v 64.5433 -58.7108 193.881 +v 204.247 58.7108 6.22615 +v 204.247 -58.7108 6.22615 +v 15.835 58.7108 203.727 +v 15.835 -58.7108 203.727 +v 201.974 58.7108 31.0152 +v 201.974 -58.7108 31.0152 +v 124.732 58.7108 161.857 +v 124.732 -58.7108 161.857 +v -15.2705 58.7108 203.77 +v -15.2705 -58.7108 203.77 +v 9.62017 58.7108 204.115 +v 9.62017 -58.7108 204.115 +v 70.4207 58.7108 191.824 +v 70.4207 -58.7108 191.824 +v 192.968 58.7108 67.2226 +v 81.974 58.7108 187.179 +v 192.968 -58.7108 67.2226 +v 81.974 -58.7108 187.179 +v 174.363 58.7108 106.551 +v 174.363 -58.7108 106.551 +v 87.6392 58.7108 184.594 +v 40.4896 58.7108 200.29 +v 87.6392 -58.7108 184.594 +v 40.4896 -58.7108 200.29 +v 104.126 58.7108 175.822 +v 138.988 58.7108 149.793 +v 138.988 -58.7108 149.793 +v 104.126 -58.7108 175.822 +v -39.9345 58.7108 200.402 +v -39.9345 -58.7108 200.402 +v 186.025 58.7108 84.5589 +v 186.025 -58.7108 84.5589 +v 52.6141 58.7108 197.452 +v 52.6141 -58.7108 197.452 +v 34.368 58.7108 201.431 +v 34.368 -58.7108 201.431 +v 76.2328 58.7108 189.589 +v -58.0634 58.7108 195.919 +v 76.2328 -58.7108 189.589 +v -58.0634 -58.7108 195.919 +v -2.83042 58.7108 204.322 +v -2.83042 -58.7108 204.322 +v -64.0059 58.7108 194.059 +v 204.342 58.7108 0 +v 190.83 58.7108 73.071 +v 171.036 58.7108 111.814 +v 152.083 58.7108 136.479 +v 204.342 -58.7108 0 +v -64.0059 -58.7108 194.059 +v 190.83 -58.7108 73.071 +v 171.036 -58.7108 111.814 +v 152.083 -58.7108 136.479 +v -52.0669 58.7108 197.597 +v -52.0669 -58.7108 197.597 +v 58.6059 58.7108 195.757 +v 58.6059 -58.7108 195.757 +v 93.2229 58.7108 181.838 +v 180.529 58.7108 95.7327 +v 167.549 58.7108 116.974 +v 93.2229 -58.7108 181.838 +v 180.529 -58.7108 95.7327 +v 167.549 -58.7108 116.974 +v 160.113 58.7108 126.962 +v 160.113 -58.7108 126.962 +v 156.171 58.7108 131.782 +v 156.171 -58.7108 131.782 +v -46.0221 58.7108 199.092 +v -46.0221 -58.7108 199.092 +v -9.05466 58.7108 204.141 +v -9.05466 -58.7108 204.141 +v 147.854 58.7108 141.049 +v 147.854 -58.7108 141.049 +v 129.606 58.7108 157.981 +v 129.606 -58.7108 157.981 +v -152.919 -76.812 127.762 +v -152.919 76.812 127.762 +v 172.359 -76.812 -100 +v 172.359 76.812 -100 +v -15.491 55.8355 206.712 +v -15.491 -55.8355 206.712 +v 105.629 55.8355 178.361 +v 186.01 55.8355 91.4898 +v 186.01 -55.8355 91.4898 +v 105.629 -55.8355 178.361 +v 16.0636 55.8355 206.669 +v 16.0636 -55.8355 206.669 +v 205.754 55.8355 25.2056 +v 176.88 55.8355 108.089 +v 205.754 -55.8355 25.2056 +v 176.88 -55.8355 108.089 +v 34.8643 55.8355 204.339 +v 34.8643 -55.8355 204.339 +v 191.237 55.8355 79.99 +v 191.237 -55.8355 79.99 +v 3.44549 55.8355 207.264 +v 3.44549 -55.8355 207.264 +v 59.4521 55.8355 198.584 +v 59.4521 -55.8355 198.584 +v -70.8981 55.8355 194.791 +v -70.8981 -55.8355 194.791 +v 22.3532 55.8355 206.083 +v 22.3532 -55.8355 206.083 +v 9.75906 55.8355 207.062 +v 9.75906 -55.8355 207.062 +v 203.837 55.8355 37.6913 +v 203.837 -55.8355 37.6913 +v 207.196 55.8355 6.31604 +v 207.196 -55.8355 6.31604 +v 180.092 55.8355 102.65 +v 169.968 55.8355 118.663 +v 180.092 -55.8355 102.65 +v 169.968 -55.8355 118.663 +v 121.471 55.8355 167.973 +v 121.471 -55.8355 167.973 +v 204.891 55.8355 31.463 +v 204.891 -55.8355 31.463 +v 158.425 55.8355 133.684 +v 158.425 -55.8355 133.684 +v 206.426 55.8355 18.9247 +v 206.426 -55.8355 18.9247 +v 188.711 55.8355 85.7797 +v 188.711 -55.8355 85.7797 +v 136.299 55.8355 156.181 +v 136.299 -55.8355 156.181 +v 111.015 55.8355 175.059 +v 111.015 -55.8355 175.059 +v -64.93 55.8355 196.861 +v -64.93 -55.8355 196.861 +v 140.995 55.8355 151.956 +v 131.477 55.8355 160.262 +v 140.995 -55.8355 151.956 +v 131.477 -55.8355 160.262 +v 53.3738 55.8355 200.303 +v 53.3738 -55.8355 200.303 +v -40.5111 55.8355 203.295 +v -40.5111 -55.8355 203.295 +v 126.533 55.8355 164.193 +v 126.533 -55.8355 164.193 +v -2.87128 55.8355 207.272 +v -2.87128 -55.8355 207.272 +v 41.0742 55.8355 203.182 +v 41.0742 -55.8355 203.182 +v -52.8186 55.8355 200.45 +v -52.8186 -55.8355 200.45 +v 197.741 55.8355 62.197 +v 197.741 -55.8355 62.197 +v 193.586 55.8355 74.126 +v 193.586 -55.8355 74.126 +v 83.1576 55.8355 189.881 +v 83.1576 -55.8355 189.881 +v 199.544 55.8355 56.1431 +v 199.544 -55.8355 56.1431 +v 206.907 55.8355 12.6262 +v 206.907 -55.8355 12.6262 +v 145.559 55.8355 147.589 +v 116.297 55.8355 171.596 +v 145.559 -55.8355 147.589 +v 116.297 -55.8355 171.596 +v -9.18539 55.8355 207.089 +v -9.18539 -55.8355 207.089 +v 195.754 55.8355 68.1932 +v 195.754 -55.8355 68.1932 +v 166.274 55.8355 123.786 +v -28.0531 55.8355 205.385 +v 166.274 -55.8355 123.786 +v -28.0531 -55.8355 205.385 +v 88.9045 55.8355 187.259 +v 88.9045 -55.8355 187.259 +v 173.505 55.8355 113.429 +v 173.505 -55.8355 113.429 +v -58.9017 55.8355 198.748 +v -58.9017 -55.8355 198.748 +v 71.4375 55.8355 194.594 +v 71.4375 -55.8355 194.594 +v 207.292 55.8355 0 +v 94.5689 55.8355 184.464 +v 207.292 -55.8355 0 +v 94.5689 -55.8355 184.464 +v 28.622 55.8355 205.307 +v 28.622 -55.8355 205.307 +v 77.3334 55.8355 192.327 +v 77.3334 -55.8355 192.327 +v -21.7822 55.8355 206.145 +v -21.7822 -55.8355 206.145 +v -46.6866 55.8355 201.966 +v -46.6866 -55.8355 201.966 +v 65.4752 55.8355 196.68 +v 65.4752 -55.8355 196.68 +v 162.425 55.8355 128.795 +v 162.425 -55.8355 128.795 +v 183.136 55.8355 97.1149 +v 183.136 -55.8355 97.1149 +v 100.146 55.8355 181.496 +v 100.146 -55.8355 181.496 +v 201.163 55.8355 50.0371 +v 201.163 -55.8355 50.0371 +v 154.279 55.8355 138.449 +v 154.279 -55.8355 138.449 +v 202.594 55.8355 43.8846 +v 202.594 -55.8355 43.8846 +v -34.298 55.8355 204.435 +v -34.298 -55.8355 204.435 +v 149.988 55.8355 143.086 +v 149.988 -55.8355 143.086 +v 47.2459 55.8355 201.836 +v 47.2459 -55.8355 201.836 +v -154.262 -75.5591 131.45 +v -154.262 75.5591 131.45 +v 176.283 -75.5591 -100 +v 176.283 75.5591 -100 +v -47.3168 52.8122 204.693 +v -47.3168 -52.8122 204.693 +v 60.2547 52.8122 201.264 +v 60.2547 -52.8122 201.264 +v 185.608 52.8122 98.4259 +v 185.608 -52.8122 98.4259 +v -71.8552 52.8122 197.421 +v -71.8552 -52.8122 197.421 +v 29.0084 52.8122 208.078 +v 29.0084 -52.8122 208.078 +v 3.492 52.8122 210.061 +v 3.492 -52.8122 210.061 +v 200.411 52.8122 63.0367 +v 200.411 -52.8122 63.0367 +v 196.199 52.8122 75.1267 +v 196.199 -52.8122 75.1267 +v 78.3774 52.8122 194.923 +v 78.3774 -52.8122 194.923 +v 205.329 52.8122 44.477 +v 205.329 -52.8122 44.477 +v 72.4019 52.8122 197.221 +v 72.4019 -52.8122 197.221 +v 123.111 52.8122 170.24 +v 112.513 52.8122 177.423 +v 123.111 -52.8122 170.24 +v 112.513 -52.8122 177.423 +v 188.521 52.8122 92.7249 +v 128.241 52.8122 166.41 +v 188.521 -52.8122 92.7249 +v 128.241 -52.8122 166.41 +v 209.993 52.8122 6.40131 +v 209.993 -52.8122 6.40131 +v -41.058 52.8122 206.04 +v -41.058 -52.8122 206.04 +v 54.0943 52.8122 203.007 +v 54.0943 -52.8122 203.007 +v -59.6968 52.8122 201.431 +v -59.6968 -52.8122 201.431 +v 84.2802 52.8122 192.445 +v 84.2802 -52.8122 192.445 +v 101.497 52.8122 183.947 +v 101.497 -52.8122 183.947 +v 209.213 52.8122 19.1802 +v 209.213 -52.8122 19.1802 +v 22.6549 52.8122 208.865 +v 22.6549 -52.8122 208.865 +v 90.1047 52.8122 189.787 +v 90.1047 -52.8122 189.787 +v -53.5317 52.8122 203.156 +v -53.5317 -52.8122 203.156 +v -15.7001 52.8122 209.503 +v -15.7001 -52.8122 209.503 +v 198.397 52.8122 69.1138 +v 198.397 -52.8122 69.1138 +v 203.878 52.8122 50.7126 +v 203.878 -52.8122 50.7126 +v 16.2804 52.8122 209.459 +v 16.2804 -52.8122 209.459 +v -28.4318 52.8122 208.158 +v -28.4318 -52.8122 208.158 +v 168.518 52.8122 125.457 +v 168.518 -52.8122 125.457 +v -2.91004 52.8122 210.07 +v -2.91004 -52.8122 210.07 +v 9.89081 52.8122 209.858 +v 9.89081 -52.8122 209.858 +v 138.139 52.8122 158.29 +v 138.139 -52.8122 158.29 +v -9.30939 52.8122 209.884 +v -9.30939 -52.8122 209.884 +v 193.819 52.8122 81.0698 +v 147.524 52.8122 149.582 +v 133.252 52.8122 162.425 +v 193.819 -52.8122 81.0698 +v 147.524 -52.8122 149.582 +v 133.252 -52.8122 162.425 +v 66.3591 52.8122 199.335 +v 66.3591 -52.8122 199.335 +v 41.6286 52.8122 205.925 +v 41.6286 -52.8122 205.925 +v 207.656 52.8122 31.8878 +v 207.656 -52.8122 31.8878 +v 182.523 52.8122 104.036 +v 156.361 52.8122 140.318 +v 47.8837 52.8122 204.561 +v 182.523 -52.8122 104.036 +v 156.361 -52.8122 140.318 +v 47.8837 -52.8122 204.561 +v 35.3349 52.8122 207.098 +v 35.3349 -52.8122 207.098 +v 175.847 52.8122 114.96 +v 175.847 -52.8122 114.96 +v 202.238 52.8122 56.901 +v 202.238 -52.8122 56.901 +v 208.532 52.8122 25.5458 +v 208.532 -52.8122 25.5458 +v 172.263 52.8122 120.265 +v 172.263 -52.8122 120.265 +v 209.701 52.8122 12.7967 +v 209.701 -52.8122 12.7967 +v 179.268 52.8122 109.549 +v 179.268 -52.8122 109.549 +v -65.8066 52.8122 199.518 +v 95.8456 52.8122 186.954 +v 152.013 52.8122 145.017 +v 142.898 52.8122 154.007 +v 95.8456 -52.8122 186.954 +v -65.8066 -52.8122 199.518 +v 152.013 -52.8122 145.017 +v 142.898 -52.8122 154.007 +v -34.7611 52.8122 207.195 +v -34.7611 -52.8122 207.195 +v 206.589 52.8122 38.2001 +v 206.589 -52.8122 38.2001 +v 191.259 52.8122 86.9377 +v 191.259 -52.8122 86.9377 +v 117.867 52.8122 173.912 +v 117.867 -52.8122 173.912 +v 107.055 52.8122 180.769 +v 164.618 52.8122 130.534 +v 164.618 -52.8122 130.534 +v 107.055 -52.8122 180.769 +v -22.0762 52.8122 208.928 +v -22.0762 -52.8122 208.928 +v 210.091 52.8122 0 +v 210.091 -52.8122 0 +v 160.564 52.8122 135.489 +v 160.564 -52.8122 135.489 +v 102.772 49.6488 186.257 +v 102.772 -49.6488 186.257 +v -9.42633 49.6488 212.521 +v -9.42633 -49.6488 212.521 +v 210.265 49.6488 32.2883 +v 210.265 -49.6488 32.2883 +v 149.377 49.6488 151.461 +v 22.9395 49.6488 211.489 +v 149.377 -49.6488 151.461 +v 22.9395 -49.6488 211.489 +v -54.2041 49.6488 205.708 +v -54.2041 -49.6488 205.708 +v 79.3619 49.6488 197.372 +v 79.3619 -49.6488 197.372 +v 184.816 49.6488 105.342 +v 184.816 -49.6488 105.342 +v 200.889 49.6488 69.9819 +v 193.661 49.6488 88.0298 +v 200.889 -49.6488 69.9819 +v 193.661 -49.6488 88.0298 +v 187.94 49.6488 99.6623 +v 170.635 49.6488 127.033 +v 187.94 -49.6488 99.6623 +v 170.635 -49.6488 127.033 +v 178.056 49.6488 116.404 +v 178.056 -49.6488 116.404 +v 61.0115 49.6488 203.793 +v 61.0115 -49.6488 203.793 +v 212.631 49.6488 6.48172 +v 212.631 -49.6488 6.48172 +v 207.908 49.6488 45.0357 +v 67.1926 49.6488 201.839 +v 207.908 -49.6488 45.0357 +v 67.1926 -49.6488 201.839 +v -72.7578 49.6488 199.9 +v 129.852 49.6488 168.5 +v -72.7578 -49.6488 199.9 +v 129.852 -49.6488 168.5 +v -35.1977 49.6488 209.798 +v -35.1977 -49.6488 209.798 +v 181.52 49.6488 110.925 +v 174.427 49.6488 121.775 +v 181.52 -49.6488 110.925 +v 174.427 -49.6488 121.775 +v 10.015 49.6488 212.494 +v 10.015 -49.6488 212.494 +v 196.253 49.6488 82.0882 +v 196.253 -49.6488 82.0882 +v 113.926 49.6488 179.651 +v 113.926 -49.6488 179.651 +v 211.151 49.6488 25.8667 +v 211.151 -49.6488 25.8667 +v 119.348 49.6488 176.097 +v 119.348 -49.6488 176.097 +v 211.841 49.6488 19.4211 +v 211.841 -49.6488 19.4211 +v 212.335 49.6488 12.9574 +v 212.335 -49.6488 12.9574 +v 190.889 49.6488 93.8896 +v 190.889 -49.6488 93.8896 +v 3.53587 49.6488 212.7 +v 3.53587 -49.6488 212.7 +v 209.184 49.6488 38.68 +v 209.184 -49.6488 38.68 +v 35.7788 49.6488 209.699 +v 35.7788 -49.6488 209.699 +v 85.3389 49.6488 194.862 +v 85.3389 -49.6488 194.862 +v 91.2365 49.6488 192.171 +v 91.2365 -49.6488 192.171 +v 206.439 49.6488 51.3496 +v 206.439 -49.6488 51.3496 +v 108.4 49.6488 183.039 +v 144.693 49.6488 155.942 +v 144.693 -49.6488 155.942 +v 108.4 -49.6488 183.039 +v 29.3728 49.6488 210.692 +v 29.3728 -49.6488 210.692 +v 73.3113 49.6488 199.698 +v 73.3113 -49.6488 199.698 +v 16.4849 49.6488 212.09 +v 16.4849 -49.6488 212.09 +v 42.1516 49.6488 208.512 +v 42.1516 -49.6488 208.512 +v 212.73 49.6488 0 +v 158.325 49.6488 142.081 +v 212.73 -49.6488 0 +v 158.325 -49.6488 142.081 +v -22.3535 49.6488 211.552 +v -22.3535 -49.6488 211.552 +v -2.9466 49.6488 212.709 +v -2.9466 -49.6488 212.709 +v -66.6332 49.6488 202.025 +v -66.6332 -49.6488 202.025 +v -47.9112 49.6488 207.264 +v -47.9112 -49.6488 207.264 +v 198.663 49.6488 76.0704 +v 54.7738 49.6488 205.557 +v 198.663 -49.6488 76.0704 +v 54.7738 -49.6488 205.557 +v 97.0495 49.6488 189.302 +v 97.0495 -49.6488 189.302 +v 202.928 49.6488 63.8285 +v 166.686 49.6488 132.173 +v 202.928 -49.6488 63.8285 +v 166.686 -49.6488 132.173 +v 153.923 49.6488 146.839 +v 139.874 49.6488 160.278 +v 153.923 -49.6488 146.839 +v 139.874 -49.6488 160.278 +v -41.5737 49.6488 208.628 +v -41.5737 -49.6488 208.628 +v 162.581 49.6488 137.191 +v 162.581 -49.6488 137.191 +v 204.779 49.6488 57.6158 +v 204.779 -49.6488 57.6158 +v -28.789 49.6488 210.773 +v -28.789 -49.6488 210.773 +v -60.4467 49.6488 203.961 +v -60.4467 -49.6488 203.961 +v -15.8973 49.6488 212.135 +v -15.8973 -49.6488 212.135 +v 48.4852 49.6488 207.131 +v 48.4852 -49.6488 207.131 +v 124.658 49.6488 172.379 +v 124.658 -49.6488 172.379 +v 134.926 49.6488 164.466 +v 134.926 -49.6488 164.466 +v 180.138 -74.1059 -100 +v 180.138 74.1059 -100 +v -155.58 -74.1059 135.073 +v -155.58 74.1059 135.073 +v 109.66 46.3537 185.167 +v 109.66 -46.3537 185.167 +v 183.63 46.3537 112.214 +v 183.63 -46.3537 112.214 +v 164.471 46.3537 138.786 +v 164.471 -46.3537 138.786 +v 49.0488 46.3537 209.538 +v 49.0488 -46.3537 209.538 +v 213.605 46.3537 26.1674 +v 213.605 -46.3537 26.1674 +v 16.6765 46.3537 214.555 +v 16.6765 -46.3537 214.555 +v 3.57697 46.3537 215.173 +v 3.57697 -46.3537 215.173 +v -67.4077 46.3537 204.373 +v -67.4077 -46.3537 204.373 +v 146.375 46.3537 157.754 +v 146.375 -46.3537 157.754 +v 42.6415 46.3537 210.935 +v 42.6415 -46.3537 210.935 +v 126.106 46.3537 174.382 +v 126.106 -46.3537 174.382 +v -2.98085 46.3537 215.182 +v -2.98085 -46.3537 215.182 +v 98.1776 46.3537 191.502 +v 98.1776 -46.3537 191.502 +v -16.0821 46.3537 214.6 +v -16.0821 -46.3537 214.6 +v 176.454 46.3537 123.191 +v 176.454 -46.3537 123.191 +v -48.4681 46.3537 209.673 +v -48.4681 -46.3537 209.673 +v -35.6068 46.3537 212.236 +v -35.6068 -46.3537 212.236 +v 115.251 46.3537 181.74 +v 115.251 -46.3537 181.74 +v 193.108 46.3537 94.981 +v 193.108 -46.3537 94.981 +v 103.967 46.3537 188.422 +v 205.287 46.3537 64.5704 +v 103.967 -46.3537 188.422 +v 205.287 -46.3537 64.5704 +v 61.7207 46.3537 206.161 +v 61.7207 -46.3537 206.161 +v 207.159 46.3537 58.2855 +v 172.619 46.3537 128.51 +v 136.494 46.3537 166.377 +v 67.9736 46.3537 204.185 +v 207.159 -46.3537 58.2855 +v 172.619 -46.3537 128.51 +v 136.494 -46.3537 166.377 +v 67.9736 -46.3537 204.185 +v -61.1493 46.3537 206.332 +v -61.1493 -46.3537 206.332 +v 120.735 46.3537 178.144 +v 120.735 -46.3537 178.144 +v 180.126 46.3537 117.757 +v 180.126 -46.3537 117.757 +v 92.297 46.3537 194.405 +v 92.297 -46.3537 194.405 +v 141.5 46.3537 162.141 +v 74.1635 46.3537 202.019 +v 141.5 -46.3537 162.141 +v 74.1635 -46.3537 202.019 +v 23.2061 46.3537 213.947 +v 23.2061 -46.3537 213.947 +v 80.2844 46.3537 199.666 +v -29.1236 46.3537 213.223 +v 80.2844 -46.3537 199.666 +v -29.1236 -46.3537 213.223 +v 55.4104 46.3537 207.946 +v 55.4104 -46.3537 207.946 +v 198.535 46.3537 83.0424 +v 198.535 -46.3537 83.0424 +v 29.7142 46.3537 213.141 +v 29.7142 -46.3537 213.141 +v -9.53589 46.3537 214.991 +v -9.53589 -46.3537 214.991 +v -73.6035 46.3537 202.224 +v 155.712 46.3537 148.546 +v -54.8342 46.3537 208.099 +v -73.6035 -46.3537 202.224 +v 155.712 -46.3537 148.546 +v -54.8342 -46.3537 208.099 +v 214.803 46.3537 13.108 +v 214.803 -46.3537 13.108 +v 203.224 46.3537 70.7954 +v 203.224 -46.3537 70.7954 +v 168.623 46.3537 133.71 +v 160.166 46.3537 143.732 +v 151.113 46.3537 153.221 +v 131.361 46.3537 170.459 +v 168.623 -46.3537 133.71 +v 160.166 -46.3537 143.732 +v 151.113 -46.3537 153.221 +v 131.361 -46.3537 170.459 +v 210.324 46.3537 45.5592 +v 210.324 -46.3537 45.5592 +v -22.6133 46.3537 214.011 +v -22.6133 -46.3537 214.011 +v 195.912 46.3537 89.053 +v 190.124 46.3537 100.821 +v 86.3308 46.3537 197.127 +v 195.912 -46.3537 89.053 +v 190.124 -46.3537 100.821 +v 86.3308 -46.3537 197.127 +v 212.709 46.3537 32.6636 +v 212.709 -46.3537 32.6636 +v -42.057 46.3537 211.053 +v -42.057 -46.3537 211.053 +v 215.202 46.3537 0 +v 215.202 -46.3537 0 +v 211.615 46.3537 39.1296 +v 211.615 -46.3537 39.1296 +v 214.304 46.3537 19.6468 +v 36.1946 46.3537 212.137 +v 214.304 -46.3537 19.6468 +v 36.1946 -46.3537 212.137 +v 208.839 46.3537 51.9464 +v 208.839 -46.3537 51.9464 +v 200.973 46.3537 76.9546 +v 200.973 -46.3537 76.9546 +v 10.1315 46.3537 214.964 +v 10.1315 -46.3537 214.964 +v 215.102 46.3537 6.55706 +v 215.102 -46.3537 6.55706 +v 186.964 46.3537 106.567 +v 186.964 -46.3537 106.567 +v 183.913 -72.4562 -100 +v 183.913 72.4562 -100 +v -156.871 -72.4562 138.62 +v -156.871 72.4562 138.62 +v 192.156 42.9357 101.898 +v 192.156 -42.9357 101.898 +v 157.376 42.9357 150.133 +v 137.953 42.9357 168.155 +v 157.376 -42.9357 150.133 +v 137.953 -42.9357 168.155 +v 68.7001 42.9357 206.367 +v 68.7001 -42.9357 206.367 +v 110.832 42.9357 187.146 +v 110.832 -42.9357 187.146 +v 209.373 42.9357 58.9084 +v 209.373 -42.9357 58.9084 +v 217.502 42.9357 0 +v 174.463 42.9357 129.883 +v 217.502 -42.9357 0 +v 174.463 -42.9357 129.883 +v 30.0317 42.9357 215.419 +v 30.0317 -42.9357 215.419 +v 216.594 42.9357 19.8568 +v 216.594 -42.9357 19.8568 +v 93.2834 42.9357 196.482 +v 81.1424 42.9357 201.799 +v 93.2834 -42.9357 196.482 +v 81.1424 -42.9357 201.799 +v 182.051 42.9357 119.015 +v 182.051 -42.9357 119.015 +v 99.2268 42.9357 193.549 +v 207.481 42.9357 65.2604 +v 185.592 42.9357 113.413 +v 99.2268 -42.9357 193.549 +v 207.481 -42.9357 65.2604 +v 185.592 -42.9357 113.413 +v 43.0972 42.9357 213.189 +v 43.0972 -42.9357 213.189 +v 211.07 42.9357 52.5016 +v 211.07 -42.9357 52.5016 +v -48.986 42.9357 211.914 +v -48.986 -42.9357 211.914 +v -29.4348 42.9357 215.501 +v -29.4348 -42.9357 215.501 +v 56.0026 42.9357 210.169 +v 56.0026 -42.9357 210.169 +v -22.855 42.9357 216.298 +v -22.855 -42.9357 216.298 +v 212.572 42.9357 46.046 +v 212.572 -42.9357 46.046 +v 161.877 42.9357 145.268 +v 161.877 -42.9357 145.268 +v -9.6378 42.9357 217.288 +v -9.6378 -42.9357 217.288 +v 198.006 42.9357 90.0047 +v 198.006 -42.9357 90.0047 +v -35.9873 42.9357 214.504 +v -35.9873 -42.9357 214.504 +v 195.171 42.9357 95.996 +v 178.34 42.9357 124.507 +v 195.171 -42.9357 95.996 +v 178.34 -42.9357 124.507 +v 3.61519 42.9357 217.472 +v 3.61519 -42.9357 217.472 +v 213.876 42.9357 39.5477 +v 213.876 -42.9357 39.5477 +v -68.1281 42.9357 206.557 +v 105.078 42.9357 190.436 +v -61.8028 42.9357 208.537 +v 105.078 -42.9357 190.436 +v -68.1281 -42.9357 206.557 +v -61.8028 -42.9357 208.537 +v 49.5729 42.9357 211.777 +v 49.5729 -42.9357 211.777 +v 16.8548 42.9357 216.848 +v 16.8548 -42.9357 216.848 +v 122.025 42.9357 180.047 +v 122.025 -42.9357 180.047 +v 87.2534 42.9357 199.234 +v 87.2534 -42.9357 199.234 +v -42.5064 42.9357 213.308 +v -42.5064 -42.9357 213.308 +v 214.982 42.9357 33.0127 +v 214.982 -42.9357 33.0127 +v 217.098 42.9357 13.2481 +v 217.098 -42.9357 13.2481 +v 132.765 42.9357 172.281 +v 74.956 42.9357 204.178 +v 132.765 -42.9357 172.281 +v 74.956 -42.9357 204.178 +v 143.012 42.9357 163.874 +v 62.3803 42.9357 208.365 +v 143.012 -42.9357 163.874 +v 62.3803 -42.9357 208.365 +v 10.2397 42.9357 217.261 +v 10.2397 -42.9357 217.261 +v 116.482 42.9357 183.682 +v 116.482 -42.9357 183.682 +v 170.425 42.9357 135.139 +v 170.425 -42.9357 135.139 +v -3.0127 42.9357 217.481 +v -3.0127 -42.9357 217.481 +v 23.4541 42.9357 216.234 +v 23.4541 -42.9357 216.234 +v 36.5815 42.9357 214.404 +v 36.5815 -42.9357 214.404 +v 152.728 42.9357 154.859 +v 152.728 -42.9357 154.859 +v 217.401 42.9357 6.62713 +v 217.401 -42.9357 6.62713 +v -74.3901 42.9357 204.385 +v -74.3901 -42.9357 204.385 +v -55.4202 42.9357 210.323 +v -55.4202 -42.9357 210.323 +v 203.12 42.9357 77.777 +v 203.12 -42.9357 77.777 +v -16.254 42.9357 216.894 +v -16.254 -42.9357 216.894 +v 205.396 42.9357 71.5519 +v 205.396 -42.9357 71.5519 +v 127.454 42.9357 176.246 +v 127.454 -42.9357 176.246 +v 200.656 42.9357 83.9298 +v 166.228 42.9357 140.269 +v 147.939 42.9357 159.44 +v 200.656 -42.9357 83.9298 +v 166.228 -42.9357 140.269 +v 147.939 -42.9357 159.44 +v 188.962 42.9357 107.706 +v 188.962 -42.9357 107.706 +v 215.888 42.9357 26.447 +v 215.888 -42.9357 26.447 +v 219.521 39.4039 6.69175 +v 219.521 -39.4039 6.69175 +v -3.04208 39.4039 219.602 +v -3.04208 -39.4039 219.602 +v 134.06 39.4039 173.96 +v 134.06 -39.4039 173.96 +v 211.414 39.4039 59.4827 +v 50.0563 39.4039 213.842 +v 211.414 -39.4039 59.4827 +v 50.0563 -39.4039 213.842 +v 43.5174 39.4039 215.268 +v 43.5174 -39.4039 215.268 +v -75.1154 39.4039 206.378 +v 158.91 39.4039 151.597 +v -75.1154 -39.4039 206.378 +v 158.91 -39.4039 151.597 +v 36.9381 39.4039 216.494 +v 36.9381 -39.4039 216.494 +v -36.3382 39.4039 216.596 +v -36.3382 -39.4039 216.596 +v 88.1042 39.4039 201.176 +v 88.1042 -39.4039 201.176 +v 219.215 39.4039 13.3773 +v 219.215 -39.4039 13.3773 +v -68.7924 39.4039 208.571 +v -68.7924 -39.4039 208.571 +v 197.074 39.4039 96.932 +v 197.074 -39.4039 96.932 +v 187.402 39.4039 114.519 +v 187.402 -39.4039 114.519 +v -55.9605 39.4039 212.374 +v -55.9605 -39.4039 212.374 +v 183.826 39.4039 120.176 +v 144.407 39.4039 165.472 +v 183.826 -39.4039 120.176 +v 144.407 -39.4039 165.472 +v 117.618 39.4039 185.473 +v 117.618 -39.4039 185.473 +v 215.962 39.4039 39.9333 +v 215.962 -39.4039 39.9333 +v 219.623 39.4039 0 +v 111.912 39.4039 188.97 +v 219.623 -39.4039 0 +v 111.912 -39.4039 188.97 +v -16.4124 39.4039 219.009 +v -16.4124 -39.4039 219.009 +v 154.217 39.4039 156.369 +v 154.217 -39.4039 156.369 +v -49.4637 39.4039 213.98 +v -49.4637 -39.4039 213.98 +v 81.9336 39.4039 203.767 +v 81.9336 -39.4039 203.767 +v 217.078 39.4039 33.3346 +v 217.078 -39.4039 33.3346 +v 214.645 39.4039 46.495 +v 214.645 -39.4039 46.495 +v 30.3246 39.4039 217.519 +v 30.3246 -39.4039 217.519 +v 209.504 39.4039 65.8968 +v 209.504 -39.4039 65.8968 +v 217.993 39.4039 26.7049 +v 217.993 -39.4039 26.7049 +v 205.101 39.4039 78.5353 +v 172.087 39.4039 136.456 +v 128.697 39.4039 177.964 +v 123.215 39.4039 181.803 +v 205.101 -39.4039 78.5353 +v 172.087 -39.4039 136.456 +v 128.697 -39.4039 177.964 +v 123.215 -39.4039 181.803 +v 213.128 39.4039 53.0135 +v 213.128 -39.4039 53.0135 +v -9.73177 39.4039 219.407 +v -9.73177 -39.4039 219.407 +v 10.3396 39.4039 219.379 +v 10.3396 -39.4039 219.379 +v 56.5487 39.4039 212.218 +v 56.5487 -39.4039 212.218 +v 17.0191 39.4039 218.962 +v 17.0191 -39.4039 218.962 +v 207.399 39.4039 72.2496 +v 207.399 -39.4039 72.2496 +v 23.6828 39.4039 218.342 +v 23.6828 -39.4039 218.342 +v 199.936 39.4039 90.8823 +v 194.03 39.4039 102.892 +v 199.936 -39.4039 90.8823 +v 194.03 -39.4039 102.892 +v 167.849 39.4039 141.636 +v 149.382 39.4039 160.995 +v 167.849 -39.4039 141.636 +v 149.382 -39.4039 160.995 +v -29.7218 39.4039 217.602 +v -29.7218 -39.4039 217.602 +v 3.65044 39.4039 219.592 +v 3.65044 -39.4039 219.592 +v 180.079 39.4039 125.721 +v 163.456 39.4039 146.685 +v 180.079 -39.4039 125.721 +v 163.456 -39.4039 146.685 +v -42.9209 39.4039 215.388 +v -42.9209 -39.4039 215.388 +v 62.9885 39.4039 210.396 +v 62.9885 -39.4039 210.396 +v 202.613 39.4039 84.7482 +v 202.613 -39.4039 84.7482 +v 94.1929 39.4039 198.398 +v 94.1929 -39.4039 198.398 +v 75.6869 39.4039 206.169 +v 75.6869 -39.4039 206.169 +v 69.3699 39.4039 208.38 +v 69.3699 -39.4039 208.38 +v -62.4054 39.4039 210.57 +v -62.4054 -39.4039 210.57 +v 218.706 39.4039 20.0504 +v 218.706 -39.4039 20.0504 +v -23.0779 39.4039 218.407 +v -23.0779 -39.4039 218.407 +v 190.805 39.4039 108.756 +v 190.805 -39.4039 108.756 +v 100.194 39.4039 195.436 +v 100.194 -39.4039 195.436 +v 106.103 39.4039 192.293 +v 106.103 -39.4039 192.293 +v 176.165 39.4039 131.15 +v 176.165 -39.4039 131.15 +v 139.298 39.4039 169.795 +v 139.298 -39.4039 169.795 +v 187.598 -70.6143 -100 +v 187.598 70.6143 -100 +v -158.132 -70.6143 142.083 +v -158.132 70.6143 142.083 +v 155.577 35.7675 157.747 +v 155.577 -35.7675 157.747 +v 189.054 35.7675 115.529 +v 189.054 -35.7675 115.529 +v -69.3988 35.7675 210.41 +v -69.3988 -35.7675 210.41 +v -9.81757 35.7675 221.341 +v -9.81757 -35.7675 221.341 +v 50.4976 35.7675 215.727 +v 50.4976 -35.7675 215.727 +v 213.278 35.7675 60.0071 +v 213.278 -35.7675 60.0071 +v 23.8916 35.7675 220.267 +v 23.8916 -35.7675 220.267 +v 206.909 35.7675 79.2277 +v 206.909 -35.7675 79.2277 +v -16.5571 35.7675 220.939 +v -16.5571 -35.7675 220.939 +v 211.351 35.7675 66.4777 +v 211.351 -35.7675 66.4777 +v -75.7776 35.7675 208.197 +v 169.329 35.7675 142.885 +v -75.7776 -35.7675 208.197 +v 169.329 -35.7675 142.885 +v 220.634 35.7675 20.2272 +v 220.634 -35.7675 20.2272 +v 112.899 35.7675 190.636 +v 173.604 35.7675 137.659 +v 160.311 35.7675 152.934 +v 173.604 -35.7675 137.659 +v 160.311 -35.7675 152.934 +v 112.899 -35.7675 190.636 +v 17.1691 35.7675 220.893 +v 17.1691 -35.7675 220.893 +v 192.486 35.7675 109.715 +v 192.486 -35.7675 109.715 +v 145.68 35.7675 166.93 +v 145.68 -35.7675 166.93 +v -49.8997 35.7675 215.867 +v -49.8997 -35.7675 215.867 +v 181.666 35.7675 126.829 +v 181.666 -35.7675 126.829 +v 218.992 35.7675 33.6285 +v 218.992 -35.7675 33.6285 +v 177.718 35.7675 132.306 +v 135.242 35.7675 175.494 +v 177.718 -35.7675 132.306 +v 135.242 -35.7675 175.494 +v -3.0689 35.7675 221.538 +v -3.0689 -35.7675 221.538 +v -29.9839 35.7675 219.521 +v -29.9839 -35.7675 219.521 +v 118.655 35.7675 187.108 +v 95.0233 35.7675 200.147 +v 118.655 -35.7675 187.108 +v 95.0233 -35.7675 200.147 +v 30.5919 35.7675 219.437 +v 30.5919 -35.7675 219.437 +v 43.9011 35.7675 217.166 +v 43.9011 -35.7675 217.166 +v 10.4307 35.7675 221.313 +v 10.4307 -35.7675 221.313 +v 37.2638 35.7675 218.403 +v 37.2638 -35.7675 218.403 +v 140.526 35.7675 171.292 +v -36.6586 35.7675 218.505 +v 140.526 -35.7675 171.292 +v -36.6586 -35.7675 218.505 +v 217.866 35.7675 40.2854 +v 217.866 -35.7675 40.2854 +v 76.3541 35.7675 207.987 +v 76.3541 -35.7675 207.987 +v 221.456 35.7675 6.75074 +v 221.456 -35.7675 6.75074 +v 107.038 35.7675 193.988 +v 195.74 35.7675 103.799 +v 107.038 -35.7675 193.988 +v 195.74 -35.7675 103.799 +v 198.812 35.7675 97.7865 +v 164.897 35.7675 147.978 +v 150.698 35.7675 162.414 +v 198.812 -35.7675 97.7865 +v 164.897 -35.7675 147.978 +v 150.698 -35.7675 162.414 +v -62.9556 35.7675 212.426 +v -62.9556 -35.7675 212.426 +v -43.2993 35.7675 217.287 +v -43.2993 -35.7675 217.287 +v 216.537 35.7675 46.9049 +v 216.537 -35.7675 46.9049 +v 221.148 35.7675 13.4952 +v 221.148 -35.7675 13.4952 +v 215.007 35.7675 53.4808 +v 215.007 -35.7675 53.4808 +v -56.4539 35.7675 214.246 +v -56.4539 -35.7675 214.246 +v -23.2813 35.7675 220.332 +v -23.2813 -35.7675 220.332 +v 219.915 35.7675 26.9403 +v 69.9815 35.7675 210.217 +v 219.915 -35.7675 26.9403 +v 69.9815 -35.7675 210.217 +v 201.699 35.7675 91.6835 +v 201.699 -35.7675 91.6835 +v 185.446 35.7675 121.235 +v 129.831 35.7675 179.533 +v 185.446 -35.7675 121.235 +v 129.831 -35.7675 179.533 +v 209.227 35.7675 72.8865 +v 82.6559 35.7675 205.564 +v 209.227 -35.7675 72.8865 +v 82.6559 -35.7675 205.564 +v 88.8809 35.7675 202.95 +v 88.8809 -35.7675 202.95 +v 101.078 35.7675 197.159 +v 124.301 35.7675 183.406 +v 101.078 -35.7675 197.159 +v 124.301 -35.7675 183.406 +v 63.5438 35.7675 212.251 +v 63.5438 -35.7675 212.251 +v 3.68262 35.7675 221.528 +v 3.68262 -35.7675 221.528 +v 221.559 35.7675 0 +v 221.559 -35.7675 0 +v 57.0472 35.7675 214.089 +v 57.0472 -35.7675 214.089 +v 204.399 35.7675 85.4953 +v 204.399 -35.7675 85.4953 +v 156.803 32.0363 158.99 +v 156.803 -32.0363 158.99 +v 10.5129 32.0363 223.058 +v 10.5129 -32.0363 223.058 +v -16.6876 32.0363 222.681 +v -16.6876 -32.0363 222.681 +v 107.882 32.0363 195.517 +v 107.882 -32.0363 195.517 +v 208.54 32.0363 79.8522 +v 208.54 -32.0363 79.8522 +v 24.0799 32.0363 222.003 +v 24.0799 -32.0363 222.003 +v -30.2202 32.0363 221.251 +v -30.2202 -32.0363 221.251 +v 216.702 32.0363 53.9024 +v -36.9475 32.0363 220.227 +v 216.702 -32.0363 53.9024 +v -36.9475 -32.0363 220.227 +v 222.891 32.0363 13.6016 +v 222.891 -32.0363 13.6016 +v -50.293 32.0363 217.568 +v -50.293 -32.0363 217.568 +v -3.09309 32.0363 223.284 +v -3.09309 -32.0363 223.284 +v 101.874 32.0363 198.713 +v 203.289 32.0363 92.4062 +v 101.874 -32.0363 198.713 +v 203.289 -32.0363 92.4062 +v -56.8988 32.0363 215.935 +v -56.8988 -32.0363 215.935 +v 37.5575 32.0363 220.124 +v 37.5575 -32.0363 220.124 +v -9.89495 32.0363 223.086 +v -9.89495 -32.0363 223.086 +v 179.118 32.0363 133.349 +v 151.886 32.0363 163.694 +v 95.7723 32.0363 201.725 +v 179.118 -32.0363 133.349 +v 151.886 -32.0363 163.694 +v 95.7723 -32.0363 201.725 +v 136.307 32.0363 176.877 +v 136.307 -32.0363 176.877 +v 119.59 32.0363 188.583 +v 186.908 32.0363 122.191 +v 174.972 32.0363 138.744 +v 141.633 32.0363 172.642 +v 119.59 -32.0363 188.583 +v 186.908 -32.0363 122.191 +v 174.972 -32.0363 138.744 +v 141.633 -32.0363 172.642 +v 222.373 32.0363 20.3866 +v 222.373 -32.0363 20.3866 +v 190.544 32.0363 116.439 +v 190.544 -32.0363 116.439 +v -43.6405 32.0363 218.999 +v -43.6405 -32.0363 218.999 +v 3.71165 32.0363 223.275 +v 3.71165 -32.0363 223.275 +v -76.3749 32.0363 209.838 +v 76.956 32.0363 209.626 +v -76.3749 -32.0363 209.838 +v 76.956 -32.0363 209.626 +v 221.648 32.0363 27.1527 +v 221.648 -32.0363 27.1527 +v 125.281 32.0363 184.851 +v 161.575 32.0363 154.139 +v 146.828 32.0363 168.246 +v 125.281 -32.0363 184.851 +v 161.575 -32.0363 154.139 +v 146.828 -32.0363 168.246 +v -63.4518 32.0363 214.101 +v -63.4518 -32.0363 214.101 +v -23.4648 32.0363 222.069 +v -23.4648 -32.0363 222.069 +v 170.663 32.0363 144.011 +v 170.663 -32.0363 144.011 +v 206.01 32.0363 86.1692 +v 206.01 -32.0363 86.1692 +v 200.379 32.0363 98.5573 +v 64.0447 32.0363 213.924 +v 200.379 -32.0363 98.5573 +v 64.0447 -32.0363 213.924 +v 218.244 32.0363 47.2746 +v 218.244 -32.0363 47.2746 +v 219.583 32.0363 40.6029 +v 219.583 -32.0363 40.6029 +v 83.3074 32.0363 207.184 +v 83.3074 -32.0363 207.184 +v 89.5815 32.0363 204.549 +v 89.5815 -32.0363 204.549 +v 113.789 32.0363 192.139 +v 113.789 -32.0363 192.139 +v 183.098 32.0363 127.829 +v 166.196 32.0363 149.144 +v 183.098 -32.0363 127.829 +v 166.196 -32.0363 149.144 +v 223.202 32.0363 6.80396 +v 223.202 -32.0363 6.80396 +v 130.855 32.0363 180.948 +v 130.855 -32.0363 180.948 +v 220.718 32.0363 33.8935 +v 220.718 -32.0363 33.8935 +v 50.8956 32.0363 217.428 +v 50.8956 -32.0363 217.428 +v 17.3045 32.0363 222.634 +v 17.3045 -32.0363 222.634 +v 30.833 32.0363 221.167 +v 30.833 -32.0363 221.167 +v 197.283 32.0363 104.617 +v 194.004 32.0363 110.579 +v 197.283 -32.0363 104.617 +v 194.004 -32.0363 110.579 +v 70.5331 32.0363 211.874 +v 70.5331 -32.0363 211.874 +v -69.9458 32.0363 212.068 +v -69.9458 -32.0363 212.068 +v 210.876 32.0363 73.4611 +v 210.876 -32.0363 73.4611 +v 44.2471 32.0363 218.878 +v 44.2471 -32.0363 218.878 +v 213.017 32.0363 67.0017 +v 213.017 -32.0363 67.0017 +v 57.4968 32.0363 215.776 +v 57.4968 -32.0363 215.776 +v 214.959 32.0363 60.4801 +v 214.959 -32.0363 60.4801 +v 223.305 32.0363 0 +v 223.305 -32.0363 0 +v 129.334 29.9857 183.096 +v 127.819 -29.9857 184.156 +v 129.597 -29.9742 182.915 +v 127.559 29.9742 184.342 +v 130.748 29.8843 182.139 +v 126.436 -29.8843 185.158 +v 131.391 -29.8064 181.714 +v 125.816 29.8064 185.617 +v 132.166 29.6864 181.21 +v 125.079 -29.6864 186.173 +v 133.188 -29.4849 180.561 +v 124.119 29.4849 186.911 +v 123.752 -29.3939 187.197 +v 133.582 29.3939 180.314 +v 122.781 -29.114 187.967 +v 134.637 29.114 179.665 +v -159.358 -68.5852 145.452 +v -159.358 68.5852 145.452 +v 191.183 -68.5852 -100 +v 191.183 68.5852 -100 +v 134.972 -29.0143 179.462 +v 122.477 29.0143 188.212 +v 121.832 -28.7837 188.736 +v 135.685 28.7837 179.036 +v 137.002 -28.2928 178.266 +v 120.658 28.2928 189.71 +v 157.893 28.2202 160.096 +v 157.893 -28.2202 160.096 +v -30.4302 28.2202 222.789 +v -30.4302 -28.2202 222.789 +v 224.857 28.2202 0 +v -50.6426 28.2202 219.08 +v 224.857 -28.2202 0 +v -50.6426 -28.2202 219.08 +v -70.432 28.2202 213.542 +v 214.497 28.2202 67.4674 +v -70.432 -28.2202 213.542 +v 214.497 -28.2202 67.4674 +v 224.753 28.2202 6.85124 +v 224.753 -28.2202 6.85124 +v 191.869 28.2202 117.248 +v 191.869 -28.2202 117.248 +v 216.453 28.2202 60.9005 +v 216.453 -28.2202 60.9005 +v 224.44 28.2202 13.6961 +v 224.44 -28.2202 13.6961 +v 137.255 28.2202 178.107 +v 162.698 28.2202 155.21 +v 137.255 -28.2202 178.107 +v 162.698 -28.2202 155.21 +v 57.8965 28.2202 217.276 +v 57.8965 -28.2202 217.276 +v 83.8864 28.2202 208.624 +v 83.8864 -28.2202 208.624 +v 201.772 28.2202 99.2423 +v 201.772 -28.2202 99.2423 +v 218.208 28.2202 54.277 +v 218.208 -28.2202 54.277 +v 102.582 28.2202 200.094 +v 102.582 -28.2202 200.094 +v 184.371 28.2202 128.718 +v 184.371 -28.2202 128.718 +v 223.918 28.2202 20.5283 +v 223.918 -28.2202 20.5283 +v 77.4908 28.2202 211.083 +v 77.4908 -28.2202 211.083 +v 10.586 28.2202 224.608 +v 10.586 -28.2202 224.608 +v -37.2043 28.2202 221.758 +v -37.2043 -28.2202 221.758 +v 195.352 28.2202 111.348 +v 152.942 28.2202 164.832 +v 96.438 28.2202 203.127 +v 195.352 -28.2202 111.348 +v 152.942 -28.2202 164.832 +v 96.438 -28.2202 203.127 +v 71.0233 28.2202 213.346 +v 71.0233 -28.2202 213.346 +v 209.989 28.2202 80.4072 +v 209.989 -28.2202 80.4072 +v 167.351 28.2202 150.181 +v 167.351 -28.2202 150.181 +v 90.2041 28.2202 205.971 +v 90.2041 -28.2202 205.971 +v 147.848 28.2202 169.416 +v 108.631 28.2202 196.876 +v 171.85 28.2202 145.012 +v 147.848 -28.2202 169.416 +v 108.631 -28.2202 196.876 +v 171.85 -28.2202 145.012 +v -63.8928 28.2202 215.589 +v -63.8928 -28.2202 215.589 +v 204.702 28.2202 93.0484 +v 204.702 -28.2202 93.0484 +v 51.2493 28.2202 218.939 +v 51.2493 -28.2202 218.939 +v 37.8185 28.2202 221.654 +v 37.8185 -28.2202 221.654 +v 221.109 28.2202 40.8851 +v 219.761 28.2202 47.6032 +v 31.0473 28.2202 222.704 +v 221.109 -28.2202 40.8851 +v 219.761 -28.2202 47.6032 +v 31.0473 -28.2202 222.704 +v -23.6279 28.2202 223.613 +v -23.6279 -28.2202 223.613 +v 114.58 28.2202 193.474 +v 180.363 28.2202 134.275 +v 114.58 -28.2202 193.474 +v 180.363 -28.2202 134.275 +v -76.9057 28.2202 211.297 +v -76.9057 -28.2202 211.297 +v 198.654 28.2202 105.344 +v 198.654 -28.2202 105.344 +v -16.8036 28.2202 224.229 +v -16.8036 -28.2202 224.229 +v 3.73745 28.2202 224.826 +v 3.73745 -28.2202 224.826 +v -57.2943 28.2202 217.436 +v -57.2943 -28.2202 217.436 +v 17.4247 28.2202 224.181 +v 17.4247 -28.2202 224.181 +v 44.5546 28.2202 220.399 +v 44.5546 -28.2202 220.399 +v 64.4898 28.2202 215.411 +v 64.4898 -28.2202 215.411 +v 176.188 28.2202 139.709 +v 176.188 -28.2202 139.709 +v -9.96372 28.2202 224.637 +v -9.96372 -28.2202 224.637 +v 222.252 28.2202 34.1291 +v 222.252 -28.2202 34.1291 +v 207.442 28.2202 86.7681 +v 207.442 -28.2202 86.7681 +v 223.189 28.2202 27.3414 +v 223.189 -28.2202 27.3414 +v 24.2473 28.2202 223.546 +v 24.2473 -28.2202 223.546 +v -3.11458 28.2202 224.836 +v -3.11458 -28.2202 224.836 +v 142.618 28.2202 173.842 +v 142.618 -28.2202 173.842 +v 212.342 28.2202 73.9716 +v 212.342 -28.2202 73.9716 +v 188.207 28.2202 123.04 +v 188.207 -28.2202 123.04 +v -43.9439 28.2202 220.522 +v -43.9439 -28.2202 220.522 +v 120.422 28.2202 189.893 +v 120.422 -28.2202 189.893 +v 120.372 -28.1585 189.952 +v 137.327 28.1585 178.08 +v 118.978 -27.4165 191.152 +v 138.931 27.4165 177.181 +v 118.938 27.3927 191.188 +v 138.979 -27.3927 177.155 +v 140.49 26.5651 176.338 +v 117.653 -26.5651 192.328 +v 117.322 26.3275 192.628 +v 140.885 -26.3275 176.129 +v 116.401 -25.6118 193.473 +v 141.994 25.6118 175.553 +v 115.971 25.2482 193.873 +v 142.516 -25.2482 175.286 +v 115.091 -24.4383 194.704 +v 143.598 24.4383 174.743 +v 189.34 24.3292 123.781 +v 189.34 -24.3292 123.781 +v -77.3687 24.3292 212.569 +v -77.3687 -24.3292 212.569 +v -10.0237 24.3292 225.989 +v -10.0237 -24.3292 225.989 +v 103.2 24.3292 201.299 +v 103.2 -24.3292 201.299 +v 226.211 24.3292 0 +v 226.211 -24.3292 0 +v 44.8228 24.3292 221.726 +v 44.8228 -24.3292 221.726 +v 177.249 24.3292 140.55 +v 177.249 -24.3292 140.55 +v 217.756 24.3292 61.2671 +v 217.756 -24.3292 61.2671 +v -3.13333 24.3292 226.189 +v -3.13333 -24.3292 226.189 +v 208.691 24.3292 87.2903 +v 208.691 -24.3292 87.2903 +v 193.024 24.3292 117.954 +v 168.359 24.3292 151.085 +v 193.024 -24.3292 117.954 +v 168.359 -24.3292 151.085 +v 224.532 24.3292 27.506 +v 224.532 -24.3292 27.506 +v -70.8559 24.3292 214.827 +v 222.44 24.3292 41.1312 +v 196.528 24.3292 112.018 +v -70.8559 -24.3292 214.827 +v 222.44 -24.3292 41.1312 +v 196.528 -24.3292 112.018 +v 225.791 24.3292 13.7786 +v 225.791 -24.3292 13.7786 +v 31.2342 24.3292 224.044 +v 31.2342 -24.3292 224.044 +v 211.253 24.3292 80.8912 +v 153.862 24.3292 165.824 +v 211.253 -24.3292 80.8912 +v 153.862 -24.3292 165.824 +v 17.5296 24.3292 225.531 +v 17.5296 -24.3292 225.531 +v 213.62 24.3292 74.4169 +v 213.62 -24.3292 74.4169 +v 148.738 24.3292 170.435 +v 185.481 24.3292 129.492 +v 148.738 -24.3292 170.435 +v 185.481 -24.3292 129.492 +v 97.0184 24.3292 204.35 +v 97.0184 -24.3292 204.35 +v -16.9048 24.3292 225.578 +v -16.9048 -24.3292 225.578 +v 90.747 24.3292 207.211 +v 90.747 -24.3292 207.211 +v 221.083 24.3292 47.8897 +v 64.878 24.3292 216.708 +v 221.083 -24.3292 47.8897 +v 64.878 -24.3292 216.708 +v 38.0462 24.3292 222.988 +v 38.0462 -24.3292 222.988 +v 84.3913 24.3292 209.88 +v 84.3913 -24.3292 209.88 +v -57.6392 24.3292 218.744 +v -57.6392 -24.3292 218.744 +v 77.9573 24.3292 212.354 +v -64.2774 24.3292 216.887 +v 77.9573 -24.3292 212.354 +v -64.2774 -24.3292 216.887 +v 71.4508 24.3292 214.63 +v 71.4508 -24.3292 214.63 +v 172.884 24.3292 145.885 +v 172.884 -24.3292 145.885 +v 226.106 24.3292 6.89248 +v 226.106 -24.3292 6.89248 +v 10.6497 24.3292 225.96 +v 10.6497 -24.3292 225.96 +v -23.7701 24.3292 224.958 +v -23.7701 -24.3292 224.958 +v 219.522 24.3292 54.6037 +v 219.522 -24.3292 54.6037 +v 181.449 24.3292 135.084 +v 181.449 -24.3292 135.084 +v 3.75994 24.3292 226.18 +v 3.75994 -24.3292 226.18 +v 223.59 24.3292 34.3345 +v 223.59 -24.3292 34.3345 +v 24.3932 24.3292 224.892 +v 24.3932 -24.3292 224.892 +v 215.788 24.3292 67.8735 +v 215.788 -24.3292 67.8735 +v -30.6134 24.3292 224.13 +v -30.6134 -24.3292 224.13 +v 58.2449 24.3292 218.584 +v 58.2449 -24.3292 218.584 +v 158.844 24.3292 161.059 +v 158.844 -24.3292 161.059 +v -44.2084 24.3292 221.849 +v -44.2084 -24.3292 221.849 +v 51.5578 24.3292 220.257 +v 51.5578 -24.3292 220.257 +v 202.986 24.3292 99.8397 +v 202.986 -24.3292 99.8397 +v 109.285 24.3292 198.061 +v -50.9474 24.3292 220.399 +v 109.285 -24.3292 198.061 +v -50.9474 -24.3292 220.399 +v 199.85 24.3292 105.978 +v 199.85 -24.3292 105.978 +v 205.934 24.3292 93.6085 +v 205.934 -24.3292 93.6085 +v 225.266 24.3292 20.6518 +v 225.266 -24.3292 20.6518 +v -37.4283 24.3292 223.093 +v -37.4283 -24.3292 223.093 +v 163.677 24.3292 156.145 +v 163.677 -24.3292 156.145 +v 114.71 24.0583 195.069 +v 144.072 -24.0583 174.51 +v 113.874 -23.1575 195.88 +v 145.12 23.1575 174.002 +v 113.539 22.7673 196.21 +v 145.544 -22.7673 173.799 +v 146.551 21.7792 173.326 +v 112.75 -21.7792 196.994 +v 112.457 21.3845 197.288 +v 146.928 -21.3845 173.152 +v 78.354 20.3737 213.434 +v 78.354 -20.3737 213.434 +v 204.019 20.3737 100.348 +v 204.019 -20.3737 100.348 +v 71.8145 20.3737 215.723 +v 71.8145 -20.3737 215.723 +v -44.4334 20.3737 222.978 +v -44.4334 -20.3737 222.978 +v 58.5414 20.3737 219.696 +v 58.5414 -20.3737 219.696 +v 209.753 20.3737 87.7346 +v 206.982 20.3737 94.0849 +v 209.753 -20.3737 87.7346 +v 206.982 -20.3737 94.0849 +v 226.413 20.3737 20.757 +v 226.413 -20.3737 20.757 +v 224.728 20.3737 34.5093 +v 224.728 -20.3737 34.5093 +v 17.6189 20.3737 226.678 +v 17.6189 -20.3737 226.678 +v -64.6046 20.3737 217.99 +v -64.6046 -20.3737 217.99 +v 65.2082 20.3737 217.811 +v 65.2082 -20.3737 217.811 +v 97.5123 20.3737 205.39 +v 97.5123 -20.3737 205.39 +v 220.639 20.3737 54.8817 +v 220.639 -20.3737 54.8817 +v 214.707 20.3737 74.7956 +v 214.707 -20.3737 74.7956 +v 227.362 20.3737 0 +v 159.652 20.3737 161.879 +v 227.362 -20.3737 0 +v 159.652 -20.3737 161.879 +v 3.77908 20.3737 227.331 +v 3.77908 -20.3737 227.331 +v 103.725 20.3737 202.323 +v 103.725 -20.3737 202.323 +v 182.372 20.3737 135.771 +v 182.372 -20.3737 135.771 +v 223.572 20.3737 41.3406 +v 223.572 -20.3737 41.3406 +v -3.14928 20.3737 227.34 +v -3.14928 -20.3737 227.34 +v 10.7039 20.3737 227.11 +v 10.7039 -20.3737 227.11 +v -23.8911 20.3737 226.104 +v -23.8911 -20.3737 226.104 +v 197.528 20.3737 112.588 +v 197.528 -20.3737 112.588 +v 222.209 20.3737 48.1335 +v 178.151 20.3737 141.265 +v 173.764 20.3737 146.628 +v 222.209 -20.3737 48.1335 +v 178.151 -20.3737 141.265 +v 173.764 -20.3737 146.628 +v 38.2398 20.3737 224.123 +v 38.2398 -20.3737 224.123 +v 216.887 20.3737 68.2189 +v 216.887 -20.3737 68.2189 +v -10.0747 20.3737 227.139 +v -10.0747 -20.3737 227.139 +v -77.7625 20.3737 213.651 +v 186.425 20.3737 130.152 +v 164.51 20.3737 156.939 +v -77.7625 -20.3737 213.651 +v 186.425 -20.3737 130.152 +v 164.51 -20.3737 156.939 +v 91.2089 20.3737 208.266 +v 91.2089 -20.3737 208.266 +v 45.0509 20.3737 222.854 +v 45.0509 -20.3737 222.854 +v 218.864 20.3737 61.5789 +v 194.006 20.3737 118.555 +v 218.864 -20.3737 61.5789 +v 194.006 -20.3737 118.555 +v -57.9325 20.3737 219.858 +v -57.9325 -20.3737 219.858 +v 154.646 20.3737 166.668 +v 154.646 -20.3737 166.668 +v 31.3932 20.3737 225.184 +v 31.3932 -20.3737 225.184 +v 149.495 20.3737 171.303 +v 149.495 -20.3737 171.303 +v -30.7692 20.3737 225.271 +v -30.7692 -20.3737 225.271 +v 200.867 20.3737 106.518 +v 200.867 -20.3737 106.518 +v 226.94 20.3737 13.8487 +v 226.94 -20.3737 13.8487 +v 169.216 20.3737 151.854 +v 169.216 -20.3737 151.854 +v 212.329 20.3737 81.3029 +v 212.329 -20.3737 81.3029 +v -16.9908 20.3737 226.727 +v -16.9908 -20.3737 226.727 +v -37.6188 20.3737 224.229 +v -37.6188 -20.3737 224.229 +v -71.2166 20.3737 215.921 +v -71.2166 -20.3737 215.921 +v -51.2067 20.3737 221.521 +v -51.2067 -20.3737 221.521 +v 225.675 20.3737 27.646 +v 225.675 -20.3737 27.646 +v 227.257 20.3737 6.92757 +v 227.257 -20.3737 6.92757 +v 84.8209 20.3737 210.948 +v 84.8209 -20.3737 210.948 +v 51.8202 20.3737 221.378 +v 51.8202 -20.3737 221.378 +v 109.842 20.3737 199.069 +v 109.842 -20.3737 199.069 +v 24.5174 20.3737 226.036 +v 24.5174 -20.3737 226.036 +v 190.304 20.3737 124.411 +v 190.304 -20.3737 124.411 +v 147.887 20.3127 172.714 +v 111.718 -20.3127 198.04 +v 111.262 19.5911 198.51 +v 148.484 -19.5911 172.447 +v 149.38 18.4181 172.051 +v 110.584 -18.4181 199.217 +v -160.547 -66.3742 148.718 +v -160.547 66.3742 148.718 +v 194.66 -66.3742 -100 +v 194.66 66.3742 -100 +v 110.198 17.6893 199.623 +v 149.894 -17.6893 171.828 +v 150.718 16.4201 171.474 +v 109.585 -16.4201 200.276 +v -3.16239 16.3642 228.286 +v -3.16239 -16.3642 228.286 +v 31.5238 16.3642 226.122 +v 31.5238 -16.3642 226.122 +v 91.5885 16.3642 209.132 +v 91.5885 -16.3642 209.132 +v 217.789 16.3642 68.5029 +v 217.789 -16.3642 68.5029 +v 183.132 16.3642 136.336 +v 183.132 -16.3642 136.336 +v 227.885 16.3642 13.9063 +v 227.885 -16.3642 13.9063 +v 178.892 16.3642 141.853 +v 178.892 -16.3642 141.853 +v -44.6183 16.3642 223.906 +v -44.6183 -16.3642 223.906 +v 201.703 16.3642 106.961 +v 201.703 -16.3642 106.961 +v 227.355 16.3642 20.8434 +v 227.355 -16.3642 20.8434 +v 72.1134 16.3642 216.62 +v 72.1134 -16.3642 216.62 +v 155.289 16.3642 167.362 +v 213.212 16.3642 81.6413 +v 155.289 -16.3642 167.362 +v 213.212 -16.3642 81.6413 +v 187.201 16.3642 130.693 +v 78.6802 16.3642 214.323 +v 187.201 -16.3642 130.693 +v 78.6802 -16.3642 214.323 +v 17.6922 16.3642 227.622 +v 17.6922 -16.3642 227.622 +v 3.79481 16.3642 228.277 +v 3.79481 -16.3642 228.277 +v 204.868 16.3642 100.766 +v 204.868 -16.3642 100.766 +v -30.8973 16.3642 226.208 +v -30.8973 -16.3642 226.208 +v 174.487 16.3642 147.238 +v 174.487 -16.3642 147.238 +v 10.7485 16.3642 228.055 +v 10.7485 -16.3642 228.055 +v -10.1166 16.3642 228.084 +v -10.1166 -16.3642 228.084 +v 97.9181 16.3642 206.245 +v 97.9181 -16.3642 206.245 +v -23.9905 16.3642 227.044 +v -23.9905 -16.3642 227.044 +v 225.663 16.3642 34.6529 +v 225.663 -16.3642 34.6529 +v 65.4796 16.3642 218.717 +v 65.4796 -16.3642 218.717 +v 194.814 16.3642 119.048 +v 165.195 16.3642 157.592 +v 194.814 -16.3642 119.048 +v 165.195 -16.3642 157.592 +v 215.601 16.3642 75.1069 +v 52.0359 16.3642 222.299 +v 215.601 -16.3642 75.1069 +v 52.0359 -16.3642 222.299 +v 191.096 16.3642 124.929 +v 169.92 16.3642 152.486 +v 191.096 -16.3642 124.929 +v 169.92 -16.3642 152.486 +v -71.513 16.3642 216.819 +v 221.557 16.3642 55.1101 +v -71.513 -16.3642 216.819 +v 221.557 -16.3642 55.1101 +v 210.626 16.3642 88.0998 +v 210.626 -16.3642 88.0998 +v 224.503 16.3642 41.5126 +v 224.503 -16.3642 41.5126 +v -51.4198 16.3642 222.443 +v -51.4198 -16.3642 222.443 +v 85.1739 16.3642 211.826 +v -58.1736 16.3642 220.773 +v 85.1739 -16.3642 211.826 +v -58.1736 -16.3642 220.773 +v 223.134 16.3642 48.3338 +v 223.134 -16.3642 48.3338 +v 160.316 16.3642 162.553 +v 160.316 -16.3642 162.553 +v 226.614 16.3642 27.761 +v 226.614 -16.3642 27.761 +v -78.0861 16.3642 214.54 +v -78.0861 -16.3642 214.54 +v 45.2384 16.3642 223.782 +v 45.2384 -16.3642 223.782 +v 58.785 16.3642 220.611 +v 58.785 -16.3642 220.611 +v -37.7753 16.3642 225.162 +v -37.7753 -16.3642 225.162 +v 207.844 16.3642 94.4765 +v 198.35 16.3642 113.057 +v 207.844 -16.3642 94.4765 +v 198.35 -16.3642 113.057 +v -64.8734 16.3642 218.898 +v -64.8734 -16.3642 218.898 +v 24.6194 16.3642 226.977 +v 24.6194 -16.3642 226.977 +v 228.202 16.3642 6.9564 +v 228.202 -16.3642 6.9564 +v -17.0615 16.3642 227.67 +v -17.0615 -16.3642 227.67 +v 219.775 16.3642 61.8352 +v 219.775 -16.3642 61.8352 +v 228.309 16.3642 0 +v 228.309 -16.3642 0 +v 38.399 16.3642 225.056 +v 38.399 -16.3642 225.056 +v 104.157 16.3642 203.165 +v 104.157 -16.3642 203.165 +v 109.264 15.6929 200.621 +v 151.152 -15.6929 171.291 +v 151.895 14.3329 170.98 +v 108.718 -14.3329 201.213 +v 108.456 13.6152 201.499 +v 152.253 -13.6152 170.832 +v 225.229 12.3112 41.6469 +v 225.229 -12.3112 41.6469 +v 216.298 12.3112 75.3499 +v 216.298 -12.3112 75.3499 +v 58.9752 12.3112 221.324 +v 58.9752 -12.3112 221.324 +v 228.622 12.3112 13.9513 +v 228.622 -12.3112 13.9513 +v 179.471 12.3112 142.312 +v 170.47 12.3112 152.979 +v 179.471 -12.3112 142.312 +v 170.47 -12.3112 152.979 +v 31.6258 12.3112 226.853 +v 31.6258 -12.3112 226.853 +v 24.6991 12.3112 227.711 +v 24.6991 -12.3112 227.711 +v 195.444 12.3112 119.433 +v 195.444 -12.3112 119.433 +v 229.047 12.3112 0 +v 85.4494 12.3112 212.511 +v 229.047 -12.3112 0 +v 85.4494 -12.3112 212.511 +v 208.516 12.3112 94.7821 +v 160.835 12.3112 163.079 +v 208.516 -12.3112 94.7821 +v 160.835 -12.3112 163.079 +v 183.724 12.3112 136.777 +v 183.724 -12.3112 136.777 +v 226.393 12.3112 34.765 +v 226.393 -12.3112 34.765 +v 223.855 12.3112 48.4901 +v 222.274 12.3112 55.2883 +v 223.855 -12.3112 48.4901 +v 222.274 -12.3112 55.2883 +v 52.2042 12.3112 223.018 +v 52.2042 -12.3112 223.018 +v 220.486 12.3112 62.0352 +v 165.729 12.3112 158.102 +v 220.486 -12.3112 62.0352 +v 165.729 -12.3112 158.102 +v 187.806 12.3112 131.116 +v 98.2349 12.3112 206.912 +v 187.806 -12.3112 131.116 +v 98.2349 -12.3112 206.912 +v -78.3387 12.3112 215.234 +v -78.3387 -12.3112 215.234 +v 228.09 12.3112 20.9108 +v 228.09 -12.3112 20.9108 +v 38.5232 12.3112 225.784 +v 38.5232 -12.3112 225.784 +v 72.3466 12.3112 217.321 +v 72.3466 -12.3112 217.321 +v 104.494 12.3112 203.822 +v 104.494 -12.3112 203.822 +v -71.7443 12.3112 217.521 +v -71.7443 -12.3112 217.521 +v 155.792 12.3112 167.903 +v 155.792 -12.3112 167.903 +v -30.9972 12.3112 226.94 +v -30.9972 -12.3112 226.94 +v 45.3848 12.3112 224.506 +v 45.3848 -12.3112 224.506 +v 3.80709 12.3112 229.015 +v 3.80709 -12.3112 229.015 +v 205.531 12.3112 101.091 +v 205.531 -12.3112 101.091 +v -65.0833 12.3112 219.606 +v -65.0833 -12.3112 219.606 +v -51.5862 12.3112 223.162 +v -51.5862 -12.3112 223.162 +v 218.494 12.3112 68.7245 +v 218.494 -12.3112 68.7245 +v -58.3618 12.3112 221.487 +v -58.3618 -12.3112 221.487 +v 213.902 12.3112 81.9054 +v 213.902 -12.3112 81.9054 +v 175.052 12.3112 147.714 +v 175.052 -12.3112 147.714 +v 91.8848 12.3112 209.809 +v 91.8848 -12.3112 209.809 +v 228.941 12.3112 6.9789 +v 228.941 -12.3112 6.9789 +v -24.0681 12.3112 227.779 +v -24.0681 -12.3112 227.779 +v -44.7626 12.3112 224.63 +v -44.7626 -12.3112 224.63 +v 227.348 12.3112 27.8508 +v 227.348 -12.3112 27.8508 +v -17.1167 12.3112 228.407 +v -17.1167 -12.3112 228.407 +v 17.7494 12.3112 228.358 +v 17.7494 -12.3112 228.358 +v -10.1494 12.3112 228.822 +v -10.1494 -12.3112 228.822 +v 211.307 12.3112 88.3848 +v 211.307 -12.3112 88.3848 +v -3.17262 12.3112 229.025 +v -3.17262 -12.3112 229.025 +v 65.6914 12.3112 219.425 +v 65.6914 -12.3112 219.425 +v 202.356 12.3112 107.307 +v -37.8975 12.3112 225.89 +v 202.356 -12.3112 107.307 +v -37.8975 -12.3112 225.89 +v 10.7832 12.3112 228.793 +v 10.7832 -12.3112 228.793 +v 198.992 12.3112 113.423 +v 198.992 -12.3112 113.423 +v 78.9347 12.3112 215.016 +v 78.9347 -12.3112 215.016 +v 191.714 12.3112 125.333 +v 191.714 -12.3112 125.333 +v 107.982 -12.17 202.021 +v 152.905 12.17 170.565 +v 153.191 -11.4687 170.449 +v 107.775 11.4687 202.25 +v 153.746 9.94438 170.226 +v 107.376 -9.94438 202.695 +v 107.214 9.24381 202.876 +v 153.972 -9.24381 170.136 +v 222.787 8.22568 55.416 +v 222.787 -8.22568 55.416 +v 211.795 8.22568 88.5889 +v 211.795 -8.22568 88.5889 +v 10.8082 8.22568 229.321 +v 10.8082 -8.22568 229.321 +v 31.6989 8.22568 227.377 +v 31.6989 -8.22568 227.377 +v 17.7904 8.22568 228.886 +v 17.7904 -8.22568 228.886 +v -71.91 8.22568 218.023 +v -71.91 -8.22568 218.023 +v -24.1237 8.22568 228.305 +v -24.1237 -8.22568 228.305 +v -37.9851 8.22568 226.412 +v -37.9851 -8.22568 226.412 +v 170.863 8.22568 153.333 +v 170.863 -8.22568 153.333 +v -44.866 8.22568 225.149 +v -44.866 -8.22568 225.149 +v 38.6121 8.22568 226.306 +v 38.6121 -8.22568 226.306 +v 229.15 8.22568 13.9835 +v 229.15 -8.22568 13.9835 +v 206.006 8.22568 101.325 +v 206.006 -8.22568 101.325 +v 156.151 8.22568 168.291 +v 156.151 -8.22568 168.291 +v 199.452 8.22568 113.685 +v 92.097 8.22568 210.293 +v 199.452 -8.22568 113.685 +v 92.097 -8.22568 210.293 +v 85.6467 8.22568 213.002 +v 85.6467 -8.22568 213.002 +v 227.872 8.22568 27.9151 +v 227.872 -8.22568 27.9151 +v 104.735 8.22568 204.293 +v 220.995 8.22568 62.1785 +v 195.895 8.22568 119.709 +v 79.117 8.22568 215.512 +v 220.995 -8.22568 62.1785 +v 195.895 -8.22568 119.709 +v 104.735 -8.22568 204.293 +v 79.117 -8.22568 215.512 +v 24.7561 8.22568 228.237 +v 24.7561 -8.22568 228.237 +v 192.157 8.22568 125.622 +v 184.148 8.22568 137.093 +v 192.157 -8.22568 125.622 +v 184.148 -8.22568 137.093 +v -10.1728 8.22568 229.35 +v -10.1728 -8.22568 229.35 +v 161.206 8.22568 163.455 +v 161.206 -8.22568 163.455 +v 229.469 8.22568 6.99502 +v 229.469 -8.22568 6.99502 +v 65.8431 8.22568 219.931 +v 65.8431 -8.22568 219.931 +v 229.576 8.22568 0 +v 229.576 -8.22568 0 +v 225.749 8.22568 41.7431 +v 179.886 8.22568 142.641 +v 225.749 -8.22568 41.7431 +v 179.886 -8.22568 142.641 +v 3.81588 8.22568 229.544 +v 3.81588 -8.22568 229.544 +v -58.4966 8.22568 221.998 +v -58.4966 -8.22568 221.998 +v 224.372 8.22568 48.6021 +v 224.372 -8.22568 48.6021 +v 208.997 8.22568 95.001 +v 175.456 8.22568 148.055 +v 208.997 -8.22568 95.001 +v 175.456 -8.22568 148.055 +v 72.5137 8.22568 217.823 +v 72.5137 -8.22568 217.823 +v 202.823 8.22568 107.555 +v 202.823 -8.22568 107.555 +v -31.0688 8.22568 227.464 +v -31.0688 -8.22568 227.464 +v 59.1114 8.22568 221.835 +v 59.1114 -8.22568 221.835 +v 45.4896 8.22568 225.024 +v 45.4896 -8.22568 225.024 +v 218.998 8.22568 68.8832 +v 218.998 -8.22568 68.8832 +v 228.617 8.22568 20.9591 +v 228.617 -8.22568 20.9591 +v 216.798 8.22568 75.5239 +v 216.798 -8.22568 75.5239 +v -3.17994 8.22568 229.554 +v -3.17994 -8.22568 229.554 +v -78.5196 8.22568 215.731 +v -78.5196 -8.22568 215.731 +v 166.112 8.22568 158.467 +v 166.112 -8.22568 158.467 +v 52.3248 8.22568 223.534 +v 52.3248 -8.22568 223.534 +v 214.396 8.22568 82.0945 +v 214.396 -8.22568 82.0945 +v 226.916 8.22568 34.8453 +v 226.916 -8.22568 34.8453 +v -51.7053 8.22568 223.678 +v -51.7053 -8.22568 223.678 +v 188.24 8.22568 131.419 +v 188.24 -8.22568 131.419 +v -17.1562 8.22568 228.934 +v -17.1562 -8.22568 228.934 +v -65.2336 8.22568 220.113 +v -65.2336 -8.22568 220.113 +v 98.4617 8.22568 207.39 +v 98.4617 -8.22568 207.39 +v 106.959 -7.99956 203.163 +v 154.329 7.99956 169.995 +v 106.779 6.97284 203.367 +v 154.582 -6.97284 169.895 +v 106.636 -6.02528 203.53 +v 154.784 6.02528 169.816 +v 155.019 -4.66752 169.724 +v 106.469 4.66752 203.72 +v 184.403 4.1183 137.283 +v 184.403 -4.1183 137.283 +v 92.2245 4.1183 210.585 +v 92.2245 -4.1183 210.585 +v 72.6141 4.1183 218.125 +v 72.6141 -4.1183 218.125 +v 31.7428 4.1183 227.692 +v -44.9282 4.1183 225.461 +v 31.7428 -4.1183 227.692 +v -44.9282 -4.1183 225.461 +v 38.6656 4.1183 226.619 +v 38.6656 -4.1183 226.619 +v 52.3973 4.1183 223.843 +v 52.3973 -4.1183 223.843 +v 180.135 4.1183 142.838 +v 180.135 -4.1183 142.838 +v 206.291 4.1183 101.465 +v -51.7769 4.1183 223.987 +v 229.894 4.1183 0 +v 206.291 -4.1183 101.465 +v -51.7769 -4.1183 223.987 +v 229.894 -4.1183 0 +v -78.6284 4.1183 216.03 +v -78.6284 -4.1183 216.03 +v 224.683 4.1183 48.6694 +v 224.683 -4.1183 48.6694 +v 226.062 4.1183 41.8009 +v -58.5776 4.1183 222.306 +v 226.062 -4.1183 41.8009 +v -58.5776 -4.1183 222.306 +v -10.1869 4.1183 229.668 +v -10.1869 -4.1183 229.668 +v 188.501 4.1183 131.601 +v 188.501 -4.1183 131.601 +v 17.815 4.1183 229.203 +v 17.815 -4.1183 229.203 +v 209.287 4.1183 95.1326 +v 209.287 -4.1183 95.1326 +v 227.23 4.1183 34.8936 +v 227.23 -4.1183 34.8936 +v 161.43 4.1183 163.682 +v 161.43 -4.1183 163.682 +v 217.098 4.1183 75.6285 +v 217.098 -4.1183 75.6285 +v 104.88 4.1183 204.576 +v 104.88 -4.1183 204.576 +v 45.5526 4.1183 225.336 +v 45.5526 -4.1183 225.336 +v 10.8231 4.1183 229.639 +v 10.8231 -4.1183 229.639 +v 171.1 4.1183 153.545 +v 171.1 -4.1183 153.545 +v -17.18 4.1183 229.251 +v -17.18 -4.1183 229.251 +v 85.7654 4.1183 213.297 +v 85.7654 -4.1183 213.297 +v 199.728 4.1183 113.842 +v 192.423 4.1183 125.796 +v 199.728 -4.1183 113.842 +v 192.423 -4.1183 125.796 +v -24.1571 4.1183 228.621 +v -24.1571 -4.1183 228.621 +v 175.699 4.1183 148.26 +v 175.699 -4.1183 148.26 +v 196.166 4.1183 119.875 +v 196.166 -4.1183 119.875 +v 229.787 4.1183 7.0047 +v 229.787 -4.1183 7.0047 +v -38.0377 4.1183 226.725 +v -38.0377 -4.1183 226.725 +v 59.1933 4.1183 222.143 +v 59.1933 -4.1183 222.143 +v -31.1118 4.1183 227.779 +v -31.1118 -4.1183 227.779 +v 228.188 4.1183 27.9538 +v 228.188 -4.1183 27.9538 +v 24.7904 4.1183 228.553 +v 24.7904 -4.1183 228.553 +v -65.3239 4.1183 220.418 +v -65.3239 -4.1183 220.418 +v 65.9343 4.1183 220.236 +v 65.9343 -4.1183 220.236 +v 166.342 4.1183 158.687 +v 166.342 -4.1183 158.687 +v 223.096 4.1183 55.4928 +v 223.096 -4.1183 55.4928 +v 221.301 4.1183 62.2646 +v -72.0096 4.1183 218.325 +v 221.301 -4.1183 62.2646 +v -72.0096 -4.1183 218.325 +v -3.18435 4.1183 229.872 +v -3.18435 -4.1183 229.872 +v 3.82116 4.1183 229.862 +v 3.82116 -4.1183 229.862 +v 228.934 4.1183 20.9881 +v 228.934 -4.1183 20.9881 +v 156.368 4.1183 168.524 +v 212.088 4.1183 88.7116 +v 156.368 -4.1183 168.524 +v 212.088 -4.1183 88.7116 +v 214.693 4.1183 82.2082 +v 214.693 -4.1183 82.2082 +v 229.467 4.1183 14.0029 +v 229.467 -4.1183 14.0029 +v 79.2265 4.1183 215.811 +v 79.2265 -4.1183 215.811 +v 219.302 4.1183 68.9786 +v 98.5981 4.1183 207.677 +v 219.302 -4.1183 68.9786 +v 98.5981 -4.1183 207.677 +v 203.104 4.1183 107.704 +v 203.104 -4.1183 107.704 +v 106.405 -4.02901 203.792 +v 155.109 4.02901 169.689 +v 106.283 2.33943 203.932 +v 155.282 -2.33943 169.622 +v 155.305 2.01815 169.613 +v 106.267 -2.01815 203.95 +v 32.6111 1.95944e-14 227.676 +v 221.272 1.95944e-14 62.76 +v 53.4178 1.95944e-14 223.711 +v 195.749 1.95944e-14 120.757 +v -58.4483 1.95944e-14 222.449 +v -30.7524 1.95944e-14 227.935 +v -9.65326 1.95944e-14 229.797 +v 224.707 1.95944e-14 49.0605 +v 226.107 1.95944e-14 42.1381 +v 39.5861 1.95944e-14 226.568 +v 211.915 1.95944e-14 89.3983 +v 202.792 1.95944e-14 108.514 +v 11.5278 1.95944e-14 229.711 +v 165.486 1.95944e-14 159.732 +v -16.7043 1.95944e-14 229.393 +v 155.37 1.95944e-14 169.588 +v -51.5908 1.95944e-14 224.139 +v 80.4253 1.95944e-14 215.48 +v -78.6646 1.95944e-14 216.129 +v 93.4995 1.95944e-14 210.138 +v 230 0 0 +v 179.479 1.95944e-14 143.831 +v 227.294 1.95944e-14 35.1759 +v 106.221 1.95944e-14 204.003 +v -65.2507 1.95944e-14 220.55 +v 87.0034 1.95944e-14 212.909 +v -2.59314 1.95944e-14 229.985 +v 174.978 1.95944e-14 149.274 +v 206.028 1.95944e-14 102.237 +v 25.6052 1.95944e-14 228.57 +v 46.5239 1.95944e-14 225.245 +v 191.949 1.95944e-14 126.71 +v 67.048 1.95944e-14 220.01 +v 18.5753 1.95944e-14 229.249 +v 229.025 1.95944e-14 21.1588 +v 160.504 1.95944e-14 164.738 +v 199.365 1.95944e-14 114.689 +v -71.9916 1.95944e-14 218.443 +v 99.9073 1.95944e-14 207.168 +v 209.07 1.95944e-14 95.8627 +v 219.24 1.95944e-14 69.5242 +v 217.003 1.95944e-14 76.2229 +v 4.46943 1.95944e-14 229.957 +v -37.7363 1.95944e-14 226.883 +v -23.7395 1.95944e-14 228.772 +v 183.81 1.95944e-14 138.253 +v 60.2613 1.95944e-14 221.965 +v 223.094 1.95944e-14 55.9366 +v -44.6846 1.95944e-14 225.618 +v 229.892 1.95944e-14 7.0618 +v 73.7714 1.95944e-14 217.848 +v 228.267 1.95944e-14 28.1806 +v 214.56 1.95944e-14 82.8497 +v 229.566 1.95944e-14 14.1169 +v 187.969 1.95944e-14 132.544 +v 170.312 1.95944e-14 154.576 +v -161.695 -63.9871 151.873 +v -161.695 63.9871 151.873 +v 198.017 -63.9871 -100 +v 198.017 63.9871 -100 +v -162.8 -61.4304 154.909 +v -162.8 61.4304 154.909 +v 201.247 -61.4304 -100 +v 201.247 61.4304 -100 +v -163.858 -58.7108 157.816 +v -163.858 58.7108 157.816 +v 204.342 -58.7108 -100 +v 204.342 58.7108 -100 +v -164.867 -55.8355 160.589 +v -164.867 55.8355 160.589 +v 207.292 -55.8355 -100 +v 207.292 55.8355 -100 +v -165.824 -52.8122 163.219 +v -165.824 52.8122 163.219 +v 210.091 -52.8122 -100 +v 210.091 52.8122 -100 +v -166.727 -49.6488 165.698 +v -166.727 49.6488 165.698 +v 212.73 -49.6488 -100 +v 212.73 49.6488 -100 +v 215.202 -46.3537 -100 +v 215.202 46.3537 -100 +v -167.573 -46.3537 168.022 +v -167.573 46.3537 168.022 +v 217.502 -42.9357 -100 +v 217.502 42.9357 -100 +v -168.359 -42.9357 170.183 +v -168.359 42.9357 170.183 +v 219.623 -39.4039 -100 +v 219.623 39.4039 -100 +v -169.085 -39.4039 172.176 +v -169.085 39.4039 172.176 +v -169.747 -35.7675 173.995 +v -169.747 35.7675 173.995 +v 221.559 -35.7675 -100 +v 221.559 35.7675 -100 +v -170.344 -32.0363 175.636 +v -170.344 32.0363 175.636 +v 223.305 -32.0363 -100 +v 223.305 32.0363 -100 +v 224.857 -28.2202 -100 +v 224.857 28.2202 -100 +v -170.875 -28.2202 177.095 +v -170.875 28.2202 177.095 +v -171.338 -24.3292 178.367 +v -171.338 24.3292 178.367 +v 226.211 -24.3292 -100 +v 226.211 24.3292 -100 +v 227.362 -20.3737 -100 +v 227.362 20.3737 -100 +v -171.732 -20.3737 179.449 +v -171.732 20.3737 179.449 +v 228.309 -16.3642 -100 +v 228.309 16.3642 -100 +v -172.055 -16.3642 180.338 +v -172.055 16.3642 180.338 +v 229.047 -12.3112 -100 +v 229.047 12.3112 -100 +v -172.308 -12.3112 181.032 +v -172.308 12.3112 181.032 +v 229.576 -8.22568 -100 +v 229.576 8.22568 -100 +v -172.489 -8.22568 181.529 +v -172.489 8.22568 181.529 +v -172.598 -4.1183 181.828 +v -172.598 4.1183 181.828 +v 229.894 -4.1183 -100 +v 229.894 4.1183 -100 +v 230 0 -100 +v -172.634 0 181.927 +g CATIASTL +f 17 1 39 +f 5 163 27 +f 7904 7807 7919 +f 7904 7877 7807 +f 7141 7089 7145 +f 7141 7137 7089 +f 7896 7859 7879 +f 7896 7916 7859 +f 7865 7934 7930 +f 7865 7930 7829 +f 14 61 1 +f 7857 7915 7934 +f 7857 7934 7865 +f 7837 7932 7915 +f 7837 7915 7857 +f 2 59 14 +f 7801 7903 7932 +f 7801 7932 7837 +f 7789 7889 7903 +f 7789 7903 7801 +f 7 93 2 +f 7787 7888 7889 +f 7787 7889 7789 +f 8 123 7 +f 7847 7928 7888 +f 7847 7888 7787 +f 7849 7882 7928 +f 7849 7928 7847 +f 29 147 8 +f 7869 7921 7882 +f 7869 7882 7849 +f 7805 7922 7921 +f 7805 7921 7869 +f 6 63 29 +f 7863 7933 7922 +f 7863 7922 7805 +f 7860 7891 7933 +f 7860 7933 7863 +f 30 77 6 +f 7799 7920 7891 +f 7799 7891 7860 +f 7779 7909 7920 +f 7779 7920 7799 +f 25 53 30 +f 7873 7892 7909 +f 7873 7909 7779 +f 11 101 25 +f 7819 7917 7892 +f 7819 7892 7873 +f 7827 7884 7917 +f 7827 7917 7819 +f 21 95 11 +f 7820 7912 7884 +f 7820 7884 7827 +f 7795 7935 7912 +f 7795 7912 7820 +f 4 113 21 +f 7763 7926 7935 +f 7763 7935 7795 +f 7777 7902 7926 +f 7777 7926 7763 +f 26 78 4 +f 7825 7908 7902 +f 7825 7902 7777 +f 7813 7936 7908 +f 7813 7908 7825 +f 33 79 26 +f 7845 7894 7936 +f 7845 7936 7813 +f 9 69 33 +f 7803 7916 7894 +f 7803 7894 7845 +f 7859 7916 7803 +f 12 80 9 +f 7357 7395 7403 +f 7357 7403 7353 +f 13 43 12 +f 7029 7006 7134 +f 6953 6987 6991 +f 28 102 13 +f 7131 7089 7137 +f 10 103 28 +f 7265 7145 7089 +f 32 127 10 +f 7517 7401 7385 +f 19 128 32 +f 7870 7900 7919 +f 7870 7919 7807 +f 7765 7906 7900 +f 7765 7900 7870 +f 15 44 19 +f 7817 7898 7906 +f 7817 7906 7765 +f 7867 7931 7898 +f 7867 7898 7817 +f 3 114 15 +f 7767 7913 7931 +f 7767 7931 7867 +f 7843 7927 7913 +f 7843 7913 7767 +f 35 57 3 +f 7833 7883 7927 +f 7833 7927 7843 +f 36 73 35 +f 7775 7911 7883 +f 7775 7883 7833 +f 7809 7890 7911 +f 7809 7911 7775 +f 34 135 36 +f 7773 7881 7890 +f 7773 7890 7809 +f 7769 7910 7881 +f 7769 7881 7773 +f 16 139 34 +f 7839 7914 7910 +f 7839 7910 7769 +f 7797 7893 7914 +f 7797 7914 7839 +f 22 153 16 +f 7811 7923 7893 +f 7811 7893 7797 +f 7855 7907 7923 +f 7855 7923 7811 +f 18 143 22 +f 7853 7887 7907 +f 7853 7907 7855 +f 20 119 18 +f 7793 7895 7887 +f 7793 7887 7853 +f 7815 7925 7895 +f 7815 7895 7793 +f 31 111 20 +f 7823 7886 7925 +f 7823 7925 7815 +f 7835 7924 7886 +f 7835 7886 7823 +f 23 67 31 +f 7831 7929 7924 +f 7831 7924 7835 +f 7770 7897 7929 +f 7770 7929 7831 +f 24 161 23 +f 7780 7885 7897 +f 7780 7897 7770 +f 7790 7905 7885 +f 7790 7885 7780 +f 27 37 24 +f 7841 7918 7905 +f 7841 7905 7790 +f 7850 7918 7841 +f 7859 7876 7879 +f 7519 7636 7579 +f 7579 7427 7519 +f 7519 7427 7403 +f 7353 7403 7427 +f 7357 7391 7395 +f 7268 7193 7148 +f 7067 7148 7193 +f 6953 6983 6987 +f 6897 7004 6994 +f 7385 7401 7393 +f 7251 7269 7265 +f 7757 7641 7679 +f 7123 7029 7134 +f 7123 7134 7136 +f 7123 7136 7139 +f 7123 7139 7144 +f 7123 7144 7148 +f 7123 7148 7067 +f 6895 6953 6991 +f 6895 6991 6996 +f 6895 6996 6998 +f 6895 6998 7006 +f 6895 7006 7029 +f 6919 6897 6994 +f 6919 6994 6990 +f 6919 6990 6986 +f 6919 6986 6983 +f 6919 6983 6953 +f 7899 7918 7785 +f 7785 7918 7850 +f 7785 7850 7735 +f 7735 7850 7653 +f 7735 7653 7567 +f 7567 7653 7577 +f 7567 7577 7489 +f 7489 7577 7469 +f 7489 7469 7337 +f 7337 7469 7373 +f 7337 7373 7151 +f 7151 7373 7175 +f 7151 7175 7093 +f 7093 7175 7017 +f 7093 7017 6913 +f 6913 7017 6969 +f 6913 6969 6747 +f 6747 6969 6731 +f 6747 6731 6607 +f 6607 6731 6619 +f 6607 6619 6573 +f 6573 6619 6529 +f 6573 6529 6413 +f 6413 6529 6349 +f 6413 6349 6237 +f 6237 6349 6295 +f 6237 6295 6081 +f 6081 6295 6177 +f 6081 6177 5963 +f 5963 6177 5991 +f 5963 5991 5813 +f 5813 5991 5907 +f 5813 5907 5697 +f 5697 5907 5779 +f 5697 5779 5553 +f 5553 5779 5595 +f 5553 5595 5515 +f 5515 5595 5431 +f 5515 5431 5409 +f 5409 5431 5377 +f 5409 5377 5243 +f 5243 5377 5193 +f 5243 5193 5035 +f 5035 5193 5123 +f 5035 5123 4997 +f 4997 5123 4943 +f 4997 4943 4833 +f 4833 4943 4873 +f 4833 4873 4641 +f 4641 4873 4693 +f 4641 4693 4591 +f 4591 4693 4595 +f 4591 4595 4423 +f 4423 4595 4383 +f 4423 4383 4301 +f 4301 4383 4329 +f 4301 4329 4173 +f 4173 4329 4221 +f 4173 4221 4027 +f 4027 4221 4053 +f 4027 4053 3911 +f 3911 4053 3857 +f 3911 3857 3783 +f 3783 3857 3811 +f 3783 3811 3643 +f 3643 3811 3691 +f 3643 3691 3533 +f 3533 3691 3497 +f 3533 3497 3327 +f 3327 3497 3393 +f 3327 3393 3175 +f 3175 3393 3213 +f 3175 3213 3133 +f 3133 3213 3141 +f 3133 3141 2931 +f 2931 3141 2937 +f 2931 2937 2893 +f 2893 2937 2894 +f 2893 2894 2701 +f 2701 2894 2665 +f 2701 2665 2521 +f 2521 2665 2505 +f 2521 2505 2417 +f 2417 2505 2435 +f 2417 2435 2283 +f 2283 2435 2219 +f 2283 2219 2185 +f 2185 2219 2205 +f 2185 2205 1967 +f 1967 2205 1989 +f 1967 1989 1881 +f 1881 1989 1843 +f 1881 1843 1763 +f 1763 1843 1769 +f 1763 1769 1599 +f 1599 1769 1693 +f 1599 1693 1549 +f 1549 1693 1455 +f 1549 1455 1349 +f 1349 1455 1327 +f 1349 1327 1283 +f 1283 1327 1279 +f 1283 1279 1077 +f 1077 1279 1145 +f 1077 1145 1007 +f 1007 1145 937 +f 1007 937 875 +f 875 937 855 +f 875 855 761 +f 761 855 753 +f 761 753 571 +f 571 753 557 +f 571 557 527 +f 527 557 437 +f 527 437 337 +f 337 437 329 +f 337 329 291 +f 291 329 249 +f 291 249 74 +f 74 249 163 +f 74 163 5 +f 7930 7901 7829 +f 7829 7901 7781 +f 7829 7781 7697 +f 7697 7781 7701 +f 7697 7701 7603 +f 7603 7701 7541 +f 7603 7541 7505 +f 7505 7541 7511 +f 7505 7511 7379 +f 7379 7511 7305 +f 7379 7305 7221 +f 7221 7305 7157 +f 7221 7157 7021 +f 7021 7157 7013 +f 7021 7013 6951 +f 6951 7013 6981 +f 6951 6981 6799 +f 6799 6981 6849 +f 6799 6849 6595 +f 6595 6849 6635 +f 6595 6635 6571 +f 6571 6635 6479 +f 6571 6479 6459 +f 6459 6479 6445 +f 6459 6445 6231 +f 6231 6445 6287 +f 6231 6287 6105 +f 6105 6287 6199 +f 6105 6199 5971 +f 5971 6199 6039 +f 5971 6039 5865 +f 5865 6039 5908 +f 5865 5908 5729 +f 5729 5908 5795 +f 5729 5795 5621 +f 5621 5795 5573 +f 5621 5573 5465 +f 5465 5573 5485 +f 5465 5485 5403 +f 5403 5485 5309 +f 5403 5309 5169 +f 5169 5309 5163 +f 5169 5163 5139 +f 5139 5163 5023 +f 5139 5023 4971 +f 4971 5023 4919 +f 4971 4919 4771 +f 4771 4919 4839 +f 4771 4839 4651 +f 4651 4839 4753 +f 4651 4753 4501 +f 4501 4753 4521 +f 4501 4521 4487 +f 4487 4521 4471 +f 4487 4471 4231 +f 4231 4471 4333 +f 4231 4333 4127 +f 4127 4333 4103 +f 4127 4103 3989 +f 3989 4103 3981 +f 3989 3981 3943 +f 3943 3981 3945 +f 3943 3945 3785 +f 3785 3945 3825 +f 3785 3825 3695 +f 3695 3825 3593 +f 3695 3593 3565 +f 3565 3593 3445 +f 3565 3445 3409 +f 3409 3445 3381 +f 3409 3381 3251 +f 3251 3381 3297 +f 3251 3297 3155 +f 3155 3297 3087 +f 3155 3087 2923 +f 2923 3087 3011 +f 2923 3011 2897 +f 2897 3011 2773 +f 2897 2773 2737 +f 2737 2773 2755 +f 2737 2755 2623 +f 2623 2755 2609 +f 2623 2609 2463 +f 2463 2609 2405 +f 2463 2405 2223 +f 2223 2405 2339 +f 2223 2339 2211 +f 2211 2339 2155 +f 2211 2155 2067 +f 2067 2155 1968 +f 2067 1968 1907 +f 1907 1968 1831 +f 1907 1831 1723 +f 1723 1831 1771 +f 1723 1771 1619 +f 1619 1771 1623 +f 1619 1623 1533 +f 1533 1623 1467 +f 1533 1467 1339 +f 1339 1467 1439 +f 1339 1439 1233 +f 1233 1439 1261 +f 1233 1261 1179 +f 1179 1261 1111 +f 1179 1111 1039 +f 1039 1111 1021 +f 1039 1021 927 +f 927 1021 813 +f 927 813 779 +f 779 813 715 +f 779 715 623 +f 623 715 581 +f 623 581 451 +f 451 581 439 +f 451 439 389 +f 389 439 293 +f 389 293 195 +f 195 293 251 +f 195 251 39 +f 39 251 81 +f 39 81 17 +f 7251 7265 7068 +f 7068 7265 7089 +f 7068 7089 6861 +f 6861 7089 6945 +f 6861 6945 6801 +f 6801 6945 6753 +f 6801 6753 6717 +f 6717 6753 6636 +f 6717 6636 6530 +f 6530 6636 6475 +f 6530 6475 6373 +f 6373 6475 6335 +f 6373 6335 6203 +f 6203 6335 6275 +f 6203 6275 6115 +f 6115 6275 6193 +f 6115 6193 6057 +f 6057 6193 5945 +f 6057 5945 5843 +f 5843 5945 5889 +f 5843 5889 5791 +f 5791 5889 5741 +f 5791 5741 5583 +f 5583 5741 5617 +f 5583 5617 5453 +f 5453 5617 5505 +f 5453 5505 5331 +f 5331 5505 5397 +f 5331 5397 5229 +f 5229 5397 5257 +f 5229 5257 5117 +f 5117 5257 5101 +f 5117 5101 4941 +f 4941 5101 4920 +f 4941 4920 4857 +f 4857 4920 4817 +f 4857 4817 4689 +f 4689 4817 4683 +f 4689 4683 4515 +f 4515 4683 4551 +f 4515 4551 4433 +f 4433 4551 4481 +f 4433 4481 4239 +f 4239 4481 4313 +f 4239 4313 4215 +f 4215 4313 4191 +f 4215 4191 3995 +f 3995 4191 4043 +f 3995 4043 3863 +f 3863 4043 3903 +f 3863 3903 3751 +f 3751 3903 3755 +f 3751 3755 3611 +f 3611 3755 3633 +f 3611 3633 3543 +f 3543 3633 3457 +f 3543 3457 3329 +f 3329 3457 3361 +f 3329 3361 3283 +f 3283 3361 3255 +f 3283 3255 3105 +f 3105 3255 3137 +f 3105 3137 3021 +f 3021 3137 3015 +f 3021 3015 2863 +f 2863 3015 2864 +f 2863 2864 2717 +f 2717 2864 2683 +f 2717 2683 2591 +f 2591 2683 2559 +f 2591 2559 2395 +f 2395 2559 2397 +f 2395 2397 2237 +f 2237 2397 2305 +f 2237 2305 2186 +f 2186 2305 2109 +f 2186 2109 1963 +f 1963 2109 2039 +f 1963 2039 1882 +f 1882 2039 1955 +f 1882 1955 1707 +f 1707 1955 1789 +f 1707 1789 1647 +f 1647 1789 1683 +f 1647 1683 1507 +f 1507 1683 1517 +f 1507 1517 1440 +f 1440 1517 1381 +f 1440 1381 1227 +f 1227 1381 1309 +f 1227 1309 1183 +f 1183 1309 1171 +f 1183 1171 949 +f 949 1171 991 +f 949 991 867 +f 867 991 817 +f 867 817 727 +f 727 817 762 +f 727 762 659 +f 659 762 572 +f 659 572 453 +f 453 572 465 +f 453 465 379 +f 379 465 399 +f 379 399 241 +f 241 399 197 +f 241 197 127 +f 127 197 103 +f 127 103 10 +f 7575 7521 7515 +f 7515 7521 7517 +f 7515 7517 7311 +f 7311 7517 7385 +f 7311 7385 7155 +f 7155 7385 7251 +f 7155 7251 7041 +f 7041 7251 7068 +f 7041 7068 6879 +f 6879 7068 6861 +f 6879 6861 6841 +f 6841 6861 6801 +f 6841 6801 6715 +f 6715 6801 6717 +f 6715 6717 6493 +f 6493 6717 6530 +f 6493 6530 6359 +f 6359 6530 6373 +f 6359 6373 6303 +f 6303 6373 6203 +f 6303 6203 6178 +f 6178 6203 6115 +f 6178 6115 6040 +f 6040 6115 6057 +f 6040 6057 5921 +f 5921 6057 5843 +f 5921 5843 5705 +f 5705 5843 5791 +f 5705 5791 5649 +f 5649 5791 5583 +f 5649 5583 5489 +f 5489 5583 5453 +f 5489 5453 5289 +f 5289 5453 5331 +f 5289 5331 5219 +f 5219 5331 5229 +f 5219 5229 5053 +f 5053 5229 5117 +f 5053 5117 4907 +f 4907 5117 4941 +f 4907 4941 4797 +f 4797 4941 4857 +f 4797 4857 4727 +f 4727 4857 4689 +f 4727 4689 4565 +f 4565 4689 4515 +f 4565 4515 4385 +f 4385 4515 4433 +f 4385 4433 4289 +f 4289 4433 4239 +f 4289 4239 4192 +f 4192 4239 4215 +f 4192 4215 4083 +f 4083 4215 3995 +f 4083 3995 3917 +f 3917 3995 3863 +f 3917 3863 3805 +f 3805 3863 3751 +f 3805 3751 3599 +f 3599 3751 3611 +f 3599 3611 3477 +f 3477 3611 3543 +f 3477 3543 3417 +f 3417 3543 3329 +f 3417 3329 3277 +f 3277 3329 3283 +f 3277 3283 3063 +f 3063 3283 3105 +f 3063 3105 2949 +f 2949 3105 3021 +f 2949 3021 2813 +f 2813 3021 2863 +f 2813 2863 2641 +f 2641 2863 2717 +f 2641 2717 2567 +f 2567 2717 2591 +f 2567 2591 2406 +f 2406 2591 2395 +f 2406 2395 2299 +f 2299 2395 2237 +f 2299 2237 2195 +f 2195 2237 2186 +f 2195 2186 1957 +f 1957 2186 1963 +f 1957 1963 1873 +f 1873 1963 1882 +f 1873 1882 1799 +f 1799 1882 1707 +f 1799 1707 1579 +f 1579 1707 1647 +f 1579 1647 1463 +f 1463 1647 1507 +f 1463 1507 1441 +f 1441 1507 1440 +f 1441 1440 1305 +f 1305 1440 1227 +f 1305 1227 1172 +f 1172 1227 1183 +f 1172 1183 1037 +f 1037 1183 949 +f 1037 949 909 +f 909 949 867 +f 909 867 769 +f 769 867 727 +f 769 727 573 +f 573 727 659 +f 573 659 440 +f 440 659 453 +f 440 453 363 +f 363 453 379 +f 363 379 242 +f 242 379 241 +f 242 241 155 +f 155 241 127 +f 155 127 32 +f 7865 7829 7665 +f 7665 7829 7697 +f 7665 7697 7529 +f 7529 7697 7603 +f 7529 7603 7415 +f 7415 7603 7505 +f 7415 7505 7363 +f 7363 7505 7379 +f 7363 7379 7181 +f 7181 7379 7221 +f 7181 7221 7027 +f 7027 7221 7021 +f 7027 7021 6873 +f 6873 7021 6951 +f 6873 6951 6817 +f 6817 6951 6799 +f 6817 6799 6617 +f 6617 6799 6595 +f 6617 6595 6547 +f 6547 6595 6571 +f 6547 6571 6419 +f 6419 6571 6459 +f 6419 6459 6259 +f 6259 6459 6231 +f 6259 6231 6173 +f 6173 6231 6105 +f 6173 6105 6017 +f 6017 6105 5971 +f 6017 5971 5811 +f 5811 5971 5865 +f 5811 5865 5753 +f 5753 5865 5729 +f 5753 5729 5667 +f 5667 5729 5621 +f 5667 5621 5527 +f 5527 5621 5465 +f 5527 5465 5287 +f 5287 5465 5403 +f 5287 5403 5199 +f 5199 5403 5169 +f 5199 5169 5125 +f 5125 5169 5139 +f 5125 5139 5013 +f 5013 5139 4971 +f 5013 4971 4849 +f 4849 4971 4771 +f 4849 4771 4671 +f 4671 4771 4651 +f 4671 4651 4555 +f 4555 4651 4501 +f 4555 4501 4381 +f 4381 4501 4487 +f 4381 4487 4319 +f 4319 4487 4231 +f 4319 4231 4209 +f 4209 4231 4127 +f 4209 4127 4035 +f 4035 4127 3989 +f 4035 3989 3935 +f 3935 3989 3943 +f 3935 3943 3739 +f 3739 3943 3785 +f 3739 3785 3657 +f 3657 3785 3695 +f 3657 3695 3563 +f 3563 3695 3565 +f 3563 3565 3375 +f 3375 3565 3409 +f 3375 3409 3293 +f 3293 3409 3251 +f 3293 3251 3115 +f 3115 3251 3155 +f 3115 3155 2933 +f 2933 3155 2923 +f 2933 2923 2827 +f 2827 2923 2897 +f 2827 2897 2753 +f 2753 2897 2737 +f 2753 2737 2531 +f 2531 2737 2623 +f 2531 2623 2385 +f 2385 2623 2463 +f 2385 2463 2269 +f 2269 2463 2223 +f 2269 2223 2105 +f 2105 2223 2211 +f 2105 2211 2053 +f 2053 2211 2067 +f 2053 2067 1879 +f 1879 2067 1907 +f 1879 1907 1797 +f 1797 1907 1723 +f 1797 1723 1689 +f 1689 1723 1619 +f 1689 1619 1475 +f 1475 1619 1533 +f 1475 1533 1401 +f 1401 1533 1339 +f 1401 1339 1303 +f 1303 1339 1233 +f 1303 1233 1101 +f 1101 1233 1179 +f 1101 1179 1057 +f 1057 1179 1039 +f 1057 1039 929 +f 929 1039 927 +f 929 927 723 +f 723 927 779 +f 723 779 555 +f 555 779 623 +f 555 623 499 +f 499 623 451 +f 499 451 387 +f 387 451 389 +f 387 389 239 +f 239 389 195 +f 239 195 137 +f 137 195 39 +f 137 39 1 +f 7857 7865 7729 +f 7729 7865 7665 +f 7729 7665 7569 +f 7569 7665 7529 +f 7569 7529 7423 +f 7423 7529 7415 +f 7423 7415 7289 +f 7289 7415 7363 +f 7289 7363 7259 +f 7259 7363 7181 +f 7259 7181 7045 +f 7045 7181 7027 +f 7045 7027 6905 +f 6905 7027 6873 +f 6905 6873 6751 +f 6751 6873 6817 +f 6751 6817 6709 +f 6709 6817 6617 +f 6709 6617 6485 +f 6485 6617 6547 +f 6485 6547 6449 +f 6449 6547 6419 +f 6449 6419 6257 +f 6257 6419 6259 +f 6257 6259 6117 +f 6117 6259 6173 +f 6117 6173 5983 +f 5983 6173 6017 +f 5983 6017 5827 +f 5827 6017 5811 +f 5827 5811 5711 +f 5711 5811 5753 +f 5711 5753 5613 +f 5613 5753 5667 +f 5613 5667 5517 +f 5517 5667 5527 +f 5517 5527 5303 +f 5303 5527 5287 +f 5303 5287 5189 +f 5189 5287 5199 +f 5189 5199 5055 +f 5055 5199 5125 +f 5055 5125 5011 +f 5011 5125 5013 +f 5011 5013 4799 +f 4799 5013 4849 +f 4799 4849 4739 +f 4739 4849 4671 +f 4739 4671 4593 +f 4593 4671 4555 +f 4593 4555 4489 +f 4489 4555 4381 +f 4489 4381 4347 +f 4347 4381 4319 +f 4347 4319 4109 +f 4109 4319 4209 +f 4109 4209 4015 +f 4015 4209 4035 +f 4015 4035 3957 +f 3957 4035 3935 +f 3957 3935 3719 +f 3719 3935 3739 +f 3719 3739 3627 +f 3627 3739 3657 +f 3627 3657 3483 +f 3483 3657 3563 +f 3483 3563 3353 +f 3353 3563 3375 +f 3353 3375 3219 +f 3219 3375 3293 +f 3219 3293 3161 +f 3161 3293 3115 +f 3161 3115 2927 +f 2927 3115 2933 +f 2927 2933 2891 +f 2891 2933 2827 +f 2891 2827 2751 +f 2751 2827 2753 +f 2751 2753 2625 +f 2625 2753 2531 +f 2625 2531 2441 +f 2441 2531 2385 +f 2441 2385 2329 +f 2329 2385 2269 +f 2329 2269 2189 +f 2189 2269 2105 +f 2189 2105 2027 +f 2027 2105 2053 +f 2027 2053 1935 +f 1935 2053 1879 +f 1935 1879 1729 +f 1729 1879 1797 +f 1729 1797 1659 +f 1659 1797 1689 +f 1659 1689 1537 +f 1537 1689 1475 +f 1537 1475 1317 +f 1317 1475 1401 +f 1317 1401 1281 +f 1281 1401 1303 +f 1281 1303 1099 +f 1099 1303 1101 +f 1099 1101 1027 +f 1027 1101 1057 +f 1027 1057 856 +f 856 1057 929 +f 856 929 701 +f 701 929 723 +f 701 723 629 +f 629 723 555 +f 629 555 523 +f 523 555 499 +f 523 499 317 +f 317 499 387 +f 317 387 205 +f 205 387 239 +f 205 239 61 +f 61 239 137 +f 61 137 1 +f 7837 7857 7677 +f 7677 7857 7729 +f 7677 7729 7609 +f 7609 7729 7569 +f 7609 7569 7487 +f 7487 7569 7423 +f 7487 7423 7377 +f 7377 7423 7289 +f 7377 7289 7173 +f 7173 7289 7259 +f 7173 7259 7117 +f 7117 7259 7045 +f 7117 7045 6917 +f 6917 7045 6905 +f 6917 6905 6825 +f 6825 6905 6751 +f 6825 6751 6655 +f 6655 6751 6709 +f 6655 6709 6593 +f 6593 6709 6485 +f 6593 6485 6343 +f 6343 6485 6449 +f 6343 6449 6253 +f 6253 6449 6257 +f 6253 6257 6169 +f 6169 6257 6117 +f 6169 6117 5951 +f 5951 6117 5983 +f 5951 5983 5835 +f 5835 5983 5827 +f 5835 5827 5769 +f 5769 5827 5711 +f 5769 5711 5587 +f 5587 5711 5613 +f 5587 5613 5483 +f 5483 5613 5517 +f 5483 5517 5333 +f 5333 5517 5303 +f 5333 5303 5167 +f 5167 5303 5189 +f 5167 5189 5091 +f 5091 5189 5055 +f 5091 5055 4995 +f 4995 5055 5011 +f 4995 5011 4761 +f 4761 5011 4799 +f 4761 4799 4649 +f 4649 4799 4739 +f 4649 4739 4609 +f 4609 4739 4593 +f 4609 4593 4401 +f 4401 4593 4489 +f 4401 4489 4249 +f 4249 4489 4347 +f 4249 4347 4139 +f 4139 4347 4109 +f 4139 4109 3997 +f 3997 4109 4015 +f 3997 4015 3875 +f 3875 4015 3957 +f 3875 3957 3827 +f 3827 3957 3719 +f 3827 3719 3587 +f 3587 3719 3627 +f 3587 3627 3439 +f 3439 3627 3483 +f 3439 3483 3347 +f 3347 3483 3353 +f 3347 3353 3187 +f 3187 3353 3219 +f 3187 3219 3069 +f 3069 3219 3161 +f 3069 3161 2999 +f 2999 3161 2927 +f 2999 2927 2887 +f 2887 2927 2891 +f 2887 2891 2657 +f 2657 2891 2751 +f 2657 2751 2509 +f 2509 2751 2625 +f 2509 2625 2477 +f 2477 2625 2441 +f 2477 2441 2215 +f 2215 2441 2329 +f 2215 2329 2135 +f 2135 2329 2189 +f 2135 2189 2047 +f 2047 2189 2027 +f 2047 2027 1909 +f 1909 2027 1935 +f 1909 1935 1809 +f 1809 1935 1729 +f 1809 1729 1679 +f 1679 1729 1659 +f 1679 1659 1569 +f 1569 1659 1537 +f 1569 1537 1399 +f 1399 1537 1317 +f 1399 1317 1221 +f 1221 1317 1281 +f 1221 1281 1165 +f 1165 1281 1099 +f 1165 1099 945 +f 945 1099 1027 +f 945 1027 823 +f 823 1027 856 +f 823 856 801 +f 801 856 701 +f 801 701 587 +f 587 701 629 +f 587 629 427 +f 427 629 523 +f 427 523 377 +f 377 523 317 +f 377 317 259 +f 259 317 205 +f 259 205 97 +f 97 205 61 +f 97 61 14 +f 7801 7837 7743 +f 7743 7837 7677 +f 7743 7677 7551 +f 7551 7677 7609 +f 7551 7609 7453 +f 7453 7609 7487 +f 7453 7487 7291 +f 7291 7487 7377 +f 7291 7377 7233 +f 7233 7377 7173 +f 7233 7173 7113 +f 7113 7173 7117 +f 7113 7117 6955 +f 6955 7117 6917 +f 6955 6917 6769 +f 6769 6917 6825 +f 6769 6825 6647 +f 6647 6825 6655 +f 6647 6655 6545 +f 6545 6655 6593 +f 6545 6593 6441 +f 6441 6593 6343 +f 6441 6343 6207 +f 6207 6343 6253 +f 6207 6253 6155 +f 6155 6253 6169 +f 6155 6169 5979 +f 5979 6169 5951 +f 5979 5951 5869 +f 5869 5951 5835 +f 5869 5835 5717 +f 5717 5835 5769 +f 5717 5769 5567 +f 5567 5769 5587 +f 5567 5587 5511 +f 5511 5587 5483 +f 5511 5483 5357 +f 5357 5483 5333 +f 5357 5333 5279 +f 5279 5333 5167 +f 5279 5167 5133 +f 5133 5167 5091 +f 5133 5091 4981 +f 4981 5091 4995 +f 4981 4995 4831 +f 4831 4995 4761 +f 4831 4761 4653 +f 4653 4761 4649 +f 4653 4649 4619 +f 4619 4649 4609 +f 4619 4609 4413 +f 4413 4609 4401 +f 4413 4401 4309 +f 4309 4401 4249 +f 4309 4249 4115 +f 4115 4249 4139 +f 4115 4139 4041 +f 4041 4139 3997 +f 4041 3997 3953 +f 3953 3997 3875 +f 3953 3875 3743 +f 3743 3875 3827 +f 3743 3827 3685 +f 3685 3827 3587 +f 3685 3587 3465 +f 3465 3587 3439 +f 3465 3439 3379 +f 3379 3439 3347 +f 3379 3347 3215 +f 3215 3347 3187 +f 3215 3187 3041 +f 3041 3187 3069 +f 3041 3069 3007 +f 3007 3069 2999 +f 3007 2999 2875 +f 2875 2999 2887 +f 2875 2887 2727 +f 2727 2887 2657 +f 2727 2657 2511 +f 2511 2657 2509 +f 2511 2509 2365 +f 2365 2509 2477 +f 2365 2477 2293 +f 2293 2477 2215 +f 2293 2215 2167 +f 2167 2215 2135 +f 2167 2135 1987 +f 1987 2135 2047 +f 1987 2047 1835 +f 1835 2047 1909 +f 1835 1909 1779 +f 1779 1909 1809 +f 1779 1809 1699 +f 1699 1809 1679 +f 1699 1679 1485 +f 1485 1679 1569 +f 1485 1569 1319 +f 1319 1569 1399 +f 1319 1399 1231 +f 1231 1399 1221 +f 1231 1221 1135 +f 1135 1221 1165 +f 1135 1165 1059 +f 1059 1165 945 +f 1059 945 821 +f 821 945 823 +f 821 823 711 +f 711 823 801 +f 711 801 609 +f 609 801 587 +f 609 587 487 +f 487 587 427 +f 487 427 297 +f 297 427 377 +f 297 377 277 +f 277 377 259 +f 277 259 59 +f 59 259 97 +f 59 97 14 +f 7789 7801 7703 +f 7703 7801 7743 +f 7703 7743 7523 +f 7523 7743 7551 +f 7523 7551 7475 +f 7475 7551 7453 +f 7475 7453 7315 +f 7315 7453 7291 +f 7315 7291 7176 +f 7176 7291 7233 +f 7176 7233 7081 +f 7081 7233 7113 +f 7081 7113 6939 +f 6939 7113 6955 +f 6939 6955 6795 +f 6795 6955 6769 +f 6795 6769 6633 +f 6633 6769 6647 +f 6633 6647 6527 +f 6527 6647 6545 +f 6527 6545 6447 +f 6447 6545 6441 +f 6447 6441 6265 +f 6265 6441 6207 +f 6265 6207 6187 +f 6187 6207 6155 +f 6187 6155 5969 +f 5969 6155 5979 +f 5969 5979 5847 +f 5847 5979 5869 +f 5847 5869 5789 +f 5789 5869 5717 +f 5789 5717 5593 +f 5593 5717 5567 +f 5593 5567 5433 +f 5433 5567 5511 +f 5433 5511 5363 +f 5363 5511 5357 +f 5363 5357 5233 +f 5233 5357 5279 +f 5233 5279 5051 +f 5051 5279 5133 +f 5051 5133 4939 +f 4939 5133 4981 +f 4939 4981 4765 +f 4765 4981 4831 +f 4765 4831 4673 +f 4673 4831 4653 +f 4673 4653 4543 +f 4543 4653 4619 +f 4543 4619 4469 +f 4469 4619 4413 +f 4469 4413 4275 +f 4275 4413 4309 +f 4275 4309 4151 +f 4151 4309 4115 +f 4151 4115 4063 +f 4063 4115 4041 +f 4063 4041 3927 +f 3927 4041 3953 +f 3927 3953 3815 +f 3815 3953 3743 +f 3815 3743 3579 +f 3579 3743 3685 +f 3579 3685 3491 +f 3491 3685 3465 +f 3491 3465 3397 +f 3397 3465 3379 +f 3397 3379 3179 +f 3179 3379 3215 +f 3179 3215 3059 +f 3059 3215 3041 +f 3059 3041 2913 +f 2913 3041 3007 +f 2913 3007 2783 +f 2783 3007 2875 +f 2783 2875 2729 +f 2729 2875 2727 +f 2729 2727 2613 +f 2613 2727 2511 +f 2613 2511 2375 +f 2375 2511 2365 +f 2375 2365 2335 +f 2335 2365 2293 +f 2335 2293 2107 +f 2107 2293 2167 +f 2107 2167 2059 +f 2059 2167 1987 +f 2059 1987 1903 +f 1903 1987 1835 +f 1903 1835 1825 +f 1825 1835 1779 +f 1825 1779 1631 +f 1631 1779 1699 +f 1631 1699 1491 +f 1491 1699 1485 +f 1491 1485 1350 +f 1350 1485 1319 +f 1350 1319 1262 +f 1262 1319 1231 +f 1262 1231 1079 +f 1079 1231 1135 +f 1079 1135 1019 +f 1019 1135 1059 +f 1019 1059 893 +f 893 1059 821 +f 893 821 703 +f 703 821 711 +f 703 711 591 +f 591 711 609 +f 591 609 537 +f 537 609 487 +f 537 487 303 +f 303 487 297 +f 303 297 189 +f 189 297 277 +f 189 277 148 +f 148 277 59 +f 148 59 2 +f 7787 7789 7711 +f 7711 7789 7703 +f 7711 7703 7553 +f 7553 7703 7523 +f 7553 7523 7483 +f 7483 7523 7475 +f 7483 7475 7325 +f 7325 7475 7315 +f 7325 7315 7203 +f 7203 7315 7176 +f 7203 7176 7082 +f 7082 7176 7081 +f 7082 7081 6937 +f 6937 7081 6939 +f 6937 6939 6815 +f 6815 6939 6795 +f 6815 6795 6649 +f 6649 6795 6633 +f 6649 6633 6511 +f 6511 6633 6527 +f 6511 6527 6431 +f 6431 6527 6447 +f 6431 6447 6233 +f 6233 6447 6265 +f 6233 6265 6093 +f 6093 6265 6187 +f 6093 6187 6063 +f 6063 6187 5969 +f 6063 5969 5829 +f 5829 5969 5847 +f 5829 5847 5685 +f 5685 5847 5789 +f 5685 5789 5669 +f 5669 5789 5593 +f 5669 5593 5463 +f 5463 5593 5433 +f 5463 5433 5323 +f 5323 5433 5363 +f 5323 5363 5185 +f 5185 5363 5233 +f 5185 5233 5149 +f 5149 5233 5051 +f 5149 5051 4979 +f 4979 5051 4939 +f 4979 4939 4795 +f 4795 4939 4765 +f 4795 4765 4645 +f 4645 4765 4673 +f 4645 4673 4531 +f 4531 4673 4543 +f 4531 4543 4363 +f 4363 4543 4469 +f 4363 4469 4267 +f 4267 4469 4275 +f 4267 4275 4197 +f 4197 4275 4151 +f 4197 4151 4011 +f 4011 4151 4063 +f 4011 4063 3847 +f 3847 4063 3927 +f 3847 3927 3779 +f 3779 3927 3815 +f 3779 3815 3591 +f 3591 3815 3579 +f 3591 3579 3511 +f 3511 3579 3491 +f 3511 3491 3429 +f 3429 3491 3397 +f 3429 3397 3211 +f 3211 3397 3179 +f 3211 3179 3057 +f 3057 3179 3059 +f 3057 3059 3005 +f 3005 3059 2913 +f 3005 2913 2819 +f 2819 2913 2783 +f 2819 2783 2639 +f 2639 2783 2729 +f 2639 2729 2535 +f 2535 2729 2613 +f 2535 2613 2361 +f 2361 2613 2375 +f 2361 2375 2273 +f 2273 2375 2335 +f 2273 2335 2203 +f 2203 2335 2107 +f 2203 2107 1995 +f 1995 2107 2059 +f 1995 2059 1949 +f 1949 2059 1903 +f 1949 1903 1701 +f 1701 1903 1825 +f 1701 1825 1691 +f 1691 1825 1631 +f 1691 1631 1449 +f 1449 1631 1491 +f 1449 1491 1321 +f 1321 1491 1350 +f 1321 1350 1293 +f 1293 1350 1262 +f 1293 1262 1129 +f 1129 1262 1079 +f 1129 1079 1049 +f 1049 1079 1019 +f 1049 1019 889 +f 889 1019 893 +f 889 893 707 +f 707 893 703 +f 707 703 641 +f 641 703 591 +f 641 591 425 +f 425 591 537 +f 425 537 411 +f 411 537 303 +f 411 303 185 +f 185 303 189 +f 185 189 93 +f 93 189 148 +f 93 148 2 +f 7847 7787 7643 +f 7643 7787 7711 +f 7643 7711 7554 +f 7554 7711 7553 +f 7554 7553 7470 +f 7470 7553 7483 +f 7470 7483 7301 +f 7301 7483 7325 +f 7301 7325 7227 +f 7227 7325 7203 +f 7227 7203 7039 +f 7039 7203 7082 +f 7039 7082 6869 +f 6869 7082 6937 +f 6869 6937 6819 +f 6819 6937 6815 +f 6819 6815 6665 +f 6665 6815 6649 +f 6665 6649 6501 +f 6501 6649 6511 +f 6501 6511 6453 +f 6453 6511 6431 +f 6453 6431 6273 +f 6273 6431 6233 +f 6273 6233 6129 +f 6129 6233 6093 +f 6129 6093 6059 +f 6059 6093 6063 +f 6059 6063 5845 +f 5845 6063 5829 +f 5845 5829 5742 +f 5742 5829 5685 +f 5742 5685 5607 +f 5607 5685 5669 +f 5607 5669 5425 +f 5425 5669 5463 +f 5425 5463 5413 +f 5413 5463 5323 +f 5413 5323 5227 +f 5227 5323 5185 +f 5227 5185 5113 +f 5113 5185 5149 +f 5113 5149 4983 +f 4983 5149 4979 +f 4983 4979 4789 +f 4789 4979 4795 +f 4789 4795 4643 +f 4643 4795 4645 +f 4643 4645 4547 +f 4547 4645 4531 +f 4547 4531 4434 +f 4434 4531 4363 +f 4434 4363 4327 +f 4327 4363 4267 +f 4327 4267 4131 +f 4131 4267 4197 +f 4131 4197 4079 +f 4079 4197 4011 +f 4079 4011 3883 +f 3883 4011 3847 +f 3883 3847 3791 +f 3791 3847 3779 +f 3791 3779 3601 +f 3601 3779 3591 +f 3601 3591 3531 +f 3531 3591 3511 +f 3531 3511 3395 +f 3395 3511 3429 +f 3395 3429 3291 +f 3291 3429 3211 +f 3291 3211 3147 +f 3147 3211 3057 +f 3147 3057 2941 +f 2941 3057 3005 +f 2941 3005 2805 +f 2805 3005 2819 +f 2805 2819 2723 +f 2723 2819 2639 +f 2723 2639 2529 +f 2529 2639 2535 +f 2529 2535 2369 +f 2369 2535 2361 +f 2369 2361 2317 +f 2317 2361 2273 +f 2317 2273 2191 +f 2191 2273 2203 +f 2191 2203 1973 +f 1973 2203 1995 +f 1973 1995 1939 +f 1939 1995 1949 +f 1939 1949 1815 +f 1815 1949 1701 +f 1815 1701 1635 +f 1635 1701 1691 +f 1635 1691 1518 +f 1518 1691 1449 +f 1518 1449 1341 +f 1341 1449 1321 +f 1341 1321 1253 +f 1253 1321 1293 +f 1253 1293 1187 +f 1187 1293 1129 +f 1187 1129 995 +f 995 1129 1049 +f 995 1049 807 +f 807 1049 889 +f 807 889 716 +f 716 889 707 +f 716 707 595 +f 595 707 641 +f 595 641 535 +f 535 641 425 +f 535 425 313 +f 313 425 411 +f 313 411 289 +f 289 411 185 +f 289 185 123 +f 123 185 93 +f 123 93 7 +f 7849 7847 7680 +f 7680 7847 7643 +f 7680 7643 7559 +f 7559 7643 7554 +f 7559 7554 7509 +f 7509 7554 7470 +f 7509 7470 7347 +f 7347 7470 7301 +f 7347 7301 7163 +f 7163 7301 7227 +f 7163 7227 7025 +f 7025 7227 7039 +f 7025 7039 6979 +f 6979 7039 6869 +f 6979 6869 6737 +f 6737 6869 6819 +f 6737 6819 6601 +f 6601 6819 6665 +f 6601 6665 6477 +f 6477 6665 6501 +f 6477 6501 6379 +f 6379 6501 6453 +f 6379 6453 6317 +f 6317 6453 6273 +f 6317 6273 6167 +f 6167 6273 6129 +f 6167 6129 6015 +f 6015 6129 6059 +f 6015 6059 5831 +f 5831 6059 5845 +f 5831 5845 5759 +f 5759 5845 5742 +f 5759 5742 5623 +f 5623 5742 5607 +f 5623 5607 5541 +f 5541 5607 5425 +f 5541 5425 5351 +f 5351 5425 5413 +f 5351 5413 5197 +f 5197 5413 5227 +f 5197 5227 5145 +f 5145 5227 5113 +f 5145 5113 4915 +f 4915 5113 4983 +f 4915 4983 4863 +f 4863 4983 4789 +f 4863 4789 4679 +f 4679 4789 4643 +f 4679 4643 4569 +f 4569 4643 4547 +f 4569 4547 4371 +f 4371 4547 4434 +f 4371 4434 4311 +f 4311 4434 4327 +f 4311 4327 4133 +f 4133 4327 4131 +f 4133 4131 4047 +f 4047 4131 4079 +f 4047 4079 3909 +f 3909 4079 3883 +f 3909 3883 3819 +f 3819 3883 3791 +f 3819 3791 3665 +f 3665 3791 3601 +f 3665 3601 3453 +f 3453 3601 3531 +f 3453 3531 3357 +f 3357 3531 3395 +f 3357 3395 3273 +f 3273 3395 3291 +f 3273 3291 3091 +f 3091 3291 3147 +f 3091 3147 2903 +f 2903 3147 2941 +f 2903 2941 2815 +f 2815 2941 2805 +f 2815 2805 2756 +f 2756 2805 2723 +f 2756 2723 2607 +f 2607 2723 2529 +f 2607 2529 2379 +f 2379 2529 2369 +f 2379 2369 2245 +f 2245 2369 2317 +f 2245 2317 2110 +f 2110 2317 2191 +f 2110 2191 1991 +f 1991 2191 1973 +f 1991 1973 1855 +f 1855 1973 1939 +f 1855 1939 1772 +f 1772 1939 1815 +f 1772 1815 1661 +f 1661 1815 1635 +f 1661 1635 1550 +f 1550 1635 1518 +f 1550 1518 1435 +f 1435 1518 1341 +f 1435 1341 1189 +f 1189 1341 1253 +f 1189 1253 1103 +f 1103 1253 1187 +f 1103 1187 1041 +f 1041 1187 995 +f 1041 995 825 +f 825 995 807 +f 825 807 725 +f 725 807 716 +f 725 716 603 +f 603 716 595 +f 603 595 431 +f 431 595 535 +f 431 535 333 +f 333 535 313 +f 333 313 265 +f 265 313 289 +f 265 289 141 +f 141 289 123 +f 141 123 8 +f 7869 7849 7727 +f 7727 7849 7680 +f 7727 7680 7593 +f 7593 7680 7559 +f 7593 7559 7411 +f 7411 7559 7509 +f 7411 7509 7333 +f 7333 7509 7347 +f 7333 7347 7237 +f 7237 7347 7163 +f 7237 7163 7018 +f 7018 7163 7025 +f 7018 7025 6975 +f 6975 7025 6979 +f 6975 6979 6745 +f 6745 6979 6737 +f 6745 6737 6653 +f 6653 6737 6601 +f 6653 6601 6494 +f 6494 6601 6477 +f 6494 6477 6374 +f 6374 6477 6379 +f 6374 6379 6305 +f 6305 6379 6317 +f 6305 6317 6087 +f 6087 6317 6167 +f 6087 6167 6009 +f 6009 6167 6015 +f 6009 6015 5839 +f 5839 6015 5831 +f 5839 5831 5777 +f 5777 5831 5759 +f 5777 5759 5601 +f 5601 5759 5623 +f 5601 5623 5529 +f 5529 5623 5541 +f 5529 5541 5295 +f 5295 5541 5351 +f 5295 5351 5277 +f 5277 5351 5197 +f 5277 5197 5027 +f 5027 5197 5145 +f 5027 5145 5001 +f 5001 5145 4915 +f 5001 4915 4781 +f 4781 4915 4863 +f 4781 4863 4680 +f 4680 4863 4679 +f 4680 4679 4503 +f 4503 4679 4569 +f 4503 4569 4457 +f 4457 4569 4371 +f 4457 4371 4241 +f 4241 4371 4311 +f 4241 4311 4135 +f 4135 4311 4133 +f 4135 4133 4061 +f 4061 4133 4047 +f 4061 4047 3871 +f 3871 4047 3909 +f 3871 3909 3795 +f 3795 3909 3819 +f 3795 3819 3697 +f 3697 3819 3665 +f 3697 3665 3489 +f 3489 3665 3453 +f 3489 3453 3418 +f 3418 3453 3357 +f 3418 3357 3259 +f 3259 3357 3273 +f 3259 3273 3151 +f 3151 3273 3091 +f 3151 3091 2917 +f 2917 3091 2903 +f 2917 2903 2779 +f 2779 2903 2815 +f 2779 2815 2637 +f 2637 2815 2756 +f 2637 2756 2499 +f 2499 2756 2607 +f 2499 2607 2371 +f 2371 2607 2379 +f 2371 2379 2253 +f 2253 2379 2245 +f 2253 2245 2175 +f 2175 2245 2110 +f 2175 2110 2011 +f 2011 2110 1991 +f 2011 1991 1904 +f 1904 1991 1855 +f 1904 1855 1783 +f 1783 1855 1772 +f 1783 1772 1611 +f 1611 1772 1661 +f 1611 1661 1535 +f 1535 1661 1550 +f 1535 1550 1343 +f 1343 1550 1435 +f 1343 1435 1213 +f 1213 1435 1189 +f 1213 1189 1071 +f 1071 1189 1103 +f 1071 1103 1008 +f 1008 1103 1041 +f 1008 1041 879 +f 879 1041 825 +f 879 825 803 +f 803 825 725 +f 803 725 596 +f 596 725 603 +f 596 603 511 +f 511 603 431 +f 511 431 315 +f 315 431 333 +f 315 333 225 +f 225 333 265 +f 225 265 147 +f 147 265 141 +f 147 141 8 +f 7805 7869 7731 +f 7731 7869 7727 +f 7731 7727 7525 +f 7525 7727 7593 +f 7525 7593 7461 +f 7461 7593 7411 +f 7461 7411 7303 +f 7303 7411 7333 +f 7303 7333 7191 +f 7191 7333 7237 +f 7191 7237 7125 +f 7125 7237 7018 +f 7125 7018 6971 +f 6971 7018 6975 +f 6971 6975 6835 +f 6835 6975 6745 +f 6835 6745 6675 +f 6675 6745 6653 +f 6675 6653 6581 +f 6581 6653 6494 +f 6581 6494 6421 +f 6421 6494 6374 +f 6421 6374 6219 +f 6219 6374 6305 +f 6219 6305 6127 +f 6127 6305 6087 +f 6127 6087 6025 +f 6025 6087 6009 +f 6025 6009 5879 +f 5879 6009 5839 +f 5879 5839 5747 +f 5747 5839 5777 +f 5747 5777 5625 +f 5625 5777 5601 +f 5625 5601 5441 +f 5441 5601 5529 +f 5441 5529 5297 +f 5297 5529 5295 +f 5297 5295 5205 +f 5205 5295 5277 +f 5205 5277 5041 +f 5041 5277 5027 +f 5041 5027 4929 +f 4929 5027 5001 +f 4929 5001 4773 +f 4773 5001 4781 +f 4773 4781 4749 +f 4749 4781 4680 +f 4749 4680 4605 +f 4605 4680 4503 +f 4605 4503 4367 +f 4367 4503 4457 +f 4367 4457 4281 +f 4281 4457 4241 +f 4281 4241 4183 +f 4183 4241 4135 +f 4183 4135 4081 +f 4081 4135 4061 +f 4081 4061 3885 +f 3885 4061 3871 +f 3885 3871 3761 +f 3761 3871 3795 +f 3761 3795 3693 +f 3693 3795 3697 +f 3693 3697 3463 +f 3463 3697 3489 +f 3463 3489 3331 +f 3331 3489 3418 +f 3331 3418 3183 +f 3183 3418 3259 +f 3183 3259 3049 +f 3049 3259 3151 +f 3049 3151 3027 +f 3027 3151 2917 +f 3027 2917 2774 +f 2774 2917 2779 +f 2774 2779 2745 +f 2745 2779 2637 +f 2745 2637 2523 +f 2523 2637 2499 +f 2523 2499 2423 +f 2423 2499 2371 +f 2423 2371 2235 +f 2235 2371 2253 +f 2235 2253 2093 +f 2093 2253 2175 +f 2093 2175 2007 +f 2007 2175 2011 +f 2007 2011 1874 +f 1874 2011 1904 +f 1874 1904 1811 +f 1811 1904 1783 +f 1811 1783 1669 +f 1669 1783 1611 +f 1669 1611 1468 +f 1468 1611 1535 +f 1468 1535 1373 +f 1373 1535 1343 +f 1373 1343 1284 +f 1284 1343 1213 +f 1284 1213 1085 +f 1085 1213 1071 +f 1085 1071 1033 +f 1033 1071 1008 +f 1033 1008 915 +f 915 1008 879 +f 915 879 754 +f 754 879 803 +f 754 803 588 +f 588 803 596 +f 588 596 461 +f 461 596 511 +f 461 511 391 +f 391 511 315 +f 391 315 229 +f 229 315 225 +f 229 225 45 +f 45 225 147 +f 45 147 29 +f 7863 7805 7741 +f 7741 7805 7731 +f 7741 7731 7597 +f 7597 7731 7525 +f 7597 7525 7428 +f 7428 7525 7461 +f 7428 7461 7367 +f 7367 7461 7303 +f 7367 7303 7185 +f 7185 7303 7191 +f 7185 7191 7061 +f 7061 7191 7125 +f 7061 7125 6863 +f 6863 7125 6971 +f 6863 6971 6741 +f 6741 6971 6835 +f 6741 6835 6657 +f 6657 6835 6675 +f 6657 6675 6577 +f 6577 6675 6581 +f 6577 6581 6455 +f 6455 6581 6421 +f 6455 6421 6299 +f 6299 6421 6219 +f 6299 6219 6089 +f 6089 6219 6127 +f 6089 6127 6011 +f 6011 6127 6025 +f 6011 6025 5909 +f 5909 6025 5879 +f 5909 5879 5785 +f 5785 5879 5747 +f 5785 5747 5579 +f 5579 5747 5625 +f 5579 5625 5461 +f 5461 5625 5441 +f 5461 5441 5378 +f 5378 5441 5297 +f 5378 5297 5261 +f 5261 5297 5205 +f 5261 5205 5033 +f 5033 5205 5041 +f 5033 5041 4931 +f 4931 5041 4929 +f 4931 4929 4851 +f 4851 4929 4773 +f 4851 4773 4657 +f 4657 4773 4749 +f 4657 4749 4525 +f 4525 4749 4605 +f 4525 4605 4421 +f 4421 4605 4367 +f 4421 4367 4334 +f 4334 4367 4281 +f 4334 4281 4167 +f 4167 4281 4183 +f 4167 4183 4001 +f 4001 4183 4081 +f 4001 4081 3947 +f 3947 4081 3885 +f 3947 3885 3767 +f 3767 3885 3761 +f 3767 3761 3603 +f 3603 3761 3693 +f 3603 3693 3539 +f 3539 3693 3463 +f 3539 3463 3405 +f 3405 3463 3331 +f 3405 3331 3289 +f 3289 3331 3183 +f 3289 3183 3089 +f 3089 3183 3049 +f 3089 3049 3017 +f 3017 3049 3027 +f 3017 3027 2777 +f 2777 3027 2774 +f 2777 2774 2659 +f 2659 2774 2745 +f 2659 2745 2577 +f 2577 2745 2523 +f 2577 2523 2467 +f 2467 2523 2423 +f 2467 2423 2271 +f 2271 2423 2235 +f 2271 2235 2089 +f 2089 2235 2093 +f 2089 2093 2012 +f 2012 2093 2007 +f 2012 2007 1943 +f 1943 2007 1874 +f 1943 1874 1741 +f 1741 1874 1811 +f 1741 1811 1694 +f 1694 1811 1669 +f 1694 1669 1459 +f 1459 1669 1468 +f 1459 1468 1397 +f 1397 1468 1373 +f 1397 1373 1273 +f 1273 1373 1284 +f 1273 1284 1095 +f 1095 1284 1085 +f 1095 1085 1034 +f 1034 1085 1033 +f 1034 1033 811 +f 811 1033 915 +f 811 915 755 +f 755 915 754 +f 755 754 627 +f 627 754 588 +f 627 588 539 +f 539 588 461 +f 539 461 339 +f 339 461 391 +f 339 391 279 +f 279 391 229 +f 279 229 63 +f 63 229 45 +f 63 45 29 +f 7860 7863 7645 +f 7645 7863 7741 +f 7645 7741 7617 +f 7617 7741 7597 +f 7617 7597 7473 +f 7473 7597 7428 +f 7473 7428 7285 +f 7285 7428 7367 +f 7285 7367 7167 +f 7167 7367 7185 +f 7167 7185 7115 +f 7115 7185 7061 +f 7115 7061 6931 +f 6931 7061 6863 +f 6931 6863 6853 +f 6853 6863 6741 +f 6853 6741 6699 +f 6699 6741 6657 +f 6699 6657 6585 +f 6585 6657 6577 +f 6585 6577 6407 +f 6407 6577 6455 +f 6407 6455 6249 +f 6249 6455 6299 +f 6249 6299 6145 +f 6145 6299 6089 +f 6145 6089 5957 +f 5957 6089 6011 +f 5957 6011 5821 +f 5821 6011 5909 +f 5821 5909 5755 +f 5755 5909 5785 +f 5755 5785 5643 +f 5643 5785 5579 +f 5643 5579 5521 +f 5521 5579 5461 +f 5521 5461 5321 +f 5321 5461 5378 +f 5321 5378 5181 +f 5181 5378 5261 +f 5181 5261 5143 +f 5143 5261 5033 +f 5143 5033 4959 +f 4959 5033 4931 +f 4959 4931 4791 +f 4791 4931 4851 +f 4791 4851 4631 +f 4631 4851 4657 +f 4631 4657 4575 +f 4575 4657 4525 +f 4575 4525 4386 +f 4386 4525 4421 +f 4386 4421 4282 +f 4282 4421 4334 +f 4282 4334 4201 +f 4201 4334 4167 +f 4201 4167 4009 +f 4009 4167 4001 +f 4009 4001 3861 +f 3861 4001 3947 +f 3861 3947 3799 +f 3799 3947 3767 +f 3799 3767 3617 +f 3617 3767 3603 +f 3617 3603 3517 +f 3517 3603 3539 +f 3517 3539 3401 +f 3401 3539 3405 +f 3401 3405 3253 +f 3253 3405 3289 +f 3253 3289 3092 +f 3092 3289 3089 +f 3092 3089 2921 +f 2921 3089 3017 +f 2921 3017 2877 +f 2877 3017 2777 +f 2877 2777 2681 +f 2681 2777 2659 +f 2681 2659 2585 +f 2585 2659 2577 +f 2585 2577 2469 +f 2469 2577 2467 +f 2469 2467 2255 +f 2255 2467 2271 +f 2255 2271 2156 +f 2156 2271 2089 +f 2156 2089 1996 +f 1996 2089 2012 +f 1996 2012 1856 +f 1856 2012 1943 +f 1856 1943 1751 +f 1751 1943 1741 +f 1751 1741 1684 +f 1684 1741 1694 +f 1684 1694 1479 +f 1479 1694 1459 +f 1479 1459 1419 +f 1419 1459 1397 +f 1419 1397 1294 +f 1294 1397 1273 +f 1294 1273 1072 +f 1072 1273 1095 +f 1072 1095 950 +f 950 1095 1034 +f 950 1034 841 +f 841 1034 811 +f 841 811 763 +f 763 811 755 +f 763 755 549 +f 549 755 627 +f 549 627 473 +f 473 627 539 +f 473 539 340 +f 340 539 339 +f 340 339 177 +f 177 339 279 +f 177 279 70 +f 70 279 63 +f 70 63 6 +f 7799 7860 7713 +f 7713 7860 7645 +f 7713 7645 7545 +f 7545 7645 7617 +f 7545 7617 7497 +f 7497 7617 7473 +f 7497 7473 7286 +f 7286 7473 7285 +f 7286 7285 7257 +f 7257 7285 7167 +f 7257 7167 7075 +f 7075 7167 7115 +f 7075 7115 6880 +f 6880 7115 6931 +f 6880 6931 6829 +f 6829 6931 6853 +f 6829 6853 6679 +f 6679 6853 6699 +f 6679 6699 6517 +f 6517 6699 6585 +f 6517 6585 6435 +f 6435 6585 6407 +f 6435 6407 6220 +f 6220 6407 6249 +f 6220 6249 6189 +f 6189 6249 6145 +f 6189 6145 5985 +f 5985 6145 5957 +f 5985 5957 5895 +f 5895 5957 5821 +f 5895 5821 5725 +f 5725 5821 5755 +f 5725 5755 5663 +f 5663 5755 5643 +f 5663 5643 5509 +f 5509 5643 5521 +f 5509 5521 5347 +f 5347 5521 5321 +f 5347 5321 5225 +f 5225 5321 5181 +f 5225 5181 5069 +f 5069 5181 5143 +f 5069 5143 4991 +f 4991 5143 4959 +f 4991 4959 4865 +f 4865 4959 4791 +f 4865 4791 4691 +f 4691 4791 4631 +f 4691 4631 4566 +f 4566 4631 4575 +f 4566 4575 4449 +f 4449 4575 4386 +f 4449 4386 4321 +f 4321 4386 4282 +f 4321 4282 4101 +f 4101 4282 4201 +f 4101 4201 3983 +f 3983 4201 4009 +f 3983 4009 3839 +f 3839 4009 3861 +f 3839 3861 3737 +f 3737 3861 3799 +f 3737 3799 3618 +f 3618 3799 3617 +f 3618 3617 3509 +f 3509 3617 3517 +f 3509 3517 3349 +f 3349 3517 3401 +f 3349 3401 3265 +f 3265 3401 3253 +f 3265 3253 3073 +f 3073 3253 3092 +f 3073 3092 2943 +f 2943 3092 2921 +f 2943 2921 2881 +f 2881 2921 2877 +f 2881 2877 2731 +f 2731 2877 2681 +f 2731 2681 2545 +f 2545 2681 2585 +f 2545 2585 2418 +f 2418 2585 2469 +f 2418 2469 2309 +f 2309 2469 2255 +f 2309 2255 2145 +f 2145 2255 2156 +f 2145 2156 1979 +f 1979 2156 1996 +f 1979 1996 1947 +f 1947 1996 1856 +f 1947 1856 1773 +f 1773 1856 1751 +f 1773 1751 1573 +f 1573 1751 1684 +f 1573 1684 1547 +f 1547 1684 1479 +f 1547 1479 1361 +f 1361 1479 1419 +f 1361 1419 1306 +f 1306 1419 1294 +f 1306 1294 1155 +f 1155 1294 1072 +f 1155 1072 983 +f 983 1072 950 +f 983 950 903 +f 903 950 841 +f 903 841 747 +f 747 841 763 +f 747 763 617 +f 617 763 549 +f 617 549 501 +f 501 549 473 +f 501 473 392 +f 392 473 340 +f 392 340 243 +f 243 340 177 +f 243 177 77 +f 77 177 70 +f 77 70 6 +f 7779 7799 7667 +f 7667 7799 7713 +f 7667 7713 7587 +f 7587 7713 7545 +f 7587 7545 7439 +f 7439 7545 7497 +f 7439 7497 7277 +f 7277 7497 7286 +f 7277 7286 7249 +f 7249 7286 7257 +f 7249 7257 7037 +f 7037 7257 7075 +f 7037 7075 6933 +f 6933 7075 6880 +f 6933 6880 6805 +f 6805 6880 6829 +f 6805 6829 6621 +f 6621 6829 6679 +f 6621 6679 6521 +f 6521 6679 6517 +f 6521 6517 6371 +f 6371 6517 6435 +f 6371 6435 6261 +f 6261 6435 6220 +f 6261 6220 6101 +f 6101 6220 6189 +f 6101 6189 5946 +f 5946 6189 5985 +f 5946 5985 5815 +f 5815 5985 5895 +f 5815 5895 5709 +f 5709 5895 5725 +f 5709 5725 5655 +f 5655 5725 5663 +f 5655 5663 5435 +f 5435 5663 5509 +f 5435 5509 5395 +f 5395 5509 5347 +f 5395 5347 5258 +f 5258 5347 5225 +f 5258 5225 5077 +f 5077 5225 5069 +f 5077 5069 5007 +f 5007 5069 4991 +f 5007 4991 4840 +f 4840 4991 4865 +f 4840 4865 4735 +f 4735 4865 4691 +f 4735 4691 4617 +f 4617 4691 4566 +f 4617 4566 4409 +f 4409 4566 4449 +f 4409 4449 4257 +f 4257 4449 4321 +f 4257 4321 4123 +f 4123 4321 4101 +f 4123 4101 4028 +f 4028 4101 3983 +f 4028 3983 3897 +f 3897 3983 3839 +f 3897 3839 3756 +f 3756 3839 3737 +f 3756 3737 3653 +f 3653 3737 3618 +f 3653 3618 3478 +f 3478 3618 3509 +f 3478 3509 3389 +f 3389 3509 3349 +f 3389 3349 3285 +f 3285 3349 3265 +f 3285 3265 3045 +f 3045 3265 3073 +f 3045 3073 3003 +f 3003 3073 2943 +f 3003 2943 2821 +f 2821 2943 2881 +f 2821 2881 2743 +f 2743 2881 2731 +f 2743 2731 2561 +f 2561 2731 2545 +f 2561 2545 2461 +f 2461 2545 2418 +f 2461 2418 2297 +f 2297 2418 2309 +f 2297 2309 2137 +f 2137 2309 2145 +f 2137 2145 2029 +f 2029 2145 1979 +f 2029 1979 1833 +f 1833 1979 1947 +f 1833 1947 1764 +f 1764 1947 1773 +f 1764 1773 1639 +f 1639 1773 1573 +f 1639 1573 1508 +f 1508 1573 1547 +f 1508 1547 1362 +f 1362 1547 1361 +f 1362 1361 1235 +f 1235 1361 1306 +f 1235 1306 1112 +f 1112 1306 1155 +f 1112 1155 1022 +f 1022 1155 983 +f 1022 983 837 +f 837 983 903 +f 837 903 695 +f 695 903 747 +f 695 747 660 +f 660 747 617 +f 660 617 491 +f 491 617 501 +f 491 501 355 +f 355 501 392 +f 355 392 213 +f 213 392 243 +f 213 243 159 +f 159 243 77 +f 159 77 30 +f 7873 7779 7719 +f 7719 7779 7667 +f 7719 7667 7623 +f 7623 7667 7587 +f 7623 7587 7421 +f 7421 7587 7439 +f 7421 7439 7361 +f 7361 7439 7277 +f 7361 7277 7255 +f 7255 7277 7249 +f 7255 7249 7095 +f 7095 7249 7037 +f 7095 7037 6963 +f 6963 7037 6933 +f 6963 6933 6802 +f 6802 6933 6805 +f 6802 6805 6680 +f 6680 6805 6621 +f 6680 6621 6467 +f 6467 6621 6521 +f 6467 6521 6436 +f 6436 6521 6371 +f 6436 6371 6223 +f 6223 6371 6261 +f 6223 6261 6079 +f 6079 6261 6101 +f 6079 6101 6055 +f 6055 6101 5946 +f 6055 5946 5922 +f 5922 5946 5815 +f 5922 5815 5701 +f 5701 5815 5709 +f 5701 5709 5659 +f 5659 5709 5655 +f 5659 5655 5477 +f 5477 5655 5435 +f 5477 5435 5349 +f 5349 5435 5395 +f 5349 5395 5191 +f 5191 5395 5258 +f 5191 5258 5028 +f 5028 5258 5077 +f 5028 5077 4908 +f 4908 5077 5007 +f 4908 5007 4819 +f 4819 5007 4840 +f 4819 4840 4713 +f 4713 4840 4735 +f 4713 4735 4527 +f 4527 4735 4617 +f 4527 4617 4427 +f 4427 4617 4409 +f 4427 4409 4349 +f 4349 4409 4257 +f 4349 4257 4217 +f 4217 4257 4123 +f 4217 4123 4064 +f 4064 4123 4028 +f 4064 4028 3899 +f 3899 4028 3897 +f 3899 3897 3721 +f 3721 3897 3756 +f 3721 3756 3585 +f 3585 3756 3653 +f 3585 3653 3505 +f 3505 3653 3478 +f 3505 3478 3402 +f 3402 3478 3389 +f 3402 3389 3261 +f 3261 3389 3285 +f 3261 3285 3139 +f 3139 3285 3045 +f 3139 3045 3025 +f 3025 3045 3003 +f 3025 3003 2793 +f 2793 3003 2821 +f 2793 2821 2713 +f 2713 2821 2743 +f 2713 2743 2571 +f 2571 2743 2561 +f 2571 2561 2398 +f 2398 2561 2461 +f 2398 2461 2256 +f 2256 2461 2297 +f 2256 2297 2087 +f 2087 2297 2137 +f 2087 2137 2035 +f 2035 2137 2029 +f 2035 2029 1839 +f 1839 2029 1833 +f 1839 1833 1742 +f 1742 1833 1764 +f 1742 1764 1681 +f 1681 1764 1639 +f 1681 1639 1519 +f 1519 1639 1508 +f 1519 1508 1374 +f 1374 1508 1362 +f 1374 1362 1315 +f 1315 1362 1235 +f 1315 1235 1104 +f 1104 1235 1112 +f 1104 1112 951 +f 951 1112 1022 +f 951 1022 904 +f 904 1022 837 +f 904 837 797 +f 797 837 695 +f 797 695 582 +f 582 695 660 +f 582 660 541 +f 541 660 491 +f 541 491 413 +f 413 491 355 +f 413 355 230 +f 230 355 213 +f 230 213 53 +f 53 213 159 +f 53 159 30 +f 7819 7873 7671 +f 7671 7873 7719 +f 7671 7719 7629 +f 7629 7719 7623 +f 7629 7623 7498 +f 7498 7623 7421 +f 7498 7421 7323 +f 7323 7421 7361 +f 7323 7361 7177 +f 7177 7361 7255 +f 7177 7255 7053 +f 7053 7255 7095 +f 7053 7095 6964 +f 6964 7095 6963 +f 6964 6963 6761 +f 6761 6963 6802 +f 6761 6802 6713 +f 6713 6802 6680 +f 6713 6680 6591 +f 6591 6680 6467 +f 6591 6467 6461 +f 6461 6467 6436 +f 6461 6436 6217 +f 6217 6436 6223 +f 6217 6223 6157 +f 6157 6223 6079 +f 6157 6079 5973 +f 5973 6079 6055 +f 5973 6055 5851 +f 5851 6055 5922 +f 5851 5922 5786 +f 5786 5922 5701 +f 5786 5701 5591 +f 5591 5701 5659 +f 5591 5659 5535 +f 5535 5659 5477 +f 5535 5477 5353 +f 5353 5477 5349 +f 5353 5349 5244 +f 5244 5349 5191 +f 5244 5191 5065 +f 5065 5191 5028 +f 5065 5028 4917 +f 4917 5028 4908 +f 4917 4908 4792 +f 4792 4908 4819 +f 4792 4819 4629 +f 4629 4819 4713 +f 4629 4713 4576 +f 4576 4713 4527 +f 4576 4527 4373 +f 4373 4527 4427 +f 4373 4427 4299 +f 4299 4427 4349 +f 4299 4349 4203 +f 4203 4349 4217 +f 4203 4217 4025 +f 4025 4217 4064 +f 4025 4064 3879 +f 3879 4064 3899 +f 3879 3899 3801 +f 3801 3899 3721 +f 3801 3721 3577 +f 3577 3721 3585 +f 3577 3585 3527 +f 3527 3585 3505 +f 3527 3505 3385 +f 3385 3505 3402 +f 3385 3402 3245 +f 3245 3402 3261 +f 3245 3261 3064 +f 3064 3261 3139 +f 3064 3139 2961 +f 2961 3139 3025 +f 2961 3025 2807 +f 2807 3025 2793 +f 2807 2793 2691 +f 2691 2793 2713 +f 2691 2713 2579 +f 2579 2713 2571 +f 2579 2571 2429 +f 2429 2571 2398 +f 2429 2398 2279 +f 2279 2398 2256 +f 2279 2256 2157 +f 2157 2256 2087 +f 2157 2087 2040 +f 2040 2087 2035 +f 2040 2035 1857 +f 1857 2035 1839 +f 1857 1839 1743 +f 1743 1839 1742 +f 1743 1742 1624 +f 1624 1742 1681 +f 1624 1681 1457 +f 1457 1681 1519 +f 1457 1519 1427 +f 1427 1519 1374 +f 1427 1374 1193 +f 1193 1374 1315 +f 1193 1315 1089 +f 1089 1315 1104 +f 1089 1104 1031 +f 1031 1104 951 +f 1031 951 916 +f 916 951 904 +f 916 904 798 +f 798 904 797 +f 798 797 631 +f 631 797 582 +f 631 582 503 +f 503 582 541 +f 503 541 295 +f 295 541 413 +f 295 413 173 +f 173 413 230 +f 173 230 101 +f 101 230 53 +f 101 53 25 +f 7827 7819 7681 +f 7681 7819 7671 +f 7681 7671 7539 +f 7539 7671 7629 +f 7539 7629 7457 +f 7457 7629 7498 +f 7457 7498 7348 +f 7348 7498 7323 +f 7348 7323 7169 +f 7169 7323 7177 +f 7169 7177 7023 +f 7023 7177 7053 +f 7023 7053 6907 +f 6907 7053 6964 +f 6907 6964 6729 +f 6729 6964 6761 +f 6729 6761 6623 +f 6623 6761 6713 +f 6623 6713 6495 +f 6495 6713 6591 +f 6495 6591 6337 +f 6337 6591 6461 +f 6337 6461 6243 +f 6243 6461 6217 +f 6243 6217 6175 +f 6175 6217 6157 +f 6175 6157 5952 +f 5952 6157 5973 +f 5952 5973 5883 +f 5883 5973 5851 +f 5883 5851 5719 +f 5719 5851 5786 +f 5719 5786 5589 +f 5589 5786 5591 +f 5589 5591 5506 +f 5506 5591 5535 +f 5506 5535 5387 +f 5387 5535 5353 +f 5387 5353 5237 +f 5237 5353 5244 +f 5237 5244 5059 +f 5059 5244 5065 +f 5059 5065 4945 +f 4945 5065 4917 +f 4945 4917 4811 +f 4811 4917 4792 +f 4811 4792 4661 +f 4661 4792 4629 +f 4661 4629 4581 +f 4581 4629 4576 +f 4581 4576 4405 +f 4405 4576 4373 +f 4405 4373 4285 +f 4285 4373 4299 +f 4285 4299 4179 +f 4179 4299 4203 +f 4179 4203 4067 +f 4067 4203 4025 +f 4067 4025 3905 +f 3905 4025 3879 +f 3905 3879 3787 +f 3787 3879 3801 +f 3787 3801 3581 +f 3581 3801 3577 +f 3581 3577 3449 +f 3449 3577 3527 +f 3449 3527 3369 +f 3369 3527 3385 +f 3369 3385 3195 +f 3195 3385 3245 +f 3195 3245 3153 +f 3153 3245 3064 +f 3153 3064 3022 +f 3022 3064 2961 +f 3022 2961 2825 +f 2825 2961 2807 +f 2825 2807 2714 +f 2714 2807 2691 +f 2714 2691 2603 +f 2603 2691 2579 +f 2603 2579 2451 +f 2451 2579 2429 +f 2451 2429 2231 +f 2231 2429 2279 +f 2231 2279 2127 +f 2127 2279 2157 +f 2127 2157 1975 +f 1975 2157 2040 +f 1975 2040 1915 +f 1915 2040 1857 +f 1915 1857 1752 +f 1752 1857 1743 +f 1752 1743 1625 +f 1625 1743 1624 +f 1625 1624 1486 +f 1486 1624 1457 +f 1486 1457 1403 +f 1403 1457 1427 +f 1403 1427 1255 +f 1255 1427 1193 +f 1255 1193 1173 +f 1173 1193 1089 +f 1173 1089 992 +f 992 1089 1031 +f 992 1031 931 +f 931 1031 916 +f 931 916 770 +f 770 916 798 +f 770 798 661 +f 661 798 631 +f 661 631 495 +f 495 631 503 +f 495 503 380 +f 380 503 295 +f 380 295 281 +f 281 295 173 +f 281 173 46 +f 46 173 101 +f 46 101 11 +f 7820 7827 7689 +f 7689 7827 7681 +f 7689 7681 7633 +f 7633 7681 7539 +f 7633 7539 7465 +f 7465 7539 7457 +f 7465 7457 7389 +f 7389 7457 7348 +f 7389 7348 7149 +f 7149 7348 7169 +f 7149 7169 7127 +f 7127 7169 7023 +f 7127 7023 6898 +f 6898 7023 6907 +f 6898 6907 6831 +f 6831 6907 6729 +f 6831 6729 6627 +f 6627 6729 6623 +f 6627 6623 6491 +f 6491 6623 6495 +f 6491 6495 6391 +f 6391 6495 6337 +f 6391 6337 6227 +f 6227 6337 6243 +f 6227 6243 6165 +f 6165 6243 6175 +f 6165 6175 6033 +f 6033 6175 5952 +f 6033 5952 5910 +f 5910 5952 5883 +f 5910 5883 5689 +f 5689 5883 5719 +f 5689 5719 5563 +f 5563 5719 5589 +f 5563 5589 5543 +f 5543 5589 5506 +f 5543 5506 5405 +f 5405 5506 5387 +f 5405 5387 5281 +f 5281 5387 5237 +f 5281 5237 5135 +f 5135 5237 5059 +f 5135 5059 4895 +f 4895 5059 4945 +f 4895 4945 4805 +f 4805 4945 4811 +f 4805 4811 4633 +f 4633 4811 4661 +f 4633 4661 4601 +f 4601 4661 4581 +f 4601 4581 4453 +f 4453 4581 4405 +f 4453 4405 4322 +f 4322 4405 4285 +f 4322 4285 4211 +f 4211 4285 4179 +f 4211 4179 3991 +f 3991 4179 4067 +f 3991 4067 3955 +f 3955 4067 3905 +f 3955 3905 3727 +f 3727 3905 3787 +f 3727 3787 3612 +f 3612 3787 3581 +f 3612 3581 3513 +f 3513 3581 3449 +f 3513 3449 3333 +f 3333 3449 3369 +f 3333 3369 3201 +f 3201 3369 3195 +f 3201 3195 3145 +f 3145 3195 3153 +f 3145 3153 2919 +f 2919 3153 3022 +f 2919 3022 2855 +f 2855 3022 2825 +f 2855 2825 2699 +f 2699 2825 2714 +f 2699 2714 2580 +f 2580 2714 2603 +f 2580 2603 2424 +f 2424 2603 2451 +f 2424 2451 2246 +f 2246 2451 2231 +f 2246 2231 2111 +f 2111 2231 2127 +f 2111 2127 2013 +f 2013 2127 1975 +f 2013 1975 1844 +f 1844 1975 1915 +f 1844 1915 1753 +f 1753 1915 1752 +f 1753 1752 1589 +f 1589 1752 1625 +f 1589 1625 1492 +f 1492 1625 1486 +f 1492 1486 1329 +f 1329 1486 1403 +f 1329 1403 1263 +f 1263 1403 1255 +f 1263 1255 1167 +f 1167 1255 1173 +f 1167 1173 959 +f 959 1173 992 +f 959 992 842 +f 842 992 931 +f 842 931 748 +f 748 931 770 +f 748 770 611 +f 611 770 661 +f 611 661 481 +f 481 661 495 +f 481 495 414 +f 414 495 380 +f 414 380 169 +f 169 380 281 +f 169 281 95 +f 95 281 46 +f 95 46 11 +f 7795 7820 7747 +f 7747 7820 7689 +f 7747 7689 7563 +f 7563 7689 7633 +f 7563 7633 7431 +f 7431 7633 7465 +f 7431 7465 7338 +f 7338 7465 7389 +f 7338 7389 7194 +f 7194 7389 7149 +f 7194 7149 7043 +f 7043 7149 7127 +f 7043 7127 6947 +f 6947 7127 6898 +f 6947 6898 6767 +f 6767 6898 6831 +f 6767 6831 6691 +f 6691 6831 6627 +f 6691 6627 6522 +f 6522 6627 6491 +f 6522 6491 6363 +f 6363 6491 6391 +f 6363 6391 6244 +f 6244 6391 6227 +f 6244 6227 6171 +f 6171 6227 6165 +f 6171 6165 5974 +f 5974 6165 6033 +f 5974 6033 5923 +f 5923 6033 5910 +f 5923 5910 5715 +f 5715 5910 5689 +f 5715 5689 5615 +f 5615 5689 5563 +f 5615 5563 5429 +f 5429 5563 5543 +f 5429 5543 5325 +f 5325 5543 5405 +f 5325 5405 5213 +f 5213 5405 5281 +f 5213 5281 5099 +f 5099 5281 5135 +f 5099 5135 4951 +f 4951 5135 4895 +f 4951 4895 4821 +f 4821 4895 4805 +f 4821 4805 4701 +f 4701 4805 4633 +f 4701 4633 4561 +f 4561 4633 4601 +f 4561 4601 4429 +f 4429 4601 4453 +f 4429 4453 4251 +f 4251 4453 4322 +f 4251 4322 4113 +f 4113 4322 4211 +f 4113 4211 4021 +f 4021 4211 3991 +f 4021 3991 3889 +f 3889 3991 3955 +f 3889 3955 3769 +f 3769 3955 3727 +f 3769 3727 3647 +f 3647 3727 3612 +f 3647 3612 3473 +f 3473 3612 3513 +f 3473 3513 3309 +f 3309 3513 3333 +f 3309 3333 3199 +f 3199 3333 3201 +f 3199 3201 3099 +f 3099 3201 3145 +f 3099 3145 2989 +f 2989 3145 2919 +f 2989 2919 2859 +f 2859 2919 2855 +f 2859 2855 2702 +f 2702 2855 2699 +f 2702 2699 2546 +f 2546 2699 2580 +f 2546 2580 2430 +f 2430 2580 2424 +f 2430 2424 2221 +f 2221 2424 2246 +f 2221 2246 2169 +f 2169 2246 2111 +f 2169 2111 1980 +f 1980 2111 2013 +f 1980 2013 1889 +f 1889 2013 1844 +f 1889 1844 1731 +f 1731 1844 1753 +f 1731 1753 1603 +f 1603 1753 1589 +f 1603 1589 1539 +f 1539 1589 1492 +f 1539 1492 1423 +f 1423 1492 1329 +f 1423 1329 1285 +f 1285 1329 1263 +f 1285 1263 1090 +f 1090 1263 1167 +f 1090 1167 977 +f 977 1167 959 +f 977 959 843 +f 843 959 842 +f 843 842 771 +f 771 842 748 +f 771 748 597 +f 597 748 611 +f 597 611 515 +f 515 611 481 +f 515 481 364 +f 364 481 414 +f 364 414 260 +f 260 414 169 +f 260 169 157 +f 157 169 95 +f 157 95 21 +f 7763 7795 7690 +f 7690 7795 7747 +f 7690 7747 7549 +f 7549 7747 7563 +f 7549 7563 7413 +f 7413 7563 7431 +f 7413 7431 7313 +f 7313 7431 7338 +f 7313 7338 7229 +f 7229 7338 7194 +f 7229 7194 7090 +f 7090 7194 7043 +f 7090 7043 6889 +f 6889 7043 6947 +f 6889 6947 6771 +f 6771 6947 6767 +f 6771 6767 6719 +f 6719 6767 6691 +f 6719 6691 6480 +f 6480 6691 6522 +f 6480 6522 6380 +f 6380 6522 6363 +f 6380 6363 6224 +f 6224 6363 6244 +f 6224 6244 6135 +f 6135 6244 6171 +f 6135 6171 6027 +f 6027 6171 5974 +f 6027 5974 5816 +f 5816 5974 5923 +f 5816 5923 5679 +f 5679 5923 5715 +f 5679 5715 5554 +f 5554 5715 5615 +f 5554 5615 5495 +f 5495 5615 5429 +f 5495 5429 5388 +f 5388 5429 5325 +f 5388 5325 5173 +f 5173 5325 5213 +f 5173 5213 5060 +f 5060 5213 5099 +f 5060 5099 5009 +f 5009 5099 4951 +f 5009 4951 4785 +f 4785 4951 4821 +f 4785 4821 4705 +f 4705 4821 4701 +f 4705 4701 4545 +f 4545 4701 4561 +f 4545 4561 4431 +f 4431 4561 4429 +f 4431 4429 4314 +f 4314 4429 4251 +f 4314 4251 4136 +f 4136 4251 4113 +f 4136 4113 4019 +f 4019 4113 4021 +f 4019 4021 3855 +f 3855 4021 3889 +f 3855 3889 3711 +f 3711 3889 3769 +f 3711 3769 3671 +f 3671 3769 3647 +f 3671 3647 3559 +f 3559 3647 3473 +f 3559 3473 3421 +f 3421 3473 3309 +f 3421 3309 3207 +f 3207 3309 3199 +f 3207 3199 3106 +f 3106 3199 3099 +f 3106 3099 2975 +f 2975 3099 2989 +f 2975 2989 2831 +f 2831 2989 2859 +f 2831 2859 2673 +f 2673 2859 2702 +f 2673 2702 2572 +f 2572 2702 2546 +f 2572 2546 2452 +f 2452 2546 2430 +f 2452 2430 2287 +f 2287 2430 2221 +f 2287 2221 2128 +f 2128 2221 2169 +f 2128 2169 2041 +f 2041 2169 1980 +f 2041 1980 1916 +f 1916 1980 1889 +f 1916 1889 1732 +f 1732 1889 1731 +f 1732 1731 1685 +f 1685 1731 1603 +f 1685 1603 1520 +f 1520 1603 1539 +f 1520 1539 1337 +f 1337 1539 1423 +f 1337 1423 1207 +f 1207 1423 1285 +f 1207 1285 1113 +f 1113 1285 1090 +f 1113 1090 967 +f 967 1090 977 +f 967 977 910 +f 910 977 843 +f 910 843 696 +f 696 843 771 +f 696 771 574 +f 574 771 597 +f 574 597 454 +f 454 597 515 +f 454 515 311 +f 311 515 364 +f 311 364 191 +f 191 364 260 +f 191 260 113 +f 113 260 157 +f 113 157 21 +f 7777 7763 7704 +f 7704 7763 7690 +f 7704 7690 7531 +f 7531 7690 7549 +f 7531 7549 7417 +f 7417 7549 7413 +f 7417 7413 7326 +f 7326 7413 7313 +f 7326 7313 7161 +f 7161 7313 7229 +f 7161 7229 7109 +f 7109 7229 7090 +f 7109 7090 6899 +f 6899 7090 6889 +f 6899 6889 6754 +f 6754 6889 6771 +f 6754 6771 6658 +f 6658 6771 6719 +f 6658 6719 6561 +f 6561 6719 6480 +f 6561 6480 6423 +f 6423 6480 6380 +f 6423 6380 6306 +f 6306 6380 6224 +f 6306 6224 6194 +f 6194 6224 6135 +f 6194 6135 6053 +f 6053 6135 6027 +f 6053 6027 5927 +f 5927 6027 5816 +f 5927 5816 5761 +f 5761 5816 5679 +f 5761 5679 5641 +f 5641 5679 5554 +f 5641 5554 5496 +f 5496 5554 5495 +f 5496 5495 5407 +f 5407 5495 5388 +f 5407 5388 5179 +f 5179 5388 5173 +f 5179 5173 5093 +f 5093 5173 5060 +f 5093 5060 4891 +f 4891 5060 5009 +f 4891 5009 4885 +f 4885 5009 4785 +f 4885 4785 4687 +f 4687 4785 4705 +f 4687 4705 4519 +f 4519 4705 4545 +f 4519 4545 4447 +f 4447 4545 4431 +f 4447 4431 4255 +f 4255 4431 4314 +f 4255 4314 4193 +f 4193 4314 4136 +f 4193 4136 4071 +f 4071 4136 4019 +f 4071 4019 3937 +f 3937 4019 3855 +f 3937 3855 3817 +f 3817 3855 3711 +f 3817 3711 3667 +f 3667 3711 3671 +f 3667 3671 3447 +f 3447 3671 3559 +f 3447 3559 3339 +f 3339 3559 3421 +f 3339 3421 3269 +f 3269 3421 3207 +f 3269 3207 3125 +f 3125 3207 3106 +f 3125 3106 2967 +f 2967 3106 2975 +f 2967 2975 2832 +f 2832 2975 2831 +f 2832 2831 2674 +f 2674 2831 2673 +f 2674 2673 2553 +f 2553 2673 2572 +f 2553 2572 2457 +f 2457 2572 2452 +f 2457 2452 2301 +f 2301 2452 2287 +f 2301 2287 2112 +f 2112 2287 2128 +f 2112 2128 2014 +f 2014 2128 2041 +f 2014 2041 1845 +f 1845 2041 1916 +f 1845 1916 1819 +f 1819 1916 1732 +f 1819 1732 1648 +f 1648 1732 1685 +f 1648 1685 1567 +f 1567 1685 1520 +f 1567 1520 1351 +f 1351 1520 1337 +f 1351 1337 1236 +f 1236 1337 1207 +f 1236 1207 1091 +f 1091 1207 1113 +f 1091 1113 1045 +f 1045 1113 967 +f 1045 967 844 +f 844 967 910 +f 844 910 691 +f 691 910 696 +f 691 696 553 +f 553 696 574 +f 553 574 466 +f 466 574 454 +f 466 454 351 +f 351 454 311 +f 351 311 252 +f 252 311 191 +f 252 191 115 +f 115 191 113 +f 115 113 4 +f 7825 7777 7714 +f 7714 7777 7704 +f 7714 7704 7599 +f 7599 7704 7531 +f 7599 7531 7443 +f 7443 7531 7417 +f 7443 7417 7327 +f 7327 7417 7326 +f 7327 7326 7219 +f 7219 7326 7161 +f 7219 7161 7069 +f 7069 7161 7109 +f 7069 7109 6929 +f 6929 7109 6899 +f 6929 6899 6748 +f 6748 6899 6754 +f 6748 6754 6683 +f 6683 6754 6658 +f 6683 6658 6586 +f 6586 6658 6561 +f 6586 6561 6339 +f 6339 6561 6423 +f 6339 6423 6315 +f 6315 6423 6306 +f 6315 6306 6201 +f 6201 6306 6194 +f 6201 6194 5981 +f 5981 6194 6053 +f 5981 6053 5929 +f 5929 6053 5927 +f 5929 5927 5733 +f 5733 5927 5761 +f 5733 5761 5585 +f 5585 5761 5641 +f 5585 5641 5426 +f 5426 5641 5496 +f 5426 5496 5369 +f 5369 5496 5407 +f 5369 5407 5207 +f 5207 5407 5179 +f 5207 5179 5043 +f 5043 5179 5093 +f 5043 5093 5005 +f 5005 5093 4891 +f 5005 4891 4881 +f 4881 4891 4885 +f 4881 4885 4706 +f 4706 4885 4687 +f 4706 4687 4537 +f 4537 4687 4519 +f 4537 4519 4463 +f 4463 4519 4447 +f 4463 4447 4295 +f 4295 4447 4255 +f 4295 4255 4174 +f 4174 4255 4193 +f 4174 4193 4075 +f 4075 4193 4071 +f 4075 4071 3938 +f 3938 4071 3937 +f 3938 3937 3731 +f 3731 3937 3817 +f 3731 3817 3595 +f 3595 3817 3667 +f 3595 3667 3469 +f 3469 3667 3447 +f 3469 3447 3355 +f 3355 3447 3339 +f 3355 3339 3227 +f 3227 3339 3269 +f 3227 3269 3107 +f 3107 3269 3125 +f 3107 3125 2968 +f 2968 3125 2967 +f 2968 2967 2823 +f 2823 2967 2832 +f 2823 2832 2669 +f 2669 2832 2674 +f 2669 2674 2573 +f 2573 2674 2553 +f 2573 2553 2407 +f 2407 2553 2457 +f 2407 2457 2257 +f 2257 2457 2301 +f 2257 2301 2091 +f 2091 2301 2112 +f 2091 2112 2061 +f 2061 2112 2014 +f 2061 2014 1890 +f 1890 2014 1845 +f 1890 1845 1713 +f 1713 1845 1819 +f 1713 1819 1590 +f 1590 1819 1648 +f 1590 1648 1521 +f 1521 1648 1567 +f 1521 1567 1383 +f 1383 1567 1351 +f 1383 1351 1194 +f 1194 1351 1236 +f 1194 1236 1114 +f 1114 1236 1091 +f 1114 1091 999 +f 999 1091 1045 +f 999 1045 845 +f 845 1045 844 +f 845 844 781 +f 781 844 691 +f 781 691 632 +f 632 691 553 +f 632 553 482 +f 482 553 466 +f 482 466 365 +f 365 466 351 +f 365 351 269 +f 269 351 252 +f 269 252 78 +f 78 252 115 +f 78 115 4 +f 7813 7825 7659 +f 7659 7825 7714 +f 7659 7714 7532 +f 7532 7714 7599 +f 7532 7599 7466 +f 7466 7599 7443 +f 7466 7443 7365 +f 7365 7443 7327 +f 7365 7327 7170 +f 7170 7327 7219 +f 7170 7219 7063 +f 7063 7219 7069 +f 7063 7069 6948 +f 6948 7069 6929 +f 6948 6929 6806 +f 6806 6929 6748 +f 6806 6748 6692 +f 6692 6748 6683 +f 6692 6683 6513 +f 6513 6683 6586 +f 6513 6586 6424 +f 6424 6586 6339 +f 6424 6339 6288 +f 6288 6339 6315 +f 6288 6315 6158 +f 6158 6315 6201 +f 6158 6201 6061 +f 6061 6201 5981 +f 6061 5981 5911 +f 5911 5981 5929 +f 5911 5929 5681 +f 5681 5929 5733 +f 5681 5733 5629 +f 5629 5733 5585 +f 5629 5585 5478 +f 5478 5585 5426 +f 5478 5426 5291 +f 5291 5426 5369 +f 5291 5369 5155 +f 5155 5369 5207 +f 5155 5207 5141 +f 5141 5207 5043 +f 5141 5043 4977 +f 4977 5043 5005 +f 4977 5005 4847 +f 4847 5005 4881 +f 4847 4881 4669 +f 4669 4881 4706 +f 4669 4706 4505 +f 4505 4706 4537 +f 4505 4537 4435 +f 4435 4537 4463 +f 4435 4463 4303 +f 4303 4463 4295 +f 4303 4295 4218 +f 4218 4295 4174 +f 4218 4174 3975 +f 3975 4174 4075 +f 3975 4075 3939 +f 3939 4075 3938 +f 3939 3938 3707 +f 3707 3938 3731 +f 3707 3731 3631 +f 3631 3731 3595 +f 3631 3595 3450 +f 3450 3595 3469 +f 3450 3469 3350 +f 3350 3469 3355 +f 3350 3355 3235 +f 3235 3355 3227 +f 3235 3227 3126 +f 3126 3227 3107 +f 3126 3107 2976 +f 2976 3107 2968 +f 2976 2968 2847 +f 2847 2968 2823 +f 2847 2823 2703 +f 2703 2823 2669 +f 2703 2669 2599 +f 2599 2669 2573 +f 2599 2573 2408 +f 2408 2573 2407 +f 2408 2407 2258 +f 2258 2407 2257 +f 2258 2257 2201 +f 2201 2257 2091 +f 2201 2091 2069 +f 2069 2091 2061 +f 2069 2061 1917 +f 1917 2061 1890 +f 1917 1890 1717 +f 1717 1890 1713 +f 1717 1713 1575 +f 1575 1713 1590 +f 1575 1590 1522 +f 1522 1590 1521 +f 1522 1521 1325 +f 1325 1521 1383 +f 1325 1383 1264 +f 1264 1383 1194 +f 1264 1194 1136 +f 1136 1194 1114 +f 1136 1114 1051 +f 1051 1114 999 +f 1051 999 826 +f 826 999 845 +f 826 845 679 +f 679 845 781 +f 679 781 651 +f 651 781 632 +f 651 632 433 +f 433 632 482 +f 433 482 319 +f 319 482 365 +f 319 365 178 +f 178 365 269 +f 178 269 129 +f 129 269 78 +f 129 78 26 +f 7845 7813 7737 +f 7737 7813 7659 +f 7737 7659 7560 +f 7560 7659 7532 +f 7560 7532 7458 +f 7458 7532 7466 +f 7458 7466 7339 +f 7339 7466 7365 +f 7339 7365 7263 +f 7263 7365 7170 +f 7263 7170 7030 +f 7030 7170 7063 +f 7030 7063 6920 +f 6920 7063 6948 +f 6920 6948 6755 +f 6755 6948 6806 +f 6755 6806 6608 +f 6608 6806 6692 +f 6608 6692 6469 +f 6469 6692 6513 +f 6469 6513 6414 +f 6414 6513 6424 +f 6414 6424 6309 +f 6309 6424 6288 +f 6309 6288 6179 +f 6179 6288 6158 +f 6179 6158 6067 +f 6067 6158 6061 +f 6067 6061 5935 +f 5935 6061 5911 +f 5935 5911 5762 +f 5762 5911 5681 +f 5762 5681 5618 +f 5618 5681 5629 +f 5618 5629 5523 +f 5523 5629 5478 +f 5523 5478 5335 +f 5335 5478 5291 +f 5335 5291 5238 +f 5238 5291 5155 +f 5238 5155 5031 +f 5031 5155 5141 +f 5031 5141 4967 +f 4967 5141 4977 +f 4967 4977 4871 +f 4871 4977 4847 +f 4871 4847 4655 +f 4655 4847 4669 +f 4655 4669 4621 +f 4621 4669 4505 +f 4621 4505 4424 +f 4424 4505 4435 +f 4424 4435 4293 +f 4293 4435 4303 +f 4293 4303 4147 +f 4147 4303 4218 +f 4147 4218 3976 +f 3976 4218 3975 +f 3976 3975 3918 +f 3918 3975 3939 +f 3918 3939 3725 +f 3725 3939 3707 +f 3725 3707 3609 +f 3609 3707 3631 +f 3609 3631 3487 +f 3487 3631 3450 +f 3487 3450 3362 +f 3362 3450 3350 +f 3362 3350 3236 +f 3236 3350 3235 +f 3236 3235 3108 +f 3108 3235 3126 +f 3108 3126 2983 +f 2983 3126 2976 +f 2983 2976 2848 +f 2848 2976 2847 +f 2848 2847 2684 +f 2684 2847 2703 +f 2684 2703 2554 +f 2554 2703 2599 +f 2554 2599 2458 +f 2458 2599 2408 +f 2458 2408 2238 +f 2238 2408 2258 +f 2238 2258 2085 +f 2085 2258 2201 +f 2085 2201 2042 +f 2042 2201 2069 +f 2042 2069 1891 +f 1891 2069 1917 +f 1891 1917 1803 +f 1803 1917 1717 +f 1803 1717 1649 +f 1649 1717 1575 +f 1649 1575 1540 +f 1540 1575 1522 +f 1540 1522 1384 +f 1384 1522 1325 +f 1384 1325 1215 +f 1215 1325 1264 +f 1215 1264 1137 +f 1137 1264 1136 +f 1137 1136 939 +f 939 1136 1051 +f 939 1051 868 +f 868 1051 826 +f 868 826 717 +f 717 826 679 +f 717 679 652 +f 652 679 651 +f 652 651 529 +f 529 651 433 +f 529 433 415 +f 415 433 319 +f 415 319 231 +f 231 319 178 +f 231 178 79 +f 79 178 129 +f 79 129 26 +f 7803 7845 7695 +f 7695 7845 7737 +f 7695 7737 7546 +f 7546 7737 7560 +f 7546 7560 7485 +f 7485 7560 7458 +f 7485 7458 7306 +f 7306 7458 7339 +f 7306 7339 7243 +f 7243 7339 7263 +f 7243 7263 7009 +f 7009 7263 7030 +f 7009 7030 6855 +f 6855 7030 6920 +f 6855 6920 6727 +f 6727 6920 6755 +f 6727 6755 6641 +f 6641 6755 6608 +f 6641 6608 6569 +f 6569 6608 6469 +f 6569 6469 6425 +f 6425 6469 6414 +f 6425 6414 6209 +f 6209 6414 6309 +f 6209 6309 6146 +f 6146 6309 6179 +f 6146 6179 6019 +f 6019 6179 6067 +f 6019 6067 5853 +f 5853 6067 5935 +f 5853 5935 5781 +f 5781 5935 5762 +f 5781 5762 5677 +f 5677 5762 5618 +f 5677 5618 5479 +f 5479 5618 5523 +f 5479 5523 5359 +f 5359 5523 5335 +f 5359 5335 5249 +f 5249 5335 5238 +f 5249 5238 5044 +f 5044 5238 5031 +f 5044 5031 4953 +f 4953 5031 4967 +f 4953 4967 4837 +f 4837 4967 4871 +f 4837 4871 4723 +f 4723 4871 4655 +f 4723 4655 4615 +f 4615 4655 4621 +f 4615 4621 4365 +f 4365 4621 4424 +f 4365 4424 4296 +f 4296 4424 4293 +f 4296 4293 4117 +f 4117 4293 4147 +f 4117 4147 4022 +f 4022 4147 3976 +f 4022 3976 3933 +f 3933 3976 3918 +f 3933 3918 3708 +f 3708 3918 3725 +f 3708 3725 3623 +f 3623 3725 3609 +f 3623 3609 3534 +f 3534 3609 3487 +f 3534 3487 3343 +f 3343 3487 3362 +f 3343 3362 3221 +f 3221 3362 3236 +f 3221 3236 3109 +f 3109 3236 3108 +f 3109 3108 2962 +f 2962 3108 2983 +f 2962 2983 2839 +f 2839 2983 2848 +f 2839 2848 2685 +f 2685 2848 2684 +f 2685 2684 2600 +f 2600 2684 2554 +f 2600 2554 2409 +f 2409 2554 2458 +f 2409 2458 2288 +f 2288 2458 2238 +f 2288 2238 2129 +f 2129 2238 2085 +f 2129 2085 2075 +f 2075 2085 2042 +f 2075 2042 1931 +f 1931 2042 1891 +f 1931 1891 1804 +f 1804 1891 1803 +f 1804 1803 1591 +f 1591 1803 1649 +f 1591 1649 1557 +f 1557 1649 1540 +f 1557 1540 1385 +f 1385 1540 1384 +f 1385 1384 1237 +f 1237 1384 1215 +f 1237 1215 1115 +f 1115 1215 1137 +f 1115 1137 985 +f 985 1137 939 +f 985 939 827 +f 827 939 868 +f 827 868 735 +f 735 868 717 +f 735 717 669 +f 669 717 652 +f 669 652 530 +f 530 652 529 +f 530 529 320 +f 320 529 415 +f 320 415 207 +f 207 415 231 +f 207 231 69 +f 69 231 79 +f 69 79 33 +f 7859 7803 7669 +f 7669 7803 7695 +f 7669 7695 7579 +f 7579 7695 7546 +f 7579 7546 7427 +f 7427 7546 7485 +f 7427 7485 7353 +f 7353 7485 7306 +f 7353 7306 7186 +f 7186 7306 7243 +f 7186 7243 7054 +f 7054 7243 7009 +f 7054 7009 6890 +f 6890 7009 6855 +f 6890 6855 6807 +f 6807 6855 6727 +f 6807 6727 6684 +f 6684 6727 6641 +f 6684 6641 6587 +f 6587 6641 6569 +f 6587 6569 6351 +f 6351 6569 6425 +f 6351 6425 6276 +f 6276 6425 6209 +f 6276 6209 6180 +f 6180 6209 6146 +f 6180 6146 5993 +f 5993 6146 6019 +f 5993 6019 5890 +f 5890 6019 5853 +f 5890 5853 5690 +f 5690 5853 5781 +f 5690 5781 5608 +f 5608 5781 5677 +f 5608 5677 5486 +f 5486 5677 5479 +f 5486 5479 5411 +f 5411 5479 5359 +f 5411 5359 5214 +f 5214 5359 5249 +f 5214 5249 5097 +f 5097 5249 5044 +f 5097 5044 4985 +f 4985 5044 4953 +f 4985 4953 4883 +f 4883 4953 4837 +f 4883 4837 4731 +f 4731 4837 4723 +f 4731 4723 4529 +f 4529 4723 4615 +f 4529 4615 4410 +f 4410 4615 4365 +f 4410 4365 4350 +f 4350 4365 4296 +f 4350 4296 4175 +f 4175 4296 4117 +f 4175 4117 4031 +f 4031 4117 4022 +f 4031 4022 3912 +f 3912 4022 3933 +f 3912 3933 3773 +f 3773 3933 3708 +f 3773 3708 3675 +f 3675 3708 3623 +f 3675 3623 3521 +f 3521 3623 3534 +f 3521 3534 3363 +f 3363 3534 3343 +f 3363 3343 3229 +f 3229 3343 3221 +f 3229 3221 3101 +f 3101 3221 3109 +f 3101 3109 2973 +f 2973 3109 2962 +f 2973 2962 2833 +f 2833 2962 2839 +f 2833 2839 2692 +f 2692 2839 2685 +f 2692 2685 2595 +f 2595 2685 2600 +f 2595 2600 2389 +f 2389 2600 2409 +f 2389 2409 2259 +f 2259 2409 2288 +f 2259 2288 2158 +f 2158 2288 2129 +f 2158 2129 2076 +f 2076 2129 2075 +f 2076 2075 1892 +f 1892 2075 1931 +f 1892 1931 1733 +f 1733 1931 1804 +f 1733 1804 1626 +f 1626 1804 1591 +f 1626 1591 1493 +f 1493 1591 1557 +f 1493 1557 1386 +f 1386 1557 1385 +f 1386 1385 1216 +f 1216 1385 1237 +f 1216 1237 1159 +f 1159 1237 1115 +f 1159 1115 968 +f 968 1115 985 +f 968 985 895 +f 895 985 827 +f 895 827 736 +f 736 827 735 +f 736 735 583 +f 583 735 669 +f 583 669 434 +f 434 669 530 +f 434 530 321 +f 321 530 320 +f 321 320 208 +f 208 320 207 +f 208 207 130 +f 130 207 69 +f 130 69 9 +f 7669 7756 7859 +f 7859 7756 7760 +f 7859 7760 7876 +f 7579 7636 7669 +f 7669 7636 7639 +f 7669 7639 7756 +f 7357 7353 7193 +f 7193 7353 7186 +f 7193 7186 7067 +f 7067 7186 7054 +f 7067 7054 6921 +f 6921 7054 6890 +f 6921 6890 6763 +f 6763 6890 6807 +f 6763 6807 6628 +f 6628 6807 6684 +f 6628 6684 6553 +f 6553 6684 6587 +f 6553 6587 6395 +f 6395 6587 6351 +f 6395 6351 6310 +f 6310 6351 6276 +f 6310 6276 6141 +f 6141 6276 6180 +f 6141 6180 5987 +f 5987 6180 5993 +f 5987 5993 5825 +f 5825 5993 5890 +f 5825 5890 5782 +f 5782 5890 5690 +f 5782 5690 5597 +f 5597 5690 5608 +f 5597 5608 5537 +f 5537 5608 5486 +f 5537 5486 5317 +f 5317 5486 5411 +f 5317 5411 5255 +f 5255 5411 5214 +f 5255 5214 5102 +f 5102 5214 5097 +f 5102 5097 4913 +f 4913 5097 4985 +f 4913 4985 4806 +f 4806 4985 4883 +f 4806 4883 4627 +f 4627 4883 4731 +f 4627 4731 4587 +f 4587 4731 4529 +f 4587 4529 4436 +f 4436 4529 4410 +f 4436 4410 4337 +f 4337 4410 4350 +f 4337 4350 4155 +f 4155 4350 4175 +f 4155 4175 3999 +f 3999 4175 4031 +f 3999 4031 3873 +f 3873 4031 3912 +f 3873 3912 3717 +f 3717 3912 3773 +f 3717 3773 3641 +f 3641 3773 3675 +f 3641 3675 3551 +f 3551 3675 3521 +f 3551 3521 3340 +f 3340 3521 3363 +f 3340 3363 3241 +f 3241 3363 3229 +f 3241 3229 3102 +f 3102 3229 3101 +f 3102 3101 2984 +f 2984 3101 2973 +f 2984 2973 2834 +f 2834 2973 2833 +f 2834 2833 2675 +f 2675 2833 2692 +f 2675 2692 2547 +f 2547 2692 2595 +f 2547 2595 2443 +f 2443 2595 2389 +f 2443 2389 2260 +f 2260 2389 2259 +f 2260 2259 2130 +f 2130 2259 2158 +f 2130 2158 2062 +f 2062 2158 2076 +f 2062 2076 1846 +f 1846 2076 1892 +f 1846 1892 1708 +f 1708 1892 1733 +f 1708 1733 1604 +f 1604 1733 1626 +f 1604 1626 1558 +f 1558 1626 1493 +f 1558 1493 1404 +f 1404 1493 1386 +f 1404 1386 1208 +f 1208 1386 1216 +f 1208 1216 1138 +f 1138 1216 1159 +f 1138 1159 1000 +f 1000 1159 968 +f 1000 968 846 +f 846 968 895 +f 846 895 782 +f 782 895 736 +f 782 736 563 +f 563 736 583 +f 563 583 441 +f 441 583 434 +f 441 434 400 +f 400 434 321 +f 400 321 232 +f 232 321 208 +f 232 208 80 +f 80 208 130 +f 80 130 9 +f 7193 7268 7357 +f 7357 7268 7271 +f 7357 7271 7391 +f 7123 7067 6900 +f 6900 7067 6921 +f 6900 6921 6791 +f 6791 6921 6763 +f 6791 6763 6721 +f 6721 6763 6628 +f 6721 6628 6470 +f 6470 6628 6553 +f 6470 6553 6381 +f 6381 6553 6395 +f 6381 6395 6329 +f 6329 6395 6310 +f 6329 6310 6147 +f 6147 6310 6141 +f 6147 6141 5994 +f 5994 6141 5987 +f 5994 5987 5937 +f 5937 5987 5825 +f 5937 5825 5756 +f 5756 5825 5782 +f 5756 5782 5605 +f 5605 5782 5597 +f 5605 5597 5449 +f 5449 5597 5537 +f 5449 5537 5381 +f 5381 5537 5317 +f 5381 5317 5208 +f 5208 5317 5255 +f 5208 5255 5136 +f 5136 5255 5102 +f 5136 5102 4965 +f 4965 5102 4913 +f 4965 4913 4853 +f 4853 4913 4806 +f 4853 4806 4647 +f 4647 4806 4627 +f 4647 4627 4495 +f 4495 4627 4587 +f 4495 4587 4479 +f 4479 4587 4436 +f 4479 4436 4237 +f 4237 4436 4337 +f 4237 4337 4148 +f 4148 4337 4155 +f 4148 4155 3992 +f 3992 4155 3999 +f 3992 3999 3851 +f 3851 3999 3873 +f 3851 3873 3807 +f 3807 3873 3717 +f 3807 3717 3583 +f 3583 3717 3641 +f 3583 3641 3528 +f 3528 3641 3551 +f 3528 3551 3317 +f 3317 3551 3340 +f 3317 3340 3237 +f 3237 3340 3241 +f 3237 3241 3117 +f 3117 3241 3102 +f 3117 3102 2965 +f 2965 3102 2984 +f 2965 2984 2860 +f 2860 2984 2834 +f 2860 2834 2704 +f 2704 2834 2675 +f 2704 2675 2562 +f 2562 2675 2547 +f 2562 2547 2431 +f 2431 2547 2443 +f 2431 2443 2289 +f 2289 2443 2260 +f 2289 2260 2209 +f 2209 2260 2130 +f 2209 2130 2070 +f 2070 2130 2062 +f 2070 2062 1918 +f 1918 2062 1846 +f 1918 1846 1754 +f 1754 1846 1708 +f 1754 1708 1650 +f 1650 1708 1604 +f 1650 1604 1565 +f 1565 1604 1558 +f 1565 1558 1405 +f 1405 1558 1404 +f 1405 1404 1265 +f 1265 1404 1208 +f 1265 1208 1139 +f 1139 1208 1138 +f 1139 1138 969 +f 969 1138 1000 +f 969 1000 896 +f 896 1000 846 +f 896 846 737 +f 737 846 782 +f 737 782 633 +f 633 782 563 +f 633 563 504 +f 504 563 441 +f 504 441 341 +f 341 441 400 +f 341 400 214 +f 214 400 232 +f 214 232 151 +f 151 232 80 +f 151 80 12 +f 7029 7123 6895 +f 6895 7123 6900 +f 6895 6900 6772 +f 6772 6900 6791 +f 6772 6791 6599 +f 6599 6791 6721 +f 6599 6721 6549 +f 6549 6721 6470 +f 6549 6470 6426 +f 6426 6470 6381 +f 6426 6381 6238 +f 6238 6381 6329 +f 6238 6329 6102 +f 6102 6329 6147 +f 6102 6147 6001 +f 6001 6147 5994 +f 6001 5994 5871 +f 5871 5994 5937 +f 5871 5937 5727 +f 5727 5937 5756 +f 5727 5756 5675 +f 5675 5756 5605 +f 5675 5605 5454 +f 5454 5605 5449 +f 5454 5449 5399 +f 5399 5449 5381 +f 5399 5381 5209 +f 5209 5381 5208 +f 5209 5208 5147 +f 5147 5208 5136 +f 5147 5136 4954 +f 4954 5136 4965 +f 4954 4965 4786 +f 4786 4965 4853 +f 4786 4853 4719 +f 4719 4853 4647 +f 4719 4647 4497 +f 4497 4647 4495 +f 4497 4495 4403 +f 4403 4495 4479 +f 4403 4479 4279 +f 4279 4479 4237 +f 4279 4237 4165 +f 4165 4237 4148 +f 4165 4148 4057 +f 4057 4148 3992 +f 4057 3992 3843 +f 3843 3992 3851 +f 3843 3851 3712 +f 3712 3851 3807 +f 3712 3807 3629 +f 3629 3807 3583 +f 3629 3583 3458 +f 3458 3583 3528 +f 3458 3528 3344 +f 3344 3528 3317 +f 3344 3317 3274 +f 3274 3317 3237 +f 3274 3237 3118 +f 3118 3237 3117 +f 3118 3117 2969 +f 2969 3117 2965 +f 2969 2965 2849 +f 2849 2965 2860 +f 2849 2860 2705 +f 2705 2860 2704 +f 2705 2704 2555 +f 2555 2704 2562 +f 2555 2562 2444 +f 2444 2562 2431 +f 2444 2431 2247 +f 2247 2431 2289 +f 2247 2289 2159 +f 2159 2289 2209 +f 2159 2209 1997 +f 1997 2209 2070 +f 1997 2070 1919 +f 1919 2070 1918 +f 1919 1918 1718 +f 1718 1918 1754 +f 1718 1754 1673 +f 1673 1754 1650 +f 1673 1650 1494 +f 1494 1650 1565 +f 1494 1565 1429 +f 1429 1565 1405 +f 1429 1405 1286 +f 1286 1405 1265 +f 1286 1265 1116 +f 1116 1265 1139 +f 1116 1139 986 +f 986 1139 969 +f 986 969 911 +f 911 969 896 +f 911 896 791 +f 791 896 737 +f 791 737 662 +f 662 737 633 +f 662 633 442 +f 442 633 504 +f 442 504 401 +f 401 504 341 +f 401 341 270 +f 270 341 214 +f 270 214 43 +f 43 214 151 +f 43 151 12 +f 6953 6895 6832 +f 6832 6895 6772 +f 6832 6772 6659 +f 6659 6772 6599 +f 6659 6599 6583 +f 6583 6599 6549 +f 6583 6549 6355 +f 6355 6549 6426 +f 6355 6426 6327 +f 6327 6426 6238 +f 6327 6238 6097 +f 6097 6238 6102 +f 6097 6102 5977 +f 5977 6102 6001 +f 5977 6001 5861 +f 5861 6001 5871 +f 5861 5871 5797 +f 5797 5871 5727 +f 5797 5727 5603 +f 5603 5727 5675 +f 5603 5675 5455 +f 5455 5675 5454 +f 5455 5454 5310 +f 5310 5454 5399 +f 5310 5399 5239 +f 5239 5399 5209 +f 5239 5209 5103 +f 5103 5209 5147 +f 5103 5147 4927 +f 4927 5147 4954 +f 4927 4954 4841 +f 4841 4954 4786 +f 4841 4786 4675 +f 4675 4786 4719 +f 4675 4719 4588 +f 4588 4719 4497 +f 4588 4497 4415 +f 4415 4497 4403 +f 4415 4403 4261 +f 4261 4403 4279 +f 4261 4279 4163 +f 4163 4279 4165 +f 4163 4165 4051 +f 4051 4165 4057 +f 4051 4057 3852 +f 3852 4057 3843 +f 3852 3843 3735 +f 3735 3843 3712 +f 3735 3712 3659 +f 3659 3712 3629 +f 3659 3629 3501 +f 3501 3629 3458 +f 3501 3458 3407 +f 3407 3458 3344 +f 3407 3344 3249 +f 3249 3344 3274 +f 3249 3274 3163 +f 3163 3274 3118 +f 3163 3118 2951 +f 2951 3118 2969 +f 2951 2969 2867 +f 2867 2969 2849 +f 2867 2849 2676 +f 2676 2849 2705 +f 2676 2705 2541 +f 2541 2705 2555 +f 2541 2555 2465 +f 2465 2555 2444 +f 2465 2444 2306 +f 2306 2444 2247 +f 2306 2247 2170 +f 2170 2247 2159 +f 2170 2159 2071 +f 2071 2159 1997 +f 2071 1997 1953 +f 1953 1997 1919 +f 1953 1919 1813 +f 1813 1919 1718 +f 1813 1718 1651 +f 1651 1718 1673 +f 1651 1673 1451 +f 1451 1673 1494 +f 1451 1494 1430 +f 1430 1494 1429 +f 1430 1429 1238 +f 1238 1429 1286 +f 1238 1286 1117 +f 1117 1286 1116 +f 1117 1116 1001 +f 1001 1116 986 +f 1001 986 880 +f 880 986 911 +f 880 911 697 +f 697 911 791 +f 697 791 598 +f 598 791 662 +f 598 662 531 +f 531 662 442 +f 531 442 409 +f 409 442 401 +f 409 401 174 +f 174 401 270 +f 174 270 47 +f 47 270 43 +f 47 43 13 +f 6919 6953 6842 +f 6842 6953 6832 +f 6842 6832 6660 +f 6660 6832 6659 +f 6660 6659 6539 +f 6539 6659 6583 +f 6539 6583 6389 +f 6389 6583 6355 +f 6389 6355 6255 +f 6255 6355 6327 +f 6255 6327 6191 +f 6191 6327 6097 +f 6191 6097 6020 +f 6020 6097 5977 +f 6020 5977 5833 +f 5833 5977 5861 +f 5833 5861 5745 +f 5745 5861 5797 +f 5745 5797 5551 +f 5551 5797 5603 +f 5551 5603 5491 +f 5491 5603 5455 +f 5491 5455 5318 +f 5318 5455 5310 +f 5318 5310 5203 +f 5203 5310 5239 +f 5203 5239 5085 +f 5085 5239 5103 +f 5085 5103 4955 +f 4955 5103 4927 +f 4955 4927 4801 +f 4801 4927 4841 +f 4801 4841 4697 +f 4697 4841 4675 +f 4697 4675 4552 +f 4552 4675 4588 +f 4552 4588 4461 +f 4461 4588 4415 +f 4461 4415 4247 +f 4247 4415 4261 +f 4247 4261 4185 +f 4185 4261 4163 +f 4185 4163 3971 +f 3971 4163 4051 +f 3971 4051 3890 +f 3890 4051 3852 +f 3890 3852 3781 +f 3781 3852 3735 +f 3781 3735 3621 +f 3621 3735 3659 +f 3621 3659 3515 +f 3515 3659 3501 +f 3515 3501 3411 +f 3411 3501 3407 +f 3411 3407 3266 +f 3266 3407 3249 +f 3266 3249 3050 +f 3050 3249 3163 +f 3050 3163 2985 +f 2985 3163 2951 +f 2985 2951 2840 +f 2840 2951 2867 +f 2840 2867 2693 +f 2693 2867 2676 +f 2693 2676 2563 +f 2563 2676 2541 +f 2563 2541 2445 +f 2445 2541 2465 +f 2445 2465 2227 +f 2227 2465 2306 +f 2227 2306 2099 +f 2099 2306 2170 +f 2099 2170 2030 +f 2030 2170 2071 +f 2030 2071 1893 +f 1893 2071 1953 +f 1893 1953 1734 +f 1734 1953 1813 +f 1734 1813 1665 +f 1665 1813 1651 +f 1665 1651 1460 +f 1460 1651 1451 +f 1460 1451 1406 +f 1406 1451 1430 +f 1406 1430 1295 +f 1295 1430 1238 +f 1295 1238 1118 +f 1118 1238 1117 +f 1118 1117 1046 +f 1046 1117 1001 +f 1046 1001 828 +f 828 1001 880 +f 828 880 718 +f 718 880 697 +f 718 697 634 +f 634 697 598 +f 634 598 496 +f 496 598 531 +f 496 531 402 +f 402 531 409 +f 402 409 273 +f 273 409 174 +f 273 174 102 +f 102 174 47 +f 102 47 13 +f 7004 6897 7008 +f 7008 6897 7131 +f 7008 7131 7137 +f 6897 6919 6779 +f 6779 6919 6842 +f 6779 6842 6631 +f 6631 6842 6660 +f 6631 6660 6559 +f 6559 6660 6539 +f 6559 6539 6369 +f 6369 6539 6389 +f 6369 6389 6251 +f 6251 6389 6255 +f 6251 6255 6098 +f 6098 6255 6191 +f 6098 6191 5989 +f 5989 6191 6020 +f 5989 6020 5837 +f 5837 6020 5833 +f 5837 5833 5765 +f 5765 5833 5745 +f 5765 5745 5653 +f 5653 5745 5551 +f 5653 5551 5439 +f 5439 5551 5491 +f 5439 5491 5375 +f 5375 5491 5318 +f 5375 5318 5156 +f 5156 5318 5203 +f 5156 5203 5119 +f 5119 5203 5085 +f 5119 5085 4946 +f 4946 5085 4955 +f 4946 4955 4854 +f 4854 4955 4801 +f 4854 4801 4724 +f 4724 4801 4697 +f 4724 4697 4522 +f 4522 4697 4552 +f 4522 4552 4419 +f 4419 4552 4461 +f 4419 4461 4343 +f 4343 4461 4247 +f 4343 4247 4129 +f 4129 4247 4185 +f 4129 4185 3984 +f 3984 4185 3971 +f 3984 3971 3951 +f 3951 3971 3890 +f 3951 3890 3770 +f 3770 3890 3781 +f 3770 3781 3573 +f 3573 3781 3621 +f 3573 3621 3498 +f 3498 3621 3515 +f 3498 3515 3370 +f 3370 3515 3411 +f 3370 3411 3217 +f 3217 3411 3266 +f 3217 3266 3074 +f 3074 3266 3050 +f 3074 3050 2993 +f 2993 3050 2985 +f 2993 2985 2856 +f 2856 2985 2840 +f 2856 2840 2719 +f 2719 2840 2693 +f 2719 2693 2596 +f 2596 2693 2563 +f 2596 2563 2437 +f 2437 2563 2445 +f 2437 2445 2261 +f 2261 2445 2227 +f 2261 2227 2146 +f 2146 2227 2099 +f 2146 2099 2015 +f 2015 2099 2030 +f 2015 2030 1858 +f 1858 2030 1893 +f 1858 1893 1790 +f 1790 1893 1734 +f 1790 1734 1674 +f 1674 1734 1665 +f 1674 1665 1495 +f 1495 1665 1460 +f 1495 1460 1407 +f 1407 1460 1406 +f 1407 1406 1266 +f 1266 1406 1295 +f 1266 1295 1168 +f 1168 1295 1118 +f 1168 1118 978 +f 978 1118 1046 +f 978 1046 869 +f 869 1046 828 +f 869 828 772 +f 772 828 718 +f 772 718 564 +f 564 718 634 +f 564 634 516 +f 516 634 496 +f 516 496 381 +f 381 496 402 +f 381 402 215 +f 215 402 273 +f 215 273 82 +f 82 273 102 +f 82 102 28 +f 7089 7131 6945 +f 6945 7131 6897 +f 6945 6897 6753 +f 6753 6897 6779 +f 6753 6779 6636 +f 6636 6779 6631 +f 6636 6631 6475 +f 6475 6631 6559 +f 6475 6559 6335 +f 6335 6559 6369 +f 6335 6369 6275 +f 6275 6369 6251 +f 6275 6251 6193 +f 6193 6251 6098 +f 6193 6098 5945 +f 5945 6098 5989 +f 5945 5989 5889 +f 5889 5989 5837 +f 5889 5837 5741 +f 5741 5837 5765 +f 5741 5765 5617 +f 5617 5765 5653 +f 5617 5653 5505 +f 5505 5653 5439 +f 5505 5439 5397 +f 5397 5439 5375 +f 5397 5375 5257 +f 5257 5375 5156 +f 5257 5156 5101 +f 5101 5156 5119 +f 5101 5119 4920 +f 4920 5119 4946 +f 4920 4946 4817 +f 4817 4946 4854 +f 4817 4854 4683 +f 4683 4854 4724 +f 4683 4724 4551 +f 4551 4724 4522 +f 4551 4522 4481 +f 4481 4522 4419 +f 4481 4419 4313 +f 4313 4419 4343 +f 4313 4343 4191 +f 4191 4343 4129 +f 4191 4129 4043 +f 4043 4129 3984 +f 4043 3984 3903 +f 3903 3984 3951 +f 3903 3951 3755 +f 3755 3951 3770 +f 3755 3770 3633 +f 3633 3770 3573 +f 3633 3573 3457 +f 3457 3573 3498 +f 3457 3498 3361 +f 3361 3498 3370 +f 3361 3370 3255 +f 3255 3370 3217 +f 3255 3217 3137 +f 3137 3217 3074 +f 3137 3074 3015 +f 3015 3074 2993 +f 3015 2993 2864 +f 2864 2993 2856 +f 2864 2856 2683 +f 2683 2856 2719 +f 2683 2719 2559 +f 2559 2719 2596 +f 2559 2596 2397 +f 2397 2596 2437 +f 2397 2437 2305 +f 2305 2437 2261 +f 2305 2261 2109 +f 2109 2261 2146 +f 2109 2146 2039 +f 2039 2146 2015 +f 2039 2015 1955 +f 1955 2015 1858 +f 1955 1858 1789 +f 1789 1858 1790 +f 1789 1790 1683 +f 1683 1790 1674 +f 1683 1674 1517 +f 1517 1674 1495 +f 1517 1495 1381 +f 1381 1495 1407 +f 1381 1407 1309 +f 1309 1407 1266 +f 1309 1266 1171 +f 1171 1266 1168 +f 1171 1168 991 +f 991 1168 978 +f 991 978 817 +f 817 978 869 +f 817 869 762 +f 762 869 772 +f 762 772 572 +f 572 772 564 +f 572 564 465 +f 465 564 516 +f 465 516 399 +f 399 516 381 +f 399 381 197 +f 197 381 215 +f 197 215 103 +f 103 215 82 +f 103 82 28 +f 7269 7251 7273 +f 7273 7251 7385 +f 7273 7385 7393 +f 7757 7679 7762 +f 7762 7679 7807 +f 7762 7807 7877 +f 7679 7641 7575 +f 7575 7641 7638 +f 7575 7638 7521 +f 7870 7807 7753 +f 7753 7807 7679 +f 7753 7679 7564 +f 7564 7679 7575 +f 7564 7575 7449 +f 7449 7575 7515 +f 7449 7515 7299 +f 7299 7515 7311 +f 7299 7311 7197 +f 7197 7311 7155 +f 7197 7155 7055 +f 7055 7155 7041 +f 7055 7041 6891 +f 6891 7041 6879 +f 6891 6879 6780 +f 6780 6879 6841 +f 6780 6841 6701 +f 6701 6841 6715 +f 6701 6715 6487 +f 6487 6715 6493 +f 6487 6493 6393 +f 6393 6493 6359 +f 6393 6359 6271 +f 6271 6359 6303 +f 6271 6303 6121 +f 6121 6303 6178 +f 6121 6178 6031 +f 6031 6178 6040 +f 6031 6040 5885 +f 5885 6040 5921 +f 5885 5921 5735 +f 5735 5921 5705 +f 5735 5705 5639 +f 5639 5705 5649 +f 5639 5649 5459 +f 5459 5649 5489 +f 5459 5489 5391 +f 5391 5489 5289 +f 5391 5289 5253 +f 5253 5289 5219 +f 5253 5219 5081 +f 5081 5219 5053 +f 5081 5053 4969 +f 4969 5053 4907 +f 4969 4907 4822 +f 4822 4907 4797 +f 4822 4797 4663 +f 4663 4797 4727 +f 4663 4727 4549 +f 4549 4727 4565 +f 4549 4565 4477 +f 4477 4565 4385 +f 4477 4385 4353 +f 4353 4385 4289 +f 4353 4289 4125 +f 4125 4289 4192 +f 4125 4192 3985 +f 3985 4192 4083 +f 3985 4083 3906 +f 3906 4083 3917 +f 3906 3917 3777 +f 3777 3917 3805 +f 3777 3805 3673 +f 3673 3805 3599 +f 3673 3599 3553 +f 3553 3599 3477 +f 3553 3477 3337 +f 3337 3477 3417 +f 3337 3417 3247 +f 3247 3417 3277 +f 3247 3277 3071 +f 3071 3277 3063 +f 3071 3063 2938 +f 2938 3063 2949 +f 2938 2949 2845 +f 2845 2949 2813 +f 2845 2813 2647 +f 2647 2813 2641 +f 2647 2641 2583 +f 2583 2641 2567 +f 2583 2567 2399 +f 2399 2567 2406 +f 2399 2406 2248 +f 2248 2406 2299 +f 2248 2299 2138 +f 2138 2299 2195 +f 2138 2195 2016 +f 2016 2195 1957 +f 2016 1957 1875 +f 1875 1957 1873 +f 1875 1873 1774 +f 1774 1873 1799 +f 1774 1799 1605 +f 1605 1799 1579 +f 1605 1579 1487 +f 1487 1579 1463 +f 1487 1463 1433 +f 1433 1463 1441 +f 1433 1441 1203 +f 1203 1441 1305 +f 1203 1305 1160 +f 1160 1305 1172 +f 1160 1172 1011 +f 1011 1172 1037 +f 1011 1037 847 +f 847 1037 909 +f 847 909 681 +f 681 909 769 +f 681 769 558 +f 558 769 573 +f 558 573 462 +f 462 573 440 +f 462 440 366 +f 366 440 363 +f 366 363 274 +f 274 363 242 +f 274 242 128 +f 128 242 155 +f 128 155 32 +f 7765 7870 7672 +f 7672 7870 7753 +f 7672 7753 7601 +f 7601 7753 7564 +f 7601 7564 7409 +f 7409 7564 7449 +f 7409 7449 7343 +f 7343 7449 7299 +f 7343 7299 7201 +f 7201 7299 7197 +f 7201 7197 7065 +f 7065 7197 7055 +f 7065 7055 6943 +f 6943 7055 6891 +f 6943 6891 6839 +f 6839 6891 6780 +f 6839 6780 6615 +f 6615 6780 6701 +f 6615 6701 6541 +f 6541 6701 6487 +f 6541 6487 6437 +f 6437 6487 6393 +f 6437 6393 6269 +f 6269 6393 6271 +f 6269 6271 6113 +f 6113 6271 6121 +f 6113 6121 6013 +f 6013 6121 6031 +f 6013 6031 5880 +f 5880 6031 5885 +f 5880 5885 5773 +f 5773 5885 5735 +f 5773 5735 5644 +f 5644 5735 5639 +f 5644 5639 5539 +f 5539 5639 5459 +f 5539 5459 5292 +f 5292 5459 5391 +f 5292 5391 5220 +f 5220 5391 5253 +f 5220 5253 5071 +f 5071 5253 5081 +f 5071 5081 5002 +f 5002 5081 4969 +f 5002 4969 4825 +f 4825 4969 4822 +f 4825 4822 4717 +f 4717 4822 4663 +f 4717 4663 4585 +f 4585 4663 4549 +f 4585 4549 4397 +f 4397 4549 4477 +f 4397 4477 4263 +f 4263 4477 4353 +f 4263 4353 4168 +f 4168 4353 4125 +f 4168 4125 3979 +f 3979 4125 3985 +f 3979 3985 3901 +f 3901 3985 3906 +f 3901 3906 3821 +f 3821 3906 3777 +f 3821 3777 3615 +f 3615 3777 3673 +f 3615 3673 3481 +f 3481 3673 3553 +f 3481 3553 3412 +f 3412 3553 3337 +f 3412 3337 3171 +f 3171 3337 3247 +f 3171 3247 3053 +f 3053 3247 3071 +f 3053 3071 3001 +f 3001 3071 2938 +f 3001 2938 2809 +f 2809 2938 2845 +f 2809 2845 2643 +f 2643 2845 2647 +f 2643 2647 2589 +f 2589 2647 2583 +f 2589 2583 2419 +f 2419 2583 2399 +f 2419 2399 2284 +f 2284 2399 2248 +f 2284 2248 2177 +f 2177 2248 2138 +f 2177 2138 2083 +f 2083 2138 2016 +f 2083 2016 1932 +f 1932 2016 1875 +f 1932 1875 1714 +f 1714 1875 1774 +f 1714 1774 1652 +f 1652 1774 1605 +f 1652 1605 1447 +f 1447 1605 1487 +f 1447 1487 1352 +f 1352 1487 1433 +f 1352 1433 1277 +f 1277 1433 1203 +f 1277 1203 1119 +f 1119 1203 1160 +f 1119 1160 979 +f 979 1160 1011 +f 979 1011 857 +f 857 1011 847 +f 857 847 738 +f 738 847 681 +f 738 681 607 +f 607 681 558 +f 607 558 505 +f 505 558 462 +f 505 462 305 +f 305 462 366 +f 305 366 198 +f 198 366 274 +f 198 274 64 +f 64 274 128 +f 64 128 19 +f 7817 7765 7675 +f 7675 7765 7672 +f 7675 7672 7542 +f 7542 7672 7601 +f 7542 7601 7479 +f 7479 7601 7409 +f 7479 7409 7381 +f 7381 7409 7343 +f 7381 7343 7209 +f 7209 7343 7201 +f 7209 7201 7035 +f 7035 7201 7065 +f 7035 7065 6941 +f 6941 7065 6943 +f 6941 6943 6836 +f 6836 6943 6839 +f 6836 6839 6645 +f 6645 6839 6615 +f 6645 6615 6488 +f 6488 6615 6541 +f 6488 6541 6401 +f 6401 6541 6437 +f 6401 6437 6215 +f 6215 6437 6269 +f 6215 6269 6091 +f 6091 6269 6113 +f 6091 6113 6045 +f 6045 6113 6013 +f 6045 6013 5901 +f 5901 6013 5880 +f 5901 5880 5698 +f 5698 5880 5773 +f 5698 5773 5571 +f 5571 5773 5644 +f 5571 5644 5471 +f 5471 5644 5539 +f 5471 5539 5365 +f 5365 5539 5292 +f 5365 5292 5175 +f 5175 5292 5220 +f 5175 5220 5107 +f 5107 5220 5071 +f 5107 5071 4961 +f 4961 5071 5002 +f 4961 5002 4874 +f 4874 5002 4825 +f 4874 4825 4747 +f 4747 4825 4717 +f 4747 4717 4507 +f 4507 4717 4585 +f 4507 4585 4416 +f 4416 4585 4397 +f 4416 4397 4307 +f 4307 4397 4263 +f 4307 4263 4159 +f 4159 4263 4168 +f 4159 4168 4017 +f 4017 4168 3979 +f 4017 3979 3948 +f 3948 3979 3901 +f 3948 3901 3796 +f 3796 3901 3821 +f 3796 3821 3644 +f 3644 3821 3615 +f 3644 3615 3547 +f 3547 3615 3481 +f 3547 3481 3305 +f 3305 3481 3412 +f 3305 3412 3193 +f 3193 3412 3171 +f 3193 3171 3061 +f 3061 3171 3053 +f 3061 3053 2997 +f 2997 3053 3001 +f 2997 3001 2871 +f 2871 3001 2809 +f 2871 2809 2655 +f 2655 2809 2643 +f 2655 2643 2605 +f 2605 2643 2589 +f 2605 2589 2427 +f 2427 2589 2419 +f 2427 2419 2243 +f 2243 2419 2284 +f 2243 2284 2151 +f 2151 2284 2177 +f 2151 2177 2036 +f 2036 2177 2083 +f 2036 2083 1945 +f 1945 2083 1932 +f 1945 1932 1805 +f 1805 1932 1714 +f 1805 1714 1606 +f 1606 1714 1652 +f 1606 1652 1509 +f 1509 1652 1447 +f 1509 1447 1387 +f 1387 1447 1352 +f 1387 1352 1259 +f 1259 1352 1277 +f 1259 1277 1105 +f 1105 1277 1119 +f 1105 1119 1002 +f 1002 1119 979 +f 1002 979 919 +f 919 979 857 +f 919 857 783 +f 783 857 738 +f 783 738 551 +f 551 738 607 +f 551 607 474 +f 474 607 505 +f 474 505 419 +f 419 505 305 +f 419 305 253 +f 253 305 198 +f 253 198 44 +f 44 198 64 +f 44 64 19 +f 7867 7817 7682 +f 7682 7817 7675 +f 7682 7675 7631 +f 7631 7675 7542 +f 7631 7542 7432 +f 7432 7542 7479 +f 7432 7479 7275 +f 7275 7479 7381 +f 7275 7381 7213 +f 7213 7381 7209 +f 7213 7209 7047 +f 7047 7209 7035 +f 7047 7035 6914 +f 6914 7035 6941 +f 6914 6941 6797 +f 6797 6941 6836 +f 6797 6836 6703 +f 6703 6836 6645 +f 6703 6645 6550 +f 6550 6645 6488 +f 6550 6488 6396 +f 6396 6488 6401 +f 6396 6401 6281 +f 6281 6401 6215 +f 6281 6215 6095 +f 6095 6215 6091 +f 6095 6091 6037 +f 6037 6091 6045 +f 6037 6045 5877 +f 5877 6045 5901 +f 5877 5901 5695 +f 5695 5901 5698 +f 5695 5698 5611 +f 5611 5698 5571 +f 5611 5571 5544 +f 5544 5571 5471 +f 5544 5471 5341 +f 5341 5471 5365 +f 5341 5365 5273 +f 5273 5365 5175 +f 5273 5175 5078 +f 5078 5175 5107 +f 5078 5107 4911 +f 4911 5107 4961 +f 4911 4961 4779 +f 4779 4961 4874 +f 4779 4874 4694 +f 4694 4874 4747 +f 4694 4747 4517 +f 4517 4747 4507 +f 4517 4507 4445 +f 4445 4507 4416 +f 4445 4416 4355 +f 4355 4416 4307 +f 4355 4307 4225 +f 4225 4307 4159 +f 4225 4159 4073 +f 4073 4159 4017 +f 4073 4017 3929 +f 3929 4017 3948 +f 3929 3948 3745 +f 3745 3948 3796 +f 3745 3796 3624 +f 3624 3796 3644 +f 3624 3644 3560 +f 3560 3644 3547 +f 3560 3547 3323 +f 3323 3547 3305 +f 3323 3305 3176 +f 3176 3305 3193 +f 3176 3193 3079 +f 3079 3193 3061 +f 3079 3061 2945 +f 2945 3061 2997 +f 2945 2997 2787 +f 2787 2997 2871 +f 2787 2871 2720 +f 2720 2871 2655 +f 2720 2655 2513 +f 2513 2655 2605 +f 2513 2605 2410 +f 2410 2605 2427 +f 2410 2427 2280 +f 2280 2427 2243 +f 2280 2243 2103 +f 2103 2243 2151 +f 2103 2151 2065 +f 2065 2151 2036 +f 2065 2036 1853 +f 1853 2036 1945 +f 1853 1945 1817 +f 1817 1945 1805 +f 1817 1805 1663 +f 1663 1805 1606 +f 1663 1606 1551 +f 1551 1606 1509 +f 1551 1509 1363 +f 1363 1509 1387 +f 1363 1387 1211 +f 1211 1387 1259 +f 1211 1259 1146 +f 1146 1259 1105 +f 1146 1105 933 +f 933 1105 1002 +f 933 1002 897 +f 897 1002 919 +f 897 919 767 +f 767 919 783 +f 767 783 653 +f 653 783 551 +f 653 551 443 +f 443 551 474 +f 443 474 382 +f 382 474 419 +f 382 419 193 +f 193 419 253 +f 193 253 54 +f 54 253 44 +f 54 44 15 +f 7767 7867 7717 +f 7717 7867 7682 +f 7717 7682 7573 +f 7573 7682 7631 +f 7573 7631 7425 +f 7425 7631 7432 +f 7425 7432 7279 +f 7279 7432 7275 +f 7279 7275 7217 +f 7217 7275 7213 +f 7217 7213 7059 +f 7059 7213 7047 +f 7059 7047 6967 +f 6967 7047 6914 +f 6967 6914 6826 +f 6826 6914 6797 +f 6826 6797 6705 +f 6705 6797 6703 +f 6705 6703 6473 +f 6473 6703 6550 +f 6473 6550 6382 +f 6382 6550 6396 +f 6382 6396 6234 +f 6234 6396 6281 +f 6234 6281 6151 +f 6151 6281 6095 +f 6151 6095 6051 +f 6051 6095 6037 +f 6051 6037 5862 +f 5862 6037 5877 +f 5862 5877 5739 +f 5739 5877 5695 +f 5739 5695 5665 +f 5665 5695 5611 +f 5665 5611 5493 +f 5493 5611 5544 +f 5493 5544 5367 +f 5367 5544 5341 +f 5367 5341 5161 +f 5161 5341 5273 +f 5161 5273 5073 +f 5073 5273 5078 +f 5073 5078 4901 +f 4901 5078 4911 +f 4901 4911 4763 +f 4763 4911 4779 +f 4763 4779 4665 +f 4665 4779 4694 +f 4665 4694 4511 +f 4511 4694 4517 +f 4511 4517 4395 +f 4395 4517 4445 +f 4395 4445 4269 +f 4269 4445 4355 +f 4269 4355 4189 +f 4189 4355 4225 +f 4189 4225 4045 +f 4045 4225 4073 +f 4045 4073 3869 +f 3869 4073 3929 +f 3869 3929 3722 +f 3722 3929 3745 +f 3722 3745 3651 +f 3651 3745 3624 +f 3651 3624 3540 +f 3540 3624 3560 +f 3540 3560 3387 +f 3387 3560 3323 +f 3387 3323 3243 +f 3243 3323 3176 +f 3243 3176 3159 +f 3159 3176 3079 +f 3159 3079 3009 +f 3009 3079 2945 +f 3009 2945 2829 +f 2829 2945 2787 +f 2829 2787 2741 +f 2741 2787 2720 +f 2741 2720 2533 +f 2533 2720 2513 +f 2533 2513 2403 +f 2403 2513 2410 +f 2403 2410 2225 +f 2225 2410 2280 +f 2225 2280 2097 +f 2097 2280 2103 +f 2097 2103 2055 +f 2055 2103 2065 +f 2055 2065 1927 +f 1927 2065 1853 +f 1927 1853 1827 +f 1827 1853 1817 +f 1827 1817 1617 +f 1617 1817 1663 +f 1617 1663 1452 +f 1452 1663 1551 +f 1452 1551 1408 +f 1408 1551 1363 +f 1408 1363 1222 +f 1222 1363 1211 +f 1222 1211 1106 +f 1106 1211 1146 +f 1106 1146 960 +f 960 1146 933 +f 960 933 923 +f 923 933 897 +f 923 897 792 +f 792 897 767 +f 792 767 618 +f 618 767 653 +f 618 653 455 +f 455 653 443 +f 455 443 325 +f 325 443 382 +f 325 382 285 +f 285 382 193 +f 285 193 114 +f 114 193 54 +f 114 54 15 +f 7843 7767 7699 +f 7699 7767 7717 +f 7699 7717 7621 +f 7621 7717 7573 +f 7621 7573 7455 +f 7455 7573 7425 +f 7455 7425 7297 +f 7297 7425 7279 +f 7297 7279 7204 +f 7204 7279 7217 +f 7204 7217 7107 +f 7107 7217 7059 +f 7107 7059 6934 +f 6934 7059 6967 +f 6934 6967 6845 +f 6845 6967 6826 +f 6845 6826 6697 +f 6697 6826 6705 +f 6697 6705 6554 +f 6554 6705 6473 +f 6554 6473 6377 +f 6377 6473 6382 +f 6377 6382 6229 +f 6229 6382 6234 +f 6229 6234 6077 +f 6077 6234 6151 +f 6077 6151 5961 +f 5961 6151 6051 +f 5961 6051 5919 +f 5919 6051 5862 +f 5919 5862 5801 +f 5801 5862 5739 +f 5801 5739 5569 +f 5569 5739 5665 +f 5569 5665 5533 +f 5533 5665 5493 +f 5533 5493 5342 +f 5342 5493 5367 +f 5342 5367 5275 +f 5275 5367 5161 +f 5275 5161 5127 +f 5127 5161 5073 +f 5127 5073 4905 +f 4905 5073 4901 +f 4905 4901 4767 +f 4767 4901 4763 +f 4767 4763 4729 +f 4729 4763 4665 +f 4729 4665 4541 +f 4541 4665 4511 +f 4541 4511 4483 +f 4483 4511 4395 +f 4483 4395 4339 +f 4339 4395 4269 +f 4339 4269 4171 +f 4171 4269 4189 +f 4171 4189 4013 +f 4013 4189 4045 +f 4013 4045 3864 +f 3864 4045 3869 +f 3864 3869 3813 +f 3813 3869 3722 +f 3813 3722 3639 +f 3639 3722 3651 +f 3639 3651 3507 +f 3507 3651 3540 +f 3507 3540 3425 +f 3425 3540 3387 +f 3425 3387 3256 +f 3256 3387 3243 +f 3256 3243 3085 +f 3085 3243 3159 +f 3085 3159 2925 +f 2925 3159 3009 +f 2925 3009 2872 +f 2872 3009 2829 +f 2872 2829 2689 +f 2689 2829 2741 +f 2689 2741 2519 +f 2519 2741 2533 +f 2519 2533 2455 +f 2455 2533 2403 +f 2455 2403 2274 +f 2274 2403 2225 +f 2274 2225 2101 +f 2101 2225 2097 +f 2101 2097 2008 +f 2008 2097 2055 +f 2008 2055 1951 +f 1951 2055 1927 +f 1951 1927 1784 +f 1784 1927 1827 +f 1784 1827 1612 +f 1612 1827 1617 +f 1612 1617 1464 +f 1464 1617 1452 +f 1464 1452 1344 +f 1344 1452 1408 +f 1344 1408 1313 +f 1313 1408 1222 +f 1313 1222 1174 +f 1174 1222 1106 +f 1174 1106 1015 +f 1015 1106 960 +f 1015 960 925 +f 925 960 923 +f 925 923 689 +f 689 923 792 +f 689 792 673 +f 673 792 618 +f 673 618 475 +f 475 618 455 +f 475 455 326 +f 326 455 325 +f 326 325 186 +f 186 325 285 +f 186 285 83 +f 83 285 114 +f 83 114 3 +f 7833 7843 7723 +f 7723 7843 7699 +f 7723 7699 7527 +f 7527 7699 7621 +f 7527 7621 7493 +f 7493 7621 7455 +f 7493 7455 7283 +f 7283 7455 7297 +f 7283 7297 7241 +f 7241 7297 7204 +f 7241 7204 7033 +f 7033 7204 7107 +f 7033 7107 6977 +f 6977 7107 6934 +f 6977 6934 6851 +f 6851 6934 6845 +f 6851 6845 6671 +f 6671 6845 6697 +f 6671 6697 6507 +f 6507 6697 6554 +f 6507 6554 6405 +f 6405 6554 6377 +f 6405 6377 6300 +f 6300 6377 6229 +f 6300 6229 6109 +f 6109 6229 6077 +f 6109 6077 5997 +f 5997 6077 5961 +f 5997 5961 5897 +f 5897 5961 5919 +f 5897 5919 5771 +f 5771 5919 5801 +f 5771 5801 5633 +f 5633 5801 5569 +f 5633 5569 5436 +f 5436 5569 5533 +f 5436 5533 5385 +f 5385 5533 5342 +f 5385 5342 5251 +f 5251 5342 5275 +f 5251 5275 5049 +f 5049 5275 5127 +f 5049 5127 4989 +f 4989 5127 4905 +f 4989 4905 4813 +f 4813 4905 4767 +f 4813 4767 4711 +f 4711 4767 4729 +f 4711 4729 4559 +f 4559 4729 4541 +f 4559 4541 4443 +f 4443 4541 4483 +f 4443 4483 4233 +f 4233 4483 4339 +f 4233 4339 4181 +f 4181 4339 4171 +f 4181 4171 4048 +f 4048 4171 4013 +f 4048 4013 3858 +f 3858 4013 3864 +f 3858 3864 3705 +f 3705 3864 3813 +f 3705 3813 3669 +f 3669 3813 3639 +f 3669 3639 3461 +f 3461 3639 3507 +f 3461 3507 3313 +f 3313 3507 3425 +f 3313 3425 3202 +f 3202 3425 3256 +f 3202 3256 3095 +f 3095 3256 3085 +f 3095 3085 2911 +f 2911 3085 2925 +f 2911 2925 2853 +f 2853 2925 2872 +f 2853 2872 2761 +f 2761 2872 2689 +f 2761 2689 2617 +f 2617 2689 2519 +f 2617 2519 2475 +f 2475 2519 2455 +f 2475 2455 2241 +f 2241 2455 2274 +f 2241 2274 2121 +f 2121 2274 2101 +f 2121 2101 2005 +f 2005 2101 2008 +f 2005 2008 1885 +f 1885 2008 1951 +f 1885 1951 1820 +f 1820 1951 1784 +f 1820 1784 1671 +f 1671 1784 1612 +f 1671 1612 1471 +f 1471 1612 1464 +f 1471 1464 1388 +f 1388 1464 1344 +f 1388 1344 1256 +f 1256 1344 1313 +f 1256 1313 1147 +f 1147 1313 1174 +f 1147 1174 943 +f 943 1174 1015 +f 943 1015 876 +f 876 1015 925 +f 876 925 692 +f 692 925 689 +f 692 689 619 +f 619 689 673 +f 619 673 517 +f 517 673 475 +f 517 475 352 +f 352 475 326 +f 352 326 221 +f 221 326 186 +f 221 186 57 +f 57 186 83 +f 57 83 3 +f 7775 7833 7739 +f 7739 7833 7723 +f 7739 7723 7557 +f 7557 7723 7527 +f 7557 7527 7462 +f 7462 7527 7493 +f 7462 7493 7383 +f 7383 7493 7283 +f 7383 7283 7247 +f 7247 7283 7241 +f 7247 7241 7077 +f 7077 7241 7033 +f 7077 7033 6957 +f 6957 7033 6977 +f 6957 6977 6735 +f 6735 6977 6851 +f 6735 6851 6602 +f 6602 6851 6671 +f 6602 6671 6535 +f 6535 6671 6507 +f 6535 6507 6341 +f 6341 6507 6405 +f 6341 6405 6325 +f 6325 6405 6300 +f 6325 6300 6159 +f 6159 6300 6109 +f 6159 6109 6069 +f 6069 6109 5997 +f 6069 5997 5857 +f 5857 5997 5897 +f 5857 5897 5721 +f 5721 5897 5771 +f 5721 5771 5577 +f 5577 5771 5633 +f 5577 5633 5531 +f 5531 5633 5436 +f 5531 5436 5382 +f 5382 5436 5385 +f 5382 5385 5267 +f 5267 5385 5251 +f 5267 5251 5131 +f 5131 5251 5049 +f 5131 5049 4973 +f 4973 5049 4989 +f 4973 4989 4809 +f 4809 4989 4813 +f 4809 4813 4737 +f 4737 4813 4711 +f 4737 4711 4557 +f 4557 4711 4559 +f 4557 4559 4459 +f 4459 4559 4443 +f 4459 4443 4271 +f 4271 4443 4233 +f 4271 4233 4118 +f 4118 4233 4181 +f 4118 4181 4007 +f 4007 4181 4048 +f 4007 4048 3921 +f 3921 4048 3858 +f 3921 3858 3803 +f 3803 3858 3705 +f 3803 3705 3661 +f 3661 3705 3669 +f 3661 3669 3455 +f 3455 3669 3461 +f 3455 3461 3335 +f 3335 3461 3313 +f 3335 3313 3181 +f 3181 3313 3202 +f 3181 3202 3135 +f 3135 3202 3095 +f 3135 3095 2952 +f 2952 3095 2911 +f 2952 2911 2780 +f 2780 2911 2853 +f 2780 2853 2635 +f 2635 2853 2761 +f 2635 2761 2527 +f 2527 2761 2617 +f 2527 2617 2367 +f 2367 2617 2475 +f 2367 2475 2229 +f 2229 2475 2241 +f 2229 2241 2147 +f 2147 2241 2121 +f 2147 2121 2003 +f 2003 2121 2005 +f 2003 2005 1865 +f 1865 2005 1885 +f 1865 1885 1765 +f 1765 1885 1820 +f 1765 1820 1583 +f 1583 1820 1671 +f 1583 1671 1483 +f 1483 1671 1471 +f 1483 1471 1333 +f 1333 1471 1388 +f 1333 1388 1299 +f 1299 1388 1256 +f 1299 1256 1067 +f 1067 1256 1147 +f 1067 1147 1016 +f 1016 1147 943 +f 1016 943 885 +f 885 943 876 +f 885 876 731 +f 731 876 692 +f 731 692 657 +f 657 692 619 +f 657 619 513 +f 513 619 517 +f 513 517 342 +f 342 517 352 +f 342 352 203 +f 203 352 221 +f 203 221 73 +f 73 221 57 +f 73 57 35 +f 7809 7775 7725 +f 7725 7775 7739 +f 7725 7739 7583 +f 7583 7739 7557 +f 7583 7557 7491 +f 7491 7557 7462 +f 7491 7462 7345 +f 7345 7462 7383 +f 7345 7383 7159 +f 7159 7383 7247 +f 7159 7247 7105 +f 7105 7247 7077 +f 7105 7077 6973 +f 6973 7077 6957 +f 6973 6957 6785 +f 6785 6957 6735 +f 6785 6735 6605 +f 6605 6735 6602 +f 6605 6602 6499 +f 6499 6602 6535 +f 6499 6535 6353 +f 6353 6535 6341 +f 6353 6341 6285 +f 6285 6341 6325 +f 6285 6325 6153 +f 6153 6325 6159 +f 6153 6159 6005 +f 6005 6159 6069 +f 6005 6069 5886 +f 5886 6069 5857 +f 5886 5857 5722 +f 5722 5857 5721 +f 5722 5721 5673 +f 5673 5721 5577 +f 5673 5577 5519 +f 5519 5577 5531 +f 5519 5531 5305 +f 5305 5531 5382 +f 5305 5382 5165 +f 5165 5382 5267 +f 5165 5267 5075 +f 5075 5267 5131 +f 5075 5131 4903 +f 4903 5131 4973 +f 4903 4973 4783 +f 4783 4973 4809 +f 4783 4809 4709 +f 4709 4809 4737 +f 4709 4737 4613 +f 4613 4737 4557 +f 4613 4557 4472 +f 4472 4557 4459 +f 4472 4459 4331 +f 4331 4459 4271 +f 4331 4271 4160 +f 4160 4271 4118 +f 4160 4118 4089 +f 4089 4118 4007 +f 4089 4007 3925 +f 3925 4007 3921 +f 3925 3921 3829 +f 3829 3921 3803 +f 3829 3803 3681 +f 3681 3803 3661 +f 3681 3661 3545 +f 3545 3661 3455 +f 3545 3455 3377 +f 3377 3455 3335 +f 3377 3335 3173 +f 3173 3335 3181 +f 3173 3181 3081 +f 3081 3181 3135 +f 3081 3135 2955 +f 2955 3135 2952 +f 2955 2952 2791 +f 2791 2952 2780 +f 2791 2780 2671 +f 2671 2780 2635 +f 2671 2635 2537 +f 2537 2635 2527 +f 2537 2527 2481 +f 2481 2527 2367 +f 2481 2367 2277 +f 2277 2367 2229 +f 2277 2229 2199 +f 2199 2229 2147 +f 2199 2147 1981 +f 1981 2147 2003 +f 1981 2003 1899 +f 1899 2003 1865 +f 1899 1865 1725 +f 1725 1865 1765 +f 1725 1765 1641 +f 1641 1765 1583 +f 1641 1583 1480 +f 1480 1583 1483 +f 1480 1483 1417 +f 1417 1483 1333 +f 1417 1333 1245 +f 1245 1333 1299 +f 1245 1299 1133 +f 1133 1299 1067 +f 1133 1067 975 +f 975 1067 1016 +f 975 1016 890 +f 890 1016 885 +f 890 885 708 +f 708 885 731 +f 708 731 671 +f 671 731 657 +f 671 657 476 +f 476 657 513 +f 476 513 393 +f 393 513 342 +f 393 342 247 +f 247 342 203 +f 247 203 91 +f 91 203 73 +f 91 73 36 +f 7773 7809 7663 +f 7663 7809 7725 +f 7663 7725 7571 +f 7571 7725 7583 +f 7571 7583 7513 +f 7513 7583 7491 +f 7513 7491 7331 +f 7331 7491 7345 +f 7331 7345 7207 +f 7207 7345 7159 +f 7207 7159 7079 +f 7079 7159 7105 +f 7079 7105 6885 +f 6885 7105 6973 +f 6885 6973 6789 +f 6789 6973 6785 +f 6789 6785 6611 +f 6611 6785 6605 +f 6611 6605 6567 +f 6567 6605 6499 +f 6567 6499 6450 +f 6450 6499 6353 +f 6450 6353 6267 +f 6267 6353 6285 +f 6267 6285 6163 +f 6163 6285 6153 +f 6163 6153 5955 +f 5955 6153 6005 +f 5955 6005 5899 +f 5899 6005 5886 +f 5899 5886 5707 +f 5707 5886 5722 +f 5707 5722 5575 +f 5575 5722 5673 +f 5575 5673 5447 +f 5447 5673 5519 +f 5447 5519 5401 +f 5401 5519 5305 +f 5401 5305 5263 +f 5263 5305 5165 +f 5263 5165 5129 +f 5129 5165 5075 +f 5129 5075 4933 +f 4933 5075 4903 +f 4933 4903 4835 +f 4835 4903 4783 +f 4835 4783 4741 +f 4741 4783 4709 +f 4741 4709 4573 +f 4573 4709 4613 +f 4573 4613 4475 +f 4475 4613 4472 +f 4475 4472 4345 +f 4345 4472 4331 +f 4345 4331 4143 +f 4143 4331 4160 +f 4143 4160 4033 +f 4033 4160 4089 +f 4033 4089 3877 +f 3877 4089 3925 +f 3877 3925 3729 +f 3729 3925 3829 +f 3729 3829 3679 +f 3679 3829 3681 +f 3679 3681 3557 +f 3557 3681 3545 +f 3557 3545 3427 +f 3427 3545 3377 +f 3427 3377 3270 +f 3270 3377 3173 +f 3270 3173 3047 +f 3047 3173 3081 +f 3047 3081 2935 +f 2935 3081 2955 +f 2935 2955 2889 +f 2889 2955 2791 +f 2889 2791 2739 +f 2739 2791 2671 +f 2739 2671 2621 +f 2621 2671 2537 +f 2621 2537 2393 +f 2393 2537 2481 +f 2393 2481 2310 +f 2310 2481 2277 +f 2310 2277 2095 +f 2095 2277 2199 +f 2095 2199 2051 +f 2051 2199 1981 +f 2051 1981 1851 +f 1851 1981 1899 +f 1851 1899 1721 +f 1721 1899 1725 +f 1721 1725 1621 +f 1621 1725 1641 +f 1621 1641 1472 +f 1472 1641 1480 +f 1472 1480 1323 +f 1323 1480 1417 +f 1323 1417 1301 +f 1301 1417 1245 +f 1301 1245 1157 +f 1157 1245 1133 +f 1157 1133 965 +f 965 1133 975 +f 965 975 839 +f 839 975 890 +f 839 890 787 +f 787 890 708 +f 787 708 649 +f 649 708 671 +f 649 671 459 +f 459 671 476 +f 459 476 397 +f 397 476 393 +f 397 393 263 +f 263 393 247 +f 263 247 135 +f 135 247 91 +f 135 91 36 +f 7769 7773 7649 +f 7649 7773 7663 +f 7649 7663 7535 +f 7535 7663 7571 +f 7535 7571 7407 +f 7407 7571 7513 +f 7407 7513 7355 +f 7355 7513 7331 +f 7355 7331 7183 +f 7183 7331 7207 +f 7183 7207 7083 +f 7083 7207 7079 +f 7083 7079 6961 +f 6961 7079 6885 +f 6961 6885 6783 +f 6783 6885 6789 +f 6783 6789 6651 +f 6651 6789 6611 +f 6651 6611 6483 +f 6483 6611 6567 +f 6483 6567 6409 +f 6409 6567 6450 +f 6409 6450 6279 +f 6279 6450 6267 +f 6279 6267 6083 +f 6083 6267 6163 +f 6083 6163 6043 +f 6043 6163 5955 +f 6043 5955 5841 +f 5841 5955 5899 +f 5841 5899 5683 +f 5683 5899 5707 +f 5683 5707 5651 +f 5651 5707 5575 +f 5651 5575 5501 +f 5501 5575 5447 +f 5501 5447 5354 +f 5354 5447 5401 +f 5354 5401 5271 +f 5271 5401 5263 +f 5271 5263 5111 +f 5111 5263 5129 +f 5111 5129 4937 +f 4937 5129 4933 +f 4937 4933 4829 +f 4829 4933 4835 +f 4829 4835 4635 +f 4635 4835 4741 +f 4635 4741 4583 +f 4583 4741 4573 +f 4583 4573 4369 +f 4369 4573 4475 +f 4369 4475 4245 +f 4245 4475 4345 +f 4245 4345 4099 +f 4099 4345 4143 +f 4099 4143 4085 +f 4085 4143 4033 +f 4085 4033 3837 +f 3837 4033 3877 +f 3837 3877 3703 +f 3703 3877 3729 +f 3703 3729 3677 +f 3677 3729 3679 +f 3677 3679 3549 +f 3549 3679 3557 +f 3549 3557 3314 +f 3314 3557 3427 +f 3314 3427 3287 +f 3287 3427 3270 +f 3287 3270 3083 +f 3083 3270 3047 +f 3083 3047 2981 +f 2981 3047 2935 +f 2981 2935 2789 +f 2789 2935 2889 +f 2789 2889 2645 +f 2645 2889 2739 +f 2645 2739 2587 +f 2587 2739 2621 +f 2587 2621 2381 +f 2381 2621 2393 +f 2381 2393 2213 +f 2213 2393 2310 +f 2213 2310 2165 +f 2165 2310 2095 +f 2165 2095 1993 +f 1993 2095 2051 +f 1993 2051 1871 +f 1871 2051 1851 +f 1871 1851 1761 +f 1761 1851 1721 +f 1761 1721 1597 +f 1597 1721 1621 +f 1597 1621 1505 +f 1505 1621 1472 +f 1505 1472 1377 +f 1377 1472 1323 +f 1377 1323 1219 +f 1219 1323 1301 +f 1219 1301 1083 +f 1083 1301 1157 +f 1083 1157 947 +f 947 1157 965 +f 947 965 861 +f 861 965 839 +f 861 839 687 +f 687 839 787 +f 687 787 565 +f 565 787 649 +f 565 649 449 +f 449 649 459 +f 449 459 375 +f 375 459 397 +f 375 397 287 +f 287 397 263 +f 287 263 145 +f 145 263 135 +f 145 135 34 +f 7839 7769 7687 +f 7687 7769 7649 +f 7687 7649 7537 +f 7537 7649 7535 +f 7537 7535 7503 +f 7503 7535 7407 +f 7503 7407 7387 +f 7387 7407 7355 +f 7387 7355 7235 +f 7235 7355 7183 +f 7235 7183 7119 +f 7119 7183 7083 +f 7119 7083 6865 +f 6865 7083 6961 +f 6865 6961 6739 +f 6739 6961 6783 +f 6739 6783 6677 +f 6677 6783 6651 +f 6677 6651 6565 +f 6565 6651 6483 +f 6565 6483 6399 +f 6399 6483 6409 +f 6399 6409 6210 +f 6210 6409 6279 +f 6210 6279 6119 +f 6119 6279 6083 +f 6119 6083 5965 +f 5965 6083 6043 +f 5965 6043 5823 +f 5823 6043 5841 +f 5823 5841 5805 +f 5805 5841 5683 +f 5805 5683 5635 +f 5635 5683 5651 +f 5635 5651 5451 +f 5451 5651 5501 +f 5451 5501 5345 +f 5345 5501 5354 +f 5345 5354 5171 +f 5171 5354 5271 +f 5171 5271 5039 +f 5039 5271 5111 +f 5039 5111 4923 +f 4923 5111 4937 +f 4923 4937 4859 +f 4859 4937 4829 +f 4859 4829 4703 +f 4703 4829 4635 +f 4703 4635 4535 +f 4535 4635 4583 +f 4535 4583 4467 +f 4467 4583 4369 +f 4467 4369 4291 +f 4291 4369 4245 +f 4291 4245 4199 +f 4199 4245 4099 +f 4199 4099 4093 +f 4093 4099 4085 +f 4093 4085 3881 +f 3881 4085 3837 +f 3881 3837 3763 +f 3763 3837 3703 +f 3763 3703 3689 +f 3689 3703 3677 +f 3689 3677 3493 +f 3493 3677 3549 +f 3493 3549 3415 +f 3415 3549 3314 +f 3415 3314 3281 +f 3281 3314 3287 +f 3281 3287 3097 +f 3097 3287 3083 +f 3097 3083 2909 +f 2909 3083 2981 +f 2909 2981 2785 +f 2785 2981 2789 +f 2785 2789 2649 +f 2649 2789 2645 +f 2649 2645 2615 +f 2615 2645 2587 +f 2615 2587 2359 +f 2359 2587 2381 +f 2359 2381 2315 +f 2315 2381 2213 +f 2315 2213 2181 +f 2181 2213 2165 +f 2181 2165 2031 +f 2031 2165 1993 +f 2031 1993 1929 +f 1929 1993 1871 +f 1929 1871 1801 +f 1801 1871 1761 +f 1801 1761 1697 +f 1697 1761 1597 +f 1697 1597 1501 +f 1501 1597 1505 +f 1501 1505 1359 +f 1359 1505 1377 +f 1359 1377 1249 +f 1249 1377 1219 +f 1249 1219 1069 +f 1069 1219 1083 +f 1069 1083 1013 +f 1013 1083 947 +f 1013 947 863 +f 863 947 861 +f 863 861 677 +f 677 861 687 +f 677 687 675 +f 675 687 565 +f 675 565 543 +f 543 565 449 +f 543 449 407 +f 407 449 375 +f 407 375 211 +f 211 375 287 +f 211 287 139 +f 139 287 145 +f 139 145 34 +f 7797 7839 7651 +f 7651 7839 7687 +f 7651 7687 7613 +f 7613 7687 7537 +f 7613 7537 7435 +f 7435 7537 7503 +f 7435 7503 7293 +f 7293 7503 7387 +f 7293 7387 7189 +f 7189 7387 7235 +f 7189 7235 7103 +f 7103 7235 7119 +f 7103 7119 6959 +f 6959 7119 6865 +f 6959 6865 6759 +f 6759 6865 6739 +f 6759 6739 6673 +f 6673 6739 6677 +f 6673 6677 6537 +f 6537 6677 6565 +f 6537 6565 6345 +f 6345 6565 6399 +f 6345 6399 6283 +f 6283 6399 6210 +f 6283 6210 6131 +f 6131 6210 6119 +f 6131 6119 5949 +f 5949 6119 5965 +f 5949 5965 5867 +f 5867 5965 5823 +f 5867 5823 5751 +f 5751 5823 5805 +f 5751 5805 5637 +f 5637 5805 5635 +f 5637 5635 5419 +f 5419 5635 5451 +f 5419 5451 5327 +f 5327 5451 5345 +f 5327 5345 5177 +f 5177 5345 5171 +f 5177 5171 5083 +f 5083 5171 5039 +f 5083 5039 4897 +f 4897 5039 4923 +f 4897 4923 4827 +f 4827 4923 4859 +f 4827 4859 4745 +f 4745 4859 4703 +f 4745 4703 4533 +f 4533 4703 4535 +f 4533 4535 4455 +f 4455 4535 4467 +f 4455 4467 4277 +f 4277 4467 4291 +f 4277 4291 4145 +f 4145 4291 4199 +f 4145 4199 4055 +f 4055 4199 4093 +f 4055 4093 3895 +f 3895 4093 3881 +f 3895 3881 3793 +f 3793 3881 3763 +f 3793 3763 3687 +f 3687 3763 3689 +f 3687 3689 3495 +f 3495 3689 3493 +f 3495 3493 3399 +f 3399 3493 3415 +f 3399 3415 3197 +f 3197 3415 3281 +f 3197 3281 3131 +f 3131 3281 3097 +f 3131 3097 2905 +f 2905 3097 2909 +f 2905 2909 2885 +f 2885 2909 2785 +f 2885 2785 2759 +f 2759 2785 2649 +f 2759 2649 2619 +f 2619 2649 2615 +f 2619 2615 2363 +f 2363 2615 2359 +f 2363 2359 2321 +f 2321 2359 2315 +f 2321 2315 2122 +f 2122 2315 2181 +f 2122 2181 2023 +f 2023 2181 2031 +f 2023 2031 1925 +f 1925 2031 1929 +f 1925 1929 1711 +f 1711 1929 1801 +f 1711 1801 1633 +f 1633 1801 1697 +f 1633 1697 1531 +f 1531 1697 1501 +f 1531 1501 1367 +f 1367 1501 1359 +f 1367 1359 1291 +f 1291 1359 1249 +f 1291 1249 1061 +f 1061 1249 1069 +f 1061 1069 955 +f 955 1069 1013 +f 955 1013 805 +f 805 1013 863 +f 805 863 751 +f 751 863 677 +f 751 677 647 +f 647 677 675 +f 647 675 521 +f 521 675 543 +f 521 543 347 +f 347 543 407 +f 347 407 223 +f 223 407 211 +f 223 211 125 +f 125 211 139 +f 125 139 16 +f 7811 7797 7647 +f 7647 7797 7651 +f 7647 7651 7627 +f 7627 7651 7613 +f 7627 7613 7445 +f 7445 7613 7435 +f 7445 7435 7319 +f 7319 7435 7293 +f 7319 7293 7223 +f 7223 7293 7189 +f 7223 7189 7049 +f 7049 7189 7103 +f 7049 7103 6857 +f 6857 7103 6959 +f 6857 6959 6787 +f 6787 6959 6759 +f 6787 6759 6669 +f 6669 6759 6673 +f 6669 6673 6557 +f 6557 6673 6537 +f 6557 6537 6457 +f 6457 6537 6345 +f 6457 6345 6247 +f 6247 6345 6283 +f 6247 6283 6139 +f 6139 6283 6131 +f 6139 6131 5967 +f 5967 6131 5949 +f 5967 5949 5875 +f 5875 5949 5867 +f 5875 5867 5749 +f 5749 5867 5751 +f 5749 5751 5661 +f 5661 5751 5637 +f 5661 5637 5421 +f 5421 5637 5419 +f 5421 5419 5315 +f 5315 5419 5327 +f 5315 5327 5183 +f 5183 5327 5177 +f 5183 5177 5047 +f 5047 5177 5083 +f 5047 5083 4987 +f 4987 5083 4897 +f 4987 4897 4803 +f 4803 4897 4827 +f 4803 4827 4637 +f 4637 4827 4745 +f 4637 4745 4513 +f 4513 4745 4533 +f 4513 4533 4379 +f 4379 4533 4455 +f 4379 4455 4341 +f 4341 4455 4277 +f 4341 4277 4207 +f 4207 4277 4145 +f 4207 4145 4005 +f 4005 4145 4055 +f 4005 4055 3845 +f 3845 4055 3895 +f 3845 3895 3789 +f 3789 3895 3793 +f 3789 3793 3635 +f 3635 3793 3687 +f 3635 3687 3475 +f 3475 3687 3495 +f 3475 3495 3325 +f 3325 3495 3399 +f 3325 3399 3209 +f 3209 3399 3197 +f 3209 3197 3055 +f 3055 3197 3131 +f 3055 3131 3013 +f 3013 3131 2905 +f 3013 2905 2795 +f 2795 2905 2885 +f 2795 2885 2653 +f 2653 2885 2759 +f 2653 2759 2539 +f 2539 2759 2619 +f 2539 2619 2439 +f 2439 2619 2363 +f 2439 2363 2325 +f 2325 2363 2321 +f 2325 2321 2119 +f 2119 2321 2122 +f 2119 2122 1965 +f 1965 2122 2023 +f 1965 2023 1841 +f 1841 2023 1925 +f 1841 1925 1795 +f 1795 1925 1711 +f 1795 1711 1667 +f 1667 1711 1633 +f 1667 1633 1445 +f 1445 1633 1531 +f 1445 1531 1347 +f 1347 1531 1367 +f 1347 1367 1311 +f 1311 1367 1291 +f 1311 1291 1153 +f 1153 1291 1061 +f 1153 1061 935 +f 935 1061 955 +f 935 955 883 +f 883 955 805 +f 883 805 777 +f 777 805 751 +f 777 751 667 +f 667 751 647 +f 667 647 489 +f 489 647 521 +f 489 521 301 +f 301 521 347 +f 301 347 167 +f 167 347 223 +f 167 223 153 +f 153 223 125 +f 153 125 16 +f 7855 7811 7707 +f 7707 7811 7647 +f 7707 7647 7585 +f 7585 7647 7627 +f 7585 7627 7437 +f 7437 7627 7445 +f 7437 7445 7309 +f 7309 7445 7319 +f 7309 7319 7231 +f 7231 7319 7223 +f 7231 7223 7099 +f 7099 7223 7049 +f 7099 7049 6911 +f 6911 7049 6857 +f 6911 6857 6847 +f 6847 6857 6787 +f 6847 6787 6689 +f 6689 6787 6669 +f 6689 6669 6525 +f 6525 6669 6557 +f 6525 6557 6347 +f 6347 6557 6457 +f 6347 6457 6263 +f 6263 6457 6247 +f 6263 6247 6085 +f 6085 6247 6139 +f 6085 6139 5959 +f 5959 6139 5967 +f 5959 5967 5819 +f 5819 5967 5875 +f 5819 5875 5799 +f 5799 5875 5749 +f 5799 5749 5647 +f 5647 5749 5661 +f 5647 5661 5469 +f 5469 5661 5421 +f 5469 5421 5329 +f 5329 5421 5315 +f 5329 5315 5187 +f 5187 5315 5183 +f 5187 5183 5025 +f 5025 5183 5047 +f 5025 5047 4893 +f 4893 5047 4987 +f 4893 4987 4775 +f 4775 4987 4803 +f 4775 4803 4659 +f 4659 4803 4637 +f 4659 4637 4611 +f 4611 4637 4513 +f 4611 4513 4465 +f 4465 4513 4379 +f 4465 4379 4253 +f 4253 4379 4341 +f 4253 4341 4205 +f 4205 4341 4207 +f 4205 4207 4003 +f 4003 4207 4005 +f 4003 4005 3849 +f 3849 4005 3845 +f 3849 3845 3775 +f 3775 3845 3789 +f 3775 3789 3589 +f 3589 3789 3635 +f 3589 3635 3503 +f 3503 3635 3475 +f 3503 3475 3359 +f 3359 3475 3325 +f 3359 3325 3205 +f 3205 3325 3209 +f 3205 3209 3067 +f 3067 3209 3055 +f 3067 3055 2947 +f 2947 3055 3013 +f 2947 3013 2811 +f 2811 3013 2795 +f 2811 2795 2651 +f 2651 2795 2653 +f 2651 2653 2501 +f 2501 2653 2539 +f 2501 2539 2483 +f 2483 2539 2439 +f 2483 2439 2331 +f 2331 2439 2325 +f 2331 2325 2197 +f 2197 2325 2119 +f 2197 2119 2057 +f 2057 2119 1965 +f 2057 1965 1829 +f 1829 1965 1841 +f 1829 1841 1823 +f 1823 1841 1795 +f 1823 1795 1637 +f 1637 1795 1667 +f 1637 1667 1529 +f 1529 1667 1445 +f 1529 1445 1369 +f 1369 1445 1347 +f 1369 1347 1205 +f 1205 1347 1311 +f 1205 1311 1131 +f 1131 1311 1153 +f 1131 1153 989 +f 989 1153 935 +f 989 935 819 +f 819 935 883 +f 819 883 745 +f 745 883 777 +f 745 777 605 +f 605 777 667 +f 605 667 485 +f 485 667 489 +f 485 489 361 +f 361 489 301 +f 361 301 257 +f 257 301 167 +f 257 167 121 +f 121 167 153 +f 121 153 22 +f 7853 7855 7733 +f 7733 7855 7707 +f 7733 7707 7619 +f 7619 7707 7585 +f 7619 7585 7405 +f 7405 7585 7437 +f 7405 7437 7317 +f 7317 7437 7309 +f 7317 7309 7165 +f 7165 7309 7231 +f 7165 7231 7121 +f 7121 7231 7099 +f 7121 7099 6877 +f 6877 7099 6911 +f 6877 6911 6775 +f 6775 6911 6847 +f 6775 6847 6597 +f 6597 6847 6689 +f 6597 6689 6563 +f 6563 6689 6525 +f 6563 6525 6357 +f 6357 6525 6347 +f 6357 6347 6293 +f 6293 6347 6263 +f 6293 6263 6137 +f 6137 6263 6085 +f 6137 6085 6003 +f 6003 6085 5959 +f 6003 5959 5905 +f 5905 5959 5819 +f 5905 5819 5693 +f 5693 5819 5799 +f 5693 5799 5561 +f 5561 5799 5647 +f 5561 5647 5443 +f 5443 5647 5469 +f 5443 5469 5371 +f 5371 5469 5329 +f 5371 5329 5159 +f 5159 5329 5187 +f 5159 5187 5063 +f 5063 5187 5025 +f 5063 5025 5017 +f 5017 5025 4893 +f 5017 4893 4845 +f 4845 4893 4775 +f 4845 4775 4685 +f 4685 4775 4659 +f 4685 4659 4603 +f 4603 4659 4611 +f 4603 4611 4441 +f 4441 4611 4465 +f 4441 4465 4305 +f 4305 4465 4253 +f 4305 4253 4223 +f 4223 4253 4205 +f 4223 4205 3967 +f 3967 4205 4003 +f 3967 4003 3931 +f 3931 4003 3849 +f 3931 3849 3809 +f 3809 3849 3775 +f 3809 3775 3605 +f 3605 3775 3589 +f 3605 3589 3467 +f 3467 3589 3503 +f 3467 3503 3423 +f 3423 3503 3359 +f 3423 3359 3223 +f 3223 3359 3205 +f 3223 3205 3039 +f 3039 3205 3067 +f 3039 3067 3019 +f 3019 3067 2947 +f 3019 2947 2803 +f 2803 2947 2811 +f 2803 2811 2735 +f 2735 2811 2651 +f 2735 2651 2515 +f 2515 2651 2501 +f 2515 2501 2449 +f 2449 2501 2483 +f 2449 2483 2327 +f 2327 2483 2331 +f 2327 2331 2153 +f 2153 2331 2197 +f 2153 2197 2001 +f 2001 2197 2057 +f 2001 2057 1901 +f 1901 2057 1829 +f 1901 1829 1747 +f 1747 1829 1823 +f 1747 1823 1677 +f 1677 1823 1637 +f 1677 1637 1515 +f 1515 1637 1529 +f 1515 1529 1420 +f 1420 1529 1369 +f 1420 1369 1243 +f 1243 1369 1205 +f 1243 1205 1151 +f 1151 1205 1131 +f 1151 1131 957 +f 957 1131 989 +f 957 989 809 +f 809 989 819 +f 809 819 733 +f 733 819 745 +f 733 745 593 +f 593 745 605 +f 593 605 509 +f 509 605 485 +f 509 485 307 +f 307 485 361 +f 307 361 201 +f 201 361 257 +f 201 257 143 +f 143 257 121 +f 143 121 22 +f 7793 7853 7693 +f 7693 7853 7733 +f 7693 7733 7615 +f 7615 7733 7619 +f 7615 7619 7447 +f 7447 7619 7405 +f 7447 7405 7335 +f 7335 7405 7317 +f 7335 7317 7153 +f 7153 7317 7165 +f 7153 7165 7111 +f 7111 7165 7121 +f 7111 7121 6887 +f 6887 7121 6877 +f 6887 6877 6733 +f 6733 6877 6775 +f 6733 6775 6667 +f 6667 6775 6597 +f 6667 6597 6515 +f 6515 6597 6563 +f 6515 6563 6411 +f 6411 6563 6357 +f 6411 6357 6205 +f 6205 6357 6293 +f 6205 6293 6143 +f 6143 6293 6137 +f 6143 6137 6023 +f 6023 6137 6003 +f 6023 6003 5933 +f 5933 6003 5905 +f 5933 5905 5767 +f 5767 5905 5693 +f 5767 5693 5565 +f 5565 5693 5561 +f 5565 5561 5503 +f 5503 5561 5443 +f 5503 5443 5301 +f 5301 5443 5371 +f 5301 5371 5247 +f 5247 5371 5159 +f 5247 5159 5087 +f 5087 5159 5063 +f 5087 5063 4975 +f 4975 5063 5017 +f 4975 5017 4769 +f 4769 5017 4845 +f 4769 4845 4751 +f 4751 4845 4685 +f 4751 4685 4499 +f 4499 4685 4603 +f 4499 4603 4375 +f 4375 4603 4441 +f 4375 4441 4235 +f 4235 4441 4305 +f 4235 4305 4111 +f 4111 4305 4223 +f 4111 4223 4077 +f 4077 4223 3967 +f 4077 3967 3959 +f 3959 3967 3931 +f 3959 3931 3759 +f 3759 3931 3809 +f 3759 3809 3655 +f 3655 3809 3605 +f 3655 3605 3537 +f 3537 3605 3467 +f 3537 3467 3367 +f 3367 3467 3423 +f 3367 3423 3263 +f 3263 3423 3223 +f 3263 3223 3129 +f 3129 3223 3039 +f 3129 3039 2915 +f 2915 3039 3019 +f 2915 3019 2799 +f 2799 3019 2803 +f 2799 2803 2749 +f 2749 2803 2735 +f 2749 2735 2593 +f 2593 2735 2515 +f 2593 2515 2373 +f 2373 2515 2449 +f 2373 2449 2313 +f 2313 2449 2327 +f 2313 2327 2141 +f 2141 2327 2153 +f 2141 2153 2025 +f 2025 2153 2001 +f 2025 2001 1913 +f 1913 2001 1901 +f 1913 1901 1787 +f 1787 1901 1747 +f 1787 1747 1581 +f 1581 1747 1677 +f 1581 1677 1477 +f 1477 1677 1515 +f 1477 1515 1379 +f 1379 1515 1420 +f 1379 1420 1275 +f 1275 1420 1243 +f 1275 1243 1096 +f 1096 1243 1151 +f 1096 1151 1055 +f 1055 1151 957 +f 1055 957 901 +f 901 957 809 +f 901 809 713 +f 713 809 733 +f 713 733 639 +f 639 733 593 +f 639 593 421 +f 421 593 509 +f 421 509 349 +f 349 509 307 +f 349 307 267 +f 267 307 201 +f 267 201 119 +f 119 201 143 +f 119 143 18 +f 7815 7793 7749 +f 7749 7793 7693 +f 7749 7693 7611 +f 7611 7693 7615 +f 7611 7615 7507 +f 7507 7615 7447 +f 7507 7447 7369 +f 7369 7447 7335 +f 7369 7335 7199 +f 7199 7335 7153 +f 7199 7153 7097 +f 7097 7153 7111 +f 7097 7111 6859 +f 6859 7111 6887 +f 6859 6887 6743 +f 6743 6887 6733 +f 6743 6733 6639 +f 6639 6733 6667 +f 6639 6667 6579 +f 6579 6667 6515 +f 6579 6515 6361 +f 6361 6515 6411 +f 6361 6411 6323 +f 6323 6411 6205 +f 6323 6205 6125 +f 6125 6205 6143 +f 6125 6143 5943 +f 5943 6143 6023 +f 5943 6023 5873 +f 5873 6023 5933 +f 5873 5933 5713 +f 5713 5933 5767 +f 5713 5767 5559 +f 5559 5767 5565 +f 5559 5565 5513 +f 5513 5565 5503 +f 5513 5503 5299 +f 5299 5503 5301 +f 5299 5301 5235 +f 5235 5301 5247 +f 5235 5247 5095 +f 5095 5247 5087 +f 5095 5087 4935 +f 4935 5087 4975 +f 4935 4975 4861 +f 4861 4975 4769 +f 4861 4769 4715 +f 4715 4769 4751 +f 4715 4751 4539 +f 4539 4751 4499 +f 4539 4499 4391 +f 4391 4499 4375 +f 4391 4375 4287 +f 4287 4375 4235 +f 4287 4235 4105 +f 4105 4235 4111 +f 4105 4111 3969 +f 3969 4111 4077 +f 3969 4077 3915 +f 3915 4077 3959 +f 3915 3959 3753 +f 3753 3959 3759 +f 3753 3759 3607 +f 3607 3759 3655 +f 3607 3655 3485 +f 3485 3655 3537 +f 3485 3537 3321 +f 3321 3537 3367 +f 3321 3367 3185 +f 3185 3367 3263 +f 3185 3263 3142 +f 3142 3263 3129 +f 3142 3129 2959 +f 2959 3129 2915 +f 2959 2915 2771 +f 2771 2915 2799 +f 2771 2799 2747 +f 2747 2799 2749 +f 2747 2749 2551 +f 2551 2749 2593 +f 2551 2593 2485 +f 2485 2593 2373 +f 2485 2373 2303 +f 2303 2373 2313 +f 2303 2313 2117 +f 2117 2313 2141 +f 2117 2141 2081 +f 2081 2141 2025 +f 2081 2025 1863 +f 1863 2025 1913 +f 1863 1913 1781 +f 1781 1913 1787 +f 1781 1787 1643 +f 1643 1787 1581 +f 1643 1581 1545 +f 1545 1581 1477 +f 1545 1477 1371 +f 1371 1477 1379 +f 1371 1379 1225 +f 1225 1379 1275 +f 1225 1275 1063 +f 1063 1275 1096 +f 1063 1096 941 +f 941 1096 1055 +f 941 1055 887 +f 887 1055 901 +f 887 901 759 +f 759 901 713 +f 759 713 569 +f 569 713 639 +f 569 639 471 +f 471 639 421 +f 471 421 331 +f 331 421 349 +f 331 349 226 +f 226 349 267 +f 226 267 99 +f 99 267 119 +f 99 119 20 +f 7823 7815 7655 +f 7655 7815 7749 +f 7655 7749 7605 +f 7605 7749 7611 +f 7605 7611 7451 +f 7451 7611 7507 +f 7451 7507 7321 +f 7321 7507 7369 +f 7321 7369 7225 +f 7225 7369 7199 +f 7225 7199 7087 +f 7087 7199 7097 +f 7087 7097 6927 +f 6927 7097 6859 +f 6927 6859 6823 +f 6823 6859 6743 +f 6823 6743 6711 +f 6711 6743 6639 +f 6711 6639 6509 +f 6509 6639 6579 +f 6509 6579 6433 +f 6433 6579 6361 +f 6433 6361 6291 +f 6291 6361 6323 +f 6291 6323 6197 +f 6197 6323 6125 +f 6197 6125 6047 +f 6047 6125 5943 +f 6047 5943 5859 +f 5859 5943 5873 +f 5859 5873 5731 +f 5731 5873 5713 +f 5731 5713 5631 +f 5631 5713 5559 +f 5631 5559 5445 +f 5445 5559 5513 +f 5445 5513 5361 +f 5361 5513 5299 +f 5361 5299 5264 +f 5264 5299 5235 +f 5264 5235 5115 +f 5115 5235 5095 +f 5115 5095 5015 +f 5015 5095 4935 +f 5015 4935 4759 +f 4759 4935 4861 +f 4759 4861 4639 +f 4639 4861 4715 +f 4639 4715 4599 +f 4599 4715 4539 +f 4599 4539 4377 +f 4377 4539 4391 +f 4377 4391 4325 +f 4325 4391 4287 +f 4325 4287 4121 +f 4121 4287 4105 +f 4121 4105 4037 +f 4037 4105 3969 +f 4037 3969 3835 +f 3835 3969 3915 +f 3835 3915 3733 +f 3733 3915 3753 +f 3733 3753 3683 +f 3683 3753 3607 +f 3683 3607 3471 +f 3471 3607 3485 +f 3471 3485 3383 +f 3383 3485 3321 +f 3383 3321 3225 +f 3225 3321 3185 +f 3225 3185 3123 +f 3123 3185 3142 +f 3123 3142 2977 +f 2977 3142 2959 +f 2977 2959 2879 +f 2879 2959 2771 +f 2879 2771 2733 +f 2733 2771 2747 +f 2733 2747 2503 +f 2503 2747 2551 +f 2503 2551 2383 +f 2383 2551 2485 +f 2383 2485 2333 +f 2333 2485 2303 +f 2333 2303 2143 +f 2143 2303 2117 +f 2143 2117 2079 +f 2079 2117 2081 +f 2079 2081 1941 +f 1941 2081 1863 +f 1941 1863 1739 +f 1739 1863 1781 +f 1739 1781 1615 +f 1615 1781 1643 +f 1615 1643 1502 +f 1502 1643 1545 +f 1502 1545 1331 +f 1331 1545 1371 +f 1331 1371 1250 +f 1250 1371 1225 +f 1250 1225 1081 +f 1081 1225 1063 +f 1081 1063 973 +f 973 1063 941 +f 973 941 815 +f 815 941 887 +f 815 887 729 +f 729 887 759 +f 729 759 625 +f 625 759 569 +f 625 569 469 +f 469 569 471 +f 469 471 309 +f 309 471 331 +f 309 331 181 +f 181 331 226 +f 181 226 111 +f 111 226 99 +f 111 99 20 +f 7835 7823 7721 +f 7721 7823 7655 +f 7721 7655 7581 +f 7581 7655 7605 +f 7581 7605 7441 +f 7441 7605 7451 +f 7441 7451 7359 +f 7359 7451 7321 +f 7359 7321 7239 +f 7239 7321 7225 +f 7239 7225 7011 +f 7011 7225 7087 +f 7011 7087 6867 +f 6867 7087 6927 +f 6867 6927 6777 +f 6777 6927 6823 +f 6777 6823 6687 +f 6687 6823 6711 +f 6687 6711 6505 +f 6505 6711 6509 +f 6505 6509 6402 +f 6402 6509 6433 +f 6402 6433 6319 +f 6319 6433 6291 +f 6319 6291 6133 +f 6133 6291 6197 +f 6133 6197 6028 +f 6028 6197 6047 +f 6028 6047 5855 +f 5855 6047 5859 +f 5855 5859 5793 +f 5793 5859 5731 +f 5793 5731 5657 +f 5657 5731 5631 +f 5657 5631 5473 +f 5473 5631 5445 +f 5473 5445 5339 +f 5339 5445 5361 +f 5339 5361 5201 +f 5201 5361 5264 +f 5201 5264 5056 +f 5056 5264 5115 +f 5056 5115 4925 +f 4925 5115 5015 +f 4925 5015 4877 +f 4877 5015 4759 +f 4877 4759 4667 +f 4667 4759 4639 +f 4667 4639 4509 +f 4509 4639 4599 +f 4509 4599 4451 +f 4451 4599 4377 +f 4451 4377 4243 +f 4243 4377 4325 +f 4243 4325 4157 +f 4157 4325 4121 +f 4157 4121 3973 +f 3973 4121 4037 +f 3973 4037 3923 +f 3923 4037 3835 +f 3923 3835 3741 +f 3741 3835 3733 +f 3741 3733 3663 +f 3663 3733 3683 +f 3663 3683 3443 +f 3443 3683 3471 +f 3443 3471 3373 +f 3373 3471 3383 +f 3373 3383 3233 +f 3233 3383 3225 +f 3233 3225 3149 +f 3149 3225 3123 +f 3149 3123 2995 +f 2995 3123 2977 +f 2995 2977 2843 +f 2843 2977 2879 +f 2843 2879 2663 +f 2663 2879 2733 +f 2663 2733 2543 +f 2543 2733 2503 +f 2543 2503 2387 +f 2387 2503 2383 +f 2387 2383 2337 +f 2337 2383 2333 +f 2337 2333 2173 +f 2173 2333 2143 +f 2173 2143 1961 +f 1961 2143 2079 +f 1961 2079 1911 +f 1911 2079 1941 +f 1911 1941 1749 +f 1749 1941 1739 +f 1749 1739 1587 +f 1587 1739 1615 +f 1587 1615 1563 +f 1563 1615 1502 +f 1563 1502 1425 +f 1425 1502 1331 +f 1425 1331 1247 +f 1247 1331 1250 +f 1247 1250 1181 +f 1181 1250 1081 +f 1181 1081 1029 +f 1029 1081 973 +f 1029 973 829 +f 829 973 815 +f 829 815 685 +f 685 815 729 +f 685 729 615 +f 615 729 625 +f 615 625 493 +f 493 625 469 +f 493 469 373 +f 373 469 309 +f 373 309 237 +f 237 309 181 +f 237 181 109 +f 109 181 111 +f 109 111 31 +f 7831 7835 7657 +f 7657 7835 7721 +f 7657 7721 7624 +f 7624 7721 7581 +f 7624 7581 7495 +f 7495 7581 7441 +f 7495 7441 7371 +f 7371 7441 7359 +f 7371 7359 7261 +f 7261 7359 7239 +f 7261 7239 7051 +f 7051 7239 7011 +f 7051 7011 6870 +f 6870 7011 6867 +f 6870 6867 6792 +f 6792 6867 6777 +f 6792 6777 6613 +f 6613 6777 6687 +f 6613 6687 6519 +f 6519 6687 6505 +f 6519 6505 6367 +f 6367 6505 6402 +f 6367 6402 6241 +f 6241 6402 6319 +f 6241 6319 6185 +f 6185 6319 6133 +f 6185 6133 6065 +f 6065 6133 6028 +f 6065 6028 5848 +f 5848 6028 5855 +f 5848 5855 5687 +f 5687 5855 5793 +f 5687 5793 5671 +f 5671 5793 5657 +f 5671 5657 5499 +f 5499 5657 5473 +f 5499 5473 5313 +f 5313 5473 5339 +f 5313 5339 5269 +f 5269 5339 5201 +f 5269 5201 5121 +f 5121 5201 5056 +f 5121 5056 4993 +f 4993 5056 4925 +f 4993 4925 4867 +f 4867 4925 4877 +f 4867 4877 4677 +f 4677 4877 4667 +f 4677 4667 4563 +f 4563 4667 4509 +f 4563 4509 4399 +f 4399 4509 4451 +f 4399 4451 4265 +f 4265 4451 4243 +f 4265 4243 4187 +f 4187 4243 4157 +f 4187 4157 4069 +f 4069 4157 3973 +f 4069 3973 3893 +f 3893 3973 3923 +f 3893 3923 3749 +f 3749 3923 3741 +f 3749 3741 3575 +f 3575 3741 3663 +f 3575 3663 3555 +f 3555 3663 3443 +f 3555 3443 3390 +f 3390 3443 3373 +f 3390 3373 3279 +f 3279 3373 3233 +f 3279 3233 3077 +f 3077 3233 3149 +f 3077 3149 2957 +f 2957 3149 2995 +f 2957 2995 2801 +f 2801 2995 2843 +f 2801 2843 2661 +f 2661 2843 2663 +f 2661 2663 2507 +f 2507 2663 2543 +f 2507 2543 2473 +f 2473 2543 2387 +f 2473 2387 2217 +f 2217 2387 2337 +f 2217 2337 2179 +f 2179 2337 2173 +f 2179 2173 1971 +f 1971 2173 1961 +f 1971 1961 1867 +f 1867 1961 1911 +f 1867 1911 1793 +f 1793 1911 1749 +f 1793 1749 1595 +f 1595 1749 1587 +f 1595 1587 1513 +f 1513 1587 1563 +f 1513 1563 1335 +f 1335 1563 1425 +f 1335 1425 1201 +f 1201 1425 1247 +f 1201 1247 1163 +f 1163 1247 1181 +f 1163 1181 963 +f 963 1181 1029 +f 963 1029 835 +f 835 1029 829 +f 835 829 789 +f 789 829 685 +f 789 685 643 +f 643 685 615 +f 643 615 423 +f 423 615 493 +f 423 493 367 +f 367 493 373 +f 367 373 171 +f 171 373 237 +f 171 237 67 +f 67 237 109 +f 67 109 31 +f 7770 7831 7661 +f 7661 7831 7657 +f 7661 7657 7607 +f 7607 7657 7624 +f 7607 7624 7419 +f 7419 7624 7495 +f 7419 7495 7281 +f 7281 7495 7371 +f 7281 7371 7245 +f 7245 7371 7261 +f 7245 7261 7129 +f 7129 7261 7051 +f 7129 7051 6909 +f 6909 7051 6870 +f 6909 6870 6813 +f 6813 6870 6792 +f 6813 6792 6695 +f 6695 6792 6613 +f 6695 6613 6543 +f 6543 6613 6519 +f 6543 6519 6443 +f 6443 6519 6367 +f 6443 6367 6313 +f 6313 6367 6241 +f 6313 6241 6107 +f 6107 6241 6185 +f 6107 6185 5999 +f 5999 6185 6065 +f 5999 6065 5893 +f 5893 6065 5848 +f 5893 5848 5703 +f 5703 5848 5687 +f 5703 5687 5598 +f 5598 5687 5671 +f 5598 5671 5475 +f 5475 5671 5499 +f 5475 5499 5393 +f 5393 5499 5313 +f 5393 5313 5223 +f 5223 5313 5269 +f 5223 5269 5109 +f 5109 5269 5121 +f 5109 5121 4899 +f 4899 5121 4993 +f 4899 4993 4777 +f 4777 4993 4867 +f 4777 4867 4733 +f 4733 4867 4677 +f 4733 4677 4607 +f 4607 4677 4563 +f 4607 4563 4485 +f 4485 4563 4399 +f 4485 4399 4357 +f 4357 4399 4265 +f 4357 4265 4107 +f 4107 4265 4187 +f 4107 4187 4091 +f 4091 4187 4069 +f 4091 4069 3841 +f 3841 4069 3893 +f 3841 3893 3823 +f 3823 3893 3749 +f 3823 3749 3571 +f 3571 3749 3575 +f 3571 3575 3441 +f 3441 3575 3555 +f 3441 3555 3307 +f 3307 3555 3390 +f 3307 3390 3189 +f 3189 3390 3279 +f 3189 3279 3157 +f 3157 3279 3077 +f 3157 3077 3029 +f 3029 3077 2957 +f 3029 2957 2797 +f 2797 2957 2801 +f 2797 2801 2725 +f 2725 2801 2661 +f 2725 2661 2517 +f 2517 2661 2507 +f 2517 2507 2471 +f 2471 2507 2473 +f 2471 2473 2323 +f 2323 2473 2217 +f 2323 2217 2207 +f 2207 2217 2179 +f 2207 2179 1977 +f 1977 2179 1971 +f 1977 1971 1869 +f 1869 1971 1867 +f 1869 1867 1759 +f 1759 1867 1793 +f 1759 1793 1645 +f 1645 1793 1595 +f 1645 1595 1571 +f 1571 1595 1513 +f 1571 1513 1389 +f 1389 1513 1335 +f 1389 1335 1199 +f 1199 1335 1201 +f 1199 1201 1065 +f 1065 1201 1163 +f 1065 1163 997 +f 997 1163 963 +f 997 963 921 +f 921 963 835 +f 921 835 704 +f 704 835 789 +f 704 789 579 +f 579 789 643 +f 579 643 547 +f 547 643 423 +f 547 423 359 +f 359 423 367 +f 359 367 219 +f 219 367 171 +f 219 171 41 +f 41 171 67 +f 41 67 23 +f 7780 7770 7745 +f 7745 7770 7661 +f 7745 7661 7591 +f 7591 7661 7607 +f 7591 7607 7477 +f 7477 7607 7419 +f 7477 7419 7375 +f 7375 7419 7281 +f 7375 7281 7252 +f 7252 7281 7245 +f 7252 7245 7014 +f 7014 7245 7129 +f 7014 7129 6875 +f 6875 7129 6909 +f 6875 6909 6765 +f 6765 6909 6813 +f 6765 6813 6643 +f 6643 6813 6695 +f 6643 6695 6503 +f 6503 6695 6543 +f 6503 6543 6365 +f 6365 6543 6443 +f 6365 6443 6297 +f 6297 6443 6313 +f 6297 6313 6075 +f 6075 6313 6107 +f 6075 6107 6049 +f 6049 6107 5999 +f 6049 5999 5931 +f 5931 5999 5893 +f 5931 5893 5803 +f 5803 5893 5703 +f 5803 5703 5581 +f 5581 5703 5598 +f 5581 5598 5423 +f 5423 5598 5475 +f 5423 5475 5373 +f 5373 5475 5393 +f 5373 5393 5217 +f 5217 5393 5223 +f 5217 5223 5089 +f 5089 5223 5109 +f 5089 5109 4999 +f 4999 5109 4899 +f 4999 4899 4869 +f 4869 4899 4777 +f 4869 4777 4743 +f 4743 4777 4733 +f 4743 4733 4571 +f 4571 4733 4607 +f 4571 4607 4393 +f 4393 4607 4485 +f 4393 4485 4273 +f 4273 4485 4357 +f 4273 4357 4213 +f 4213 4357 4107 +f 4213 4107 4087 +f 4087 4107 4091 +f 4087 4091 3961 +f 3961 4091 3841 +f 3961 3841 3715 +f 3715 3841 3823 +f 3715 3823 3637 +f 3637 3823 3571 +f 3637 3571 3523 +f 3523 3571 3441 +f 3523 3441 3311 +f 3311 3441 3307 +f 3311 3307 3295 +f 3295 3307 3189 +f 3295 3189 3043 +f 3043 3189 3157 +f 3043 3157 2907 +f 2907 3157 3029 +f 2907 3029 2817 +f 2817 3029 2797 +f 2817 2797 2711 +f 2711 2797 2725 +f 2711 2725 2525 +f 2525 2725 2517 +f 2525 2517 2479 +f 2479 2517 2471 +f 2479 2471 2319 +f 2319 2471 2323 +f 2319 2323 2193 +f 2193 2323 2207 +f 2193 2207 1959 +f 1959 2207 1977 +f 1959 1977 1937 +f 1937 1977 1869 +f 1937 1869 1703 +f 1703 1869 1759 +f 1703 1759 1600 +f 1600 1759 1645 +f 1600 1645 1555 +f 1555 1645 1571 +f 1555 1571 1436 +f 1436 1571 1389 +f 1436 1389 1229 +f 1229 1389 1199 +f 1229 1199 1075 +f 1075 1199 1065 +f 1075 1065 1025 +f 1025 1065 997 +f 1025 997 870 +f 870 997 921 +f 870 921 743 +f 743 921 704 +f 743 704 645 +f 645 704 579 +f 645 579 429 +f 429 579 547 +f 429 547 299 +f 299 547 359 +f 299 359 165 +f 165 359 219 +f 165 219 161 +f 161 219 41 +f 161 41 23 +f 7790 7780 7709 +f 7709 7780 7745 +f 7709 7745 7595 +f 7595 7745 7591 +f 7595 7591 7480 +f 7480 7591 7477 +f 7480 7477 7351 +f 7351 7477 7375 +f 7351 7375 7211 +f 7211 7375 7252 +f 7211 7252 7101 +f 7101 7252 7014 +f 7101 7014 6883 +f 6883 7014 6875 +f 6883 6875 6821 +f 6821 6875 6765 +f 6821 6765 6625 +f 6625 6765 6643 +f 6625 6643 6575 +f 6575 6643 6503 +f 6575 6503 6415 +f 6415 6503 6365 +f 6415 6365 6213 +f 6213 6365 6297 +f 6213 6297 6123 +f 6123 6297 6075 +f 6123 6075 6007 +f 6007 6075 6049 +f 6007 6049 5917 +f 5917 6049 5931 +f 5917 5931 5775 +f 5775 5931 5803 +f 5775 5803 5627 +f 5627 5803 5581 +f 5627 5581 5525 +f 5525 5581 5423 +f 5525 5423 5307 +f 5307 5423 5373 +f 5307 5373 5230 +f 5230 5373 5217 +f 5230 5217 5037 +f 5037 5217 5089 +f 5037 5089 4949 +f 4949 5089 4999 +f 4949 4999 4815 +f 4815 4999 4869 +f 4815 4869 4699 +f 4699 4869 4743 +f 4699 4743 4597 +f 4597 4743 4571 +f 4597 4571 4407 +f 4407 4571 4393 +f 4407 4393 4317 +f 4317 4393 4273 +f 4317 4273 4141 +f 4141 4273 4213 +f 4141 4213 4039 +f 4039 4213 4087 +f 4039 4087 3887 +f 3887 4087 3961 +f 3887 3961 3765 +f 3765 3961 3715 +f 3765 3715 3597 +f 3597 3715 3637 +f 3597 3637 3518 +f 3518 3637 3523 +f 3518 3523 3318 +f 3318 3523 3311 +f 3318 3311 3230 +f 3230 3311 3295 +f 3230 3295 3121 +f 3121 3295 3043 +f 3121 3043 2991 +f 2991 3043 2907 +f 2991 2907 2882 +f 2882 2907 2817 +f 2882 2817 2667 +f 2667 2817 2711 +f 2667 2711 2611 +f 2611 2711 2525 +f 2611 2525 2377 +f 2377 2525 2479 +f 2377 2479 2232 +f 2232 2479 2319 +f 2232 2319 2125 +f 2125 2319 2193 +f 2125 2193 2049 +f 2049 2193 1959 +f 2049 1959 1886 +f 1886 1959 1937 +f 1886 1937 1726 +f 1726 1937 1703 +f 1726 1703 1577 +f 1577 1703 1600 +f 1577 1600 1561 +f 1561 1600 1555 +f 1561 1555 1415 +f 1415 1555 1436 +f 1415 1436 1197 +f 1197 1436 1229 +f 1197 1229 1087 +f 1087 1229 1075 +f 1087 1075 1043 +f 1043 1075 1025 +f 1043 1025 865 +f 865 1025 870 +f 865 870 683 +f 683 870 743 +f 683 743 613 +f 613 743 645 +f 613 645 545 +f 545 645 429 +f 545 429 334 +f 334 429 299 +f 334 299 283 +f 283 299 165 +f 283 165 104 +f 104 165 161 +f 104 161 24 +f 7841 7790 7751 +f 7751 7790 7709 +f 7751 7709 7589 +f 7589 7709 7595 +f 7589 7595 7501 +f 7501 7595 7480 +f 7501 7480 7295 +f 7295 7480 7351 +f 7295 7351 7214 +f 7214 7351 7211 +f 7214 7211 7073 +f 7073 7211 7101 +f 7073 7101 6925 +f 6925 7101 6883 +f 6925 6883 6811 +f 6811 6883 6821 +f 6811 6821 6707 +f 6707 6821 6625 +f 6707 6625 6531 +f 6531 6625 6575 +f 6531 6575 6387 +f 6387 6575 6415 +f 6387 6415 6321 +f 6321 6415 6213 +f 6321 6213 6111 +f 6111 6213 6123 +f 6111 6123 6035 +f 6035 6123 6007 +f 6035 6007 5902 +f 5902 6007 5917 +f 5902 5917 5736 +f 5736 5917 5775 +f 5736 5775 5557 +f 5557 5775 5627 +f 5557 5627 5467 +f 5467 5627 5525 +f 5467 5525 5337 +f 5337 5525 5307 +f 5337 5307 5195 +f 5195 5307 5230 +f 5195 5230 5066 +f 5066 5230 5037 +f 5066 5037 4963 +f 4963 5037 4949 +f 4963 4949 4879 +f 4879 4949 4815 +f 4879 4815 4721 +f 4721 4815 4699 +f 4721 4699 4577 +f 4577 4699 4597 +f 4577 4597 4389 +f 4389 4597 4407 +f 4389 4407 4259 +f 4259 4407 4317 +f 4259 4317 4153 +f 4153 4317 4141 +f 4153 4141 4059 +f 4059 4141 4039 +f 4059 4039 3865 +f 3865 4039 3887 +f 3865 3887 3747 +f 3747 3887 3765 +f 3747 3765 3648 +f 3648 3765 3597 +f 3648 3597 3525 +f 3525 3597 3518 +f 3525 3518 3303 +f 3303 3518 3318 +f 3303 3318 3190 +f 3190 3318 3230 +f 3190 3230 3165 +f 3165 3230 3121 +f 3165 3121 2929 +f 2929 3121 2991 +f 2929 2991 2869 +f 2869 2991 2882 +f 2869 2882 2697 +f 2697 2882 2667 +f 2697 2667 2569 +f 2569 2667 2611 +f 2569 2611 2391 +f 2391 2611 2377 +f 2391 2377 2295 +f 2295 2377 2232 +f 2295 2232 2183 +f 2183 2232 2125 +f 2183 2125 1985 +f 1985 2125 2049 +f 1985 2049 1837 +f 1837 2049 1886 +f 1837 1886 1705 +f 1705 1886 1726 +f 1705 1726 1584 +f 1584 1726 1577 +f 1584 1577 1543 +f 1543 1577 1561 +f 1543 1561 1353 +f 1353 1561 1415 +f 1353 1415 1191 +f 1191 1415 1197 +f 1191 1197 1185 +f 1185 1197 1087 +f 1185 1087 1052 +f 1052 1087 1043 +f 1052 1043 907 +f 907 1043 865 +f 907 865 795 +f 795 865 683 +f 795 683 561 +f 561 683 613 +f 561 613 524 +f 524 613 545 +f 524 545 356 +f 356 545 334 +f 356 334 183 +f 183 334 283 +f 183 283 37 +f 37 283 104 +f 37 104 24 +f 7850 7841 7653 +f 7653 7841 7751 +f 7653 7751 7577 +f 7577 7751 7589 +f 7577 7589 7469 +f 7469 7589 7501 +f 7469 7501 7373 +f 7373 7501 7295 +f 7373 7295 7175 +f 7175 7295 7214 +f 7175 7214 7017 +f 7017 7214 7073 +f 7017 7073 6969 +f 6969 7073 6925 +f 6969 6925 6731 +f 6731 6925 6811 +f 6731 6811 6619 +f 6619 6811 6707 +f 6619 6707 6529 +f 6529 6707 6531 +f 6529 6531 6349 +f 6349 6531 6387 +f 6349 6387 6295 +f 6295 6387 6321 +f 6295 6321 6177 +f 6177 6321 6111 +f 6177 6111 5991 +f 5991 6111 6035 +f 5991 6035 5907 +f 5907 6035 5902 +f 5907 5902 5779 +f 5779 5902 5736 +f 5779 5736 5595 +f 5595 5736 5557 +f 5595 5557 5431 +f 5431 5557 5467 +f 5431 5467 5377 +f 5377 5467 5337 +f 5377 5337 5193 +f 5193 5337 5195 +f 5193 5195 5123 +f 5123 5195 5066 +f 5123 5066 4943 +f 4943 5066 4963 +f 4943 4963 4873 +f 4873 4963 4879 +f 4873 4879 4693 +f 4693 4879 4721 +f 4693 4721 4595 +f 4595 4721 4577 +f 4595 4577 4383 +f 4383 4577 4389 +f 4383 4389 4329 +f 4329 4389 4259 +f 4329 4259 4221 +f 4221 4259 4153 +f 4221 4153 4053 +f 4053 4153 4059 +f 4053 4059 3857 +f 3857 4059 3865 +f 3857 3865 3811 +f 3811 3865 3747 +f 3811 3747 3691 +f 3691 3747 3648 +f 3691 3648 3497 +f 3497 3648 3525 +f 3497 3525 3393 +f 3393 3525 3303 +f 3393 3303 3213 +f 3213 3303 3190 +f 3213 3190 3141 +f 3141 3190 3165 +f 3141 3165 2937 +f 2937 3165 2929 +f 2937 2929 2894 +f 2894 2929 2869 +f 2894 2869 2665 +f 2665 2869 2697 +f 2665 2697 2505 +f 2505 2697 2569 +f 2505 2569 2435 +f 2435 2569 2391 +f 2435 2391 2219 +f 2219 2391 2295 +f 2219 2295 2205 +f 2205 2295 2183 +f 2205 2183 1989 +f 1989 2183 1985 +f 1989 1985 1843 +f 1843 1985 1837 +f 1843 1837 1769 +f 1769 1837 1705 +f 1769 1705 1693 +f 1693 1705 1584 +f 1693 1584 1455 +f 1455 1584 1543 +f 1455 1543 1327 +f 1327 1543 1353 +f 1327 1353 1279 +f 1279 1353 1191 +f 1279 1191 1145 +f 1145 1191 1185 +f 1145 1185 937 +f 937 1185 1052 +f 937 1052 855 +f 855 1052 907 +f 855 907 753 +f 753 907 795 +f 753 795 557 +f 557 795 561 +f 557 561 437 +f 437 561 524 +f 437 524 329 +f 329 524 356 +f 329 356 249 +f 249 356 183 +f 249 183 163 +f 163 183 37 +f 163 37 27 +f 5 27 164 +f 17 40 1 +f 7896 7861 7916 +f 7896 7878 7861 +f 7904 7808 7880 +f 7904 7919 7808 +f 7934 7866 7930 +f 7915 7858 7934 +f 62 14 1 +f 138 62 1 +f 138 1 40 +f 7932 7838 7915 +f 7903 7802 7932 +f 60 2 14 +f 98 60 14 +f 98 14 62 +f 7889 7791 7903 +f 7888 7788 7889 +f 94 7 2 +f 149 94 2 +f 149 2 60 +f 7928 7848 7888 +f 124 8 7 +f 124 7 94 +f 7882 7851 7928 +f 7921 7871 7882 +f 150 29 8 +f 150 8 142 +f 7922 7806 7921 +f 7933 7864 7922 +f 65 6 29 +f 48 65 29 +f 48 29 150 +f 7891 7862 7933 +f 7920 7800 7891 +f 84 30 6 +f 71 84 6 +f 71 6 65 +f 7909 7782 7920 +f 7892 7874 7909 +f 55 25 30 +f 160 55 30 +f 160 30 84 +f 7917 7821 7892 +f 105 11 25 +f 105 25 55 +f 7884 7828 7917 +f 7912 7822 7884 +f 96 21 11 +f 96 11 49 +f 7935 7796 7912 +f 7926 7764 7935 +f 116 4 21 +f 158 116 21 +f 158 21 96 +f 7902 7778 7926 +f 7908 7826 7902 +f 85 26 4 +f 117 85 4 +f 117 4 116 +f 7936 7814 7908 +f 7894 7846 7936 +f 86 33 26 +f 131 86 26 +f 131 26 85 +f 7916 7804 7894 +f 72 9 33 +f 72 33 86 +f 87 12 9 +f 87 9 132 +f 7138 7007 7031 +f 50 13 12 +f 6993 6989 6954 +f 6992 6922 6988 +f 106 28 13 +f 51 106 13 +f 51 13 50 +f 7133 7132 7005 +f 107 10 28 +f 7404 7386 7396 +f 133 32 10 +f 7808 7875 7880 +f 7900 7872 7919 +f 134 19 32 +f 134 32 156 +f 7906 7766 7900 +f 7898 7818 7906 +f 52 15 19 +f 66 52 19 +f 66 19 134 +f 7931 7868 7898 +f 7913 7768 7931 +f 118 3 15 +f 56 118 15 +f 56 15 52 +f 7927 7844 7913 +f 7883 7834 7927 +f 58 35 3 +f 88 58 3 +f 88 3 118 +f 7911 7776 7883 +f 75 36 35 +f 75 35 58 +f 7890 7810 7911 +f 7881 7774 7890 +f 136 34 36 +f 136 36 92 +f 7910 7771 7881 +f 7914 7840 7910 +f 140 16 34 +f 146 140 34 +f 146 34 136 +f 7893 7798 7914 +f 7923 7812 7893 +f 154 22 16 +f 126 154 16 +f 126 16 140 +f 7907 7856 7923 +f 7887 7854 7907 +f 144 18 22 +f 122 144 22 +f 122 22 154 +f 7895 7794 7887 +f 120 20 18 +f 120 18 144 +f 7925 7816 7895 +f 7886 7824 7925 +f 112 31 20 +f 112 20 100 +f 7924 7836 7886 +f 7929 7832 7924 +f 68 23 31 +f 110 68 31 +f 110 31 112 +f 7897 7772 7929 +f 7885 7783 7897 +f 162 24 23 +f 42 162 23 +f 42 23 68 +f 7905 7792 7885 +f 7918 7842 7905 +f 38 27 24 +f 108 38 24 +f 108 24 162 +f 164 27 38 +f 8 124 142 +f 11 105 49 +f 9 72 132 +f 7274 7358 7394 +f 7358 7402 7394 +f 6954 7003 6993 +f 6989 6985 6922 +f 6985 6984 6922 +f 6988 6922 6984 +f 7272 7392 7386 +f 7396 7386 7392 +f 32 133 156 +f 7516 7520 7576 +f 7759 7875 7808 +f 36 75 92 +f 20 120 100 +f 7124 7070 7195 +f 7124 7195 7266 +f 7124 7266 7146 +f 7124 7146 7142 +f 7124 7142 7138 +f 7124 7138 7031 +f 6901 6922 6992 +f 6901 6992 6995 +f 6901 6995 6997 +f 6901 6997 7005 +f 6901 7005 7132 +f 7091 7132 7133 +f 7091 7133 7135 +f 7091 7135 7140 +f 7091 7140 7143 +f 7091 7143 7147 +f 7091 7147 7253 +f 7091 7253 7071 +f 7901 7930 7784 +f 7784 7930 7830 +f 7784 7830 7702 +f 7702 7830 7698 +f 7702 7698 7543 +f 7543 7698 7604 +f 7543 7604 7512 +f 7512 7604 7506 +f 7512 7506 7307 +f 7307 7506 7380 +f 7307 7380 7158 +f 7158 7380 7222 +f 7158 7222 7015 +f 7015 7222 7022 +f 7015 7022 6982 +f 6982 7022 6952 +f 6982 6952 6850 +f 6850 6952 6800 +f 6850 6800 6637 +f 6637 6800 6596 +f 6637 6596 6481 +f 6481 6596 6572 +f 6481 6572 6446 +f 6446 6572 6460 +f 6446 6460 6289 +f 6289 6460 6232 +f 6289 6232 6200 +f 6200 6232 6106 +f 6200 6106 6041 +f 6041 6106 5972 +f 6041 5972 5912 +f 5912 5972 5866 +f 5912 5866 5796 +f 5796 5866 5730 +f 5796 5730 5574 +f 5574 5730 5622 +f 5574 5622 5487 +f 5487 5622 5466 +f 5487 5466 5311 +f 5311 5466 5404 +f 5311 5404 5164 +f 5164 5404 5170 +f 5164 5170 5024 +f 5024 5170 5140 +f 5024 5140 4921 +f 4921 5140 4972 +f 4921 4972 4842 +f 4842 4972 4772 +f 4842 4772 4754 +f 4754 4772 4652 +f 4754 4652 4523 +f 4523 4652 4502 +f 4523 4502 4473 +f 4473 4502 4488 +f 4473 4488 4335 +f 4335 4488 4232 +f 4335 4232 4104 +f 4104 4232 4128 +f 4104 4128 3982 +f 3982 4128 3990 +f 3982 3990 3946 +f 3946 3990 3944 +f 3946 3944 3826 +f 3826 3944 3786 +f 3826 3786 3594 +f 3594 3786 3696 +f 3594 3696 3446 +f 3446 3696 3566 +f 3446 3566 3382 +f 3382 3566 3410 +f 3382 3410 3298 +f 3298 3410 3252 +f 3298 3252 3088 +f 3088 3252 3156 +f 3088 3156 3012 +f 3012 3156 2924 +f 3012 2924 2775 +f 2775 2924 2898 +f 2775 2898 2757 +f 2757 2898 2738 +f 2757 2738 2610 +f 2610 2738 2624 +f 2610 2624 2411 +f 2411 2624 2464 +f 2411 2464 2340 +f 2340 2464 2224 +f 2340 2224 2160 +f 2160 2224 2212 +f 2160 2212 1969 +f 1969 2212 2068 +f 1969 2068 1832 +f 1832 2068 1908 +f 1832 1908 1775 +f 1775 1908 1724 +f 1775 1724 1627 +f 1627 1724 1620 +f 1627 1620 1469 +f 1469 1620 1534 +f 1469 1534 1442 +f 1442 1534 1340 +f 1442 1340 1267 +f 1267 1340 1234 +f 1267 1234 1120 +f 1120 1234 1180 +f 1120 1180 1023 +f 1023 1180 1040 +f 1023 1040 814 +f 814 1040 928 +f 814 928 719 +f 719 928 780 +f 719 780 584 +f 584 780 624 +f 584 624 444 +f 444 624 452 +f 444 452 294 +f 294 452 390 +f 294 390 254 +f 254 390 196 +f 254 196 89 +f 89 196 40 +f 89 40 17 +f 7402 7358 7518 +f 7518 7358 7429 +f 7518 7429 7522 +f 7522 7429 7580 +f 7522 7580 7637 +f 156 133 244 +f 244 133 245 +f 244 245 368 +f 368 245 383 +f 368 383 445 +f 445 383 456 +f 445 456 575 +f 575 456 663 +f 575 663 773 +f 773 663 728 +f 773 728 912 +f 912 728 871 +f 912 871 1038 +f 1038 871 952 +f 1038 952 1175 +f 1175 952 1184 +f 1175 1184 1307 +f 1307 1184 1228 +f 1307 1228 1443 +f 1443 1228 1444 +f 1443 1444 1465 +f 1465 1444 1510 +f 1465 1510 1580 +f 1580 1510 1653 +f 1580 1653 1800 +f 1800 1653 1709 +f 1800 1709 1876 +f 1876 1709 1883 +f 1876 1883 1958 +f 1958 1883 1964 +f 1958 1964 2196 +f 2196 1964 2187 +f 2196 2187 2300 +f 2300 2187 2239 +f 2300 2239 2412 +f 2412 2239 2396 +f 2412 2396 2568 +f 2568 2396 2592 +f 2568 2592 2642 +f 2642 2592 2718 +f 2642 2718 2814 +f 2814 2718 2865 +f 2814 2865 2950 +f 2950 2865 3023 +f 2950 3023 3065 +f 3065 3023 3110 +f 3065 3110 3278 +f 3278 3110 3284 +f 3278 3284 3419 +f 3419 3284 3330 +f 3419 3330 3479 +f 3479 3330 3544 +f 3479 3544 3600 +f 3600 3544 3613 +f 3600 3613 3806 +f 3806 3613 3752 +f 3806 3752 3919 +f 3919 3752 3866 +f 3919 3866 4084 +f 4084 3866 3996 +f 4084 3996 4194 +f 4194 3996 4216 +f 4194 4216 4290 +f 4290 4216 4240 +f 4290 4240 4387 +f 4387 4240 4437 +f 4387 4437 4567 +f 4567 4437 4516 +f 4567 4516 4728 +f 4728 4516 4690 +f 4728 4690 4798 +f 4798 4690 4858 +f 4798 4858 4909 +f 4909 4858 4942 +f 4909 4942 5054 +f 5054 4942 5118 +f 5054 5118 5221 +f 5221 5118 5231 +f 5221 5231 5290 +f 5290 5231 5332 +f 5290 5332 5490 +f 5490 5332 5456 +f 5490 5456 5650 +f 5650 5456 5584 +f 5650 5584 5706 +f 5706 5584 5792 +f 5706 5792 5924 +f 5924 5792 5844 +f 5924 5844 6042 +f 6042 5844 6058 +f 6042 6058 6181 +f 6181 6058 6116 +f 6181 6116 6304 +f 6304 6116 6204 +f 6304 6204 6360 +f 6360 6204 6375 +f 6360 6375 6496 +f 6496 6375 6532 +f 6496 6532 6716 +f 6716 6532 6718 +f 6716 6718 6843 +f 6843 6718 6803 +f 6843 6803 6881 +f 6881 6803 6862 +f 6881 6862 7042 +f 7042 6862 7071 +f 7042 7071 7156 +f 7156 7071 7253 +f 7156 7253 7312 +f 7312 7253 7386 +f 7312 7386 7516 +f 7516 7386 7404 +f 7516 7404 7520 +f 7918 7899 7852 +f 7852 7899 7786 +f 7852 7786 7654 +f 7654 7786 7736 +f 7654 7736 7578 +f 7578 7736 7568 +f 7578 7568 7471 +f 7471 7568 7490 +f 7471 7490 7374 +f 7374 7490 7340 +f 7374 7340 7178 +f 7178 7340 7152 +f 7178 7152 7019 +f 7019 7152 7094 +f 7019 7094 6970 +f 6970 7094 6915 +f 6970 6915 6732 +f 6732 6915 6749 +f 6732 6749 6620 +f 6620 6749 6609 +f 6620 6609 6533 +f 6533 6609 6574 +f 6533 6574 6350 +f 6350 6574 6416 +f 6350 6416 6296 +f 6296 6416 6239 +f 6296 6239 6182 +f 6182 6239 6082 +f 6182 6082 5992 +f 5992 6082 5964 +f 5992 5964 5913 +f 5913 5964 5814 +f 5913 5814 5780 +f 5780 5814 5699 +f 5780 5699 5596 +f 5596 5699 5555 +f 5596 5555 5432 +f 5432 5555 5516 +f 5432 5516 5379 +f 5379 5516 5410 +f 5379 5410 5194 +f 5194 5410 5245 +f 5194 5245 5124 +f 5124 5245 5036 +f 5124 5036 4944 +f 4944 5036 4998 +f 4944 4998 4875 +f 4875 4998 4834 +f 4875 4834 4695 +f 4695 4834 4642 +f 4695 4642 4596 +f 4596 4642 4592 +f 4596 4592 4384 +f 4384 4592 4425 +f 4384 4425 4330 +f 4330 4425 4302 +f 4330 4302 4222 +f 4222 4302 4176 +f 4222 4176 4054 +f 4054 4176 4029 +f 4054 4029 3859 +f 3859 4029 3913 +f 3859 3913 3812 +f 3812 3913 3784 +f 3812 3784 3692 +f 3692 3784 3645 +f 3692 3645 3499 +f 3499 3645 3535 +f 3499 3535 3394 +f 3394 3535 3328 +f 3394 3328 3214 +f 3214 3328 3177 +f 3214 3177 3143 +f 3143 3177 3134 +f 3143 3134 2939 +f 2939 3134 2932 +f 2939 2932 2895 +f 2895 2932 2896 +f 2895 2896 2666 +f 2666 2896 2706 +f 2666 2706 2506 +f 2506 2706 2522 +f 2506 2522 2436 +f 2436 2522 2420 +f 2436 2420 2220 +f 2220 2420 2285 +f 2220 2285 2206 +f 2206 2285 2188 +f 2206 2188 1990 +f 1990 2188 1970 +f 1990 1970 1847 +f 1847 1970 1884 +f 1847 1884 1770 +f 1770 1884 1766 +f 1770 1766 1695 +f 1695 1766 1601 +f 1695 1601 1456 +f 1456 1601 1552 +f 1456 1552 1328 +f 1328 1552 1354 +f 1328 1354 1280 +f 1280 1354 1287 +f 1280 1287 1148 +f 1148 1287 1078 +f 1148 1078 938 +f 938 1078 1009 +f 938 1009 858 +f 858 1009 877 +f 858 877 756 +f 756 877 764 +f 756 764 559 +f 559 764 576 +f 559 576 438 +f 438 576 528 +f 438 528 330 +f 330 528 338 +f 330 338 250 +f 250 338 292 +f 250 292 164 +f 164 292 76 +f 164 76 5 +f 138 40 240 +f 240 40 196 +f 240 196 388 +f 388 196 390 +f 388 390 500 +f 500 390 452 +f 500 452 556 +f 556 452 624 +f 556 624 724 +f 724 624 780 +f 724 780 930 +f 930 780 928 +f 930 928 1058 +f 1058 928 1040 +f 1058 1040 1102 +f 1102 1040 1180 +f 1102 1180 1304 +f 1304 1180 1234 +f 1304 1234 1402 +f 1402 1234 1340 +f 1402 1340 1476 +f 1476 1340 1534 +f 1476 1534 1690 +f 1690 1534 1620 +f 1690 1620 1798 +f 1798 1620 1724 +f 1798 1724 1880 +f 1880 1724 1908 +f 1880 1908 2054 +f 2054 1908 2068 +f 2054 2068 2106 +f 2106 2068 2212 +f 2106 2212 2270 +f 2270 2212 2224 +f 2270 2224 2386 +f 2386 2224 2464 +f 2386 2464 2532 +f 2532 2464 2624 +f 2532 2624 2754 +f 2754 2624 2738 +f 2754 2738 2828 +f 2828 2738 2898 +f 2828 2898 2934 +f 2934 2898 2924 +f 2934 2924 3116 +f 3116 2924 3156 +f 3116 3156 3294 +f 3294 3156 3252 +f 3294 3252 3376 +f 3376 3252 3410 +f 3376 3410 3564 +f 3564 3410 3566 +f 3564 3566 3658 +f 3658 3566 3696 +f 3658 3696 3740 +f 3740 3696 3786 +f 3740 3786 3936 +f 3936 3786 3944 +f 3936 3944 4036 +f 4036 3944 3990 +f 4036 3990 4210 +f 4210 3990 4128 +f 4210 4128 4320 +f 4320 4128 4232 +f 4320 4232 4382 +f 4382 4232 4488 +f 4382 4488 4556 +f 4556 4488 4502 +f 4556 4502 4672 +f 4672 4502 4652 +f 4672 4652 4850 +f 4850 4652 4772 +f 4850 4772 5014 +f 5014 4772 4972 +f 5014 4972 5126 +f 5126 4972 5140 +f 5126 5140 5200 +f 5200 5140 5170 +f 5200 5170 5288 +f 5288 5170 5404 +f 5288 5404 5528 +f 5528 5404 5466 +f 5528 5466 5668 +f 5668 5466 5622 +f 5668 5622 5754 +f 5754 5622 5730 +f 5754 5730 5812 +f 5812 5730 5866 +f 5812 5866 6018 +f 6018 5866 5972 +f 6018 5972 6174 +f 6174 5972 6106 +f 6174 6106 6260 +f 6260 6106 6232 +f 6260 6232 6420 +f 6420 6232 6460 +f 6420 6460 6548 +f 6548 6460 6572 +f 6548 6572 6618 +f 6618 6572 6596 +f 6618 6596 6818 +f 6818 6596 6800 +f 6818 6800 6874 +f 6874 6800 6952 +f 6874 6952 7028 +f 7028 6952 7022 +f 7028 7022 7182 +f 7182 7022 7222 +f 7182 7222 7364 +f 7364 7222 7380 +f 7364 7380 7416 +f 7416 7380 7506 +f 7416 7506 7530 +f 7530 7506 7604 +f 7530 7604 7666 +f 7666 7604 7698 +f 7666 7698 7866 +f 7866 7698 7830 +f 7866 7830 7930 +f 62 138 206 +f 206 138 240 +f 206 240 318 +f 318 240 388 +f 318 388 525 +f 525 388 500 +f 525 500 630 +f 630 500 556 +f 630 556 702 +f 702 556 724 +f 702 724 859 +f 859 724 930 +f 859 930 1028 +f 1028 930 1058 +f 1028 1058 1100 +f 1100 1058 1102 +f 1100 1102 1282 +f 1282 1102 1304 +f 1282 1304 1318 +f 1318 1304 1402 +f 1318 1402 1538 +f 1538 1402 1476 +f 1538 1476 1660 +f 1660 1476 1690 +f 1660 1690 1730 +f 1730 1690 1798 +f 1730 1798 1936 +f 1936 1798 1880 +f 1936 1880 2028 +f 2028 1880 2054 +f 2028 2054 2190 +f 2190 2054 2106 +f 2190 2106 2330 +f 2330 2106 2270 +f 2330 2270 2442 +f 2442 2270 2386 +f 2442 2386 2626 +f 2626 2386 2532 +f 2626 2532 2752 +f 2752 2532 2754 +f 2752 2754 2892 +f 2892 2754 2828 +f 2892 2828 2928 +f 2928 2828 2934 +f 2928 2934 3162 +f 3162 2934 3116 +f 3162 3116 3220 +f 3220 3116 3294 +f 3220 3294 3354 +f 3354 3294 3376 +f 3354 3376 3484 +f 3484 3376 3564 +f 3484 3564 3628 +f 3628 3564 3658 +f 3628 3658 3720 +f 3720 3658 3740 +f 3720 3740 3958 +f 3958 3740 3936 +f 3958 3936 4016 +f 4016 3936 4036 +f 4016 4036 4110 +f 4110 4036 4210 +f 4110 4210 4348 +f 4348 4210 4320 +f 4348 4320 4490 +f 4490 4320 4382 +f 4490 4382 4594 +f 4594 4382 4556 +f 4594 4556 4740 +f 4740 4556 4672 +f 4740 4672 4800 +f 4800 4672 4850 +f 4800 4850 5012 +f 5012 4850 5014 +f 5012 5014 5057 +f 5057 5014 5126 +f 5057 5126 5190 +f 5190 5126 5200 +f 5190 5200 5304 +f 5304 5200 5288 +f 5304 5288 5518 +f 5518 5288 5528 +f 5518 5528 5614 +f 5614 5528 5668 +f 5614 5668 5712 +f 5712 5668 5754 +f 5712 5754 5828 +f 5828 5754 5812 +f 5828 5812 5984 +f 5984 5812 6018 +f 5984 6018 6118 +f 6118 6018 6174 +f 6118 6174 6258 +f 6258 6174 6260 +f 6258 6260 6451 +f 6451 6260 6420 +f 6451 6420 6486 +f 6486 6420 6548 +f 6486 6548 6710 +f 6710 6548 6618 +f 6710 6618 6752 +f 6752 6618 6818 +f 6752 6818 6906 +f 6906 6818 6874 +f 6906 6874 7046 +f 7046 6874 7028 +f 7046 7028 7260 +f 7260 7028 7182 +f 7260 7182 7290 +f 7290 7182 7364 +f 7290 7364 7424 +f 7424 7364 7416 +f 7424 7416 7570 +f 7570 7416 7530 +f 7570 7530 7730 +f 7730 7530 7666 +f 7730 7666 7858 +f 7858 7666 7866 +f 7858 7866 7934 +f 98 62 261 +f 261 62 206 +f 261 206 378 +f 378 206 318 +f 378 318 428 +f 428 318 525 +f 428 525 589 +f 589 525 630 +f 589 630 802 +f 802 630 702 +f 802 702 824 +f 824 702 859 +f 824 859 946 +f 946 859 1028 +f 946 1028 1166 +f 1166 1028 1100 +f 1166 1100 1223 +f 1223 1100 1282 +f 1223 1282 1400 +f 1400 1282 1318 +f 1400 1318 1570 +f 1570 1318 1538 +f 1570 1538 1680 +f 1680 1538 1660 +f 1680 1660 1810 +f 1810 1660 1730 +f 1810 1730 1910 +f 1910 1730 1936 +f 1910 1936 2048 +f 2048 1936 2028 +f 2048 2028 2136 +f 2136 2028 2190 +f 2136 2190 2216 +f 2216 2190 2330 +f 2216 2330 2478 +f 2478 2330 2442 +f 2478 2442 2510 +f 2510 2442 2626 +f 2510 2626 2658 +f 2658 2626 2752 +f 2658 2752 2888 +f 2888 2752 2892 +f 2888 2892 3000 +f 3000 2892 2928 +f 3000 2928 3070 +f 3070 2928 3162 +f 3070 3162 3188 +f 3188 3162 3220 +f 3188 3220 3348 +f 3348 3220 3354 +f 3348 3354 3440 +f 3440 3354 3484 +f 3440 3484 3588 +f 3588 3484 3628 +f 3588 3628 3828 +f 3828 3628 3720 +f 3828 3720 3876 +f 3876 3720 3958 +f 3876 3958 3998 +f 3998 3958 4016 +f 3998 4016 4140 +f 4140 4016 4110 +f 4140 4110 4250 +f 4250 4110 4348 +f 4250 4348 4402 +f 4402 4348 4490 +f 4402 4490 4610 +f 4610 4490 4594 +f 4610 4594 4650 +f 4650 4594 4740 +f 4650 4740 4762 +f 4762 4740 4800 +f 4762 4800 4996 +f 4996 4800 5012 +f 4996 5012 5092 +f 5092 5012 5057 +f 5092 5057 5168 +f 5168 5057 5190 +f 5168 5190 5334 +f 5334 5190 5304 +f 5334 5304 5484 +f 5484 5304 5518 +f 5484 5518 5588 +f 5588 5518 5614 +f 5588 5614 5770 +f 5770 5614 5712 +f 5770 5712 5836 +f 5836 5712 5828 +f 5836 5828 5953 +f 5953 5828 5984 +f 5953 5984 6170 +f 6170 5984 6118 +f 6170 6118 6254 +f 6254 6118 6258 +f 6254 6258 6344 +f 6344 6258 6451 +f 6344 6451 6594 +f 6594 6451 6486 +f 6594 6486 6656 +f 6656 6486 6710 +f 6656 6710 6827 +f 6827 6710 6752 +f 6827 6752 6918 +f 6918 6752 6906 +f 6918 6906 7118 +f 7118 6906 7046 +f 7118 7046 7174 +f 7174 7046 7260 +f 7174 7260 7378 +f 7378 7260 7290 +f 7378 7290 7488 +f 7488 7290 7424 +f 7488 7424 7610 +f 7610 7424 7570 +f 7610 7570 7678 +f 7678 7570 7730 +f 7678 7730 7838 +f 7838 7730 7858 +f 7838 7858 7915 +f 60 98 278 +f 278 98 261 +f 278 261 298 +f 298 261 378 +f 298 378 488 +f 488 378 428 +f 488 428 610 +f 610 428 589 +f 610 589 712 +f 712 589 802 +f 712 802 822 +f 822 802 824 +f 822 824 1060 +f 1060 824 946 +f 1060 946 1140 +f 1140 946 1166 +f 1140 1166 1232 +f 1232 1166 1223 +f 1232 1223 1320 +f 1320 1223 1400 +f 1320 1400 1488 +f 1488 1400 1570 +f 1488 1570 1700 +f 1700 1570 1680 +f 1700 1680 1780 +f 1780 1680 1810 +f 1780 1810 1836 +f 1836 1810 1910 +f 1836 1910 1988 +f 1988 1910 2048 +f 1988 2048 2168 +f 2168 2048 2136 +f 2168 2136 2294 +f 2294 2136 2216 +f 2294 2216 2366 +f 2366 2216 2478 +f 2366 2478 2512 +f 2512 2478 2510 +f 2512 2510 2728 +f 2728 2510 2658 +f 2728 2658 2876 +f 2876 2658 2888 +f 2876 2888 3008 +f 3008 2888 3000 +f 3008 3000 3042 +f 3042 3000 3070 +f 3042 3070 3216 +f 3216 3070 3188 +f 3216 3188 3380 +f 3380 3188 3348 +f 3380 3348 3466 +f 3466 3348 3440 +f 3466 3440 3686 +f 3686 3440 3588 +f 3686 3588 3744 +f 3744 3588 3828 +f 3744 3828 3954 +f 3954 3828 3876 +f 3954 3876 4042 +f 4042 3876 3998 +f 4042 3998 4116 +f 4116 3998 4140 +f 4116 4140 4310 +f 4310 4140 4250 +f 4310 4250 4414 +f 4414 4250 4402 +f 4414 4402 4620 +f 4620 4402 4610 +f 4620 4610 4654 +f 4654 4610 4650 +f 4654 4650 4832 +f 4832 4650 4762 +f 4832 4762 4982 +f 4982 4762 4996 +f 4982 4996 5134 +f 5134 4996 5092 +f 5134 5092 5280 +f 5280 5092 5168 +f 5280 5168 5358 +f 5358 5168 5334 +f 5358 5334 5512 +f 5512 5334 5484 +f 5512 5484 5568 +f 5568 5484 5588 +f 5568 5588 5718 +f 5718 5588 5770 +f 5718 5770 5870 +f 5870 5770 5836 +f 5870 5836 5980 +f 5980 5836 5953 +f 5980 5953 6156 +f 6156 5953 6170 +f 6156 6170 6208 +f 6208 6170 6254 +f 6208 6254 6442 +f 6442 6254 6344 +f 6442 6344 6546 +f 6546 6344 6594 +f 6546 6594 6648 +f 6648 6594 6656 +f 6648 6656 6770 +f 6770 6656 6827 +f 6770 6827 6956 +f 6956 6827 6918 +f 6956 6918 7114 +f 7114 6918 7118 +f 7114 7118 7234 +f 7234 7118 7174 +f 7234 7174 7292 +f 7292 7174 7378 +f 7292 7378 7454 +f 7454 7378 7488 +f 7454 7488 7552 +f 7552 7488 7610 +f 7552 7610 7744 +f 7744 7610 7678 +f 7744 7678 7802 +f 7802 7678 7838 +f 7802 7838 7932 +f 149 60 190 +f 190 60 278 +f 190 278 304 +f 304 278 298 +f 304 298 538 +f 538 298 488 +f 538 488 592 +f 592 488 610 +f 592 610 705 +f 705 610 712 +f 705 712 894 +f 894 712 822 +f 894 822 1020 +f 1020 822 1060 +f 1020 1060 1080 +f 1080 1060 1140 +f 1080 1140 1268 +f 1268 1140 1232 +f 1268 1232 1355 +f 1355 1232 1320 +f 1355 1320 1496 +f 1496 1320 1488 +f 1496 1488 1632 +f 1632 1488 1700 +f 1632 1700 1826 +f 1826 1700 1780 +f 1826 1780 1905 +f 1905 1780 1836 +f 1905 1836 2060 +f 2060 1836 1988 +f 2060 1988 2108 +f 2108 1988 2168 +f 2108 2168 2336 +f 2336 2168 2294 +f 2336 2294 2376 +f 2376 2294 2366 +f 2376 2366 2614 +f 2614 2366 2512 +f 2614 2512 2730 +f 2730 2512 2728 +f 2730 2728 2784 +f 2784 2728 2876 +f 2784 2876 2914 +f 2914 2876 3008 +f 2914 3008 3060 +f 3060 3008 3042 +f 3060 3042 3180 +f 3180 3042 3216 +f 3180 3216 3398 +f 3398 3216 3380 +f 3398 3380 3492 +f 3492 3380 3466 +f 3492 3466 3580 +f 3580 3466 3686 +f 3580 3686 3816 +f 3816 3686 3744 +f 3816 3744 3928 +f 3928 3744 3954 +f 3928 3954 4065 +f 4065 3954 4042 +f 4065 4042 4152 +f 4152 4042 4116 +f 4152 4116 4276 +f 4276 4116 4310 +f 4276 4310 4470 +f 4470 4310 4414 +f 4470 4414 4544 +f 4544 4414 4620 +f 4544 4620 4674 +f 4674 4620 4654 +f 4674 4654 4766 +f 4766 4654 4832 +f 4766 4832 4940 +f 4940 4832 4982 +f 4940 4982 5052 +f 5052 4982 5134 +f 5052 5134 5234 +f 5234 5134 5280 +f 5234 5280 5364 +f 5364 5280 5358 +f 5364 5358 5434 +f 5434 5358 5512 +f 5434 5512 5594 +f 5594 5512 5568 +f 5594 5568 5790 +f 5790 5568 5718 +f 5790 5718 5849 +f 5849 5718 5870 +f 5849 5870 5970 +f 5970 5870 5980 +f 5970 5980 6188 +f 6188 5980 6156 +f 6188 6156 6266 +f 6266 6156 6208 +f 6266 6208 6448 +f 6448 6208 6442 +f 6448 6442 6528 +f 6528 6442 6546 +f 6528 6546 6634 +f 6634 6546 6648 +f 6634 6648 6796 +f 6796 6648 6770 +f 6796 6770 6940 +f 6940 6770 6956 +f 6940 6956 7084 +f 7084 6956 7114 +f 7084 7114 7179 +f 7179 7114 7234 +f 7179 7234 7316 +f 7316 7234 7292 +f 7316 7292 7476 +f 7476 7292 7454 +f 7476 7454 7524 +f 7524 7454 7552 +f 7524 7552 7705 +f 7705 7552 7744 +f 7705 7744 7791 +f 7791 7744 7802 +f 7791 7802 7903 +f 94 149 187 +f 187 149 190 +f 187 190 412 +f 412 190 304 +f 412 304 426 +f 426 304 538 +f 426 538 642 +f 642 538 592 +f 642 592 709 +f 709 592 705 +f 709 705 891 +f 891 705 894 +f 891 894 1050 +f 1050 894 1020 +f 1050 1020 1130 +f 1130 1020 1080 +f 1130 1080 1296 +f 1296 1080 1268 +f 1296 1268 1322 +f 1322 1268 1355 +f 1322 1355 1450 +f 1450 1355 1496 +f 1450 1496 1692 +f 1692 1496 1632 +f 1692 1632 1702 +f 1702 1632 1826 +f 1702 1826 1950 +f 1950 1826 1905 +f 1950 1905 1998 +f 1998 1905 2060 +f 1998 2060 2204 +f 2204 2060 2108 +f 2204 2108 2275 +f 2275 2108 2336 +f 2275 2336 2362 +f 2362 2336 2376 +f 2362 2376 2536 +f 2536 2376 2614 +f 2536 2614 2640 +f 2640 2614 2730 +f 2640 2730 2820 +f 2820 2730 2784 +f 2820 2784 3006 +f 3006 2784 2914 +f 3006 2914 3058 +f 3058 2914 3060 +f 3058 3060 3212 +f 3212 3060 3180 +f 3212 3180 3430 +f 3430 3180 3398 +f 3430 3398 3512 +f 3512 3398 3492 +f 3512 3492 3592 +f 3592 3492 3580 +f 3592 3580 3780 +f 3780 3580 3816 +f 3780 3816 3848 +f 3848 3816 3928 +f 3848 3928 4012 +f 4012 3928 4065 +f 4012 4065 4198 +f 4198 4065 4152 +f 4198 4152 4268 +f 4268 4152 4276 +f 4268 4276 4364 +f 4364 4276 4470 +f 4364 4470 4532 +f 4532 4470 4544 +f 4532 4544 4646 +f 4646 4544 4674 +f 4646 4674 4796 +f 4796 4674 4766 +f 4796 4766 4980 +f 4980 4766 4940 +f 4980 4940 5150 +f 5150 4940 5052 +f 5150 5052 5186 +f 5186 5052 5234 +f 5186 5234 5324 +f 5324 5234 5364 +f 5324 5364 5464 +f 5464 5364 5434 +f 5464 5434 5670 +f 5670 5434 5594 +f 5670 5594 5686 +f 5686 5594 5790 +f 5686 5790 5830 +f 5830 5790 5849 +f 5830 5849 6064 +f 6064 5849 5970 +f 6064 5970 6094 +f 6094 5970 6188 +f 6094 6188 6235 +f 6235 6188 6266 +f 6235 6266 6432 +f 6432 6266 6448 +f 6432 6448 6512 +f 6512 6448 6528 +f 6512 6528 6650 +f 6650 6528 6634 +f 6650 6634 6816 +f 6816 6634 6796 +f 6816 6796 6938 +f 6938 6796 6940 +f 6938 6940 7085 +f 7085 6940 7084 +f 7085 7084 7205 +f 7205 7084 7179 +f 7205 7179 7328 +f 7328 7179 7316 +f 7328 7316 7484 +f 7484 7316 7476 +f 7484 7476 7555 +f 7555 7476 7524 +f 7555 7524 7712 +f 7712 7524 7705 +f 7712 7705 7788 +f 7788 7705 7791 +f 7788 7791 7889 +f 124 94 290 +f 290 94 187 +f 290 187 314 +f 314 187 412 +f 314 412 536 +f 536 412 426 +f 536 426 599 +f 599 426 642 +f 599 642 720 +f 720 642 709 +f 720 709 808 +f 808 709 891 +f 808 891 996 +f 996 891 1050 +f 996 1050 1188 +f 1188 1050 1130 +f 1188 1130 1254 +f 1254 1130 1296 +f 1254 1296 1342 +f 1342 1296 1322 +f 1342 1322 1523 +f 1523 1322 1450 +f 1523 1450 1636 +f 1636 1450 1692 +f 1636 1692 1816 +f 1816 1692 1702 +f 1816 1702 1940 +f 1940 1702 1950 +f 1940 1950 1974 +f 1974 1950 1998 +f 1974 1998 2192 +f 2192 1998 2204 +f 2192 2204 2318 +f 2318 2204 2275 +f 2318 2275 2370 +f 2370 2275 2362 +f 2370 2362 2530 +f 2530 2362 2536 +f 2530 2536 2724 +f 2724 2536 2640 +f 2724 2640 2806 +f 2806 2640 2820 +f 2806 2820 2942 +f 2942 2820 3006 +f 2942 3006 3148 +f 3148 3006 3058 +f 3148 3058 3292 +f 3292 3058 3212 +f 3292 3212 3396 +f 3396 3212 3430 +f 3396 3430 3532 +f 3532 3430 3512 +f 3532 3512 3602 +f 3602 3512 3592 +f 3602 3592 3792 +f 3792 3592 3780 +f 3792 3780 3884 +f 3884 3780 3848 +f 3884 3848 4080 +f 4080 3848 4012 +f 4080 4012 4132 +f 4132 4012 4198 +f 4132 4198 4328 +f 4328 4198 4268 +f 4328 4268 4438 +f 4438 4268 4364 +f 4438 4364 4548 +f 4548 4364 4532 +f 4548 4532 4644 +f 4644 4532 4646 +f 4644 4646 4790 +f 4790 4646 4796 +f 4790 4796 4984 +f 4984 4796 4980 +f 4984 4980 5114 +f 5114 4980 5150 +f 5114 5150 5228 +f 5228 5150 5186 +f 5228 5186 5414 +f 5414 5186 5324 +f 5414 5324 5427 +f 5427 5324 5464 +f 5427 5464 5609 +f 5609 5464 5670 +f 5609 5670 5743 +f 5743 5670 5686 +f 5743 5686 5846 +f 5846 5686 5830 +f 5846 5830 6060 +f 6060 5830 6064 +f 6060 6064 6130 +f 6130 6064 6094 +f 6130 6094 6274 +f 6274 6094 6235 +f 6274 6235 6454 +f 6454 6235 6432 +f 6454 6432 6502 +f 6502 6432 6512 +f 6502 6512 6666 +f 6666 6512 6650 +f 6666 6650 6820 +f 6820 6650 6816 +f 6820 6816 6871 +f 6871 6816 6938 +f 6871 6938 7040 +f 7040 6938 7085 +f 7040 7085 7228 +f 7228 7085 7205 +f 7228 7205 7302 +f 7302 7205 7328 +f 7302 7328 7472 +f 7472 7328 7484 +f 7472 7484 7556 +f 7556 7484 7555 +f 7556 7555 7644 +f 7644 7555 7712 +f 7644 7712 7848 +f 7848 7712 7788 +f 7848 7788 7888 +f 142 124 266 +f 266 124 290 +f 266 290 335 +f 335 290 314 +f 335 314 432 +f 432 314 536 +f 432 536 604 +f 604 536 599 +f 604 599 726 +f 726 599 720 +f 726 720 830 +f 830 720 808 +f 830 808 1042 +f 1042 808 996 +f 1042 996 1107 +f 1107 996 1188 +f 1107 1188 1190 +f 1190 1188 1254 +f 1190 1254 1437 +f 1437 1254 1342 +f 1437 1342 1553 +f 1553 1342 1523 +f 1553 1523 1662 +f 1662 1523 1636 +f 1662 1636 1776 +f 1776 1636 1816 +f 1776 1816 1859 +f 1859 1816 1940 +f 1859 1940 1992 +f 1992 1940 1974 +f 1992 1974 2113 +f 2113 1974 2192 +f 2113 2192 2249 +f 2249 2192 2318 +f 2249 2318 2380 +f 2380 2318 2370 +f 2380 2370 2608 +f 2608 2370 2530 +f 2608 2530 2758 +f 2758 2530 2724 +f 2758 2724 2816 +f 2816 2724 2806 +f 2816 2806 2904 +f 2904 2806 2942 +f 2904 2942 3093 +f 3093 2942 3148 +f 3093 3148 3275 +f 3275 3148 3292 +f 3275 3292 3358 +f 3358 3292 3396 +f 3358 3396 3454 +f 3454 3396 3532 +f 3454 3532 3666 +f 3666 3532 3602 +f 3666 3602 3820 +f 3820 3602 3792 +f 3820 3792 3910 +f 3910 3792 3884 +f 3910 3884 4049 +f 4049 3884 4080 +f 4049 4080 4134 +f 4134 4080 4132 +f 4134 4132 4312 +f 4312 4132 4328 +f 4312 4328 4372 +f 4372 4328 4438 +f 4372 4438 4570 +f 4570 4438 4548 +f 4570 4548 4681 +f 4681 4548 4644 +f 4681 4644 4864 +f 4864 4644 4790 +f 4864 4790 4916 +f 4916 4790 4984 +f 4916 4984 5146 +f 5146 4984 5114 +f 5146 5114 5198 +f 5198 5114 5228 +f 5198 5228 5352 +f 5352 5228 5414 +f 5352 5414 5542 +f 5542 5414 5427 +f 5542 5427 5624 +f 5624 5427 5609 +f 5624 5609 5760 +f 5760 5609 5743 +f 5760 5743 5832 +f 5832 5743 5846 +f 5832 5846 6016 +f 6016 5846 6060 +f 6016 6060 6168 +f 6168 6060 6130 +f 6168 6130 6318 +f 6318 6130 6274 +f 6318 6274 6383 +f 6383 6274 6454 +f 6383 6454 6478 +f 6478 6454 6502 +f 6478 6502 6603 +f 6603 6502 6666 +f 6603 6666 6738 +f 6738 6666 6820 +f 6738 6820 6980 +f 6980 6820 6871 +f 6980 6871 7026 +f 7026 6871 7040 +f 7026 7040 7164 +f 7164 7040 7228 +f 7164 7228 7349 +f 7349 7228 7302 +f 7349 7302 7510 +f 7510 7302 7472 +f 7510 7472 7561 +f 7561 7472 7556 +f 7561 7556 7683 +f 7683 7556 7644 +f 7683 7644 7851 +f 7851 7644 7848 +f 7851 7848 7928 +f 150 142 227 +f 227 142 266 +f 227 266 316 +f 316 266 335 +f 316 335 512 +f 512 335 432 +f 512 432 600 +f 600 432 604 +f 600 604 804 +f 804 604 726 +f 804 726 881 +f 881 726 830 +f 881 830 1010 +f 1010 830 1042 +f 1010 1042 1073 +f 1073 1042 1107 +f 1073 1107 1214 +f 1214 1107 1190 +f 1214 1190 1345 +f 1345 1190 1437 +f 1345 1437 1536 +f 1536 1437 1553 +f 1536 1553 1613 +f 1613 1553 1662 +f 1613 1662 1785 +f 1785 1662 1776 +f 1785 1776 1906 +f 1906 1776 1859 +f 1906 1859 2017 +f 2017 1859 1992 +f 2017 1992 2176 +f 2176 1992 2113 +f 2176 2113 2254 +f 2254 2113 2249 +f 2254 2249 2372 +f 2372 2249 2380 +f 2372 2380 2500 +f 2500 2380 2608 +f 2500 2608 2638 +f 2638 2608 2758 +f 2638 2758 2781 +f 2781 2758 2816 +f 2781 2816 2918 +f 2918 2816 2904 +f 2918 2904 3152 +f 3152 2904 3093 +f 3152 3093 3260 +f 3260 3093 3275 +f 3260 3275 3420 +f 3420 3275 3358 +f 3420 3358 3490 +f 3490 3358 3454 +f 3490 3454 3698 +f 3698 3454 3666 +f 3698 3666 3797 +f 3797 3666 3820 +f 3797 3820 3872 +f 3872 3820 3910 +f 3872 3910 4062 +f 4062 3910 4049 +f 4062 4049 4137 +f 4137 4049 4134 +f 4137 4134 4242 +f 4242 4134 4312 +f 4242 4312 4458 +f 4458 4312 4372 +f 4458 4372 4504 +f 4504 4372 4570 +f 4504 4570 4682 +f 4682 4570 4681 +f 4682 4681 4782 +f 4782 4681 4864 +f 4782 4864 5003 +f 5003 4864 4916 +f 5003 4916 5029 +f 5029 4916 5146 +f 5029 5146 5278 +f 5278 5146 5198 +f 5278 5198 5296 +f 5296 5198 5352 +f 5296 5352 5530 +f 5530 5352 5542 +f 5530 5542 5602 +f 5602 5542 5624 +f 5602 5624 5778 +f 5778 5624 5760 +f 5778 5760 5840 +f 5840 5760 5832 +f 5840 5832 6010 +f 6010 5832 6016 +f 6010 6016 6088 +f 6088 6016 6168 +f 6088 6168 6307 +f 6307 6168 6318 +f 6307 6318 6376 +f 6376 6318 6383 +f 6376 6383 6497 +f 6497 6383 6478 +f 6497 6478 6654 +f 6654 6478 6603 +f 6654 6603 6746 +f 6746 6603 6738 +f 6746 6738 6976 +f 6976 6738 6980 +f 6976 6980 7020 +f 7020 6980 7026 +f 7020 7026 7238 +f 7238 7026 7164 +f 7238 7164 7334 +f 7334 7164 7349 +f 7334 7349 7412 +f 7412 7349 7510 +f 7412 7510 7594 +f 7594 7510 7561 +f 7594 7561 7728 +f 7728 7561 7683 +f 7728 7683 7871 +f 7871 7683 7851 +f 7871 7851 7882 +f 48 150 233 +f 233 150 227 +f 233 227 394 +f 394 227 316 +f 394 316 463 +f 463 316 512 +f 463 512 590 +f 590 512 600 +f 590 600 757 +f 757 600 804 +f 757 804 917 +f 917 804 881 +f 917 881 1035 +f 1035 881 1010 +f 1035 1010 1086 +f 1086 1010 1073 +f 1086 1073 1288 +f 1288 1073 1214 +f 1288 1214 1375 +f 1375 1214 1345 +f 1375 1345 1470 +f 1470 1345 1536 +f 1470 1536 1670 +f 1670 1536 1613 +f 1670 1613 1812 +f 1812 1613 1785 +f 1812 1785 1877 +f 1877 1785 1906 +f 1877 1906 2009 +f 2009 1906 2017 +f 2009 2017 2094 +f 2094 2017 2176 +f 2094 2176 2236 +f 2236 2176 2254 +f 2236 2254 2425 +f 2425 2254 2372 +f 2425 2372 2524 +f 2524 2372 2500 +f 2524 2500 2746 +f 2746 2500 2638 +f 2746 2638 2776 +f 2776 2638 2781 +f 2776 2781 3028 +f 3028 2781 2918 +f 3028 2918 3051 +f 3051 2918 3152 +f 3051 3152 3184 +f 3184 3152 3260 +f 3184 3260 3332 +f 3332 3260 3420 +f 3332 3420 3464 +f 3464 3420 3490 +f 3464 3490 3694 +f 3694 3490 3698 +f 3694 3698 3762 +f 3762 3698 3797 +f 3762 3797 3886 +f 3886 3797 3872 +f 3886 3872 4082 +f 4082 3872 4062 +f 4082 4062 4184 +f 4184 4062 4137 +f 4184 4137 4283 +f 4283 4137 4242 +f 4283 4242 4368 +f 4368 4242 4458 +f 4368 4458 4606 +f 4606 4458 4504 +f 4606 4504 4750 +f 4750 4504 4682 +f 4750 4682 4774 +f 4774 4682 4782 +f 4774 4782 4930 +f 4930 4782 5003 +f 4930 5003 5042 +f 5042 5003 5029 +f 5042 5029 5206 +f 5206 5029 5278 +f 5206 5278 5298 +f 5298 5278 5296 +f 5298 5296 5442 +f 5442 5296 5530 +f 5442 5530 5626 +f 5626 5530 5602 +f 5626 5602 5748 +f 5748 5602 5778 +f 5748 5778 5881 +f 5881 5778 5840 +f 5881 5840 6026 +f 6026 5840 6010 +f 6026 6010 6128 +f 6128 6010 6088 +f 6128 6088 6221 +f 6221 6088 6307 +f 6221 6307 6422 +f 6422 6307 6376 +f 6422 6376 6582 +f 6582 6376 6497 +f 6582 6497 6676 +f 6676 6497 6654 +f 6676 6654 6837 +f 6837 6654 6746 +f 6837 6746 6972 +f 6972 6746 6976 +f 6972 6976 7126 +f 7126 6976 7020 +f 7126 7020 7192 +f 7192 7020 7238 +f 7192 7238 7304 +f 7304 7238 7334 +f 7304 7334 7463 +f 7463 7334 7412 +f 7463 7412 7526 +f 7526 7412 7594 +f 7526 7594 7732 +f 7732 7594 7728 +f 7732 7728 7806 +f 7806 7728 7871 +f 7806 7871 7921 +f 65 48 280 +f 280 48 233 +f 280 233 343 +f 343 233 394 +f 343 394 540 +f 540 394 463 +f 540 463 628 +f 628 463 590 +f 628 590 758 +f 758 590 757 +f 758 757 812 +f 812 757 917 +f 812 917 1036 +f 1036 917 1035 +f 1036 1035 1097 +f 1097 1035 1086 +f 1097 1086 1274 +f 1274 1086 1288 +f 1274 1288 1398 +f 1398 1288 1375 +f 1398 1375 1461 +f 1461 1375 1470 +f 1461 1470 1696 +f 1696 1470 1670 +f 1696 1670 1744 +f 1744 1670 1812 +f 1744 1812 1944 +f 1944 1812 1877 +f 1944 1877 2018 +f 2018 1877 2009 +f 2018 2009 2090 +f 2090 2009 2094 +f 2090 2094 2272 +f 2272 2094 2236 +f 2272 2236 2468 +f 2468 2236 2425 +f 2468 2425 2578 +f 2578 2425 2524 +f 2578 2524 2660 +f 2660 2524 2746 +f 2660 2746 2778 +f 2778 2746 2776 +f 2778 2776 3018 +f 3018 2776 3028 +f 3018 3028 3090 +f 3090 3028 3051 +f 3090 3051 3290 +f 3290 3051 3184 +f 3290 3184 3406 +f 3406 3184 3332 +f 3406 3332 3541 +f 3541 3332 3464 +f 3541 3464 3604 +f 3604 3464 3694 +f 3604 3694 3768 +f 3768 3694 3762 +f 3768 3762 3949 +f 3949 3762 3886 +f 3949 3886 4002 +f 4002 3886 4082 +f 4002 4082 4169 +f 4169 4082 4184 +f 4169 4184 4336 +f 4336 4184 4283 +f 4336 4283 4422 +f 4422 4283 4368 +f 4422 4368 4526 +f 4526 4368 4606 +f 4526 4606 4658 +f 4658 4606 4750 +f 4658 4750 4852 +f 4852 4750 4774 +f 4852 4774 4932 +f 4932 4774 4930 +f 4932 4930 5034 +f 5034 4930 5042 +f 5034 5042 5262 +f 5262 5042 5206 +f 5262 5206 5380 +f 5380 5206 5298 +f 5380 5298 5462 +f 5462 5298 5442 +f 5462 5442 5580 +f 5580 5442 5626 +f 5580 5626 5787 +f 5787 5626 5748 +f 5787 5748 5914 +f 5914 5748 5881 +f 5914 5881 6012 +f 6012 5881 6026 +f 6012 6026 6090 +f 6090 6026 6128 +f 6090 6128 6301 +f 6301 6128 6221 +f 6301 6221 6456 +f 6456 6221 6422 +f 6456 6422 6578 +f 6578 6422 6582 +f 6578 6582 6661 +f 6661 6582 6676 +f 6661 6676 6742 +f 6742 6676 6837 +f 6742 6837 6864 +f 6864 6837 6972 +f 6864 6972 7062 +f 7062 6972 7126 +f 7062 7126 7187 +f 7187 7126 7192 +f 7187 7192 7368 +f 7368 7192 7304 +f 7368 7304 7430 +f 7430 7304 7463 +f 7430 7463 7598 +f 7598 7463 7526 +f 7598 7526 7742 +f 7742 7526 7732 +f 7742 7732 7864 +f 7864 7732 7806 +f 7864 7806 7922 +f 71 65 179 +f 179 65 280 +f 179 280 344 +f 344 280 343 +f 344 343 477 +f 477 343 540 +f 477 540 550 +f 550 540 628 +f 550 628 765 +f 765 628 758 +f 765 758 848 +f 848 758 812 +f 848 812 953 +f 953 812 1036 +f 953 1036 1074 +f 1074 1036 1097 +f 1074 1097 1297 +f 1297 1097 1274 +f 1297 1274 1421 +f 1421 1274 1398 +f 1421 1398 1481 +f 1481 1398 1461 +f 1481 1461 1686 +f 1686 1461 1696 +f 1686 1696 1755 +f 1755 1696 1744 +f 1755 1744 1860 +f 1860 1744 1944 +f 1860 1944 1999 +f 1999 1944 2018 +f 1999 2018 2161 +f 2161 2018 2090 +f 2161 2090 2262 +f 2262 2090 2272 +f 2262 2272 2470 +f 2470 2272 2468 +f 2470 2468 2586 +f 2586 2468 2578 +f 2586 2578 2682 +f 2682 2578 2660 +f 2682 2660 2878 +f 2878 2660 2778 +f 2878 2778 2922 +f 2922 2778 3018 +f 2922 3018 3094 +f 3094 3018 3090 +f 3094 3090 3254 +f 3254 3090 3290 +f 3254 3290 3403 +f 3403 3290 3406 +f 3403 3406 3519 +f 3519 3406 3541 +f 3519 3541 3619 +f 3619 3541 3604 +f 3619 3604 3800 +f 3800 3604 3768 +f 3800 3768 3862 +f 3862 3768 3949 +f 3862 3949 4010 +f 4010 3949 4002 +f 4010 4002 4202 +f 4202 4002 4169 +f 4202 4169 4284 +f 4284 4169 4336 +f 4284 4336 4388 +f 4388 4336 4422 +f 4388 4422 4578 +f 4578 4422 4526 +f 4578 4526 4632 +f 4632 4526 4658 +f 4632 4658 4793 +f 4793 4658 4852 +f 4793 4852 4960 +f 4960 4852 4932 +f 4960 4932 5144 +f 5144 4932 5034 +f 5144 5034 5182 +f 5182 5034 5262 +f 5182 5262 5322 +f 5322 5262 5380 +f 5322 5380 5522 +f 5522 5380 5462 +f 5522 5462 5645 +f 5645 5462 5580 +f 5645 5580 5757 +f 5757 5580 5787 +f 5757 5787 5822 +f 5822 5787 5914 +f 5822 5914 5958 +f 5958 5914 6012 +f 5958 6012 6148 +f 6148 6012 6090 +f 6148 6090 6250 +f 6250 6090 6301 +f 6250 6301 6408 +f 6408 6301 6456 +f 6408 6456 6588 +f 6588 6456 6578 +f 6588 6578 6700 +f 6700 6578 6661 +f 6700 6661 6854 +f 6854 6661 6742 +f 6854 6742 6932 +f 6932 6742 6864 +f 6932 6864 7116 +f 7116 6864 7062 +f 7116 7062 7168 +f 7168 7062 7187 +f 7168 7187 7287 +f 7287 7187 7368 +f 7287 7368 7474 +f 7474 7368 7430 +f 7474 7430 7618 +f 7618 7430 7598 +f 7618 7598 7646 +f 7646 7598 7742 +f 7646 7742 7862 +f 7862 7742 7864 +f 7862 7864 7933 +f 84 71 246 +f 246 71 179 +f 246 179 395 +f 395 179 344 +f 395 344 502 +f 502 344 477 +f 502 477 620 +f 620 477 550 +f 620 550 749 +f 749 550 765 +f 749 765 905 +f 905 765 848 +f 905 848 984 +f 984 848 953 +f 984 953 1156 +f 1156 953 1074 +f 1156 1074 1308 +f 1308 1074 1297 +f 1308 1297 1364 +f 1364 1297 1421 +f 1364 1421 1548 +f 1548 1421 1481 +f 1548 1481 1574 +f 1574 1481 1686 +f 1574 1686 1777 +f 1777 1686 1755 +f 1777 1755 1948 +f 1948 1755 1860 +f 1948 1860 1982 +f 1982 1860 1999 +f 1982 1999 2148 +f 2148 1999 2161 +f 2148 2161 2311 +f 2311 2161 2262 +f 2311 2262 2421 +f 2421 2262 2470 +f 2421 2470 2548 +f 2548 2470 2586 +f 2548 2586 2732 +f 2732 2586 2682 +f 2732 2682 2883 +f 2883 2682 2878 +f 2883 2878 2944 +f 2944 2878 2922 +f 2944 2922 3075 +f 3075 2922 3094 +f 3075 3094 3267 +f 3267 3094 3254 +f 3267 3254 3351 +f 3351 3254 3403 +f 3351 3403 3510 +f 3510 3403 3519 +f 3510 3519 3620 +f 3620 3519 3619 +f 3620 3619 3738 +f 3738 3619 3800 +f 3738 3800 3840 +f 3840 3800 3862 +f 3840 3862 3986 +f 3986 3862 4010 +f 3986 4010 4102 +f 4102 4010 4202 +f 4102 4202 4323 +f 4323 4202 4284 +f 4323 4284 4450 +f 4450 4284 4388 +f 4450 4388 4568 +f 4568 4388 4578 +f 4568 4578 4692 +f 4692 4578 4632 +f 4692 4632 4866 +f 4866 4632 4793 +f 4866 4793 4992 +f 4992 4793 4960 +f 4992 4960 5070 +f 5070 4960 5144 +f 5070 5144 5226 +f 5226 5144 5182 +f 5226 5182 5348 +f 5348 5182 5322 +f 5348 5322 5510 +f 5510 5322 5522 +f 5510 5522 5664 +f 5664 5522 5645 +f 5664 5645 5726 +f 5726 5645 5757 +f 5726 5757 5896 +f 5896 5757 5822 +f 5896 5822 5986 +f 5986 5822 5958 +f 5986 5958 6190 +f 6190 5958 6148 +f 6190 6148 6222 +f 6222 6148 6250 +f 6222 6250 6438 +f 6438 6250 6408 +f 6438 6408 6518 +f 6518 6408 6588 +f 6518 6588 6681 +f 6681 6588 6700 +f 6681 6700 6830 +f 6830 6700 6854 +f 6830 6854 6882 +f 6882 6854 6932 +f 6882 6932 7076 +f 7076 6932 7116 +f 7076 7116 7258 +f 7258 7116 7168 +f 7258 7168 7288 +f 7288 7168 7287 +f 7288 7287 7499 +f 7499 7287 7474 +f 7499 7474 7547 +f 7547 7474 7618 +f 7547 7618 7715 +f 7715 7618 7646 +f 7715 7646 7800 +f 7800 7646 7862 +f 7800 7862 7891 +f 160 84 216 +f 216 84 246 +f 216 246 357 +f 357 246 395 +f 357 395 492 +f 492 395 502 +f 492 502 664 +f 664 502 620 +f 664 620 698 +f 698 620 749 +f 698 749 838 +f 838 749 905 +f 838 905 1024 +f 1024 905 984 +f 1024 984 1121 +f 1121 984 1156 +f 1121 1156 1239 +f 1239 1156 1308 +f 1239 1308 1365 +f 1365 1308 1364 +f 1365 1364 1511 +f 1511 1364 1548 +f 1511 1548 1640 +f 1640 1548 1574 +f 1640 1574 1767 +f 1767 1574 1777 +f 1767 1777 1834 +f 1834 1777 1948 +f 1834 1948 2032 +f 2032 1948 1982 +f 2032 1982 2139 +f 2139 1982 2148 +f 2139 2148 2298 +f 2298 2148 2311 +f 2298 2311 2462 +f 2462 2311 2421 +f 2462 2421 2564 +f 2564 2421 2548 +f 2564 2548 2744 +f 2744 2548 2732 +f 2744 2732 2822 +f 2822 2732 2883 +f 2822 2883 3004 +f 3004 2883 2944 +f 3004 2944 3046 +f 3046 2944 3075 +f 3046 3075 3286 +f 3286 3075 3267 +f 3286 3267 3391 +f 3391 3267 3351 +f 3391 3351 3480 +f 3480 3351 3510 +f 3480 3510 3654 +f 3654 3510 3620 +f 3654 3620 3757 +f 3757 3620 3738 +f 3757 3738 3898 +f 3898 3738 3840 +f 3898 3840 4030 +f 4030 3840 3986 +f 4030 3986 4124 +f 4124 3986 4102 +f 4124 4102 4258 +f 4258 4102 4323 +f 4258 4323 4411 +f 4411 4323 4450 +f 4411 4450 4618 +f 4618 4450 4568 +f 4618 4568 4736 +f 4736 4568 4692 +f 4736 4692 4843 +f 4843 4692 4866 +f 4843 4866 5008 +f 5008 4866 4992 +f 5008 4992 5079 +f 5079 4992 5070 +f 5079 5070 5259 +f 5259 5070 5226 +f 5259 5226 5396 +f 5396 5226 5348 +f 5396 5348 5437 +f 5437 5348 5510 +f 5437 5510 5656 +f 5656 5510 5664 +f 5656 5664 5710 +f 5710 5664 5726 +f 5710 5726 5817 +f 5817 5726 5896 +f 5817 5896 5947 +f 5947 5896 5986 +f 5947 5986 6103 +f 6103 5986 6190 +f 6103 6190 6262 +f 6262 6190 6222 +f 6262 6222 6372 +f 6372 6222 6438 +f 6372 6438 6523 +f 6523 6438 6518 +f 6523 6518 6622 +f 6622 6518 6681 +f 6622 6681 6808 +f 6808 6681 6830 +f 6808 6830 6935 +f 6935 6830 6882 +f 6935 6882 7038 +f 7038 6882 7076 +f 7038 7076 7250 +f 7250 7076 7258 +f 7250 7258 7278 +f 7278 7258 7288 +f 7278 7288 7440 +f 7440 7288 7499 +f 7440 7499 7588 +f 7588 7499 7547 +f 7588 7547 7668 +f 7668 7547 7715 +f 7668 7715 7782 +f 7782 7715 7800 +f 7782 7800 7920 +f 55 160 234 +f 234 160 216 +f 234 216 416 +f 416 216 357 +f 416 357 542 +f 542 357 492 +f 542 492 585 +f 585 492 664 +f 585 664 799 +f 799 664 698 +f 799 698 906 +f 906 698 838 +f 906 838 954 +f 954 838 1024 +f 954 1024 1108 +f 1108 1024 1121 +f 1108 1121 1316 +f 1316 1121 1239 +f 1316 1239 1376 +f 1376 1239 1365 +f 1376 1365 1524 +f 1524 1365 1511 +f 1524 1511 1682 +f 1682 1511 1640 +f 1682 1640 1745 +f 1745 1640 1767 +f 1745 1767 1840 +f 1840 1767 1834 +f 1840 1834 2037 +f 2037 1834 2032 +f 2037 2032 2088 +f 2088 2032 2139 +f 2088 2139 2263 +f 2263 2139 2298 +f 2263 2298 2400 +f 2400 2298 2462 +f 2400 2462 2574 +f 2574 2462 2564 +f 2574 2564 2715 +f 2715 2564 2744 +f 2715 2744 2794 +f 2794 2744 2822 +f 2794 2822 3026 +f 3026 2822 3004 +f 3026 3004 3140 +f 3140 3004 3046 +f 3140 3046 3262 +f 3262 3046 3286 +f 3262 3286 3404 +f 3404 3286 3391 +f 3404 3391 3506 +f 3506 3391 3480 +f 3506 3480 3586 +f 3586 3480 3654 +f 3586 3654 3723 +f 3723 3654 3757 +f 3723 3757 3900 +f 3900 3757 3898 +f 3900 3898 4066 +f 4066 3898 4030 +f 4066 4030 4219 +f 4219 4030 4124 +f 4219 4124 4351 +f 4351 4124 4258 +f 4351 4258 4428 +f 4428 4258 4411 +f 4428 4411 4528 +f 4528 4411 4618 +f 4528 4618 4714 +f 4714 4618 4736 +f 4714 4736 4820 +f 4820 4736 4843 +f 4820 4843 4910 +f 4910 4843 5008 +f 4910 5008 5030 +f 5030 5008 5079 +f 5030 5079 5192 +f 5192 5079 5259 +f 5192 5259 5350 +f 5350 5259 5396 +f 5350 5396 5480 +f 5480 5396 5437 +f 5480 5437 5660 +f 5660 5437 5656 +f 5660 5656 5702 +f 5702 5656 5710 +f 5702 5710 5925 +f 5925 5710 5817 +f 5925 5817 6056 +f 6056 5817 5947 +f 6056 5947 6080 +f 6080 5947 6103 +f 6080 6103 6225 +f 6225 6103 6262 +f 6225 6262 6439 +f 6439 6262 6372 +f 6439 6372 6468 +f 6468 6372 6523 +f 6468 6523 6682 +f 6682 6523 6622 +f 6682 6622 6804 +f 6804 6622 6808 +f 6804 6808 6965 +f 6965 6808 6935 +f 6965 6935 7096 +f 7096 6935 7038 +f 7096 7038 7256 +f 7256 7038 7250 +f 7256 7250 7362 +f 7362 7250 7278 +f 7362 7278 7422 +f 7422 7278 7440 +f 7422 7440 7625 +f 7625 7440 7588 +f 7625 7588 7720 +f 7720 7588 7668 +f 7720 7668 7874 +f 7874 7668 7782 +f 7874 7782 7909 +f 105 55 175 +f 175 55 234 +f 175 234 296 +f 296 234 416 +f 296 416 506 +f 506 416 542 +f 506 542 635 +f 635 542 585 +f 635 585 800 +f 800 585 799 +f 800 799 918 +f 918 799 906 +f 918 906 1032 +f 1032 906 954 +f 1032 954 1092 +f 1092 954 1108 +f 1092 1108 1195 +f 1195 1108 1316 +f 1195 1316 1428 +f 1428 1316 1376 +f 1428 1376 1458 +f 1458 1376 1524 +f 1458 1524 1628 +f 1628 1524 1682 +f 1628 1682 1746 +f 1746 1682 1745 +f 1746 1745 1861 +f 1861 1745 1840 +f 1861 1840 2043 +f 2043 1840 2037 +f 2043 2037 2162 +f 2162 2037 2088 +f 2162 2088 2281 +f 2281 2088 2263 +f 2281 2263 2432 +f 2432 2263 2400 +f 2432 2400 2581 +f 2581 2400 2574 +f 2581 2574 2694 +f 2694 2574 2715 +f 2694 2715 2808 +f 2808 2715 2794 +f 2808 2794 2963 +f 2963 2794 3026 +f 2963 3026 3066 +f 3066 3026 3140 +f 3066 3140 3246 +f 3246 3140 3262 +f 3246 3262 3386 +f 3386 3262 3404 +f 3386 3404 3529 +f 3529 3404 3506 +f 3529 3506 3578 +f 3578 3506 3586 +f 3578 3586 3802 +f 3802 3586 3723 +f 3802 3723 3880 +f 3880 3723 3900 +f 3880 3900 4026 +f 4026 3900 4066 +f 4026 4066 4204 +f 4204 4066 4219 +f 4204 4219 4300 +f 4300 4219 4351 +f 4300 4351 4374 +f 4374 4351 4428 +f 4374 4428 4579 +f 4579 4428 4528 +f 4579 4528 4630 +f 4630 4528 4714 +f 4630 4714 4794 +f 4794 4714 4820 +f 4794 4820 4918 +f 4918 4820 4910 +f 4918 4910 5067 +f 5067 4910 5030 +f 5067 5030 5246 +f 5246 5030 5192 +f 5246 5192 5355 +f 5355 5192 5350 +f 5355 5350 5536 +f 5536 5350 5480 +f 5536 5480 5592 +f 5592 5480 5660 +f 5592 5660 5788 +f 5788 5660 5702 +f 5788 5702 5852 +f 5852 5702 5925 +f 5852 5925 5975 +f 5975 5925 6056 +f 5975 6056 6160 +f 6160 6056 6080 +f 6160 6080 6218 +f 6218 6080 6225 +f 6218 6225 6462 +f 6462 6225 6439 +f 6462 6439 6592 +f 6592 6439 6468 +f 6592 6468 6714 +f 6714 6468 6682 +f 6714 6682 6762 +f 6762 6682 6804 +f 6762 6804 6966 +f 6966 6804 6965 +f 6966 6965 7056 +f 7056 6965 7096 +f 7056 7096 7180 +f 7180 7096 7256 +f 7180 7256 7324 +f 7324 7256 7362 +f 7324 7362 7500 +f 7500 7362 7422 +f 7500 7422 7630 +f 7630 7422 7625 +f 7630 7625 7673 +f 7673 7625 7720 +f 7673 7720 7821 +f 7821 7720 7874 +f 7821 7874 7892 +f 49 105 282 +f 282 105 175 +f 282 175 384 +f 384 175 296 +f 384 296 497 +f 497 296 506 +f 497 506 665 +f 665 506 635 +f 665 635 774 +f 774 635 800 +f 774 800 932 +f 932 800 918 +f 932 918 993 +f 993 918 1032 +f 993 1032 1176 +f 1176 1032 1092 +f 1176 1092 1257 +f 1257 1092 1195 +f 1257 1195 1409 +f 1409 1195 1428 +f 1409 1428 1489 +f 1489 1428 1458 +f 1489 1458 1629 +f 1629 1458 1628 +f 1629 1628 1756 +f 1756 1628 1746 +f 1756 1746 1920 +f 1920 1746 1861 +f 1920 1861 1976 +f 1976 1861 2043 +f 1976 2043 2131 +f 2131 2043 2162 +f 2131 2162 2233 +f 2233 2162 2281 +f 2233 2281 2453 +f 2453 2281 2432 +f 2453 2432 2604 +f 2604 2432 2581 +f 2604 2581 2716 +f 2716 2581 2694 +f 2716 2694 2826 +f 2826 2694 2808 +f 2826 2808 3024 +f 3024 2808 2963 +f 3024 2963 3154 +f 3154 2963 3066 +f 3154 3066 3196 +f 3196 3066 3246 +f 3196 3246 3371 +f 3371 3246 3386 +f 3371 3386 3451 +f 3451 3386 3529 +f 3451 3529 3582 +f 3582 3529 3578 +f 3582 3578 3788 +f 3788 3578 3802 +f 3788 3802 3907 +f 3907 3802 3880 +f 3907 3880 4068 +f 4068 3880 4026 +f 4068 4026 4180 +f 4180 4026 4204 +f 4180 4204 4286 +f 4286 4204 4300 +f 4286 4300 4406 +f 4406 4300 4374 +f 4406 4374 4582 +f 4582 4374 4579 +f 4582 4579 4662 +f 4662 4579 4630 +f 4662 4630 4812 +f 4812 4630 4794 +f 4812 4794 4947 +f 4947 4794 4918 +f 4947 4918 5061 +f 5061 4918 5067 +f 5061 5067 5240 +f 5240 5067 5246 +f 5240 5246 5389 +f 5389 5246 5355 +f 5389 5355 5507 +f 5507 5355 5536 +f 5507 5536 5590 +f 5590 5536 5592 +f 5590 5592 5720 +f 5720 5592 5788 +f 5720 5788 5884 +f 5884 5788 5852 +f 5884 5852 5954 +f 5954 5852 5975 +f 5954 5975 6176 +f 6176 5975 6160 +f 6176 6160 6245 +f 6245 6160 6218 +f 6245 6218 6338 +f 6338 6218 6462 +f 6338 6462 6498 +f 6498 6462 6592 +f 6498 6592 6624 +f 6624 6592 6714 +f 6624 6714 6730 +f 6730 6714 6762 +f 6730 6762 6908 +f 6908 6762 6966 +f 6908 6966 7024 +f 7024 6966 7056 +f 7024 7056 7171 +f 7171 7056 7180 +f 7171 7180 7350 +f 7350 7180 7324 +f 7350 7324 7459 +f 7459 7324 7500 +f 7459 7500 7540 +f 7540 7500 7630 +f 7540 7630 7684 +f 7684 7630 7673 +f 7684 7673 7828 +f 7828 7673 7821 +f 7828 7821 7917 +f 96 49 170 +f 170 49 282 +f 170 282 417 +f 417 282 384 +f 417 384 483 +f 483 384 497 +f 483 497 612 +f 612 497 665 +f 612 665 750 +f 750 665 774 +f 750 774 849 +f 849 774 932 +f 849 932 961 +f 961 932 993 +f 961 993 1169 +f 1169 993 1176 +f 1169 1176 1269 +f 1269 1176 1257 +f 1269 1257 1330 +f 1330 1257 1409 +f 1330 1409 1497 +f 1497 1409 1489 +f 1497 1489 1592 +f 1592 1489 1629 +f 1592 1629 1757 +f 1757 1629 1756 +f 1757 1756 1848 +f 1848 1756 1920 +f 1848 1920 2019 +f 2019 1920 1976 +f 2019 1976 2114 +f 2114 1976 2131 +f 2114 2131 2250 +f 2250 2131 2233 +f 2250 2233 2426 +f 2426 2233 2453 +f 2426 2453 2582 +f 2582 2453 2604 +f 2582 2604 2700 +f 2700 2604 2716 +f 2700 2716 2857 +f 2857 2716 2826 +f 2857 2826 2920 +f 2920 2826 3024 +f 2920 3024 3146 +f 3146 3024 3154 +f 3146 3154 3203 +f 3203 3154 3196 +f 3203 3196 3334 +f 3334 3196 3371 +f 3334 3371 3514 +f 3514 3371 3451 +f 3514 3451 3614 +f 3614 3451 3582 +f 3614 3582 3728 +f 3728 3582 3788 +f 3728 3788 3956 +f 3956 3788 3907 +f 3956 3907 3993 +f 3993 3907 4068 +f 3993 4068 4212 +f 4212 4068 4180 +f 4212 4180 4324 +f 4324 4180 4286 +f 4324 4286 4454 +f 4454 4286 4406 +f 4454 4406 4602 +f 4602 4406 4582 +f 4602 4582 4634 +f 4634 4582 4662 +f 4634 4662 4807 +f 4807 4662 4812 +f 4807 4812 4896 +f 4896 4812 4947 +f 4896 4947 5137 +f 5137 4947 5061 +f 5137 5061 5282 +f 5282 5061 5240 +f 5282 5240 5406 +f 5406 5240 5389 +f 5406 5389 5545 +f 5545 5389 5507 +f 5545 5507 5564 +f 5564 5507 5590 +f 5564 5590 5691 +f 5691 5590 5720 +f 5691 5720 5915 +f 5915 5720 5884 +f 5915 5884 6034 +f 6034 5884 5954 +f 6034 5954 6166 +f 6166 5954 6176 +f 6166 6176 6228 +f 6228 6176 6245 +f 6228 6245 6392 +f 6392 6245 6338 +f 6392 6338 6492 +f 6492 6338 6498 +f 6492 6498 6629 +f 6629 6498 6624 +f 6629 6624 6833 +f 6833 6624 6730 +f 6833 6730 6902 +f 6902 6730 6908 +f 6902 6908 7128 +f 7128 6908 7024 +f 7128 7024 7150 +f 7150 7024 7171 +f 7150 7171 7390 +f 7390 7171 7350 +f 7390 7350 7467 +f 7467 7350 7459 +f 7467 7459 7634 +f 7634 7459 7540 +f 7634 7540 7691 +f 7691 7540 7684 +f 7691 7684 7822 +f 7822 7684 7828 +f 7822 7828 7884 +f 158 96 262 +f 262 96 170 +f 262 170 369 +f 369 170 417 +f 369 417 518 +f 518 417 483 +f 518 483 601 +f 601 483 612 +f 601 612 775 +f 775 612 750 +f 775 750 850 +f 850 750 849 +f 850 849 980 +f 980 849 961 +f 980 961 1093 +f 1093 961 1169 +f 1093 1169 1289 +f 1289 1169 1269 +f 1289 1269 1424 +f 1424 1269 1330 +f 1424 1330 1541 +f 1541 1330 1497 +f 1541 1497 1607 +f 1607 1497 1592 +f 1607 1592 1735 +f 1735 1592 1757 +f 1735 1757 1894 +f 1894 1757 1848 +f 1894 1848 1983 +f 1983 1848 2019 +f 1983 2019 2171 +f 2171 2019 2114 +f 2171 2114 2222 +f 2222 2114 2250 +f 2222 2250 2433 +f 2433 2250 2426 +f 2433 2426 2549 +f 2549 2426 2582 +f 2549 2582 2707 +f 2707 2582 2700 +f 2707 2700 2861 +f 2861 2700 2857 +f 2861 2857 2990 +f 2990 2857 2920 +f 2990 2920 3100 +f 3100 2920 3146 +f 3100 3146 3200 +f 3200 3146 3203 +f 3200 3203 3310 +f 3310 3203 3334 +f 3310 3334 3474 +f 3474 3334 3514 +f 3474 3514 3649 +f 3649 3514 3614 +f 3649 3614 3771 +f 3771 3614 3728 +f 3771 3728 3891 +f 3891 3728 3956 +f 3891 3956 4023 +f 4023 3956 3993 +f 4023 3993 4114 +f 4114 3993 4212 +f 4114 4212 4252 +f 4252 4212 4324 +f 4252 4324 4430 +f 4430 4324 4454 +f 4430 4454 4562 +f 4562 4454 4602 +f 4562 4602 4702 +f 4702 4602 4634 +f 4702 4634 4823 +f 4823 4634 4807 +f 4823 4807 4952 +f 4952 4807 4896 +f 4952 4896 5100 +f 5100 4896 5137 +f 5100 5137 5215 +f 5215 5137 5282 +f 5215 5282 5326 +f 5326 5282 5406 +f 5326 5406 5430 +f 5430 5406 5545 +f 5430 5545 5616 +f 5616 5545 5564 +f 5616 5564 5716 +f 5716 5564 5691 +f 5716 5691 5926 +f 5926 5691 5915 +f 5926 5915 5976 +f 5976 5915 6034 +f 5976 6034 6172 +f 6172 6034 6166 +f 6172 6166 6246 +f 6246 6166 6228 +f 6246 6228 6364 +f 6364 6228 6392 +f 6364 6392 6524 +f 6524 6392 6492 +f 6524 6492 6693 +f 6693 6492 6629 +f 6693 6629 6768 +f 6768 6629 6833 +f 6768 6833 6949 +f 6949 6833 6902 +f 6949 6902 7044 +f 7044 6902 7128 +f 7044 7128 7196 +f 7196 7128 7150 +f 7196 7150 7341 +f 7341 7150 7390 +f 7341 7390 7433 +f 7433 7390 7467 +f 7433 7467 7565 +f 7565 7467 7634 +f 7565 7634 7748 +f 7748 7634 7691 +f 7748 7691 7796 +f 7796 7691 7822 +f 7796 7822 7912 +f 116 158 192 +f 192 158 262 +f 192 262 312 +f 312 262 369 +f 312 369 457 +f 457 369 518 +f 457 518 577 +f 577 518 601 +f 577 601 699 +f 699 601 775 +f 699 775 913 +f 913 775 850 +f 913 850 970 +f 970 850 980 +f 970 980 1122 +f 1122 980 1093 +f 1122 1093 1209 +f 1209 1093 1289 +f 1209 1289 1338 +f 1338 1289 1424 +f 1338 1424 1525 +f 1525 1424 1541 +f 1525 1541 1687 +f 1687 1541 1607 +f 1687 1607 1736 +f 1736 1607 1735 +f 1736 1735 1921 +f 1921 1735 1894 +f 1921 1894 2044 +f 2044 1894 1983 +f 2044 1983 2132 +f 2132 1983 2171 +f 2132 2171 2290 +f 2290 2171 2222 +f 2290 2222 2454 +f 2454 2222 2433 +f 2454 2433 2575 +f 2575 2433 2549 +f 2575 2549 2677 +f 2677 2549 2707 +f 2677 2707 2835 +f 2835 2707 2861 +f 2835 2861 2978 +f 2978 2861 2990 +f 2978 2990 3111 +f 3111 2990 3100 +f 3111 3100 3208 +f 3208 3100 3200 +f 3208 3200 3422 +f 3422 3200 3310 +f 3422 3310 3561 +f 3561 3310 3474 +f 3561 3474 3672 +f 3672 3474 3649 +f 3672 3649 3713 +f 3713 3649 3771 +f 3713 3771 3856 +f 3856 3771 3891 +f 3856 3891 4020 +f 4020 3891 4023 +f 4020 4023 4138 +f 4138 4023 4114 +f 4138 4114 4315 +f 4315 4114 4252 +f 4315 4252 4432 +f 4432 4252 4430 +f 4432 4430 4546 +f 4546 4430 4562 +f 4546 4562 4707 +f 4707 4562 4702 +f 4707 4702 4787 +f 4787 4702 4823 +f 4787 4823 5010 +f 5010 4823 4952 +f 5010 4952 5062 +f 5062 4952 5100 +f 5062 5100 5174 +f 5174 5100 5215 +f 5174 5215 5390 +f 5390 5215 5326 +f 5390 5326 5497 +f 5497 5326 5430 +f 5497 5430 5556 +f 5556 5430 5616 +f 5556 5616 5680 +f 5680 5616 5716 +f 5680 5716 5818 +f 5818 5716 5926 +f 5818 5926 6029 +f 6029 5926 5976 +f 6029 5976 6136 +f 6136 5976 6172 +f 6136 6172 6226 +f 6226 6172 6246 +f 6226 6246 6384 +f 6384 6246 6364 +f 6384 6364 6482 +f 6482 6364 6524 +f 6482 6524 6720 +f 6720 6524 6693 +f 6720 6693 6773 +f 6773 6693 6768 +f 6773 6768 6892 +f 6892 6768 6949 +f 6892 6949 7092 +f 7092 6949 7044 +f 7092 7044 7230 +f 7230 7044 7196 +f 7230 7196 7314 +f 7314 7196 7341 +f 7314 7341 7414 +f 7414 7341 7433 +f 7414 7433 7550 +f 7550 7433 7565 +f 7550 7565 7692 +f 7692 7565 7748 +f 7692 7748 7764 +f 7764 7748 7796 +f 7764 7796 7935 +f 117 116 255 +f 255 116 192 +f 255 192 353 +f 353 192 312 +f 353 312 467 +f 467 312 457 +f 467 457 554 +f 554 457 577 +f 554 577 693 +f 693 577 699 +f 693 699 851 +f 851 699 913 +f 851 913 1047 +f 1047 913 970 +f 1047 970 1094 +f 1094 970 1122 +f 1094 1122 1240 +f 1240 1122 1209 +f 1240 1209 1356 +f 1356 1209 1338 +f 1356 1338 1568 +f 1568 1338 1525 +f 1568 1525 1654 +f 1654 1525 1687 +f 1654 1687 1821 +f 1821 1687 1736 +f 1821 1736 1849 +f 1849 1736 1921 +f 1849 1921 2020 +f 2020 1921 2044 +f 2020 2044 2115 +f 2115 2044 2132 +f 2115 2132 2302 +f 2302 2132 2290 +f 2302 2290 2459 +f 2459 2290 2454 +f 2459 2454 2556 +f 2556 2454 2575 +f 2556 2575 2678 +f 2678 2575 2677 +f 2678 2677 2836 +f 2836 2677 2835 +f 2836 2835 2970 +f 2970 2835 2978 +f 2970 2978 3127 +f 3127 2978 3111 +f 3127 3111 3271 +f 3271 3111 3208 +f 3271 3208 3341 +f 3341 3208 3422 +f 3341 3422 3448 +f 3448 3422 3561 +f 3448 3561 3668 +f 3668 3561 3672 +f 3668 3672 3818 +f 3818 3672 3713 +f 3818 3713 3940 +f 3940 3713 3856 +f 3940 3856 4072 +f 4072 3856 4020 +f 4072 4020 4195 +f 4195 4020 4138 +f 4195 4138 4256 +f 4256 4138 4315 +f 4256 4315 4448 +f 4448 4315 4432 +f 4448 4432 4520 +f 4520 4432 4546 +f 4520 4546 4688 +f 4688 4546 4707 +f 4688 4707 4886 +f 4886 4707 4787 +f 4886 4787 4892 +f 4892 4787 5010 +f 4892 5010 5094 +f 5094 5010 5062 +f 5094 5062 5180 +f 5180 5062 5174 +f 5180 5174 5408 +f 5408 5174 5390 +f 5408 5390 5498 +f 5498 5390 5497 +f 5498 5497 5642 +f 5642 5497 5556 +f 5642 5556 5763 +f 5763 5556 5680 +f 5763 5680 5928 +f 5928 5680 5818 +f 5928 5818 6054 +f 6054 5818 6029 +f 6054 6029 6195 +f 6195 6029 6136 +f 6195 6136 6308 +f 6308 6136 6226 +f 6308 6226 6427 +f 6427 6226 6384 +f 6427 6384 6562 +f 6562 6384 6482 +f 6562 6482 6662 +f 6662 6482 6720 +f 6662 6720 6756 +f 6756 6720 6773 +f 6756 6773 6903 +f 6903 6773 6892 +f 6903 6892 7110 +f 7110 6892 7092 +f 7110 7092 7162 +f 7162 7092 7230 +f 7162 7230 7329 +f 7329 7230 7314 +f 7329 7314 7418 +f 7418 7314 7414 +f 7418 7414 7533 +f 7533 7414 7550 +f 7533 7550 7706 +f 7706 7550 7692 +f 7706 7692 7778 +f 7778 7692 7764 +f 7778 7764 7926 +f 85 117 271 +f 271 117 255 +f 271 255 370 +f 370 255 353 +f 370 353 484 +f 484 353 467 +f 484 467 636 +f 636 467 554 +f 636 554 784 +f 784 554 693 +f 784 693 852 +f 852 693 851 +f 852 851 1003 +f 1003 851 1047 +f 1003 1047 1123 +f 1123 1047 1094 +f 1123 1094 1196 +f 1196 1094 1240 +f 1196 1240 1390 +f 1390 1240 1356 +f 1390 1356 1526 +f 1526 1356 1568 +f 1526 1568 1593 +f 1593 1568 1654 +f 1593 1654 1715 +f 1715 1654 1821 +f 1715 1821 1895 +f 1895 1821 1849 +f 1895 1849 2063 +f 2063 1849 2020 +f 2063 2020 2092 +f 2092 2020 2115 +f 2092 2115 2264 +f 2264 2115 2302 +f 2264 2302 2413 +f 2413 2302 2459 +f 2413 2459 2576 +f 2576 2459 2556 +f 2576 2556 2670 +f 2670 2556 2678 +f 2670 2678 2824 +f 2824 2678 2836 +f 2824 2836 2971 +f 2971 2836 2970 +f 2971 2970 3112 +f 3112 2970 3127 +f 3112 3127 3228 +f 3228 3127 3271 +f 3228 3271 3356 +f 3356 3271 3341 +f 3356 3341 3470 +f 3470 3341 3448 +f 3470 3448 3596 +f 3596 3448 3668 +f 3596 3668 3732 +f 3732 3668 3818 +f 3732 3818 3941 +f 3941 3818 3940 +f 3941 3940 4076 +f 4076 3940 4072 +f 4076 4072 4177 +f 4177 4072 4195 +f 4177 4195 4297 +f 4297 4195 4256 +f 4297 4256 4464 +f 4464 4256 4448 +f 4464 4448 4538 +f 4538 4448 4520 +f 4538 4520 4708 +f 4708 4520 4688 +f 4708 4688 4882 +f 4882 4688 4886 +f 4882 4886 5006 +f 5006 4886 4892 +f 5006 4892 5045 +f 5045 4892 5094 +f 5045 5094 5210 +f 5210 5094 5180 +f 5210 5180 5370 +f 5370 5180 5408 +f 5370 5408 5428 +f 5428 5408 5498 +f 5428 5498 5586 +f 5586 5498 5642 +f 5586 5642 5734 +f 5734 5642 5763 +f 5734 5763 5930 +f 5930 5763 5928 +f 5930 5928 5982 +f 5982 5928 6054 +f 5982 6054 6202 +f 6202 6054 6195 +f 6202 6195 6316 +f 6316 6195 6308 +f 6316 6308 6340 +f 6340 6308 6427 +f 6340 6427 6589 +f 6589 6427 6562 +f 6589 6562 6685 +f 6685 6562 6662 +f 6685 6662 6750 +f 6750 6662 6756 +f 6750 6756 6930 +f 6930 6756 6903 +f 6930 6903 7072 +f 7072 6903 7110 +f 7072 7110 7220 +f 7220 7110 7162 +f 7220 7162 7330 +f 7330 7162 7329 +f 7330 7329 7444 +f 7444 7329 7418 +f 7444 7418 7600 +f 7600 7418 7533 +f 7600 7533 7716 +f 7716 7533 7706 +f 7716 7706 7826 +f 7826 7706 7778 +f 7826 7778 7902 +f 131 85 180 +f 180 85 271 +f 180 271 322 +f 322 271 370 +f 322 370 435 +f 435 370 484 +f 435 484 654 +f 654 484 636 +f 654 636 680 +f 680 636 784 +f 680 784 831 +f 831 784 852 +f 831 852 1053 +f 1053 852 1003 +f 1053 1003 1141 +f 1141 1003 1123 +f 1141 1123 1270 +f 1270 1123 1196 +f 1270 1196 1326 +f 1326 1196 1390 +f 1326 1390 1527 +f 1527 1390 1526 +f 1527 1526 1576 +f 1576 1526 1593 +f 1576 1593 1719 +f 1719 1593 1715 +f 1719 1715 1922 +f 1922 1715 1895 +f 1922 1895 2072 +f 2072 1895 2063 +f 2072 2063 2202 +f 2202 2063 2092 +f 2202 2092 2265 +f 2265 2092 2264 +f 2265 2264 2414 +f 2414 2264 2413 +f 2414 2413 2601 +f 2601 2413 2576 +f 2601 2576 2708 +f 2708 2576 2670 +f 2708 2670 2850 +f 2850 2670 2824 +f 2850 2824 2979 +f 2979 2824 2971 +f 2979 2971 3128 +f 3128 2971 3112 +f 3128 3112 3238 +f 3238 3112 3228 +f 3238 3228 3352 +f 3352 3228 3356 +f 3352 3356 3452 +f 3452 3356 3470 +f 3452 3470 3632 +f 3632 3470 3596 +f 3632 3596 3709 +f 3709 3596 3732 +f 3709 3732 3942 +f 3942 3732 3941 +f 3942 3941 3977 +f 3977 3941 4076 +f 3977 4076 4220 +f 4220 4076 4177 +f 4220 4177 4304 +f 4304 4177 4297 +f 4304 4297 4439 +f 4439 4297 4464 +f 4439 4464 4506 +f 4506 4464 4538 +f 4506 4538 4670 +f 4670 4538 4708 +f 4670 4708 4848 +f 4848 4708 4882 +f 4848 4882 4978 +f 4978 4882 5006 +f 4978 5006 5142 +f 5142 5006 5045 +f 5142 5045 5157 +f 5157 5045 5210 +f 5157 5210 5293 +f 5293 5210 5370 +f 5293 5370 5481 +f 5481 5370 5428 +f 5481 5428 5630 +f 5630 5428 5586 +f 5630 5586 5682 +f 5682 5586 5734 +f 5682 5734 5916 +f 5916 5734 5930 +f 5916 5930 6062 +f 6062 5930 5982 +f 6062 5982 6161 +f 6161 5982 6202 +f 6161 6202 6290 +f 6290 6202 6316 +f 6290 6316 6428 +f 6428 6316 6340 +f 6428 6340 6514 +f 6514 6340 6589 +f 6514 6589 6694 +f 6694 6589 6685 +f 6694 6685 6809 +f 6809 6685 6750 +f 6809 6750 6950 +f 6950 6750 6930 +f 6950 6930 7064 +f 7064 6930 7072 +f 7064 7072 7172 +f 7172 7072 7220 +f 7172 7220 7366 +f 7366 7220 7330 +f 7366 7330 7468 +f 7468 7330 7444 +f 7468 7444 7534 +f 7534 7444 7600 +f 7534 7600 7660 +f 7660 7600 7716 +f 7660 7716 7814 +f 7814 7716 7826 +f 7814 7826 7908 +f 86 131 235 +f 235 131 180 +f 235 180 418 +f 418 180 322 +f 418 322 532 +f 532 322 435 +f 532 435 655 +f 655 435 654 +f 655 654 721 +f 721 654 680 +f 721 680 872 +f 872 680 831 +f 872 831 940 +f 940 831 1053 +f 940 1053 1142 +f 1142 1053 1141 +f 1142 1141 1217 +f 1217 1141 1270 +f 1217 1270 1391 +f 1391 1270 1326 +f 1391 1326 1542 +f 1542 1326 1527 +f 1542 1527 1655 +f 1655 1527 1576 +f 1655 1576 1806 +f 1806 1576 1719 +f 1806 1719 1896 +f 1896 1719 1922 +f 1896 1922 2045 +f 2045 1922 2072 +f 2045 2072 2086 +f 2086 2072 2202 +f 2086 2202 2240 +f 2240 2202 2265 +f 2240 2265 2460 +f 2460 2265 2414 +f 2460 2414 2557 +f 2557 2414 2601 +f 2557 2601 2686 +f 2686 2601 2708 +f 2686 2708 2851 +f 2851 2708 2850 +f 2851 2850 2986 +f 2986 2850 2979 +f 2986 2979 3113 +f 3113 2979 3128 +f 3113 3128 3239 +f 3239 3128 3238 +f 3239 3238 3364 +f 3364 3238 3352 +f 3364 3352 3488 +f 3488 3352 3452 +f 3488 3452 3610 +f 3610 3452 3632 +f 3610 3632 3726 +f 3726 3632 3709 +f 3726 3709 3920 +f 3920 3709 3942 +f 3920 3942 3978 +f 3978 3942 3977 +f 3978 3977 4149 +f 4149 3977 4220 +f 4149 4220 4294 +f 4294 4220 4304 +f 4294 4304 4426 +f 4426 4304 4439 +f 4426 4439 4622 +f 4622 4439 4506 +f 4622 4506 4656 +f 4656 4506 4670 +f 4656 4670 4872 +f 4872 4670 4848 +f 4872 4848 4968 +f 4968 4848 4978 +f 4968 4978 5032 +f 5032 4978 5142 +f 5032 5142 5241 +f 5241 5142 5157 +f 5241 5157 5336 +f 5336 5157 5293 +f 5336 5293 5524 +f 5524 5293 5481 +f 5524 5481 5619 +f 5619 5481 5630 +f 5619 5630 5764 +f 5764 5630 5682 +f 5764 5682 5936 +f 5936 5682 5916 +f 5936 5916 6068 +f 6068 5916 6062 +f 6068 6062 6183 +f 6183 6062 6161 +f 6183 6161 6311 +f 6311 6161 6290 +f 6311 6290 6417 +f 6417 6290 6428 +f 6417 6428 6471 +f 6471 6428 6514 +f 6471 6514 6610 +f 6610 6514 6694 +f 6610 6694 6757 +f 6757 6694 6809 +f 6757 6809 6923 +f 6923 6809 6950 +f 6923 6950 7032 +f 7032 6950 7064 +f 7032 7064 7264 +f 7264 7064 7172 +f 7264 7172 7342 +f 7342 7172 7366 +f 7342 7366 7460 +f 7460 7366 7468 +f 7460 7468 7562 +f 7562 7468 7534 +f 7562 7534 7738 +f 7738 7534 7660 +f 7738 7660 7846 +f 7846 7660 7814 +f 7846 7814 7936 +f 72 86 209 +f 209 86 235 +f 209 235 323 +f 323 235 418 +f 323 418 533 +f 533 418 532 +f 533 532 670 +f 670 532 655 +f 670 655 739 +f 739 655 721 +f 739 721 832 +f 832 721 872 +f 832 872 987 +f 987 872 940 +f 987 940 1124 +f 1124 940 1142 +f 1124 1142 1241 +f 1241 1142 1217 +f 1241 1217 1392 +f 1392 1217 1391 +f 1392 1391 1559 +f 1559 1391 1542 +f 1559 1542 1594 +f 1594 1542 1655 +f 1594 1655 1807 +f 1807 1655 1806 +f 1807 1806 1933 +f 1933 1806 1896 +f 1933 1896 2077 +f 2077 1896 2045 +f 2077 2045 2133 +f 2133 2045 2086 +f 2133 2086 2291 +f 2291 2086 2240 +f 2291 2240 2415 +f 2415 2240 2460 +f 2415 2460 2602 +f 2602 2460 2557 +f 2602 2557 2687 +f 2687 2557 2686 +f 2687 2686 2841 +f 2841 2686 2851 +f 2841 2851 2964 +f 2964 2851 2986 +f 2964 2986 3114 +f 3114 2986 3113 +f 3114 3113 3222 +f 3222 3113 3239 +f 3222 3239 3345 +f 3345 3239 3364 +f 3345 3364 3536 +f 3536 3364 3488 +f 3536 3488 3625 +f 3625 3488 3610 +f 3625 3610 3710 +f 3710 3610 3726 +f 3710 3726 3934 +f 3934 3726 3920 +f 3934 3920 4024 +f 4024 3920 3978 +f 4024 3978 4119 +f 4119 3978 4149 +f 4119 4149 4298 +f 4298 4149 4294 +f 4298 4294 4366 +f 4366 4294 4426 +f 4366 4426 4616 +f 4616 4426 4622 +f 4616 4622 4725 +f 4725 4622 4656 +f 4725 4656 4838 +f 4838 4656 4872 +f 4838 4872 4956 +f 4956 4872 4968 +f 4956 4968 5046 +f 5046 4968 5032 +f 5046 5032 5250 +f 5250 5032 5241 +f 5250 5241 5360 +f 5360 5241 5336 +f 5360 5336 5482 +f 5482 5336 5524 +f 5482 5524 5678 +f 5678 5524 5619 +f 5678 5619 5783 +f 5783 5619 5764 +f 5783 5764 5854 +f 5854 5764 5936 +f 5854 5936 6021 +f 6021 5936 6068 +f 6021 6068 6149 +f 6149 6068 6183 +f 6149 6183 6211 +f 6211 6183 6311 +f 6211 6311 6429 +f 6429 6311 6417 +f 6429 6417 6570 +f 6570 6417 6471 +f 6570 6471 6642 +f 6642 6471 6610 +f 6642 6610 6728 +f 6728 6610 6757 +f 6728 6757 6856 +f 6856 6757 6923 +f 6856 6923 7010 +f 7010 6923 7032 +f 7010 7032 7244 +f 7244 7032 7264 +f 7244 7264 7308 +f 7308 7264 7342 +f 7308 7342 7486 +f 7486 7342 7460 +f 7486 7460 7548 +f 7548 7460 7562 +f 7548 7562 7696 +f 7696 7562 7738 +f 7696 7738 7804 +f 7804 7738 7846 +f 7804 7846 7894 +f 132 72 210 +f 210 72 209 +f 210 209 324 +f 324 209 323 +f 324 323 436 +f 436 323 533 +f 436 533 586 +f 586 533 670 +f 586 670 740 +f 740 670 739 +f 740 739 898 +f 898 739 832 +f 898 832 971 +f 971 832 987 +f 971 987 1161 +f 1161 987 1124 +f 1161 1124 1218 +f 1218 1124 1241 +f 1218 1241 1393 +f 1393 1241 1392 +f 1393 1392 1498 +f 1498 1392 1559 +f 1498 1559 1630 +f 1630 1559 1594 +f 1630 1594 1737 +f 1737 1594 1807 +f 1737 1807 1897 +f 1897 1807 1933 +f 1897 1933 2078 +f 2078 1933 2077 +f 2078 2077 2163 +f 2163 2077 2133 +f 2163 2133 2266 +f 2266 2133 2291 +f 2266 2291 2390 +f 2390 2291 2415 +f 2390 2415 2597 +f 2597 2415 2602 +f 2597 2602 2695 +f 2695 2602 2687 +f 2695 2687 2837 +f 2837 2687 2841 +f 2837 2841 2974 +f 2974 2841 2964 +f 2974 2964 3103 +f 3103 2964 3114 +f 3103 3114 3231 +f 3231 3114 3222 +f 3231 3222 3365 +f 3365 3222 3345 +f 3365 3345 3522 +f 3522 3345 3536 +f 3522 3536 3676 +f 3676 3536 3625 +f 3676 3625 3774 +f 3774 3625 3710 +f 3774 3710 3914 +f 3914 3710 3934 +f 3914 3934 4032 +f 4032 3934 4024 +f 4032 4024 4178 +f 4178 4024 4119 +f 4178 4119 4352 +f 4352 4119 4298 +f 4352 4298 4412 +f 4412 4298 4366 +f 4412 4366 4530 +f 4530 4366 4616 +f 4530 4616 4732 +f 4732 4616 4725 +f 4732 4725 4884 +f 4884 4725 4838 +f 4884 4838 4986 +f 4986 4838 4956 +f 4986 4956 5098 +f 5098 4956 5046 +f 5098 5046 5216 +f 5216 5046 5250 +f 5216 5250 5412 +f 5412 5250 5360 +f 5412 5360 5488 +f 5488 5360 5482 +f 5488 5482 5610 +f 5610 5482 5678 +f 5610 5678 5692 +f 5692 5678 5783 +f 5692 5783 5891 +f 5891 5783 5854 +f 5891 5854 5995 +f 5995 5854 6021 +f 5995 6021 6184 +f 6184 6021 6149 +f 6184 6149 6277 +f 6277 6149 6211 +f 6277 6211 6352 +f 6352 6211 6429 +f 6352 6429 6590 +f 6590 6429 6570 +f 6590 6570 6686 +f 6686 6570 6642 +f 6686 6642 6810 +f 6810 6642 6728 +f 6810 6728 6893 +f 6893 6728 6856 +f 6893 6856 7057 +f 7057 6856 7010 +f 7057 7010 7188 +f 7188 7010 7244 +f 7188 7244 7354 +f 7354 7244 7308 +f 7354 7308 7429 +f 7429 7308 7486 +f 7429 7486 7580 +f 7580 7486 7548 +f 7580 7548 7670 +f 7670 7548 7696 +f 7670 7696 7861 +f 7861 7696 7804 +f 7861 7804 7916 +f 87 132 236 +f 236 132 210 +f 236 210 403 +f 403 210 324 +f 403 324 446 +f 446 324 436 +f 446 436 566 +f 566 436 586 +f 566 586 785 +f 785 586 740 +f 785 740 853 +f 853 740 898 +f 853 898 1004 +f 1004 898 971 +f 1004 971 1143 +f 1143 971 1161 +f 1143 1161 1210 +f 1210 1161 1218 +f 1210 1218 1410 +f 1410 1218 1393 +f 1410 1393 1560 +f 1560 1393 1498 +f 1560 1498 1608 +f 1608 1498 1630 +f 1608 1630 1710 +f 1710 1630 1737 +f 1710 1737 1850 +f 1850 1737 1897 +f 1850 1897 2064 +f 2064 1897 2078 +f 2064 2078 2134 +f 2134 2078 2163 +f 2134 2163 2267 +f 2267 2163 2266 +f 2267 2266 2446 +f 2446 2266 2390 +f 2446 2390 2550 +f 2550 2390 2597 +f 2550 2597 2679 +f 2679 2597 2695 +f 2679 2695 2838 +f 2838 2695 2837 +f 2838 2837 2987 +f 2987 2837 2974 +f 2987 2974 3104 +f 3104 2974 3103 +f 3104 3103 3242 +f 3242 3103 3231 +f 3242 3231 3342 +f 3342 3231 3365 +f 3342 3365 3552 +f 3552 3365 3522 +f 3552 3522 3642 +f 3642 3522 3676 +f 3642 3676 3718 +f 3718 3676 3774 +f 3718 3774 3874 +f 3874 3774 3914 +f 3874 3914 4000 +f 4000 3914 4032 +f 4000 4032 4156 +f 4156 4032 4178 +f 4156 4178 4338 +f 4338 4178 4352 +f 4338 4352 4440 +f 4440 4352 4412 +f 4440 4412 4589 +f 4589 4412 4530 +f 4589 4530 4628 +f 4628 4530 4732 +f 4628 4732 4808 +f 4808 4732 4884 +f 4808 4884 4914 +f 4914 4884 4986 +f 4914 4986 5104 +f 5104 4986 5098 +f 5104 5098 5256 +f 5256 5098 5216 +f 5256 5216 5319 +f 5319 5216 5412 +f 5319 5412 5538 +f 5538 5412 5488 +f 5538 5488 5599 +f 5599 5488 5610 +f 5599 5610 5784 +f 5784 5610 5692 +f 5784 5692 5826 +f 5826 5692 5891 +f 5826 5891 5988 +f 5988 5891 5995 +f 5988 5995 6142 +f 6142 5995 6184 +f 6142 6184 6312 +f 6312 6184 6277 +f 6312 6277 6397 +f 6397 6277 6352 +f 6397 6352 6555 +f 6555 6352 6590 +f 6555 6590 6630 +f 6630 6590 6686 +f 6630 6686 6764 +f 6764 6686 6810 +f 6764 6810 6924 +f 6924 6810 6893 +f 6924 6893 7070 +f 7070 6893 7057 +f 7070 7057 7195 +f 7195 7057 7188 +f 7195 7188 7358 +f 7358 7188 7354 +f 7358 7354 7429 +f 7637 7580 7642 +f 7642 7580 7670 +f 7642 7670 7758 +f 7758 7670 7761 +f 7761 7670 7861 +f 7761 7861 7878 +f 7070 7124 6924 +f 6924 7124 6904 +f 6924 6904 6764 +f 6764 6904 6793 +f 6764 6793 6630 +f 6630 6793 6722 +f 6630 6722 6555 +f 6555 6722 6472 +f 6555 6472 6397 +f 6397 6472 6385 +f 6397 6385 6312 +f 6312 6385 6330 +f 6312 6330 6142 +f 6142 6330 6150 +f 6142 6150 5988 +f 5988 6150 5996 +f 5988 5996 5826 +f 5826 5996 5938 +f 5826 5938 5784 +f 5784 5938 5758 +f 5784 5758 5599 +f 5599 5758 5606 +f 5599 5606 5538 +f 5538 5606 5450 +f 5538 5450 5319 +f 5319 5450 5383 +f 5319 5383 5256 +f 5256 5383 5211 +f 5256 5211 5104 +f 5104 5211 5138 +f 5104 5138 4914 +f 4914 5138 4966 +f 4914 4966 4808 +f 4808 4966 4855 +f 4808 4855 4628 +f 4628 4855 4648 +f 4628 4648 4589 +f 4589 4648 4496 +f 4589 4496 4440 +f 4440 4496 4480 +f 4440 4480 4338 +f 4338 4480 4238 +f 4338 4238 4156 +f 4156 4238 4150 +f 4156 4150 4000 +f 4000 4150 3994 +f 4000 3994 3874 +f 3874 3994 3853 +f 3874 3853 3718 +f 3718 3853 3808 +f 3718 3808 3642 +f 3642 3808 3584 +f 3642 3584 3552 +f 3552 3584 3530 +f 3552 3530 3342 +f 3342 3530 3319 +f 3342 3319 3242 +f 3242 3319 3240 +f 3242 3240 3104 +f 3104 3240 3119 +f 3104 3119 2987 +f 2987 3119 2966 +f 2987 2966 2838 +f 2838 2966 2862 +f 2838 2862 2679 +f 2679 2862 2709 +f 2679 2709 2550 +f 2550 2709 2565 +f 2550 2565 2446 +f 2446 2565 2434 +f 2446 2434 2267 +f 2267 2434 2292 +f 2267 2292 2134 +f 2134 2292 2210 +f 2134 2210 2064 +f 2064 2210 2073 +f 2064 2073 1850 +f 1850 2073 1923 +f 1850 1923 1710 +f 1710 1923 1758 +f 1710 1758 1608 +f 1608 1758 1656 +f 1608 1656 1560 +f 1560 1656 1566 +f 1560 1566 1410 +f 1410 1566 1411 +f 1410 1411 1210 +f 1210 1411 1271 +f 1210 1271 1143 +f 1143 1271 1144 +f 1143 1144 1004 +f 1004 1144 972 +f 1004 972 853 +f 853 972 899 +f 853 899 785 +f 785 899 741 +f 785 741 566 +f 566 741 637 +f 566 637 446 +f 446 637 507 +f 446 507 403 +f 403 507 345 +f 403 345 236 +f 236 345 217 +f 236 217 87 +f 87 217 152 +f 87 152 12 +f 7266 7195 7270 +f 7270 7195 7358 +f 7270 7358 7274 +f 7124 7031 6904 +f 6904 7031 6896 +f 6904 6896 6793 +f 6793 6896 6774 +f 6793 6774 6722 +f 6722 6774 6600 +f 6722 6600 6472 +f 6472 6600 6551 +f 6472 6551 6385 +f 6385 6551 6430 +f 6385 6430 6330 +f 6330 6430 6240 +f 6330 6240 6150 +f 6150 6240 6104 +f 6150 6104 5996 +f 5996 6104 6002 +f 5996 6002 5938 +f 5938 6002 5872 +f 5938 5872 5758 +f 5758 5872 5728 +f 5758 5728 5606 +f 5606 5728 5676 +f 5606 5676 5450 +f 5450 5676 5457 +f 5450 5457 5383 +f 5383 5457 5400 +f 5383 5400 5211 +f 5211 5400 5212 +f 5211 5212 5138 +f 5138 5212 5148 +f 5138 5148 4966 +f 4966 5148 4957 +f 4966 4957 4855 +f 4855 4957 4788 +f 4855 4788 4648 +f 4648 4788 4720 +f 4648 4720 4496 +f 4496 4720 4498 +f 4496 4498 4480 +f 4480 4498 4404 +f 4480 4404 4238 +f 4238 4404 4280 +f 4238 4280 4150 +f 4150 4280 4166 +f 4150 4166 3994 +f 3994 4166 4058 +f 3994 4058 3853 +f 3853 4058 3844 +f 3853 3844 3808 +f 3808 3844 3714 +f 3808 3714 3584 +f 3584 3714 3630 +f 3584 3630 3530 +f 3530 3630 3459 +f 3530 3459 3319 +f 3319 3459 3346 +f 3319 3346 3240 +f 3240 3346 3276 +f 3240 3276 3119 +f 3119 3276 3120 +f 3119 3120 2966 +f 2966 3120 2972 +f 2966 2972 2862 +f 2862 2972 2852 +f 2862 2852 2709 +f 2709 2852 2710 +f 2709 2710 2565 +f 2565 2710 2558 +f 2565 2558 2434 +f 2434 2558 2447 +f 2434 2447 2292 +f 2292 2447 2251 +f 2292 2251 2210 +f 2210 2251 2164 +f 2210 2164 2073 +f 2073 2164 2000 +f 2073 2000 1923 +f 1923 2000 1924 +f 1923 1924 1758 +f 1758 1924 1720 +f 1758 1720 1656 +f 1656 1720 1675 +f 1656 1675 1566 +f 1566 1675 1499 +f 1566 1499 1411 +f 1411 1499 1431 +f 1411 1431 1271 +f 1271 1431 1290 +f 1271 1290 1144 +f 1144 1290 1125 +f 1144 1125 972 +f 972 1125 988 +f 972 988 899 +f 899 988 914 +f 899 914 741 +f 741 914 793 +f 741 793 637 +f 637 793 666 +f 637 666 507 +f 507 666 447 +f 507 447 345 +f 345 447 404 +f 345 404 217 +f 217 404 272 +f 217 272 152 +f 152 272 50 +f 152 50 12 +f 51 50 176 +f 176 50 272 +f 176 272 410 +f 410 272 404 +f 410 404 534 +f 534 404 447 +f 534 447 602 +f 602 447 666 +f 602 666 700 +f 700 666 793 +f 700 793 882 +f 882 793 914 +f 882 914 1005 +f 1005 914 988 +f 1005 988 1126 +f 1126 988 1125 +f 1126 1125 1242 +f 1242 1125 1290 +f 1242 1290 1432 +f 1432 1290 1431 +f 1432 1431 1453 +f 1453 1431 1499 +f 1453 1499 1657 +f 1657 1499 1675 +f 1657 1675 1814 +f 1814 1675 1720 +f 1814 1720 1954 +f 1954 1720 1924 +f 1954 1924 2074 +f 2074 1924 2000 +f 2074 2000 2172 +f 2172 2000 2164 +f 2172 2164 2307 +f 2307 2164 2251 +f 2307 2251 2466 +f 2466 2251 2447 +f 2466 2447 2542 +f 2542 2447 2558 +f 2542 2558 2680 +f 2680 2558 2710 +f 2680 2710 2868 +f 2868 2710 2852 +f 2868 2852 2953 +f 2953 2852 2972 +f 2953 2972 3164 +f 3164 2972 3120 +f 3164 3120 3250 +f 3250 3120 3276 +f 3250 3276 3408 +f 3408 3276 3346 +f 3408 3346 3502 +f 3502 3346 3459 +f 3502 3459 3660 +f 3660 3459 3630 +f 3660 3630 3736 +f 3736 3630 3714 +f 3736 3714 3854 +f 3854 3714 3844 +f 3854 3844 4052 +f 4052 3844 4058 +f 4052 4058 4164 +f 4164 4058 4166 +f 4164 4166 4262 +f 4262 4166 4280 +f 4262 4280 4417 +f 4417 4280 4404 +f 4417 4404 4590 +f 4590 4404 4498 +f 4590 4498 4676 +f 4676 4498 4720 +f 4676 4720 4844 +f 4844 4720 4788 +f 4844 4788 4928 +f 4928 4788 4957 +f 4928 4957 5105 +f 5105 4957 5148 +f 5105 5148 5242 +f 5242 5148 5212 +f 5242 5212 5312 +f 5312 5212 5400 +f 5312 5400 5458 +f 5458 5400 5457 +f 5458 5457 5604 +f 5604 5457 5676 +f 5604 5676 5798 +f 5798 5676 5728 +f 5798 5728 5863 +f 5863 5728 5872 +f 5863 5872 5978 +f 5978 5872 6002 +f 5978 6002 6099 +f 6099 6002 6104 +f 6099 6104 6328 +f 6328 6104 6240 +f 6328 6240 6356 +f 6356 6240 6430 +f 6356 6430 6584 +f 6584 6430 6551 +f 6584 6551 6663 +f 6663 6551 6600 +f 6663 6600 6834 +f 6834 6600 6774 +f 6834 6774 6954 +f 6954 6774 6896 +f 6954 6896 7003 +f 7003 6896 7031 +f 7003 7031 7007 +f 106 51 275 +f 275 51 176 +f 275 176 405 +f 405 176 410 +f 405 410 498 +f 498 410 534 +f 498 534 638 +f 638 534 602 +f 638 602 722 +f 722 602 700 +f 722 700 833 +f 833 700 882 +f 833 882 1048 +f 1048 882 1005 +f 1048 1005 1127 +f 1127 1005 1126 +f 1127 1126 1298 +f 1298 1126 1242 +f 1298 1242 1412 +f 1412 1242 1432 +f 1412 1432 1462 +f 1462 1432 1453 +f 1462 1453 1666 +f 1666 1453 1657 +f 1666 1657 1738 +f 1738 1657 1814 +f 1738 1814 1898 +f 1898 1814 1954 +f 1898 1954 2033 +f 2033 1954 2074 +f 2033 2074 2100 +f 2100 2074 2172 +f 2100 2172 2228 +f 2228 2172 2307 +f 2228 2307 2448 +f 2448 2307 2466 +f 2448 2466 2566 +f 2566 2466 2542 +f 2566 2542 2696 +f 2696 2542 2680 +f 2696 2680 2842 +f 2842 2680 2868 +f 2842 2868 2988 +f 2988 2868 2953 +f 2988 2953 3052 +f 3052 2953 3164 +f 3052 3164 3268 +f 3268 3164 3250 +f 3268 3250 3413 +f 3413 3250 3408 +f 3413 3408 3516 +f 3516 3408 3502 +f 3516 3502 3622 +f 3622 3502 3660 +f 3622 3660 3782 +f 3782 3660 3736 +f 3782 3736 3892 +f 3892 3736 3854 +f 3892 3854 3972 +f 3972 3854 4052 +f 3972 4052 4186 +f 4186 4052 4164 +f 4186 4164 4248 +f 4248 4164 4262 +f 4248 4262 4462 +f 4462 4262 4417 +f 4462 4417 4553 +f 4553 4417 4590 +f 4553 4590 4698 +f 4698 4590 4676 +f 4698 4676 4802 +f 4802 4676 4844 +f 4802 4844 4958 +f 4958 4844 4928 +f 4958 4928 5086 +f 5086 4928 5105 +f 5086 5105 5204 +f 5204 5105 5242 +f 5204 5242 5320 +f 5320 5242 5312 +f 5320 5312 5492 +f 5492 5312 5458 +f 5492 5458 5552 +f 5552 5458 5604 +f 5552 5604 5746 +f 5746 5604 5798 +f 5746 5798 5834 +f 5834 5798 5863 +f 5834 5863 6022 +f 6022 5863 5978 +f 6022 5978 6192 +f 6192 5978 6099 +f 6192 6099 6256 +f 6256 6099 6328 +f 6256 6328 6390 +f 6390 6328 6356 +f 6390 6356 6540 +f 6540 6356 6584 +f 6540 6584 6664 +f 6664 6584 6663 +f 6664 6663 6844 +f 6844 6663 6834 +f 6844 6834 6922 +f 6922 6834 6954 +f 6922 6954 6989 +f 6922 6901 6844 +f 6844 6901 6781 +f 6844 6781 6664 +f 6664 6781 6632 +f 6664 6632 6540 +f 6540 6632 6560 +f 6540 6560 6390 +f 6390 6560 6370 +f 6390 6370 6256 +f 6256 6370 6252 +f 6256 6252 6192 +f 6192 6252 6100 +f 6192 6100 6022 +f 6022 6100 5990 +f 6022 5990 5834 +f 5834 5990 5838 +f 5834 5838 5746 +f 5746 5838 5766 +f 5746 5766 5552 +f 5552 5766 5654 +f 5552 5654 5492 +f 5492 5654 5440 +f 5492 5440 5320 +f 5320 5440 5376 +f 5320 5376 5204 +f 5204 5376 5158 +f 5204 5158 5086 +f 5086 5158 5120 +f 5086 5120 4958 +f 4958 5120 4948 +f 4958 4948 4802 +f 4802 4948 4856 +f 4802 4856 4698 +f 4698 4856 4726 +f 4698 4726 4553 +f 4553 4726 4524 +f 4553 4524 4462 +f 4462 4524 4420 +f 4462 4420 4248 +f 4248 4420 4344 +f 4248 4344 4186 +f 4186 4344 4130 +f 4186 4130 3972 +f 3972 4130 3987 +f 3972 3987 3892 +f 3892 3987 3952 +f 3892 3952 3782 +f 3782 3952 3772 +f 3782 3772 3622 +f 3622 3772 3574 +f 3622 3574 3516 +f 3516 3574 3500 +f 3516 3500 3413 +f 3413 3500 3372 +f 3413 3372 3268 +f 3268 3372 3218 +f 3268 3218 3052 +f 3052 3218 3076 +f 3052 3076 2988 +f 2988 3076 2994 +f 2988 2994 2842 +f 2842 2994 2858 +f 2842 2858 2696 +f 2696 2858 2721 +f 2696 2721 2566 +f 2566 2721 2598 +f 2566 2598 2448 +f 2448 2598 2438 +f 2448 2438 2228 +f 2228 2438 2268 +f 2228 2268 2100 +f 2100 2268 2149 +f 2100 2149 2033 +f 2033 2149 2021 +f 2033 2021 1898 +f 1898 2021 1862 +f 1898 1862 1738 +f 1738 1862 1791 +f 1738 1791 1666 +f 1666 1791 1676 +f 1666 1676 1462 +f 1462 1676 1500 +f 1462 1500 1412 +f 1412 1500 1413 +f 1412 1413 1298 +f 1298 1413 1272 +f 1298 1272 1127 +f 1127 1272 1170 +f 1127 1170 1048 +f 1048 1170 981 +f 1048 981 833 +f 833 981 873 +f 833 873 722 +f 722 873 776 +f 722 776 638 +f 638 776 567 +f 638 567 498 +f 498 567 519 +f 498 519 405 +f 405 519 385 +f 405 385 275 +f 275 385 218 +f 275 218 106 +f 106 218 90 +f 106 90 28 +f 7132 7091 6901 +f 6901 7091 6946 +f 6901 6946 6781 +f 6781 6946 6758 +f 6781 6758 6632 +f 6632 6758 6638 +f 6632 6638 6560 +f 6560 6638 6476 +f 6560 6476 6370 +f 6370 6476 6336 +f 6370 6336 6252 +f 6252 6336 6278 +f 6252 6278 6100 +f 6100 6278 6196 +f 6100 6196 5990 +f 5990 6196 5948 +f 5990 5948 5838 +f 5838 5948 5892 +f 5838 5892 5766 +f 5766 5892 5744 +f 5766 5744 5654 +f 5654 5744 5620 +f 5654 5620 5440 +f 5440 5620 5508 +f 5440 5508 5376 +f 5376 5508 5398 +f 5376 5398 5158 +f 5158 5398 5260 +f 5158 5260 5120 +f 5120 5260 5106 +f 5120 5106 4948 +f 4948 5106 4922 +f 4948 4922 4856 +f 4856 4922 4818 +f 4856 4818 4726 +f 4726 4818 4684 +f 4726 4684 4524 +f 4524 4684 4554 +f 4524 4554 4420 +f 4420 4554 4482 +f 4420 4482 4344 +f 4344 4482 4316 +f 4344 4316 4130 +f 4130 4316 4196 +f 4130 4196 3987 +f 3987 4196 4044 +f 3987 4044 3952 +f 3952 4044 3904 +f 3952 3904 3772 +f 3772 3904 3758 +f 3772 3758 3574 +f 3574 3758 3634 +f 3574 3634 3500 +f 3500 3634 3460 +f 3500 3460 3372 +f 3372 3460 3366 +f 3372 3366 3218 +f 3218 3366 3257 +f 3218 3257 3076 +f 3076 3257 3138 +f 3076 3138 2994 +f 2994 3138 3016 +f 2994 3016 2858 +f 2858 3016 2866 +f 2858 2866 2721 +f 2721 2866 2688 +f 2721 2688 2598 +f 2598 2688 2560 +f 2598 2560 2438 +f 2438 2560 2401 +f 2438 2401 2268 +f 2268 2401 2308 +f 2268 2308 2149 +f 2149 2308 2116 +f 2149 2116 2021 +f 2021 2116 2046 +f 2021 2046 1862 +f 1862 2046 1956 +f 1862 1956 1791 +f 1791 1956 1792 +f 1791 1792 1676 +f 1676 1792 1688 +f 1676 1688 1500 +f 1500 1688 1528 +f 1500 1528 1413 +f 1413 1528 1382 +f 1413 1382 1272 +f 1272 1382 1310 +f 1272 1310 1170 +f 1170 1310 1177 +f 1170 1177 981 +f 981 1177 994 +f 981 994 873 +f 873 994 818 +f 873 818 776 +f 776 818 766 +f 776 766 567 +f 567 766 578 +f 567 578 519 +f 519 578 468 +f 519 468 385 +f 385 468 406 +f 385 406 218 +f 218 406 199 +f 218 199 90 +f 90 199 107 +f 90 107 28 +f 7091 7071 6946 +f 6946 7071 6862 +f 6946 6862 6758 +f 6758 6862 6803 +f 6758 6803 6638 +f 6638 6803 6718 +f 6638 6718 6476 +f 6476 6718 6532 +f 6476 6532 6336 +f 6336 6532 6375 +f 6336 6375 6278 +f 6278 6375 6204 +f 6278 6204 6196 +f 6196 6204 6116 +f 6196 6116 5948 +f 5948 6116 6058 +f 5948 6058 5892 +f 5892 6058 5844 +f 5892 5844 5744 +f 5744 5844 5792 +f 5744 5792 5620 +f 5620 5792 5584 +f 5620 5584 5508 +f 5508 5584 5456 +f 5508 5456 5398 +f 5398 5456 5332 +f 5398 5332 5260 +f 5260 5332 5231 +f 5260 5231 5106 +f 5106 5231 5118 +f 5106 5118 4922 +f 4922 5118 4942 +f 4922 4942 4818 +f 4818 4942 4858 +f 4818 4858 4684 +f 4684 4858 4690 +f 4684 4690 4554 +f 4554 4690 4516 +f 4554 4516 4482 +f 4482 4516 4437 +f 4482 4437 4316 +f 4316 4437 4240 +f 4316 4240 4196 +f 4196 4240 4216 +f 4196 4216 4044 +f 4044 4216 3996 +f 4044 3996 3904 +f 3904 3996 3866 +f 3904 3866 3758 +f 3758 3866 3752 +f 3758 3752 3634 +f 3634 3752 3613 +f 3634 3613 3460 +f 3460 3613 3544 +f 3460 3544 3366 +f 3366 3544 3330 +f 3366 3330 3257 +f 3257 3330 3284 +f 3257 3284 3138 +f 3138 3284 3110 +f 3138 3110 3016 +f 3016 3110 3023 +f 3016 3023 2866 +f 2866 3023 2865 +f 2866 2865 2688 +f 2688 2865 2718 +f 2688 2718 2560 +f 2560 2718 2592 +f 2560 2592 2401 +f 2401 2592 2396 +f 2401 2396 2308 +f 2308 2396 2239 +f 2308 2239 2116 +f 2116 2239 2187 +f 2116 2187 2046 +f 2046 2187 1964 +f 2046 1964 1956 +f 1956 1964 1883 +f 1956 1883 1792 +f 1792 1883 1709 +f 1792 1709 1688 +f 1688 1709 1653 +f 1688 1653 1528 +f 1528 1653 1510 +f 1528 1510 1382 +f 1382 1510 1444 +f 1382 1444 1310 +f 1310 1444 1228 +f 1310 1228 1177 +f 1177 1228 1184 +f 1177 1184 994 +f 994 1184 952 +f 994 952 818 +f 818 952 871 +f 818 871 766 +f 766 871 728 +f 766 728 578 +f 578 728 663 +f 578 663 468 +f 468 663 456 +f 468 456 406 +f 406 456 383 +f 406 383 199 +f 199 383 245 +f 199 245 107 +f 107 245 133 +f 107 133 10 +f 7272 7386 7267 +f 7267 7386 7253 +f 7267 7253 7147 +f 7640 7685 7635 +f 7635 7685 7576 +f 7635 7576 7520 +f 7759 7808 7755 +f 7755 7808 7685 +f 7755 7685 7640 +f 134 156 276 +f 276 156 244 +f 276 244 371 +f 371 244 368 +f 371 368 464 +f 464 368 445 +f 464 445 560 +f 560 445 575 +f 560 575 682 +f 682 575 773 +f 682 773 854 +f 854 773 912 +f 854 912 1012 +f 1012 912 1038 +f 1012 1038 1162 +f 1162 1038 1175 +f 1162 1175 1204 +f 1204 1175 1307 +f 1204 1307 1434 +f 1434 1307 1443 +f 1434 1443 1490 +f 1490 1443 1465 +f 1490 1465 1609 +f 1609 1465 1580 +f 1609 1580 1778 +f 1778 1580 1800 +f 1778 1800 1878 +f 1878 1800 1876 +f 1878 1876 2022 +f 2022 1876 1958 +f 2022 1958 2140 +f 2140 1958 2196 +f 2140 2196 2252 +f 2252 2196 2300 +f 2252 2300 2402 +f 2402 2300 2412 +f 2402 2412 2584 +f 2584 2412 2568 +f 2584 2568 2648 +f 2648 2568 2642 +f 2648 2642 2846 +f 2846 2642 2814 +f 2846 2814 2940 +f 2940 2814 2950 +f 2940 2950 3072 +f 3072 2950 3065 +f 3072 3065 3248 +f 3248 3065 3278 +f 3248 3278 3338 +f 3338 3278 3419 +f 3338 3419 3554 +f 3554 3419 3479 +f 3554 3479 3674 +f 3674 3479 3600 +f 3674 3600 3778 +f 3778 3600 3806 +f 3778 3806 3908 +f 3908 3806 3919 +f 3908 3919 3988 +f 3988 3919 4084 +f 3988 4084 4126 +f 4126 4084 4194 +f 4126 4194 4354 +f 4354 4194 4290 +f 4354 4290 4478 +f 4478 4290 4387 +f 4478 4387 4550 +f 4550 4387 4567 +f 4550 4567 4664 +f 4664 4567 4728 +f 4664 4728 4824 +f 4824 4728 4798 +f 4824 4798 4970 +f 4970 4798 4909 +f 4970 4909 5082 +f 5082 4909 5054 +f 5082 5054 5254 +f 5254 5054 5221 +f 5254 5221 5392 +f 5392 5221 5290 +f 5392 5290 5460 +f 5460 5290 5490 +f 5460 5490 5640 +f 5640 5490 5650 +f 5640 5650 5737 +f 5737 5650 5706 +f 5737 5706 5887 +f 5887 5706 5924 +f 5887 5924 6032 +f 6032 5924 6042 +f 6032 6042 6122 +f 6122 6042 6181 +f 6122 6181 6272 +f 6272 6181 6304 +f 6272 6304 6394 +f 6394 6304 6360 +f 6394 6360 6489 +f 6489 6360 6496 +f 6489 6496 6702 +f 6702 6496 6716 +f 6702 6716 6782 +f 6782 6716 6843 +f 6782 6843 6894 +f 6894 6843 6881 +f 6894 6881 7058 +f 7058 6881 7042 +f 7058 7042 7198 +f 7198 7042 7156 +f 7198 7156 7300 +f 7300 7156 7312 +f 7300 7312 7450 +f 7450 7312 7516 +f 7450 7516 7566 +f 7566 7516 7576 +f 7566 7576 7754 +f 7754 7576 7685 +f 7754 7685 7872 +f 7872 7685 7808 +f 7872 7808 7919 +f 66 134 200 +f 200 134 276 +f 200 276 306 +f 306 276 371 +f 306 371 508 +f 508 371 464 +f 508 464 608 +f 608 464 560 +f 608 560 742 +f 742 560 682 +f 742 682 860 +f 860 682 854 +f 860 854 982 +f 982 854 1012 +f 982 1012 1128 +f 1128 1012 1162 +f 1128 1162 1278 +f 1278 1162 1204 +f 1278 1204 1357 +f 1357 1204 1434 +f 1357 1434 1448 +f 1448 1434 1490 +f 1448 1490 1658 +f 1658 1490 1609 +f 1658 1609 1716 +f 1716 1609 1778 +f 1716 1778 1934 +f 1934 1778 1878 +f 1934 1878 2084 +f 2084 1878 2022 +f 2084 2022 2178 +f 2178 2022 2140 +f 2178 2140 2286 +f 2286 2140 2252 +f 2286 2252 2422 +f 2422 2252 2402 +f 2422 2402 2590 +f 2590 2402 2584 +f 2590 2584 2644 +f 2644 2584 2648 +f 2644 2648 2810 +f 2810 2648 2846 +f 2810 2846 3002 +f 3002 2846 2940 +f 3002 2940 3054 +f 3054 2940 3072 +f 3054 3072 3172 +f 3172 3072 3248 +f 3172 3248 3414 +f 3414 3248 3338 +f 3414 3338 3482 +f 3482 3338 3554 +f 3482 3554 3616 +f 3616 3554 3674 +f 3616 3674 3822 +f 3822 3674 3778 +f 3822 3778 3902 +f 3902 3778 3908 +f 3902 3908 3980 +f 3980 3908 3988 +f 3980 3988 4170 +f 4170 3988 4126 +f 4170 4126 4264 +f 4264 4126 4354 +f 4264 4354 4398 +f 4398 4354 4478 +f 4398 4478 4586 +f 4586 4478 4550 +f 4586 4550 4718 +f 4718 4550 4664 +f 4718 4664 4826 +f 4826 4664 4824 +f 4826 4824 5004 +f 5004 4824 4970 +f 5004 4970 5072 +f 5072 4970 5082 +f 5072 5082 5222 +f 5222 5082 5254 +f 5222 5254 5294 +f 5294 5254 5392 +f 5294 5392 5540 +f 5540 5392 5460 +f 5540 5460 5646 +f 5646 5460 5640 +f 5646 5640 5774 +f 5774 5640 5737 +f 5774 5737 5882 +f 5882 5737 5887 +f 5882 5887 6014 +f 6014 5887 6032 +f 6014 6032 6114 +f 6114 6032 6122 +f 6114 6122 6270 +f 6270 6122 6272 +f 6270 6272 6440 +f 6440 6272 6394 +f 6440 6394 6542 +f 6542 6394 6489 +f 6542 6489 6616 +f 6616 6489 6702 +f 6616 6702 6840 +f 6840 6702 6782 +f 6840 6782 6944 +f 6944 6782 6894 +f 6944 6894 7066 +f 7066 6894 7058 +f 7066 7058 7202 +f 7202 7058 7198 +f 7202 7198 7344 +f 7344 7198 7300 +f 7344 7300 7410 +f 7410 7300 7450 +f 7410 7450 7602 +f 7602 7450 7566 +f 7602 7566 7674 +f 7674 7566 7754 +f 7674 7754 7766 +f 7766 7754 7872 +f 7766 7872 7900 +f 52 66 256 +f 256 66 200 +f 256 200 420 +f 420 200 306 +f 420 306 478 +f 478 306 508 +f 478 508 552 +f 552 508 608 +f 552 608 786 +f 786 608 742 +f 786 742 920 +f 920 742 860 +f 920 860 1006 +f 1006 860 982 +f 1006 982 1109 +f 1109 982 1128 +f 1109 1128 1260 +f 1260 1128 1278 +f 1260 1278 1394 +f 1394 1278 1357 +f 1394 1357 1512 +f 1512 1357 1448 +f 1512 1448 1610 +f 1610 1448 1658 +f 1610 1658 1808 +f 1808 1658 1716 +f 1808 1716 1946 +f 1946 1716 1934 +f 1946 1934 2038 +f 2038 1934 2084 +f 2038 2084 2152 +f 2152 2084 2178 +f 2152 2178 2244 +f 2244 2178 2286 +f 2244 2286 2428 +f 2428 2286 2422 +f 2428 2422 2606 +f 2606 2422 2590 +f 2606 2590 2656 +f 2656 2590 2644 +f 2656 2644 2873 +f 2873 2644 2810 +f 2873 2810 2998 +f 2998 2810 3002 +f 2998 3002 3062 +f 3062 3002 3054 +f 3062 3054 3194 +f 3194 3054 3172 +f 3194 3172 3306 +f 3306 3172 3414 +f 3306 3414 3548 +f 3548 3414 3482 +f 3548 3482 3646 +f 3646 3482 3616 +f 3646 3616 3798 +f 3798 3616 3822 +f 3798 3822 3950 +f 3950 3822 3902 +f 3950 3902 4018 +f 4018 3902 3980 +f 4018 3980 4161 +f 4161 3980 4170 +f 4161 4170 4308 +f 4308 4170 4264 +f 4308 4264 4418 +f 4418 4264 4398 +f 4418 4398 4508 +f 4508 4398 4586 +f 4508 4586 4748 +f 4748 4586 4718 +f 4748 4718 4876 +f 4876 4718 4826 +f 4876 4826 4962 +f 4962 4826 5004 +f 4962 5004 5108 +f 5108 5004 5072 +f 5108 5072 5176 +f 5176 5072 5222 +f 5176 5222 5366 +f 5366 5222 5294 +f 5366 5294 5472 +f 5472 5294 5540 +f 5472 5540 5572 +f 5572 5540 5646 +f 5572 5646 5700 +f 5700 5646 5774 +f 5700 5774 5903 +f 5903 5774 5882 +f 5903 5882 6046 +f 6046 5882 6014 +f 6046 6014 6092 +f 6092 6014 6114 +f 6092 6114 6216 +f 6216 6114 6270 +f 6216 6270 6403 +f 6403 6270 6440 +f 6403 6440 6490 +f 6490 6440 6542 +f 6490 6542 6646 +f 6646 6542 6616 +f 6646 6616 6838 +f 6838 6616 6840 +f 6838 6840 6942 +f 6942 6840 6944 +f 6942 6944 7036 +f 7036 6944 7066 +f 7036 7066 7210 +f 7210 7066 7202 +f 7210 7202 7382 +f 7382 7202 7344 +f 7382 7344 7481 +f 7481 7344 7410 +f 7481 7410 7544 +f 7544 7410 7602 +f 7544 7602 7676 +f 7676 7602 7674 +f 7676 7674 7818 +f 7818 7674 7766 +f 7818 7766 7906 +f 56 52 194 +f 194 52 256 +f 194 256 386 +f 386 256 420 +f 386 420 448 +f 448 420 478 +f 448 478 656 +f 656 478 552 +f 656 552 768 +f 768 552 786 +f 768 786 900 +f 900 786 920 +f 900 920 934 +f 934 920 1006 +f 934 1006 1149 +f 1149 1006 1109 +f 1149 1109 1212 +f 1212 1109 1260 +f 1212 1260 1366 +f 1366 1260 1394 +f 1366 1394 1554 +f 1554 1394 1512 +f 1554 1512 1664 +f 1664 1512 1610 +f 1664 1610 1818 +f 1818 1610 1808 +f 1818 1808 1854 +f 1854 1808 1946 +f 1854 1946 2066 +f 2066 1946 2038 +f 2066 2038 2104 +f 2104 2038 2152 +f 2104 2152 2282 +f 2282 2152 2244 +f 2282 2244 2416 +f 2416 2244 2428 +f 2416 2428 2514 +f 2514 2428 2606 +f 2514 2606 2722 +f 2722 2606 2656 +f 2722 2656 2788 +f 2788 2656 2873 +f 2788 2873 2946 +f 2946 2873 2998 +f 2946 2998 3080 +f 3080 2998 3062 +f 3080 3062 3178 +f 3178 3062 3194 +f 3178 3194 3324 +f 3324 3194 3306 +f 3324 3306 3562 +f 3562 3306 3548 +f 3562 3548 3626 +f 3626 3548 3646 +f 3626 3646 3746 +f 3746 3646 3798 +f 3746 3798 3930 +f 3930 3798 3950 +f 3930 3950 4074 +f 4074 3950 4018 +f 4074 4018 4226 +f 4226 4018 4161 +f 4226 4161 4356 +f 4356 4161 4308 +f 4356 4308 4446 +f 4446 4308 4418 +f 4446 4418 4518 +f 4518 4418 4508 +f 4518 4508 4696 +f 4696 4508 4748 +f 4696 4748 4780 +f 4780 4748 4876 +f 4780 4876 4912 +f 4912 4876 4962 +f 4912 4962 5080 +f 5080 4962 5108 +f 5080 5108 5274 +f 5274 5108 5176 +f 5274 5176 5343 +f 5343 5176 5366 +f 5343 5366 5546 +f 5546 5366 5472 +f 5546 5472 5612 +f 5612 5472 5572 +f 5612 5572 5696 +f 5696 5572 5700 +f 5696 5700 5878 +f 5878 5700 5903 +f 5878 5903 6038 +f 6038 5903 6046 +f 6038 6046 6096 +f 6096 6046 6092 +f 6096 6092 6282 +f 6282 6092 6216 +f 6282 6216 6398 +f 6398 6216 6403 +f 6398 6403 6552 +f 6552 6403 6490 +f 6552 6490 6704 +f 6704 6490 6646 +f 6704 6646 6798 +f 6798 6646 6838 +f 6798 6838 6916 +f 6916 6838 6942 +f 6916 6942 7048 +f 7048 6942 7036 +f 7048 7036 7215 +f 7215 7036 7210 +f 7215 7210 7276 +f 7276 7210 7382 +f 7276 7382 7434 +f 7434 7382 7481 +f 7434 7481 7632 +f 7632 7481 7544 +f 7632 7544 7686 +f 7686 7544 7676 +f 7686 7676 7868 +f 7868 7676 7818 +f 7868 7818 7898 +f 118 56 286 +f 286 56 194 +f 286 194 327 +f 327 194 386 +f 327 386 458 +f 458 386 448 +f 458 448 621 +f 621 448 656 +f 621 656 794 +f 794 656 768 +f 794 768 924 +f 924 768 900 +f 924 900 962 +f 962 900 934 +f 962 934 1110 +f 1110 934 1149 +f 1110 1149 1224 +f 1224 1149 1212 +f 1224 1212 1414 +f 1414 1212 1366 +f 1414 1366 1454 +f 1454 1366 1554 +f 1454 1554 1618 +f 1618 1554 1664 +f 1618 1664 1828 +f 1828 1664 1818 +f 1828 1818 1928 +f 1928 1818 1854 +f 1928 1854 2056 +f 2056 1854 2066 +f 2056 2066 2098 +f 2098 2066 2104 +f 2098 2104 2226 +f 2226 2104 2282 +f 2226 2282 2404 +f 2404 2282 2416 +f 2404 2416 2534 +f 2534 2416 2514 +f 2534 2514 2742 +f 2742 2514 2722 +f 2742 2722 2830 +f 2830 2722 2788 +f 2830 2788 3010 +f 3010 2788 2946 +f 3010 2946 3160 +f 3160 2946 3080 +f 3160 3080 3244 +f 3244 3080 3178 +f 3244 3178 3388 +f 3388 3178 3324 +f 3388 3324 3542 +f 3542 3324 3562 +f 3542 3562 3652 +f 3652 3562 3626 +f 3652 3626 3724 +f 3724 3626 3746 +f 3724 3746 3870 +f 3870 3746 3930 +f 3870 3930 4046 +f 4046 3930 4074 +f 4046 4074 4190 +f 4190 4074 4226 +f 4190 4226 4270 +f 4270 4226 4356 +f 4270 4356 4396 +f 4396 4356 4446 +f 4396 4446 4512 +f 4512 4446 4518 +f 4512 4518 4666 +f 4666 4518 4696 +f 4666 4696 4764 +f 4764 4696 4780 +f 4764 4780 4902 +f 4902 4780 4912 +f 4902 4912 5074 +f 5074 4912 5080 +f 5074 5080 5162 +f 5162 5080 5274 +f 5162 5274 5368 +f 5368 5274 5343 +f 5368 5343 5494 +f 5494 5343 5546 +f 5494 5546 5666 +f 5666 5546 5612 +f 5666 5612 5740 +f 5740 5612 5696 +f 5740 5696 5864 +f 5864 5696 5878 +f 5864 5878 6052 +f 6052 5878 6038 +f 6052 6038 6152 +f 6152 6038 6096 +f 6152 6096 6236 +f 6236 6096 6282 +f 6236 6282 6386 +f 6386 6282 6398 +f 6386 6398 6474 +f 6474 6398 6552 +f 6474 6552 6706 +f 6706 6552 6704 +f 6706 6704 6828 +f 6828 6704 6798 +f 6828 6798 6968 +f 6968 6798 6916 +f 6968 6916 7060 +f 7060 6916 7048 +f 7060 7048 7218 +f 7218 7048 7215 +f 7218 7215 7280 +f 7280 7215 7276 +f 7280 7276 7426 +f 7426 7276 7434 +f 7426 7434 7574 +f 7574 7434 7632 +f 7574 7632 7718 +f 7718 7632 7686 +f 7718 7686 7768 +f 7768 7686 7868 +f 7768 7868 7931 +f 88 118 188 +f 188 118 286 +f 188 286 328 +f 328 286 327 +f 328 327 479 +f 479 327 458 +f 479 458 674 +f 674 458 621 +f 674 621 690 +f 690 621 794 +f 690 794 926 +f 926 794 924 +f 926 924 1017 +f 1017 924 962 +f 1017 962 1178 +f 1178 962 1110 +f 1178 1110 1314 +f 1314 1110 1224 +f 1314 1224 1346 +f 1346 1224 1414 +f 1346 1414 1466 +f 1466 1414 1454 +f 1466 1454 1614 +f 1614 1454 1618 +f 1614 1618 1786 +f 1786 1618 1828 +f 1786 1828 1952 +f 1952 1828 1928 +f 1952 1928 2010 +f 2010 1928 2056 +f 2010 2056 2102 +f 2102 2056 2098 +f 2102 2098 2276 +f 2276 2098 2226 +f 2276 2226 2456 +f 2456 2226 2404 +f 2456 2404 2520 +f 2520 2404 2534 +f 2520 2534 2690 +f 2690 2534 2742 +f 2690 2742 2874 +f 2874 2742 2830 +f 2874 2830 2926 +f 2926 2830 3010 +f 2926 3010 3086 +f 3086 3010 3160 +f 3086 3160 3258 +f 3258 3160 3244 +f 3258 3244 3426 +f 3426 3244 3388 +f 3426 3388 3508 +f 3508 3388 3542 +f 3508 3542 3640 +f 3640 3542 3652 +f 3640 3652 3814 +f 3814 3652 3724 +f 3814 3724 3867 +f 3867 3724 3870 +f 3867 3870 4014 +f 4014 3870 4046 +f 4014 4046 4172 +f 4172 4046 4190 +f 4172 4190 4340 +f 4340 4190 4270 +f 4340 4270 4484 +f 4484 4270 4396 +f 4484 4396 4542 +f 4542 4396 4512 +f 4542 4512 4730 +f 4730 4512 4666 +f 4730 4666 4768 +f 4768 4666 4764 +f 4768 4764 4906 +f 4906 4764 4902 +f 4906 4902 5128 +f 5128 4902 5074 +f 5128 5074 5276 +f 5276 5074 5162 +f 5276 5162 5344 +f 5344 5162 5368 +f 5344 5368 5534 +f 5534 5368 5494 +f 5534 5494 5570 +f 5570 5494 5666 +f 5570 5666 5802 +f 5802 5666 5740 +f 5802 5740 5920 +f 5920 5740 5864 +f 5920 5864 5962 +f 5962 5864 6052 +f 5962 6052 6078 +f 6078 6052 6152 +f 6078 6152 6230 +f 6230 6152 6236 +f 6230 6236 6378 +f 6378 6236 6386 +f 6378 6386 6556 +f 6556 6386 6474 +f 6556 6474 6698 +f 6698 6474 6706 +f 6698 6706 6846 +f 6846 6706 6828 +f 6846 6828 6936 +f 6936 6828 6968 +f 6936 6968 7108 +f 7108 6968 7060 +f 7108 7060 7206 +f 7206 7060 7218 +f 7206 7218 7298 +f 7298 7218 7280 +f 7298 7280 7456 +f 7456 7280 7426 +f 7456 7426 7622 +f 7622 7426 7574 +f 7622 7574 7700 +f 7700 7574 7718 +f 7700 7718 7844 +f 7844 7718 7768 +f 7844 7768 7913 +f 58 88 222 +f 222 88 188 +f 222 188 354 +f 354 188 328 +f 354 328 520 +f 520 328 479 +f 520 479 622 +f 622 479 674 +f 622 674 694 +f 694 674 690 +f 694 690 878 +f 878 690 926 +f 878 926 944 +f 944 926 1017 +f 944 1017 1150 +f 1150 1017 1178 +f 1150 1178 1258 +f 1258 1178 1314 +f 1258 1314 1395 +f 1395 1314 1346 +f 1395 1346 1473 +f 1473 1346 1466 +f 1473 1466 1672 +f 1672 1466 1614 +f 1672 1614 1822 +f 1822 1614 1786 +f 1822 1786 1887 +f 1887 1786 1952 +f 1887 1952 2006 +f 2006 1952 2010 +f 2006 2010 2123 +f 2123 2010 2102 +f 2123 2102 2242 +f 2242 2102 2276 +f 2242 2276 2476 +f 2476 2276 2456 +f 2476 2456 2618 +f 2618 2456 2520 +f 2618 2520 2762 +f 2762 2520 2690 +f 2762 2690 2854 +f 2854 2690 2874 +f 2854 2874 2912 +f 2912 2874 2926 +f 2912 2926 3096 +f 3096 2926 3086 +f 3096 3086 3204 +f 3204 3086 3258 +f 3204 3258 3315 +f 3315 3258 3426 +f 3315 3426 3462 +f 3462 3426 3508 +f 3462 3508 3670 +f 3670 3508 3640 +f 3670 3640 3706 +f 3706 3640 3814 +f 3706 3814 3860 +f 3860 3814 3867 +f 3860 3867 4050 +f 4050 3867 4014 +f 4050 4014 4182 +f 4182 4014 4172 +f 4182 4172 4234 +f 4234 4172 4340 +f 4234 4340 4444 +f 4444 4340 4484 +f 4444 4484 4560 +f 4560 4484 4542 +f 4560 4542 4712 +f 4712 4542 4730 +f 4712 4730 4814 +f 4814 4730 4768 +f 4814 4768 4990 +f 4990 4768 4906 +f 4990 4906 5050 +f 5050 4906 5128 +f 5050 5128 5252 +f 5252 5128 5276 +f 5252 5276 5386 +f 5386 5276 5344 +f 5386 5344 5438 +f 5438 5344 5534 +f 5438 5534 5634 +f 5634 5534 5570 +f 5634 5570 5772 +f 5772 5570 5802 +f 5772 5802 5898 +f 5898 5802 5920 +f 5898 5920 5998 +f 5998 5920 5962 +f 5998 5962 6110 +f 6110 5962 6078 +f 6110 6078 6302 +f 6302 6078 6230 +f 6302 6230 6406 +f 6406 6230 6378 +f 6406 6378 6508 +f 6508 6378 6556 +f 6508 6556 6672 +f 6672 6556 6698 +f 6672 6698 6852 +f 6852 6698 6846 +f 6852 6846 6978 +f 6978 6846 6936 +f 6978 6936 7034 +f 7034 6936 7108 +f 7034 7108 7242 +f 7242 7108 7206 +f 7242 7206 7284 +f 7284 7206 7298 +f 7284 7298 7494 +f 7494 7298 7456 +f 7494 7456 7528 +f 7528 7456 7622 +f 7528 7622 7724 +f 7724 7622 7700 +f 7724 7700 7834 +f 7834 7700 7844 +f 7834 7844 7927 +f 75 58 204 +f 204 58 222 +f 204 222 346 +f 346 222 354 +f 346 354 514 +f 514 354 520 +f 514 520 658 +f 658 520 622 +f 658 622 732 +f 732 622 694 +f 732 694 886 +f 886 694 878 +f 886 878 1018 +f 1018 878 944 +f 1018 944 1068 +f 1068 944 1150 +f 1068 1150 1300 +f 1300 1150 1258 +f 1300 1258 1334 +f 1334 1258 1395 +f 1334 1395 1484 +f 1484 1395 1473 +f 1484 1473 1585 +f 1585 1473 1672 +f 1585 1672 1768 +f 1768 1672 1822 +f 1768 1822 1866 +f 1866 1822 1887 +f 1866 1887 2004 +f 2004 1887 2006 +f 2004 2006 2150 +f 2150 2006 2123 +f 2150 2123 2230 +f 2230 2123 2242 +f 2230 2242 2368 +f 2368 2242 2476 +f 2368 2476 2528 +f 2528 2476 2618 +f 2528 2618 2636 +f 2636 2618 2762 +f 2636 2762 2782 +f 2782 2762 2854 +f 2782 2854 2954 +f 2954 2854 2912 +f 2954 2912 3136 +f 3136 2912 3096 +f 3136 3096 3182 +f 3182 3096 3204 +f 3182 3204 3336 +f 3336 3204 3315 +f 3336 3315 3456 +f 3456 3315 3462 +f 3456 3462 3662 +f 3662 3462 3670 +f 3662 3670 3804 +f 3804 3670 3706 +f 3804 3706 3922 +f 3922 3706 3860 +f 3922 3860 4008 +f 4008 3860 4050 +f 4008 4050 4120 +f 4120 4050 4182 +f 4120 4182 4272 +f 4272 4182 4234 +f 4272 4234 4460 +f 4460 4234 4444 +f 4460 4444 4558 +f 4558 4444 4560 +f 4558 4560 4738 +f 4738 4560 4712 +f 4738 4712 4810 +f 4810 4712 4814 +f 4810 4814 4974 +f 4974 4814 4990 +f 4974 4990 5132 +f 5132 4990 5050 +f 5132 5050 5268 +f 5268 5050 5252 +f 5268 5252 5384 +f 5384 5252 5386 +f 5384 5386 5532 +f 5532 5386 5438 +f 5532 5438 5578 +f 5578 5438 5634 +f 5578 5634 5723 +f 5723 5634 5772 +f 5723 5772 5858 +f 5858 5772 5898 +f 5858 5898 6070 +f 6070 5898 5998 +f 6070 5998 6162 +f 6162 5998 6110 +f 6162 6110 6326 +f 6326 6110 6302 +f 6326 6302 6342 +f 6342 6302 6406 +f 6342 6406 6536 +f 6536 6406 6508 +f 6536 6508 6604 +f 6604 6508 6672 +f 6604 6672 6736 +f 6736 6672 6852 +f 6736 6852 6958 +f 6958 6852 6978 +f 6958 6978 7078 +f 7078 6978 7034 +f 7078 7034 7248 +f 7248 7034 7242 +f 7248 7242 7384 +f 7384 7242 7284 +f 7384 7284 7464 +f 7464 7284 7494 +f 7464 7494 7558 +f 7558 7494 7528 +f 7558 7528 7740 +f 7740 7528 7724 +f 7740 7724 7776 +f 7776 7724 7834 +f 7776 7834 7883 +f 92 75 248 +f 248 75 204 +f 248 204 396 +f 396 204 346 +f 396 346 480 +f 480 346 514 +f 480 514 672 +f 672 514 658 +f 672 658 710 +f 710 658 732 +f 710 732 892 +f 892 732 886 +f 892 886 976 +f 976 886 1018 +f 976 1018 1134 +f 1134 1018 1068 +f 1134 1068 1246 +f 1246 1068 1300 +f 1246 1300 1418 +f 1418 1300 1334 +f 1418 1334 1482 +f 1482 1334 1484 +f 1482 1484 1642 +f 1642 1484 1585 +f 1642 1585 1727 +f 1727 1585 1768 +f 1727 1768 1900 +f 1900 1768 1866 +f 1900 1866 1984 +f 1984 1866 2004 +f 1984 2004 2200 +f 2200 2004 2150 +f 2200 2150 2278 +f 2278 2150 2230 +f 2278 2230 2482 +f 2482 2230 2368 +f 2482 2368 2538 +f 2538 2368 2528 +f 2538 2528 2672 +f 2672 2528 2636 +f 2672 2636 2792 +f 2792 2636 2782 +f 2792 2782 2956 +f 2956 2782 2954 +f 2956 2954 3082 +f 3082 2954 3136 +f 3082 3136 3174 +f 3174 3136 3182 +f 3174 3182 3378 +f 3378 3182 3336 +f 3378 3336 3546 +f 3546 3336 3456 +f 3546 3456 3682 +f 3682 3456 3662 +f 3682 3662 3830 +f 3830 3662 3804 +f 3830 3804 3926 +f 3926 3804 3922 +f 3926 3922 4090 +f 4090 3922 4008 +f 4090 4008 4162 +f 4162 4008 4120 +f 4162 4120 4332 +f 4332 4120 4272 +f 4332 4272 4474 +f 4474 4272 4460 +f 4474 4460 4614 +f 4614 4460 4558 +f 4614 4558 4710 +f 4710 4558 4738 +f 4710 4738 4784 +f 4784 4738 4810 +f 4784 4810 4904 +f 4904 4810 4974 +f 4904 4974 5076 +f 5076 4974 5132 +f 5076 5132 5166 +f 5166 5132 5268 +f 5166 5268 5306 +f 5306 5268 5384 +f 5306 5384 5520 +f 5520 5384 5532 +f 5520 5532 5674 +f 5674 5532 5578 +f 5674 5578 5724 +f 5724 5578 5723 +f 5724 5723 5888 +f 5888 5723 5858 +f 5888 5858 6006 +f 6006 5858 6070 +f 6006 6070 6154 +f 6154 6070 6162 +f 6154 6162 6286 +f 6286 6162 6326 +f 6286 6326 6354 +f 6354 6326 6342 +f 6354 6342 6500 +f 6500 6342 6536 +f 6500 6536 6606 +f 6606 6536 6604 +f 6606 6604 6786 +f 6786 6604 6736 +f 6786 6736 6974 +f 6974 6736 6958 +f 6974 6958 7106 +f 7106 6958 7078 +f 7106 7078 7160 +f 7160 7078 7248 +f 7160 7248 7346 +f 7346 7248 7384 +f 7346 7384 7492 +f 7492 7384 7464 +f 7492 7464 7584 +f 7584 7464 7558 +f 7584 7558 7726 +f 7726 7558 7740 +f 7726 7740 7810 +f 7810 7740 7776 +f 7810 7776 7911 +f 136 92 264 +f 264 92 248 +f 264 248 398 +f 398 248 396 +f 398 396 460 +f 460 396 480 +f 460 480 650 +f 650 480 672 +f 650 672 788 +f 788 672 710 +f 788 710 840 +f 840 710 892 +f 840 892 966 +f 966 892 976 +f 966 976 1158 +f 1158 976 1134 +f 1158 1134 1302 +f 1302 1134 1246 +f 1302 1246 1324 +f 1324 1246 1418 +f 1324 1418 1474 +f 1474 1418 1482 +f 1474 1482 1622 +f 1622 1482 1642 +f 1622 1642 1722 +f 1722 1642 1727 +f 1722 1727 1852 +f 1852 1727 1900 +f 1852 1900 2052 +f 2052 1900 1984 +f 2052 1984 2096 +f 2096 1984 2200 +f 2096 2200 2312 +f 2312 2200 2278 +f 2312 2278 2394 +f 2394 2278 2482 +f 2394 2482 2622 +f 2622 2482 2538 +f 2622 2538 2740 +f 2740 2538 2672 +f 2740 2672 2890 +f 2890 2672 2792 +f 2890 2792 2936 +f 2936 2792 2956 +f 2936 2956 3048 +f 3048 2956 3082 +f 3048 3082 3272 +f 3272 3082 3174 +f 3272 3174 3428 +f 3428 3174 3378 +f 3428 3378 3558 +f 3558 3378 3546 +f 3558 3546 3680 +f 3680 3546 3682 +f 3680 3682 3730 +f 3730 3682 3830 +f 3730 3830 3878 +f 3878 3830 3926 +f 3878 3926 4034 +f 4034 3926 4090 +f 4034 4090 4144 +f 4144 4090 4162 +f 4144 4162 4346 +f 4346 4162 4332 +f 4346 4332 4476 +f 4476 4332 4474 +f 4476 4474 4574 +f 4574 4474 4614 +f 4574 4614 4742 +f 4742 4614 4710 +f 4742 4710 4836 +f 4836 4710 4784 +f 4836 4784 4934 +f 4934 4784 4904 +f 4934 4904 5130 +f 5130 4904 5076 +f 5130 5076 5265 +f 5265 5076 5166 +f 5265 5166 5402 +f 5402 5166 5306 +f 5402 5306 5448 +f 5448 5306 5520 +f 5448 5520 5576 +f 5576 5520 5674 +f 5576 5674 5708 +f 5708 5674 5724 +f 5708 5724 5900 +f 5900 5724 5888 +f 5900 5888 5956 +f 5956 5888 6006 +f 5956 6006 6164 +f 6164 6006 6154 +f 6164 6154 6268 +f 6268 6154 6286 +f 6268 6286 6452 +f 6452 6286 6354 +f 6452 6354 6568 +f 6568 6354 6500 +f 6568 6500 6612 +f 6612 6500 6606 +f 6612 6606 6790 +f 6790 6606 6786 +f 6790 6786 6886 +f 6886 6786 6974 +f 6886 6974 7080 +f 7080 6974 7106 +f 7080 7106 7208 +f 7208 7106 7160 +f 7208 7160 7332 +f 7332 7160 7346 +f 7332 7346 7514 +f 7514 7346 7492 +f 7514 7492 7572 +f 7572 7492 7584 +f 7572 7584 7664 +f 7664 7584 7726 +f 7664 7726 7774 +f 7774 7726 7810 +f 7774 7810 7890 +f 146 136 288 +f 288 136 264 +f 288 264 376 +f 376 264 398 +f 376 398 450 +f 450 398 460 +f 450 460 568 +f 568 460 650 +f 568 650 688 +f 688 650 788 +f 688 788 862 +f 862 788 840 +f 862 840 948 +f 948 840 966 +f 948 966 1084 +f 1084 966 1158 +f 1084 1158 1220 +f 1220 1158 1302 +f 1220 1302 1378 +f 1378 1302 1324 +f 1378 1324 1506 +f 1506 1324 1474 +f 1506 1474 1598 +f 1598 1474 1622 +f 1598 1622 1762 +f 1762 1622 1722 +f 1762 1722 1872 +f 1872 1722 1852 +f 1872 1852 1994 +f 1994 1852 2052 +f 1994 2052 2166 +f 2166 2052 2096 +f 2166 2096 2214 +f 2214 2096 2312 +f 2214 2312 2382 +f 2382 2312 2394 +f 2382 2394 2588 +f 2588 2394 2622 +f 2588 2622 2646 +f 2646 2622 2740 +f 2646 2740 2790 +f 2790 2740 2890 +f 2790 2890 2982 +f 2982 2890 2936 +f 2982 2936 3084 +f 3084 2936 3048 +f 3084 3048 3288 +f 3288 3048 3272 +f 3288 3272 3316 +f 3316 3272 3428 +f 3316 3428 3550 +f 3550 3428 3558 +f 3550 3558 3678 +f 3678 3558 3680 +f 3678 3680 3704 +f 3704 3680 3730 +f 3704 3730 3838 +f 3838 3730 3878 +f 3838 3878 4086 +f 4086 3878 4034 +f 4086 4034 4100 +f 4100 4034 4144 +f 4100 4144 4246 +f 4246 4144 4346 +f 4246 4346 4370 +f 4370 4346 4476 +f 4370 4476 4584 +f 4584 4476 4574 +f 4584 4574 4636 +f 4636 4574 4742 +f 4636 4742 4830 +f 4830 4742 4836 +f 4830 4836 4938 +f 4938 4836 4934 +f 4938 4934 5112 +f 5112 4934 5130 +f 5112 5130 5272 +f 5272 5130 5265 +f 5272 5265 5356 +f 5356 5265 5402 +f 5356 5402 5502 +f 5502 5402 5448 +f 5502 5448 5652 +f 5652 5448 5576 +f 5652 5576 5684 +f 5684 5576 5708 +f 5684 5708 5842 +f 5842 5708 5900 +f 5842 5900 6044 +f 6044 5900 5956 +f 6044 5956 6084 +f 6084 5956 6164 +f 6084 6164 6280 +f 6280 6164 6268 +f 6280 6268 6410 +f 6410 6268 6452 +f 6410 6452 6484 +f 6484 6452 6568 +f 6484 6568 6652 +f 6652 6568 6612 +f 6652 6612 6784 +f 6784 6612 6790 +f 6784 6790 6962 +f 6962 6790 6886 +f 6962 6886 7086 +f 7086 6886 7080 +f 7086 7080 7184 +f 7184 7080 7208 +f 7184 7208 7356 +f 7356 7208 7332 +f 7356 7332 7408 +f 7408 7332 7514 +f 7408 7514 7536 +f 7536 7514 7572 +f 7536 7572 7650 +f 7650 7572 7664 +f 7650 7664 7771 +f 7771 7664 7774 +f 7771 7774 7881 +f 140 146 212 +f 212 146 288 +f 212 288 408 +f 408 288 376 +f 408 376 544 +f 544 376 450 +f 544 450 676 +f 676 450 568 +f 676 568 678 +f 678 568 688 +f 678 688 864 +f 864 688 862 +f 864 862 1014 +f 1014 862 948 +f 1014 948 1070 +f 1070 948 1084 +f 1070 1084 1251 +f 1251 1084 1220 +f 1251 1220 1360 +f 1360 1220 1378 +f 1360 1378 1503 +f 1503 1378 1506 +f 1503 1506 1698 +f 1698 1506 1598 +f 1698 1598 1802 +f 1802 1598 1762 +f 1802 1762 1930 +f 1930 1762 1872 +f 1930 1872 2034 +f 2034 1872 1994 +f 2034 1994 2182 +f 2182 1994 2166 +f 2182 2166 2316 +f 2316 2166 2214 +f 2316 2214 2360 +f 2360 2214 2382 +f 2360 2382 2616 +f 2616 2382 2588 +f 2616 2588 2650 +f 2650 2588 2646 +f 2650 2646 2786 +f 2786 2646 2790 +f 2786 2790 2910 +f 2910 2790 2982 +f 2910 2982 3098 +f 3098 2982 3084 +f 3098 3084 3282 +f 3282 3084 3288 +f 3282 3288 3416 +f 3416 3288 3316 +f 3416 3316 3494 +f 3494 3316 3550 +f 3494 3550 3690 +f 3690 3550 3678 +f 3690 3678 3764 +f 3764 3678 3704 +f 3764 3704 3882 +f 3882 3704 3838 +f 3882 3838 4094 +f 4094 3838 4086 +f 4094 4086 4200 +f 4200 4086 4100 +f 4200 4100 4292 +f 4292 4100 4246 +f 4292 4246 4468 +f 4468 4246 4370 +f 4468 4370 4536 +f 4536 4370 4584 +f 4536 4584 4704 +f 4704 4584 4636 +f 4704 4636 4860 +f 4860 4636 4830 +f 4860 4830 4924 +f 4924 4830 4938 +f 4924 4938 5040 +f 5040 4938 5112 +f 5040 5112 5172 +f 5172 5112 5272 +f 5172 5272 5346 +f 5346 5272 5356 +f 5346 5356 5452 +f 5452 5356 5502 +f 5452 5502 5636 +f 5636 5502 5652 +f 5636 5652 5806 +f 5806 5652 5684 +f 5806 5684 5824 +f 5824 5684 5842 +f 5824 5842 5966 +f 5966 5842 6044 +f 5966 6044 6120 +f 6120 6044 6084 +f 6120 6084 6212 +f 6212 6084 6280 +f 6212 6280 6400 +f 6400 6280 6410 +f 6400 6410 6566 +f 6566 6410 6484 +f 6566 6484 6678 +f 6678 6484 6652 +f 6678 6652 6740 +f 6740 6652 6784 +f 6740 6784 6866 +f 6866 6784 6962 +f 6866 6962 7120 +f 7120 6962 7086 +f 7120 7086 7236 +f 7236 7086 7184 +f 7236 7184 7388 +f 7388 7184 7356 +f 7388 7356 7504 +f 7504 7356 7408 +f 7504 7408 7538 +f 7538 7408 7536 +f 7538 7536 7688 +f 7688 7536 7650 +f 7688 7650 7840 +f 7840 7650 7771 +f 7840 7771 7910 +f 126 140 224 +f 224 140 212 +f 224 212 348 +f 348 212 408 +f 348 408 522 +f 522 408 544 +f 522 544 648 +f 648 544 676 +f 648 676 752 +f 752 676 678 +f 752 678 806 +f 806 678 864 +f 806 864 956 +f 956 864 1014 +f 956 1014 1062 +f 1062 1014 1070 +f 1062 1070 1292 +f 1292 1070 1251 +f 1292 1251 1368 +f 1368 1251 1360 +f 1368 1360 1532 +f 1532 1360 1503 +f 1532 1503 1634 +f 1634 1503 1698 +f 1634 1698 1712 +f 1712 1698 1802 +f 1712 1802 1926 +f 1926 1802 1930 +f 1926 1930 2024 +f 2024 1930 2034 +f 2024 2034 2124 +f 2124 2034 2182 +f 2124 2182 2322 +f 2322 2182 2316 +f 2322 2316 2364 +f 2364 2316 2360 +f 2364 2360 2620 +f 2620 2360 2616 +f 2620 2616 2760 +f 2760 2616 2650 +f 2760 2650 2886 +f 2886 2650 2786 +f 2886 2786 2906 +f 2906 2786 2910 +f 2906 2910 3132 +f 3132 2910 3098 +f 3132 3098 3198 +f 3198 3098 3282 +f 3198 3282 3400 +f 3400 3282 3416 +f 3400 3416 3496 +f 3496 3416 3494 +f 3496 3494 3688 +f 3688 3494 3690 +f 3688 3690 3794 +f 3794 3690 3764 +f 3794 3764 3896 +f 3896 3764 3882 +f 3896 3882 4056 +f 4056 3882 4094 +f 4056 4094 4146 +f 4146 4094 4200 +f 4146 4200 4278 +f 4278 4200 4292 +f 4278 4292 4456 +f 4456 4292 4468 +f 4456 4468 4534 +f 4534 4468 4536 +f 4534 4536 4746 +f 4746 4536 4704 +f 4746 4704 4828 +f 4828 4704 4860 +f 4828 4860 4898 +f 4898 4860 4924 +f 4898 4924 5084 +f 5084 4924 5040 +f 5084 5040 5178 +f 5178 5040 5172 +f 5178 5172 5328 +f 5328 5172 5346 +f 5328 5346 5420 +f 5420 5346 5452 +f 5420 5452 5638 +f 5638 5452 5636 +f 5638 5636 5752 +f 5752 5636 5806 +f 5752 5806 5868 +f 5868 5806 5824 +f 5868 5824 5950 +f 5950 5824 5966 +f 5950 5966 6132 +f 6132 5966 6120 +f 6132 6120 6284 +f 6284 6120 6212 +f 6284 6212 6346 +f 6346 6212 6400 +f 6346 6400 6538 +f 6538 6400 6566 +f 6538 6566 6674 +f 6674 6566 6678 +f 6674 6678 6760 +f 6760 6678 6740 +f 6760 6740 6960 +f 6960 6740 6866 +f 6960 6866 7104 +f 7104 6866 7120 +f 7104 7120 7190 +f 7190 7120 7236 +f 7190 7236 7294 +f 7294 7236 7388 +f 7294 7388 7436 +f 7436 7388 7504 +f 7436 7504 7614 +f 7614 7504 7538 +f 7614 7538 7652 +f 7652 7538 7688 +f 7652 7688 7798 +f 7798 7688 7840 +f 7798 7840 7914 +f 154 126 168 +f 168 126 224 +f 168 224 302 +f 302 224 348 +f 302 348 490 +f 490 348 522 +f 490 522 668 +f 668 522 648 +f 668 648 778 +f 778 648 752 +f 778 752 884 +f 884 752 806 +f 884 806 936 +f 936 806 956 +f 936 956 1154 +f 1154 956 1062 +f 1154 1062 1312 +f 1312 1062 1292 +f 1312 1292 1348 +f 1348 1292 1368 +f 1348 1368 1446 +f 1446 1368 1532 +f 1446 1532 1668 +f 1668 1532 1634 +f 1668 1634 1796 +f 1796 1634 1712 +f 1796 1712 1842 +f 1842 1712 1926 +f 1842 1926 1966 +f 1966 1926 2024 +f 1966 2024 2120 +f 2120 2024 2124 +f 2120 2124 2326 +f 2326 2124 2322 +f 2326 2322 2440 +f 2440 2322 2364 +f 2440 2364 2540 +f 2540 2364 2620 +f 2540 2620 2654 +f 2654 2620 2760 +f 2654 2760 2796 +f 2796 2760 2886 +f 2796 2886 3014 +f 3014 2886 2906 +f 3014 2906 3056 +f 3056 2906 3132 +f 3056 3132 3210 +f 3210 3132 3198 +f 3210 3198 3326 +f 3326 3198 3400 +f 3326 3400 3476 +f 3476 3400 3496 +f 3476 3496 3636 +f 3636 3496 3688 +f 3636 3688 3790 +f 3790 3688 3794 +f 3790 3794 3846 +f 3846 3794 3896 +f 3846 3896 4006 +f 4006 3896 4056 +f 4006 4056 4208 +f 4208 4056 4146 +f 4208 4146 4342 +f 4342 4146 4278 +f 4342 4278 4380 +f 4380 4278 4456 +f 4380 4456 4514 +f 4514 4456 4534 +f 4514 4534 4638 +f 4638 4534 4746 +f 4638 4746 4804 +f 4804 4746 4828 +f 4804 4828 4988 +f 4988 4828 4898 +f 4988 4898 5048 +f 5048 4898 5084 +f 5048 5084 5184 +f 5184 5084 5178 +f 5184 5178 5316 +f 5316 5178 5328 +f 5316 5328 5422 +f 5422 5328 5420 +f 5422 5420 5662 +f 5662 5420 5638 +f 5662 5638 5750 +f 5750 5638 5752 +f 5750 5752 5876 +f 5876 5752 5868 +f 5876 5868 5968 +f 5968 5868 5950 +f 5968 5950 6140 +f 6140 5950 6132 +f 6140 6132 6248 +f 6248 6132 6284 +f 6248 6284 6458 +f 6458 6284 6346 +f 6458 6346 6558 +f 6558 6346 6538 +f 6558 6538 6670 +f 6670 6538 6674 +f 6670 6674 6788 +f 6788 6674 6760 +f 6788 6760 6858 +f 6858 6760 6960 +f 6858 6960 7050 +f 7050 6960 7104 +f 7050 7104 7224 +f 7224 7104 7190 +f 7224 7190 7320 +f 7320 7190 7294 +f 7320 7294 7446 +f 7446 7294 7436 +f 7446 7436 7628 +f 7628 7436 7614 +f 7628 7614 7648 +f 7648 7614 7652 +f 7648 7652 7812 +f 7812 7652 7798 +f 7812 7798 7893 +f 122 154 258 +f 258 154 168 +f 258 168 362 +f 362 168 302 +f 362 302 486 +f 486 302 490 +f 486 490 606 +f 606 490 668 +f 606 668 746 +f 746 668 778 +f 746 778 820 +f 820 778 884 +f 820 884 990 +f 990 884 936 +f 990 936 1132 +f 1132 936 1154 +f 1132 1154 1206 +f 1206 1154 1312 +f 1206 1312 1370 +f 1370 1312 1348 +f 1370 1348 1530 +f 1530 1348 1446 +f 1530 1446 1638 +f 1638 1446 1668 +f 1638 1668 1824 +f 1824 1668 1796 +f 1824 1796 1830 +f 1830 1796 1842 +f 1830 1842 2058 +f 2058 1842 1966 +f 2058 1966 2198 +f 2198 1966 2120 +f 2198 2120 2332 +f 2332 2120 2326 +f 2332 2326 2484 +f 2484 2326 2440 +f 2484 2440 2502 +f 2502 2440 2540 +f 2502 2540 2652 +f 2652 2540 2654 +f 2652 2654 2812 +f 2812 2654 2796 +f 2812 2796 2948 +f 2948 2796 3014 +f 2948 3014 3068 +f 3068 3014 3056 +f 3068 3056 3206 +f 3206 3056 3210 +f 3206 3210 3360 +f 3360 3210 3326 +f 3360 3326 3504 +f 3504 3326 3476 +f 3504 3476 3590 +f 3590 3476 3636 +f 3590 3636 3776 +f 3776 3636 3790 +f 3776 3790 3850 +f 3850 3790 3846 +f 3850 3846 4004 +f 4004 3846 4006 +f 4004 4006 4206 +f 4206 4006 4208 +f 4206 4208 4254 +f 4254 4208 4342 +f 4254 4342 4466 +f 4466 4342 4380 +f 4466 4380 4612 +f 4612 4380 4514 +f 4612 4514 4660 +f 4660 4514 4638 +f 4660 4638 4776 +f 4776 4638 4804 +f 4776 4804 4894 +f 4894 4804 4988 +f 4894 4988 5026 +f 5026 4988 5048 +f 5026 5048 5188 +f 5188 5048 5184 +f 5188 5184 5330 +f 5330 5184 5316 +f 5330 5316 5470 +f 5470 5316 5422 +f 5470 5422 5648 +f 5648 5422 5662 +f 5648 5662 5800 +f 5800 5662 5750 +f 5800 5750 5820 +f 5820 5750 5876 +f 5820 5876 5960 +f 5960 5876 5968 +f 5960 5968 6086 +f 6086 5968 6140 +f 6086 6140 6264 +f 6264 6140 6248 +f 6264 6248 6348 +f 6348 6248 6458 +f 6348 6458 6526 +f 6526 6458 6558 +f 6526 6558 6690 +f 6690 6558 6670 +f 6690 6670 6848 +f 6848 6670 6788 +f 6848 6788 6912 +f 6912 6788 6858 +f 6912 6858 7100 +f 7100 6858 7050 +f 7100 7050 7232 +f 7232 7050 7224 +f 7232 7224 7310 +f 7310 7224 7320 +f 7310 7320 7438 +f 7438 7320 7446 +f 7438 7446 7586 +f 7586 7446 7628 +f 7586 7628 7708 +f 7708 7628 7648 +f 7708 7648 7856 +f 7856 7648 7812 +f 7856 7812 7923 +f 144 122 202 +f 202 122 258 +f 202 258 308 +f 308 258 362 +f 308 362 510 +f 510 362 486 +f 510 486 594 +f 594 486 606 +f 594 606 734 +f 734 606 746 +f 734 746 810 +f 810 746 820 +f 810 820 958 +f 958 820 990 +f 958 990 1152 +f 1152 990 1132 +f 1152 1132 1244 +f 1244 1132 1206 +f 1244 1206 1422 +f 1422 1206 1370 +f 1422 1370 1516 +f 1516 1370 1530 +f 1516 1530 1678 +f 1678 1530 1638 +f 1678 1638 1748 +f 1748 1638 1824 +f 1748 1824 1902 +f 1902 1824 1830 +f 1902 1830 2002 +f 2002 1830 2058 +f 2002 2058 2154 +f 2154 2058 2198 +f 2154 2198 2328 +f 2328 2198 2332 +f 2328 2332 2450 +f 2450 2332 2484 +f 2450 2484 2516 +f 2516 2484 2502 +f 2516 2502 2736 +f 2736 2502 2652 +f 2736 2652 2804 +f 2804 2652 2812 +f 2804 2812 3020 +f 3020 2812 2948 +f 3020 2948 3040 +f 3040 2948 3068 +f 3040 3068 3224 +f 3224 3068 3206 +f 3224 3206 3424 +f 3424 3206 3360 +f 3424 3360 3468 +f 3468 3360 3504 +f 3468 3504 3606 +f 3606 3504 3590 +f 3606 3590 3810 +f 3810 3590 3776 +f 3810 3776 3932 +f 3932 3776 3850 +f 3932 3850 3968 +f 3968 3850 4004 +f 3968 4004 4224 +f 4224 4004 4206 +f 4224 4206 4306 +f 4306 4206 4254 +f 4306 4254 4442 +f 4442 4254 4466 +f 4442 4466 4604 +f 4604 4466 4612 +f 4604 4612 4686 +f 4686 4612 4660 +f 4686 4660 4846 +f 4846 4660 4776 +f 4846 4776 5018 +f 5018 4776 4894 +f 5018 4894 5064 +f 5064 4894 5026 +f 5064 5026 5160 +f 5160 5026 5188 +f 5160 5188 5372 +f 5372 5188 5330 +f 5372 5330 5444 +f 5444 5330 5470 +f 5444 5470 5562 +f 5562 5470 5648 +f 5562 5648 5694 +f 5694 5648 5800 +f 5694 5800 5906 +f 5906 5800 5820 +f 5906 5820 6004 +f 6004 5820 5960 +f 6004 5960 6138 +f 6138 5960 6086 +f 6138 6086 6294 +f 6294 6086 6264 +f 6294 6264 6358 +f 6358 6264 6348 +f 6358 6348 6564 +f 6564 6348 6526 +f 6564 6526 6598 +f 6598 6526 6690 +f 6598 6690 6776 +f 6776 6690 6848 +f 6776 6848 6878 +f 6878 6848 6912 +f 6878 6912 7122 +f 7122 6912 7100 +f 7122 7100 7166 +f 7166 7100 7232 +f 7166 7232 7318 +f 7318 7232 7310 +f 7318 7310 7406 +f 7406 7310 7438 +f 7406 7438 7620 +f 7620 7438 7586 +f 7620 7586 7734 +f 7734 7586 7708 +f 7734 7708 7854 +f 7854 7708 7856 +f 7854 7856 7907 +f 120 144 268 +f 268 144 202 +f 268 202 350 +f 350 202 308 +f 350 308 422 +f 422 308 510 +f 422 510 640 +f 640 510 594 +f 640 594 714 +f 714 594 734 +f 714 734 902 +f 902 734 810 +f 902 810 1056 +f 1056 810 958 +f 1056 958 1098 +f 1098 958 1152 +f 1098 1152 1276 +f 1276 1152 1244 +f 1276 1244 1380 +f 1380 1244 1422 +f 1380 1422 1478 +f 1478 1422 1516 +f 1478 1516 1582 +f 1582 1516 1678 +f 1582 1678 1788 +f 1788 1678 1748 +f 1788 1748 1914 +f 1914 1748 1902 +f 1914 1902 2026 +f 2026 1902 2002 +f 2026 2002 2142 +f 2142 2002 2154 +f 2142 2154 2314 +f 2314 2154 2328 +f 2314 2328 2374 +f 2374 2328 2450 +f 2374 2450 2594 +f 2594 2450 2516 +f 2594 2516 2750 +f 2750 2516 2736 +f 2750 2736 2800 +f 2800 2736 2804 +f 2800 2804 2916 +f 2916 2804 3020 +f 2916 3020 3130 +f 3130 3020 3040 +f 3130 3040 3264 +f 3264 3040 3224 +f 3264 3224 3368 +f 3368 3224 3424 +f 3368 3424 3538 +f 3538 3424 3468 +f 3538 3468 3656 +f 3656 3468 3606 +f 3656 3606 3760 +f 3760 3606 3810 +f 3760 3810 3960 +f 3960 3810 3932 +f 3960 3932 4078 +f 4078 3932 3968 +f 4078 3968 4112 +f 4112 3968 4224 +f 4112 4224 4236 +f 4236 4224 4306 +f 4236 4306 4376 +f 4376 4306 4442 +f 4376 4442 4500 +f 4500 4442 4604 +f 4500 4604 4752 +f 4752 4604 4686 +f 4752 4686 4770 +f 4770 4686 4846 +f 4770 4846 4976 +f 4976 4846 5018 +f 4976 5018 5088 +f 5088 5018 5064 +f 5088 5064 5248 +f 5248 5064 5160 +f 5248 5160 5302 +f 5302 5160 5372 +f 5302 5372 5504 +f 5504 5372 5444 +f 5504 5444 5566 +f 5566 5444 5562 +f 5566 5562 5768 +f 5768 5562 5694 +f 5768 5694 5934 +f 5934 5694 5906 +f 5934 5906 6024 +f 6024 5906 6004 +f 6024 6004 6144 +f 6144 6004 6138 +f 6144 6138 6206 +f 6206 6138 6294 +f 6206 6294 6412 +f 6412 6294 6358 +f 6412 6358 6516 +f 6516 6358 6564 +f 6516 6564 6668 +f 6668 6564 6598 +f 6668 6598 6734 +f 6734 6598 6776 +f 6734 6776 6888 +f 6888 6776 6878 +f 6888 6878 7112 +f 7112 6878 7122 +f 7112 7122 7154 +f 7154 7122 7166 +f 7154 7166 7336 +f 7336 7166 7318 +f 7336 7318 7448 +f 7448 7318 7406 +f 7448 7406 7616 +f 7616 7406 7620 +f 7616 7620 7694 +f 7694 7620 7734 +f 7694 7734 7794 +f 7794 7734 7854 +f 7794 7854 7887 +f 100 120 228 +f 228 120 268 +f 228 268 332 +f 332 268 350 +f 332 350 472 +f 472 350 422 +f 472 422 570 +f 570 422 640 +f 570 640 760 +f 760 640 714 +f 760 714 888 +f 888 714 902 +f 888 902 942 +f 942 902 1056 +f 942 1056 1064 +f 1064 1056 1098 +f 1064 1098 1226 +f 1226 1098 1276 +f 1226 1276 1372 +f 1372 1276 1380 +f 1372 1380 1546 +f 1546 1380 1478 +f 1546 1478 1644 +f 1644 1478 1582 +f 1644 1582 1782 +f 1782 1582 1788 +f 1782 1788 1864 +f 1864 1788 1914 +f 1864 1914 2082 +f 2082 1914 2026 +f 2082 2026 2118 +f 2118 2026 2142 +f 2118 2142 2304 +f 2304 2142 2314 +f 2304 2314 2486 +f 2486 2314 2374 +f 2486 2374 2552 +f 2552 2374 2594 +f 2552 2594 2748 +f 2748 2594 2750 +f 2748 2750 2772 +f 2772 2750 2800 +f 2772 2800 2960 +f 2960 2800 2916 +f 2960 2916 3144 +f 3144 2916 3130 +f 3144 3130 3186 +f 3186 3130 3264 +f 3186 3264 3322 +f 3322 3264 3368 +f 3322 3368 3486 +f 3486 3368 3538 +f 3486 3538 3608 +f 3608 3538 3656 +f 3608 3656 3754 +f 3754 3656 3760 +f 3754 3760 3916 +f 3916 3760 3960 +f 3916 3960 3970 +f 3970 3960 4078 +f 3970 4078 4106 +f 4106 4078 4112 +f 4106 4112 4288 +f 4288 4112 4236 +f 4288 4236 4392 +f 4392 4236 4376 +f 4392 4376 4540 +f 4540 4376 4500 +f 4540 4500 4716 +f 4716 4500 4752 +f 4716 4752 4862 +f 4862 4752 4770 +f 4862 4770 4936 +f 4936 4770 4976 +f 4936 4976 5096 +f 5096 4976 5088 +f 5096 5088 5236 +f 5236 5088 5248 +f 5236 5248 5300 +f 5300 5248 5302 +f 5300 5302 5514 +f 5514 5302 5504 +f 5514 5504 5560 +f 5560 5504 5566 +f 5560 5566 5714 +f 5714 5566 5768 +f 5714 5768 5874 +f 5874 5768 5934 +f 5874 5934 5944 +f 5944 5934 6024 +f 5944 6024 6126 +f 6126 6024 6144 +f 6126 6144 6324 +f 6324 6144 6206 +f 6324 6206 6362 +f 6362 6206 6412 +f 6362 6412 6580 +f 6580 6412 6516 +f 6580 6516 6640 +f 6640 6516 6668 +f 6640 6668 6744 +f 6744 6668 6734 +f 6744 6734 6860 +f 6860 6734 6888 +f 6860 6888 7098 +f 7098 6888 7112 +f 7098 7112 7200 +f 7200 7112 7154 +f 7200 7154 7370 +f 7370 7154 7336 +f 7370 7336 7508 +f 7508 7336 7448 +f 7508 7448 7612 +f 7612 7448 7616 +f 7612 7616 7750 +f 7750 7616 7694 +f 7750 7694 7816 +f 7816 7694 7794 +f 7816 7794 7895 +f 112 100 182 +f 182 100 228 +f 182 228 310 +f 310 228 332 +f 310 332 470 +f 470 332 472 +f 470 472 626 +f 626 472 570 +f 626 570 730 +f 730 570 760 +f 730 760 816 +f 816 760 888 +f 816 888 974 +f 974 888 942 +f 974 942 1082 +f 1082 942 1064 +f 1082 1064 1252 +f 1252 1064 1226 +f 1252 1226 1332 +f 1332 1226 1372 +f 1332 1372 1504 +f 1504 1372 1546 +f 1504 1546 1616 +f 1616 1546 1644 +f 1616 1644 1740 +f 1740 1644 1782 +f 1740 1782 1942 +f 1942 1782 1864 +f 1942 1864 2080 +f 2080 1864 2082 +f 2080 2082 2144 +f 2144 2082 2118 +f 2144 2118 2334 +f 2334 2118 2304 +f 2334 2304 2384 +f 2384 2304 2486 +f 2384 2486 2504 +f 2504 2486 2552 +f 2504 2552 2734 +f 2734 2552 2748 +f 2734 2748 2880 +f 2880 2748 2772 +f 2880 2772 2980 +f 2980 2772 2960 +f 2980 2960 3124 +f 3124 2960 3144 +f 3124 3144 3226 +f 3226 3144 3186 +f 3226 3186 3384 +f 3384 3186 3322 +f 3384 3322 3472 +f 3472 3322 3486 +f 3472 3486 3684 +f 3684 3486 3608 +f 3684 3608 3734 +f 3734 3608 3754 +f 3734 3754 3836 +f 3836 3754 3916 +f 3836 3916 4038 +f 4038 3916 3970 +f 4038 3970 4122 +f 4122 3970 4106 +f 4122 4106 4326 +f 4326 4106 4288 +f 4326 4288 4378 +f 4378 4288 4392 +f 4378 4392 4600 +f 4600 4392 4540 +f 4600 4540 4640 +f 4640 4540 4716 +f 4640 4716 4760 +f 4760 4716 4862 +f 4760 4862 5016 +f 5016 4862 4936 +f 5016 4936 5116 +f 5116 4936 5096 +f 5116 5096 5266 +f 5266 5096 5236 +f 5266 5236 5362 +f 5362 5236 5300 +f 5362 5300 5446 +f 5446 5300 5514 +f 5446 5514 5632 +f 5632 5514 5560 +f 5632 5560 5732 +f 5732 5560 5714 +f 5732 5714 5860 +f 5860 5714 5874 +f 5860 5874 6048 +f 6048 5874 5944 +f 6048 5944 6198 +f 6198 5944 6126 +f 6198 6126 6292 +f 6292 6126 6324 +f 6292 6324 6434 +f 6434 6324 6362 +f 6434 6362 6510 +f 6510 6362 6580 +f 6510 6580 6712 +f 6712 6580 6640 +f 6712 6640 6824 +f 6824 6640 6744 +f 6824 6744 6928 +f 6928 6744 6860 +f 6928 6860 7088 +f 7088 6860 7098 +f 7088 7098 7226 +f 7226 7098 7200 +f 7226 7200 7322 +f 7322 7200 7370 +f 7322 7370 7452 +f 7452 7370 7508 +f 7452 7508 7606 +f 7606 7508 7612 +f 7606 7612 7656 +f 7656 7612 7750 +f 7656 7750 7824 +f 7824 7750 7816 +f 7824 7816 7925 +f 110 112 238 +f 238 112 182 +f 238 182 374 +f 374 182 310 +f 374 310 494 +f 494 310 470 +f 494 470 616 +f 616 470 626 +f 616 626 686 +f 686 626 730 +f 686 730 834 +f 834 730 816 +f 834 816 1030 +f 1030 816 974 +f 1030 974 1182 +f 1182 974 1082 +f 1182 1082 1248 +f 1248 1082 1252 +f 1248 1252 1426 +f 1426 1252 1332 +f 1426 1332 1564 +f 1564 1332 1504 +f 1564 1504 1588 +f 1588 1504 1616 +f 1588 1616 1750 +f 1750 1616 1740 +f 1750 1740 1912 +f 1912 1740 1942 +f 1912 1942 1962 +f 1962 1942 2080 +f 1962 2080 2174 +f 2174 2080 2144 +f 2174 2144 2338 +f 2338 2144 2334 +f 2338 2334 2388 +f 2388 2334 2384 +f 2388 2384 2544 +f 2544 2384 2504 +f 2544 2504 2664 +f 2664 2504 2734 +f 2664 2734 2844 +f 2844 2734 2880 +f 2844 2880 2996 +f 2996 2880 2980 +f 2996 2980 3150 +f 3150 2980 3124 +f 3150 3124 3234 +f 3234 3124 3226 +f 3234 3226 3374 +f 3374 3226 3384 +f 3374 3384 3444 +f 3444 3384 3472 +f 3444 3472 3664 +f 3664 3472 3684 +f 3664 3684 3742 +f 3742 3684 3734 +f 3742 3734 3924 +f 3924 3734 3836 +f 3924 3836 3974 +f 3974 3836 4038 +f 3974 4038 4158 +f 4158 4038 4122 +f 4158 4122 4244 +f 4244 4122 4326 +f 4244 4326 4452 +f 4452 4326 4378 +f 4452 4378 4510 +f 4510 4378 4600 +f 4510 4600 4668 +f 4668 4600 4640 +f 4668 4640 4878 +f 4878 4640 4760 +f 4878 4760 4926 +f 4926 4760 5016 +f 4926 5016 5058 +f 5058 5016 5116 +f 5058 5116 5202 +f 5202 5116 5266 +f 5202 5266 5340 +f 5340 5266 5362 +f 5340 5362 5474 +f 5474 5362 5446 +f 5474 5446 5658 +f 5658 5446 5632 +f 5658 5632 5794 +f 5794 5632 5732 +f 5794 5732 5856 +f 5856 5732 5860 +f 5856 5860 6030 +f 6030 5860 6048 +f 6030 6048 6134 +f 6134 6048 6198 +f 6134 6198 6320 +f 6320 6198 6292 +f 6320 6292 6404 +f 6404 6292 6434 +f 6404 6434 6506 +f 6506 6434 6510 +f 6506 6510 6688 +f 6688 6510 6712 +f 6688 6712 6778 +f 6778 6712 6824 +f 6778 6824 6868 +f 6868 6824 6928 +f 6868 6928 7012 +f 7012 6928 7088 +f 7012 7088 7240 +f 7240 7088 7226 +f 7240 7226 7360 +f 7360 7226 7322 +f 7360 7322 7442 +f 7442 7322 7452 +f 7442 7452 7582 +f 7582 7452 7606 +f 7582 7606 7722 +f 7722 7606 7656 +f 7722 7656 7836 +f 7836 7656 7824 +f 7836 7824 7886 +f 68 110 172 +f 172 110 238 +f 172 238 372 +f 372 238 374 +f 372 374 424 +f 424 374 494 +f 424 494 644 +f 644 494 616 +f 644 616 790 +f 790 616 686 +f 790 686 836 +f 836 686 834 +f 836 834 964 +f 964 834 1030 +f 964 1030 1164 +f 1164 1030 1182 +f 1164 1182 1202 +f 1202 1182 1248 +f 1202 1248 1336 +f 1336 1248 1426 +f 1336 1426 1514 +f 1514 1426 1564 +f 1514 1564 1596 +f 1596 1564 1588 +f 1596 1588 1794 +f 1794 1588 1750 +f 1794 1750 1868 +f 1868 1750 1912 +f 1868 1912 1972 +f 1972 1912 1962 +f 1972 1962 2180 +f 2180 1962 2174 +f 2180 2174 2218 +f 2218 2174 2338 +f 2218 2338 2474 +f 2474 2338 2388 +f 2474 2388 2508 +f 2508 2388 2544 +f 2508 2544 2662 +f 2662 2544 2664 +f 2662 2664 2802 +f 2802 2664 2844 +f 2802 2844 2958 +f 2958 2844 2996 +f 2958 2996 3078 +f 3078 2996 3150 +f 3078 3150 3280 +f 3280 3150 3234 +f 3280 3234 3392 +f 3392 3234 3374 +f 3392 3374 3556 +f 3556 3374 3444 +f 3556 3444 3576 +f 3576 3444 3664 +f 3576 3664 3750 +f 3750 3664 3742 +f 3750 3742 3894 +f 3894 3742 3924 +f 3894 3924 4070 +f 4070 3924 3974 +f 4070 3974 4188 +f 4188 3974 4158 +f 4188 4158 4266 +f 4266 4158 4244 +f 4266 4244 4400 +f 4400 4244 4452 +f 4400 4452 4564 +f 4564 4452 4510 +f 4564 4510 4678 +f 4678 4510 4668 +f 4678 4668 4868 +f 4868 4668 4878 +f 4868 4878 4994 +f 4994 4878 4926 +f 4994 4926 5122 +f 5122 4926 5058 +f 5122 5058 5270 +f 5270 5058 5202 +f 5270 5202 5314 +f 5314 5202 5340 +f 5314 5340 5500 +f 5500 5340 5474 +f 5500 5474 5672 +f 5672 5474 5658 +f 5672 5658 5688 +f 5688 5658 5794 +f 5688 5794 5850 +f 5850 5794 5856 +f 5850 5856 6066 +f 6066 5856 6030 +f 6066 6030 6186 +f 6186 6030 6134 +f 6186 6134 6242 +f 6242 6134 6320 +f 6242 6320 6368 +f 6368 6320 6404 +f 6368 6404 6520 +f 6520 6404 6506 +f 6520 6506 6614 +f 6614 6506 6688 +f 6614 6688 6794 +f 6794 6688 6778 +f 6794 6778 6872 +f 6872 6778 6868 +f 6872 6868 7052 +f 7052 6868 7012 +f 7052 7012 7262 +f 7262 7012 7240 +f 7262 7240 7372 +f 7372 7240 7360 +f 7372 7360 7496 +f 7496 7360 7442 +f 7496 7442 7626 +f 7626 7442 7582 +f 7626 7582 7658 +f 7658 7582 7722 +f 7658 7722 7832 +f 7832 7722 7836 +f 7832 7836 7924 +f 42 68 220 +f 220 68 172 +f 220 172 360 +f 360 172 372 +f 360 372 548 +f 548 372 424 +f 548 424 580 +f 580 424 644 +f 580 644 706 +f 706 644 790 +f 706 790 922 +f 922 790 836 +f 922 836 998 +f 998 836 964 +f 998 964 1066 +f 1066 964 1164 +f 1066 1164 1200 +f 1200 1164 1202 +f 1200 1202 1396 +f 1396 1202 1336 +f 1396 1336 1572 +f 1572 1336 1514 +f 1572 1514 1646 +f 1646 1514 1596 +f 1646 1596 1760 +f 1760 1596 1794 +f 1760 1794 1870 +f 1870 1794 1868 +f 1870 1868 1978 +f 1978 1868 1972 +f 1978 1972 2208 +f 2208 1972 2180 +f 2208 2180 2324 +f 2324 2180 2218 +f 2324 2218 2472 +f 2472 2218 2474 +f 2472 2474 2518 +f 2518 2474 2508 +f 2518 2508 2726 +f 2726 2508 2662 +f 2726 2662 2798 +f 2798 2662 2802 +f 2798 2802 3030 +f 3030 2802 2958 +f 3030 2958 3158 +f 3158 2958 3078 +f 3158 3078 3191 +f 3191 3078 3280 +f 3191 3280 3308 +f 3308 3280 3392 +f 3308 3392 3442 +f 3442 3392 3556 +f 3442 3556 3572 +f 3572 3556 3576 +f 3572 3576 3824 +f 3824 3576 3750 +f 3824 3750 3842 +f 3842 3750 3894 +f 3842 3894 4092 +f 4092 3894 4070 +f 4092 4070 4108 +f 4108 4070 4188 +f 4108 4188 4358 +f 4358 4188 4266 +f 4358 4266 4486 +f 4486 4266 4400 +f 4486 4400 4608 +f 4608 4400 4564 +f 4608 4564 4734 +f 4734 4564 4678 +f 4734 4678 4778 +f 4778 4678 4868 +f 4778 4868 4900 +f 4900 4868 4994 +f 4900 4994 5110 +f 5110 4994 5122 +f 5110 5122 5224 +f 5224 5122 5270 +f 5224 5270 5394 +f 5394 5270 5314 +f 5394 5314 5476 +f 5476 5314 5500 +f 5476 5500 5600 +f 5600 5500 5672 +f 5600 5672 5704 +f 5704 5672 5688 +f 5704 5688 5894 +f 5894 5688 5850 +f 5894 5850 6000 +f 6000 5850 6066 +f 6000 6066 6108 +f 6108 6066 6186 +f 6108 6186 6314 +f 6314 6186 6242 +f 6314 6242 6444 +f 6444 6242 6368 +f 6444 6368 6544 +f 6544 6368 6520 +f 6544 6520 6696 +f 6696 6520 6614 +f 6696 6614 6814 +f 6814 6614 6794 +f 6814 6794 6910 +f 6910 6794 6872 +f 6910 6872 7130 +f 7130 6872 7052 +f 7130 7052 7246 +f 7246 7052 7262 +f 7246 7262 7282 +f 7282 7262 7372 +f 7282 7372 7420 +f 7420 7372 7496 +f 7420 7496 7608 +f 7608 7496 7626 +f 7608 7626 7662 +f 7662 7626 7658 +f 7662 7658 7772 +f 7772 7658 7832 +f 7772 7832 7929 +f 162 42 166 +f 166 42 220 +f 166 220 300 +f 300 220 360 +f 300 360 430 +f 430 360 548 +f 430 548 646 +f 646 548 580 +f 646 580 744 +f 744 580 706 +f 744 706 874 +f 874 706 922 +f 874 922 1026 +f 1026 922 998 +f 1026 998 1076 +f 1076 998 1066 +f 1076 1066 1230 +f 1230 1066 1200 +f 1230 1200 1438 +f 1438 1200 1396 +f 1438 1396 1556 +f 1556 1396 1572 +f 1556 1572 1602 +f 1602 1572 1646 +f 1602 1646 1704 +f 1704 1646 1760 +f 1704 1760 1938 +f 1938 1760 1870 +f 1938 1870 1960 +f 1960 1870 1978 +f 1960 1978 2194 +f 2194 1978 2208 +f 2194 2208 2320 +f 2320 2208 2324 +f 2320 2324 2480 +f 2480 2324 2472 +f 2480 2472 2526 +f 2526 2472 2518 +f 2526 2518 2712 +f 2712 2518 2726 +f 2712 2726 2818 +f 2818 2726 2798 +f 2818 2798 2908 +f 2908 2798 3030 +f 2908 3030 3044 +f 3044 3030 3158 +f 3044 3158 3296 +f 3296 3158 3191 +f 3296 3191 3312 +f 3312 3191 3308 +f 3312 3308 3524 +f 3524 3308 3442 +f 3524 3442 3638 +f 3638 3442 3572 +f 3638 3572 3716 +f 3716 3572 3824 +f 3716 3824 3962 +f 3962 3824 3842 +f 3962 3842 4088 +f 4088 3842 4092 +f 4088 4092 4214 +f 4214 4092 4108 +f 4214 4108 4274 +f 4274 4108 4358 +f 4274 4358 4394 +f 4394 4358 4486 +f 4394 4486 4572 +f 4572 4486 4608 +f 4572 4608 4744 +f 4744 4608 4734 +f 4744 4734 4870 +f 4870 4734 4778 +f 4870 4778 5000 +f 5000 4778 4900 +f 5000 4900 5090 +f 5090 4900 5110 +f 5090 5110 5218 +f 5218 5110 5224 +f 5218 5224 5374 +f 5374 5224 5394 +f 5374 5394 5424 +f 5424 5394 5476 +f 5424 5476 5582 +f 5582 5476 5600 +f 5582 5600 5804 +f 5804 5600 5704 +f 5804 5704 5932 +f 5932 5704 5894 +f 5932 5894 6050 +f 6050 5894 6000 +f 6050 6000 6076 +f 6076 6000 6108 +f 6076 6108 6298 +f 6298 6108 6314 +f 6298 6314 6366 +f 6366 6314 6444 +f 6366 6444 6504 +f 6504 6444 6544 +f 6504 6544 6644 +f 6644 6544 6696 +f 6644 6696 6766 +f 6766 6696 6814 +f 6766 6814 6876 +f 6876 6814 6910 +f 6876 6910 7016 +f 7016 6910 7130 +f 7016 7130 7254 +f 7254 7130 7246 +f 7254 7246 7376 +f 7376 7246 7282 +f 7376 7282 7478 +f 7478 7282 7420 +f 7478 7420 7592 +f 7592 7420 7608 +f 7592 7608 7746 +f 7746 7608 7662 +f 7746 7662 7783 +f 7783 7662 7772 +f 7783 7772 7897 +f 108 162 284 +f 284 162 166 +f 284 166 336 +f 336 166 300 +f 336 300 546 +f 546 300 430 +f 546 430 614 +f 614 430 646 +f 614 646 684 +f 684 646 744 +f 684 744 866 +f 866 744 874 +f 866 874 1044 +f 1044 874 1026 +f 1044 1026 1088 +f 1088 1026 1076 +f 1088 1076 1198 +f 1198 1076 1230 +f 1198 1230 1416 +f 1416 1230 1438 +f 1416 1438 1562 +f 1562 1438 1556 +f 1562 1556 1578 +f 1578 1556 1602 +f 1578 1602 1728 +f 1728 1602 1704 +f 1728 1704 1888 +f 1888 1704 1938 +f 1888 1938 2050 +f 2050 1938 1960 +f 2050 1960 2126 +f 2126 1960 2194 +f 2126 2194 2234 +f 2234 2194 2320 +f 2234 2320 2378 +f 2378 2320 2480 +f 2378 2480 2612 +f 2612 2480 2526 +f 2612 2526 2668 +f 2668 2526 2712 +f 2668 2712 2884 +f 2884 2712 2818 +f 2884 2818 2992 +f 2992 2818 2908 +f 2992 2908 3122 +f 3122 2908 3044 +f 3122 3044 3232 +f 3232 3044 3296 +f 3232 3296 3320 +f 3320 3296 3312 +f 3320 3312 3520 +f 3520 3312 3524 +f 3520 3524 3598 +f 3598 3524 3638 +f 3598 3638 3766 +f 3766 3638 3716 +f 3766 3716 3888 +f 3888 3716 3962 +f 3888 3962 4040 +f 4040 3962 4088 +f 4040 4088 4142 +f 4142 4088 4214 +f 4142 4214 4318 +f 4318 4214 4274 +f 4318 4274 4408 +f 4408 4274 4394 +f 4408 4394 4598 +f 4598 4394 4572 +f 4598 4572 4700 +f 4700 4572 4744 +f 4700 4744 4816 +f 4816 4744 4870 +f 4816 4870 4950 +f 4950 4870 5000 +f 4950 5000 5038 +f 5038 5000 5090 +f 5038 5090 5232 +f 5232 5090 5218 +f 5232 5218 5308 +f 5308 5218 5374 +f 5308 5374 5526 +f 5526 5374 5424 +f 5526 5424 5628 +f 5628 5424 5582 +f 5628 5582 5776 +f 5776 5582 5804 +f 5776 5804 5918 +f 5918 5804 5932 +f 5918 5932 6008 +f 6008 5932 6050 +f 6008 6050 6124 +f 6124 6050 6076 +f 6124 6076 6214 +f 6214 6076 6298 +f 6214 6298 6418 +f 6418 6298 6366 +f 6418 6366 6576 +f 6576 6366 6504 +f 6576 6504 6626 +f 6626 6504 6644 +f 6626 6644 6822 +f 6822 6644 6766 +f 6822 6766 6884 +f 6884 6766 6876 +f 6884 6876 7102 +f 7102 6876 7016 +f 7102 7016 7212 +f 7212 7016 7254 +f 7212 7254 7352 +f 7352 7254 7376 +f 7352 7376 7482 +f 7482 7376 7478 +f 7482 7478 7596 +f 7596 7478 7592 +f 7596 7592 7710 +f 7710 7592 7746 +f 7710 7746 7792 +f 7792 7746 7783 +f 7792 7783 7885 +f 38 108 184 +f 184 108 284 +f 184 284 358 +f 358 284 336 +f 358 336 526 +f 526 336 546 +f 526 546 562 +f 562 546 614 +f 562 614 796 +f 796 614 684 +f 796 684 908 +f 908 684 866 +f 908 866 1054 +f 1054 866 1044 +f 1054 1044 1186 +f 1186 1044 1088 +f 1186 1088 1192 +f 1192 1088 1198 +f 1192 1198 1358 +f 1358 1198 1416 +f 1358 1416 1544 +f 1544 1416 1562 +f 1544 1562 1586 +f 1586 1562 1578 +f 1586 1578 1706 +f 1706 1578 1728 +f 1706 1728 1838 +f 1838 1728 1888 +f 1838 1888 1986 +f 1986 1888 2050 +f 1986 2050 2184 +f 2184 2050 2126 +f 2184 2126 2296 +f 2296 2126 2234 +f 2296 2234 2392 +f 2392 2234 2378 +f 2392 2378 2570 +f 2570 2378 2612 +f 2570 2612 2698 +f 2698 2612 2668 +f 2698 2668 2870 +f 2870 2668 2884 +f 2870 2884 2930 +f 2930 2884 2992 +f 2930 2992 3166 +f 3166 2992 3122 +f 3166 3122 3192 +f 3192 3122 3232 +f 3192 3232 3304 +f 3304 3232 3320 +f 3304 3320 3526 +f 3526 3320 3520 +f 3526 3520 3650 +f 3650 3520 3598 +f 3650 3598 3748 +f 3748 3598 3766 +f 3748 3766 3868 +f 3868 3766 3888 +f 3868 3888 4060 +f 4060 3888 4040 +f 4060 4040 4154 +f 4154 4040 4142 +f 4154 4142 4260 +f 4260 4142 4318 +f 4260 4318 4390 +f 4390 4318 4408 +f 4390 4408 4580 +f 4580 4408 4598 +f 4580 4598 4722 +f 4722 4598 4700 +f 4722 4700 4880 +f 4880 4700 4816 +f 4880 4816 4964 +f 4964 4816 4950 +f 4964 4950 5068 +f 5068 4950 5038 +f 5068 5038 5196 +f 5196 5038 5232 +f 5196 5232 5338 +f 5338 5232 5308 +f 5338 5308 5468 +f 5468 5308 5526 +f 5468 5526 5558 +f 5558 5526 5628 +f 5558 5628 5738 +f 5738 5628 5776 +f 5738 5776 5904 +f 5904 5776 5918 +f 5904 5918 6036 +f 6036 5918 6008 +f 6036 6008 6112 +f 6112 6008 6124 +f 6112 6124 6322 +f 6322 6124 6214 +f 6322 6214 6388 +f 6388 6214 6418 +f 6388 6418 6534 +f 6534 6418 6576 +f 6534 6576 6708 +f 6708 6576 6626 +f 6708 6626 6812 +f 6812 6626 6822 +f 6812 6822 6926 +f 6926 6822 6884 +f 6926 6884 7074 +f 7074 6884 7102 +f 7074 7102 7216 +f 7216 7102 7212 +f 7216 7212 7296 +f 7296 7212 7352 +f 7296 7352 7502 +f 7502 7352 7482 +f 7502 7482 7590 +f 7590 7482 7596 +f 7590 7596 7752 +f 7752 7596 7710 +f 7752 7710 7842 +f 7842 7710 7792 +f 7842 7792 7905 +f 164 38 250 +f 250 38 184 +f 250 184 330 +f 330 184 358 +f 330 358 438 +f 438 358 526 +f 438 526 559 +f 559 526 562 +f 559 562 756 +f 756 562 796 +f 756 796 858 +f 858 796 908 +f 858 908 938 +f 938 908 1054 +f 938 1054 1148 +f 1148 1054 1186 +f 1148 1186 1280 +f 1280 1186 1192 +f 1280 1192 1328 +f 1328 1192 1358 +f 1328 1358 1456 +f 1456 1358 1544 +f 1456 1544 1695 +f 1695 1544 1586 +f 1695 1586 1770 +f 1770 1586 1706 +f 1770 1706 1847 +f 1847 1706 1838 +f 1847 1838 1990 +f 1990 1838 1986 +f 1990 1986 2206 +f 2206 1986 2184 +f 2206 2184 2220 +f 2220 2184 2296 +f 2220 2296 2436 +f 2436 2296 2392 +f 2436 2392 2506 +f 2506 2392 2570 +f 2506 2570 2666 +f 2666 2570 2698 +f 2666 2698 2895 +f 2895 2698 2870 +f 2895 2870 2939 +f 2939 2870 2930 +f 2939 2930 3143 +f 3143 2930 3166 +f 3143 3166 3214 +f 3214 3166 3192 +f 3214 3192 3394 +f 3394 3192 3304 +f 3394 3304 3499 +f 3499 3304 3526 +f 3499 3526 3692 +f 3692 3526 3650 +f 3692 3650 3812 +f 3812 3650 3748 +f 3812 3748 3859 +f 3859 3748 3868 +f 3859 3868 4054 +f 4054 3868 4060 +f 4054 4060 4222 +f 4222 4060 4154 +f 4222 4154 4330 +f 4330 4154 4260 +f 4330 4260 4384 +f 4384 4260 4390 +f 4384 4390 4596 +f 4596 4390 4580 +f 4596 4580 4695 +f 4695 4580 4722 +f 4695 4722 4875 +f 4875 4722 4880 +f 4875 4880 4944 +f 4944 4880 4964 +f 4944 4964 5124 +f 5124 4964 5068 +f 5124 5068 5194 +f 5194 5068 5196 +f 5194 5196 5379 +f 5379 5196 5338 +f 5379 5338 5432 +f 5432 5338 5468 +f 5432 5468 5596 +f 5596 5468 5558 +f 5596 5558 5780 +f 5780 5558 5738 +f 5780 5738 5913 +f 5913 5738 5904 +f 5913 5904 5992 +f 5992 5904 6036 +f 5992 6036 6182 +f 6182 6036 6112 +f 6182 6112 6296 +f 6296 6112 6322 +f 6296 6322 6350 +f 6350 6322 6388 +f 6350 6388 6533 +f 6533 6388 6534 +f 6533 6534 6620 +f 6620 6534 6708 +f 6620 6708 6732 +f 6732 6708 6812 +f 6732 6812 6970 +f 6970 6812 6926 +f 6970 6926 7019 +f 7019 6926 7074 +f 7019 7074 7178 +f 7178 7074 7216 +f 7178 7216 7374 +f 7374 7216 7296 +f 7374 7296 7471 +f 7471 7296 7502 +f 7471 7502 7578 +f 7578 7502 7590 +f 7578 7590 7654 +f 7654 7590 7752 +f 7654 7752 7852 +f 7852 7752 7842 +f 7852 7842 7918 +f 7899 8010 7786 +f 7786 8010 8005 +f 7786 8005 7736 +f 7736 8005 8003 +f 7736 8003 7568 +f 7568 8003 7999 +f 7568 7999 7490 +f 7490 7999 7995 +f 7490 7995 7340 +f 7340 7995 7991 +f 7340 7991 7152 +f 7152 7991 7985 +f 7152 7985 7094 +f 7094 7985 7983 +f 7094 7983 6915 +f 6915 7983 7977 +f 6915 7977 6749 +f 6749 7977 7973 +f 6749 7973 6609 +f 6609 7973 7971 +f 6609 7971 6574 +f 6574 7971 7967 +f 6574 7967 6416 +f 6416 7967 7963 +f 6416 7963 6239 +f 6239 7963 7957 +f 6239 7957 6082 +f 6082 7957 7953 +f 6082 7953 5964 +f 5964 7953 7949 +f 5964 7949 5814 +f 5814 7949 7945 +f 5814 7945 5699 +f 5699 7945 7941 +f 5699 7941 5555 +f 5555 7941 7937 +f 5555 7937 5516 +f 5516 7937 7397 +f 5516 7397 5410 +f 5410 7397 6999 +f 5410 6999 5245 +f 5245 6999 6725 +f 5245 6725 5036 +f 5036 6725 6465 +f 5036 6465 4998 +f 4998 6465 6333 +f 4998 6333 4834 +f 4834 6333 6071 +f 4834 6071 4642 +f 4642 6071 5939 +f 4642 5939 4592 +f 4592 5939 5807 +f 4592 5807 4425 +f 4425 5807 5547 +f 4425 5547 4302 +f 4302 5547 5417 +f 4302 5417 4176 +f 4176 5417 5285 +f 4176 5285 4029 +f 4029 5285 5153 +f 4029 5153 3913 +f 3913 5153 5021 +f 3913 5021 3784 +f 3784 5021 4887 +f 3784 4887 3645 +f 3645 4887 4757 +f 3645 4757 3535 +f 3535 4757 4625 +f 3535 4625 3328 +f 3328 4625 4493 +f 3328 4493 3177 +f 3177 4493 4359 +f 3177 4359 3134 +f 3134 4359 4227 +f 3134 4227 2932 +f 2932 4227 4095 +f 2932 4095 2896 +f 2896 4095 3965 +f 2896 3965 2706 +f 2706 3965 3831 +f 2706 3831 2522 +f 2522 3831 3699 +f 2522 3699 2420 +f 2420 3699 3567 +f 2420 3567 2285 +f 2285 3567 3437 +f 2285 3437 2188 +f 2188 3437 3431 +f 2188 3431 1970 +f 1970 3431 3301 +f 1970 3301 1884 +f 1884 3301 3167 +f 1884 3167 1766 +f 1766 3167 3035 +f 1766 3035 1601 +f 1601 3035 3031 +f 1601 3031 1552 +f 1552 3031 2901 +f 1552 2901 1354 +f 1354 2901 2767 +f 1354 2767 1287 +f 1287 2767 2765 +f 1287 2765 1078 +f 1078 2765 2633 +f 1078 2633 1009 +f 1009 2633 2629 +f 1009 2629 877 +f 877 2629 2497 +f 877 2497 764 +f 764 2497 2491 +f 764 2491 576 +f 576 2491 2487 +f 576 2487 528 +f 528 2487 2355 +f 528 2355 338 +f 338 2355 2353 +f 338 2353 292 +f 292 2353 2349 +f 292 2349 76 +f 76 2349 2345 +f 76 2345 5 +f 5 2345 2342 +f 5 2342 74 +f 74 2342 2346 +f 74 2346 291 +f 291 2346 2350 +f 291 2350 337 +f 337 2350 2354 +f 337 2354 527 +f 527 2354 2356 +f 527 2356 571 +f 571 2356 2488 +f 571 2488 761 +f 761 2488 2492 +f 761 2492 875 +f 875 2492 2498 +f 875 2498 1007 +f 1007 2498 2630 +f 1007 2630 1077 +f 1077 2630 2634 +f 1077 2634 1283 +f 1283 2634 2766 +f 1283 2766 1349 +f 1349 2766 2768 +f 1349 2768 1549 +f 1549 2768 2902 +f 1549 2902 1599 +f 1599 2902 3032 +f 1599 3032 1763 +f 1763 3032 3036 +f 1763 3036 1881 +f 1881 3036 3168 +f 1881 3168 1967 +f 1967 3168 3302 +f 1967 3302 2185 +f 2185 3302 3432 +f 2185 3432 2283 +f 2283 3432 3438 +f 2283 3438 2417 +f 2417 3438 3568 +f 2417 3568 2521 +f 2521 3568 3700 +f 2521 3700 2701 +f 2701 3700 3832 +f 2701 3832 2893 +f 2893 3832 3966 +f 2893 3966 2931 +f 2931 3966 4096 +f 2931 4096 3133 +f 3133 4096 4228 +f 3133 4228 3175 +f 3175 4228 4360 +f 3175 4360 3327 +f 3327 4360 4494 +f 3327 4494 3533 +f 3533 4494 4626 +f 3533 4626 3643 +f 3643 4626 4758 +f 3643 4758 3783 +f 3783 4758 4888 +f 3783 4888 3911 +f 3911 4888 5022 +f 3911 5022 4027 +f 4027 5022 5154 +f 4027 5154 4173 +f 4173 5154 5286 +f 4173 5286 4301 +f 4301 5286 5418 +f 4301 5418 4423 +f 4423 5418 5548 +f 4423 5548 4591 +f 4591 5548 5808 +f 4591 5808 4641 +f 4641 5808 5940 +f 4641 5940 4833 +f 4833 5940 6072 +f 4833 6072 4997 +f 4997 6072 6334 +f 4997 6334 5035 +f 5035 6334 6466 +f 5035 6466 5243 +f 5243 6466 6726 +f 5243 6726 5409 +f 5409 6726 7000 +f 5409 7000 5515 +f 5515 7000 7398 +f 5515 7398 5553 +f 5553 7398 7938 +f 5553 7938 5697 +f 5697 7938 7942 +f 5697 7942 5813 +f 5813 7942 7946 +f 5813 7946 5963 +f 5963 7946 7950 +f 5963 7950 6081 +f 6081 7950 7954 +f 6081 7954 6237 +f 6237 7954 7958 +f 6237 7958 6413 +f 6413 7958 7964 +f 6413 7964 6573 +f 6573 7964 7968 +f 6573 7968 6607 +f 6607 7968 7972 +f 6607 7972 6747 +f 6747 7972 7974 +f 6747 7974 6913 +f 6913 7974 7978 +f 6913 7978 7093 +f 7093 7978 7984 +f 7093 7984 7151 +f 7151 7984 7986 +f 7151 7986 7337 +f 7337 7986 7992 +f 7337 7992 7489 +f 7489 7992 7996 +f 7489 7996 7567 +f 7567 7996 8000 +f 7567 8000 7735 +f 7735 8000 8004 +f 7735 8004 7785 +f 7785 8004 8006 +f 7785 8006 7899 +f 7899 8006 8010 +f 8009 7901 8007 +f 8007 7901 7784 +f 8007 7784 8001 +f 8001 7784 7702 +f 8001 7702 7997 +f 7997 7702 7543 +f 7997 7543 7993 +f 7993 7543 7512 +f 7993 7512 7989 +f 7989 7512 7307 +f 7989 7307 7987 +f 7987 7307 7158 +f 7987 7158 7981 +f 7981 7158 7015 +f 7981 7015 7979 +f 7979 7015 6982 +f 7979 6982 7975 +f 7975 6982 6850 +f 7975 6850 7969 +f 7969 6850 6637 +f 7969 6637 7965 +f 7965 6637 6481 +f 7965 6481 7961 +f 7961 6481 6446 +f 7961 6446 7959 +f 7959 6446 6289 +f 7959 6289 7955 +f 7955 6289 6200 +f 7955 6200 7951 +f 7951 6200 6041 +f 7951 6041 7947 +f 7947 6041 5912 +f 7947 5912 7943 +f 7943 5912 5796 +f 7943 5796 7939 +f 7939 5796 5574 +f 7939 5574 7399 +f 7399 5574 5487 +f 7399 5487 7001 +f 7001 5487 5311 +f 7001 5311 6723 +f 6723 5311 5164 +f 6723 5164 6463 +f 6463 5164 5024 +f 6463 5024 6331 +f 6331 5024 4921 +f 6331 4921 6073 +f 6073 4921 4842 +f 6073 4842 5941 +f 5941 4842 4754 +f 5941 4754 5809 +f 5809 4754 4523 +f 5809 4523 5549 +f 5549 4523 4473 +f 5549 4473 5415 +f 5415 4473 4335 +f 5415 4335 5283 +f 5283 4335 4104 +f 5283 4104 5151 +f 5151 4104 3982 +f 5151 3982 5019 +f 5019 3982 3946 +f 5019 3946 4889 +f 4889 3946 3826 +f 4889 3826 4755 +f 4755 3826 3594 +f 4755 3594 4623 +f 4623 3594 3446 +f 4623 3446 4491 +f 4491 3446 3382 +f 4491 3382 4361 +f 4361 3382 3298 +f 4361 3298 4229 +f 4229 3298 3088 +f 4229 3088 4097 +f 4097 3088 3012 +f 4097 3012 3963 +f 3963 3012 2775 +f 3963 2775 3833 +f 3833 2775 2757 +f 3833 2757 3701 +f 3701 2757 2610 +f 3701 2610 3569 +f 3569 2610 2411 +f 3569 2411 3435 +f 3435 2411 2340 +f 3435 2340 3433 +f 3433 2340 2160 +f 3433 2160 3299 +f 3299 2160 1969 +f 3299 1969 3169 +f 3169 1969 1832 +f 3169 1832 3037 +f 3037 1832 1775 +f 3037 1775 3033 +f 3033 1775 1627 +f 3033 1627 2899 +f 2899 1627 1469 +f 2899 1469 2769 +f 2769 1469 1442 +f 2769 1442 2763 +f 2763 1442 1267 +f 2763 1267 2631 +f 2631 1267 1120 +f 2631 1120 2627 +f 2627 1120 1023 +f 2627 1023 2495 +f 2495 1023 814 +f 2495 814 2493 +f 2493 814 719 +f 2493 719 2489 +f 2489 719 584 +f 2489 584 2357 +f 2357 584 444 +f 2357 444 2351 +f 2351 444 294 +f 2351 294 2347 +f 2347 294 254 +f 2347 254 2343 +f 2343 254 89 +f 2343 89 2341 +f 2341 89 17 +f 2341 17 2344 +f 2344 17 81 +f 2344 81 2348 +f 2348 81 251 +f 2348 251 2352 +f 2352 251 293 +f 2352 293 2358 +f 2358 293 439 +f 2358 439 2490 +f 2490 439 581 +f 2490 581 2494 +f 2494 581 715 +f 2494 715 2496 +f 2496 715 813 +f 2496 813 2628 +f 2628 813 1021 +f 2628 1021 2632 +f 2632 1021 1111 +f 2632 1111 2764 +f 2764 1111 1261 +f 2764 1261 2770 +f 2770 1261 1439 +f 2770 1439 2900 +f 2900 1439 1467 +f 2900 1467 3034 +f 3034 1467 1623 +f 3034 1623 3038 +f 3038 1623 1771 +f 3038 1771 3170 +f 3170 1771 1831 +f 3170 1831 3300 +f 3300 1831 1968 +f 3300 1968 3434 +f 3434 1968 2155 +f 3434 2155 3436 +f 3436 2155 2339 +f 3436 2339 3570 +f 3570 2339 2405 +f 3570 2405 3702 +f 3702 2405 2609 +f 3702 2609 3834 +f 3834 2609 2755 +f 3834 2755 3964 +f 3964 2755 2773 +f 3964 2773 4098 +f 4098 2773 3011 +f 4098 3011 4230 +f 4230 3011 3087 +f 4230 3087 4362 +f 4362 3087 3297 +f 4362 3297 4492 +f 4492 3297 3381 +f 4492 3381 4624 +f 4624 3381 3445 +f 4624 3445 4756 +f 4756 3445 3593 +f 4756 3593 4890 +f 4890 3593 3825 +f 4890 3825 5020 +f 5020 3825 3945 +f 5020 3945 5152 +f 5152 3945 3981 +f 5152 3981 5284 +f 5284 3981 4103 +f 5284 4103 5416 +f 5416 4103 4333 +f 5416 4333 5550 +f 5550 4333 4471 +f 5550 4471 5810 +f 5810 4471 4521 +f 5810 4521 5942 +f 5942 4521 4753 +f 5942 4753 6074 +f 6074 4753 4839 +f 6074 4839 6332 +f 6332 4839 4919 +f 6332 4919 6464 +f 6464 4919 5023 +f 6464 5023 6724 +f 6724 5023 5163 +f 6724 5163 7002 +f 7002 5163 5309 +f 7002 5309 7400 +f 7400 5309 5485 +f 7400 5485 7940 +f 7940 5485 5573 +f 7940 5573 7944 +f 7944 5573 5795 +f 7944 5795 7948 +f 7948 5795 5908 +f 7948 5908 7952 +f 7952 5908 6039 +f 7952 6039 7956 +f 7956 6039 6199 +f 7956 6199 7960 +f 7960 6199 6287 +f 7960 6287 7962 +f 7962 6287 6445 +f 7962 6445 7966 +f 7966 6445 6479 +f 7966 6479 7970 +f 7970 6479 6635 +f 7970 6635 7976 +f 7976 6635 6849 +f 7976 6849 7980 +f 7980 6849 6981 +f 7980 6981 7982 +f 7982 6981 7013 +f 7982 7013 7988 +f 7988 7013 7157 +f 7988 7157 7990 +f 7990 7157 7305 +f 7990 7305 7994 +f 7994 7305 7511 +f 7994 7511 7998 +f 7998 7511 7541 +f 7998 7541 8002 +f 8002 7541 7701 +f 8002 7701 8008 +f 8008 7701 7781 +f 8008 7781 8009 +f 8009 7781 7901 diff --git a/tutorials/mesh/moveDynamicMesh/bendJunction/constant/triSurface/Inlet.obj b/tutorials/mesh/moveDynamicMesh/bendJunction/constant/triSurface/Inlet.obj new file mode 100644 index 0000000000000000000000000000000000000000..aa3fbb7ccefb306e1000298945a69d7f5bf2af2a --- /dev/null +++ b/tutorials/mesh/moveDynamicMesh/bendJunction/constant/triSurface/Inlet.obj @@ -0,0 +1,382 @@ +# Wavefront OBJ file +# Regions: +# 0 CATIASTL +# +# points : 188 +# triangles : 186 +# +v -117.911 9.79717e-15 31.5765 +v -117.926 2.6732 31.6185 +v -117.926 -2.6732 31.6185 +v -117.972 5.34341 31.7443 +v -117.972 -5.34341 31.7443 +v -118.048 8.00766 31.954 +v -118.048 -8.00766 31.954 +v -118.155 10.663 32.2472 +v -118.155 -10.663 32.2472 +v -118.292 13.3063 32.6236 +v -118.292 -13.3063 32.6236 +v -118.459 15.9349 33.0829 +v -118.459 -15.9349 33.0829 +v -118.656 18.5456 33.6244 +v -118.656 -18.5456 33.6244 +v -118.883 21.1356 34.2475 +v -118.883 -21.1356 34.2475 +v -119.139 23.702 34.9517 +v -119.139 -23.702 34.9517 +v -119.425 26.242 35.736 +v -119.425 -26.242 35.736 +v -119.739 28.7526 36.5996 +v -119.739 -28.7526 36.5996 +v -120.082 31.2311 37.5416 +v -120.082 -31.2311 37.5416 +v -120.453 33.6748 38.561 +v -120.453 -33.6748 38.561 +v -120.852 36.0808 39.6564 +v -120.852 -36.0808 39.6564 +v -121.277 38.4465 40.8268 +v -121.277 -38.4465 40.8268 +v -121.73 40.7693 42.0708 +v -121.73 -40.7693 42.0708 +v -122.209 43.0466 43.3871 +v -122.209 -43.0466 43.3871 +v -122.714 45.2758 44.7742 +v -122.714 -45.2758 44.7742 +v -123.244 47.4544 46.2304 +v -123.244 -47.4544 46.2304 +v -123.799 49.58 47.7543 +v -123.799 -49.58 47.7543 +v -124.378 51.6502 49.344 +v -124.378 -51.6502 49.344 +v -124.979 53.6628 50.9979 +v -124.979 -53.6628 50.9979 +v -125.604 55.6154 52.714 +v -125.604 -55.6154 52.714 +v -126.251 57.5059 54.4905 +v -126.251 -57.5059 54.4905 +v -126.919 59.3322 56.3254 +v -126.919 -59.3322 56.3254 +v -127.607 61.0922 58.2165 +v -127.607 -61.0922 58.2165 +v -128.315 62.784 60.1619 +v -128.315 -62.784 60.1619 +v -129.042 64.4056 62.1594 +v -129.042 -64.4056 62.1594 +v -129.787 65.9553 64.2066 +v -129.787 -65.9553 64.2066 +v -130.549 67.4314 66.3013 +v -130.549 -67.4314 66.3013 +v -131.328 68.8321 68.4412 +v -131.328 -68.8321 68.4412 +v -132.123 70.156 70.6239 +v -132.123 -70.156 70.6239 +v -132.932 71.4015 72.847 +v -132.932 -71.4015 72.847 +v -133.755 72.5673 75.1079 +v -133.755 -72.5673 75.1079 +v -134.591 73.652 77.4042 +v -134.591 -73.652 77.4042 +v -135.438 74.6544 79.7333 +v -135.438 -74.6544 79.7333 +v -136.297 75.5735 82.0925 +v -136.297 -75.5735 82.0925 +v -137.166 76.4082 84.4792 +v -137.166 -76.4082 84.4792 +v -138.044 77.1575 86.8909 +v -138.044 -77.1575 86.8909 +v -138.929 77.8207 89.3247 +v -138.929 -77.8207 89.3247 +v -139.822 78.3969 91.778 +v -139.822 -78.3969 91.778 +v -140.721 78.8856 94.248 +v -140.721 -78.8856 94.248 +v -141.625 79.2862 96.732 +v -141.625 -79.2862 96.732 +v -142.533 79.5982 99.2271 +v -142.533 -79.5982 99.2271 +v -143.445 79.8214 101.731 +v -143.445 -79.8214 101.731 +v -144.358 79.9553 104.24 +v -144.358 -79.9553 104.24 +v -145.272 80 106.752 +v -145.272 -80 106.752 +v -146.187 79.9553 109.264 +v -146.187 -79.9553 109.264 +v -147.1 79.8214 111.773 +v -147.1 -79.8214 111.773 +v -148.011 79.5982 114.277 +v -148.011 -79.5982 114.277 +v -148.919 79.2862 116.772 +v -148.919 -79.2862 116.772 +v -149.823 78.8856 119.256 +v -149.823 -78.8856 119.256 +v -150.722 78.3969 121.726 +v -150.722 -78.3969 121.726 +v -151.615 77.8207 124.179 +v -151.615 -77.8207 124.179 +v -152.501 77.1575 126.613 +v -152.501 -77.1575 126.613 +v -153.379 76.4082 129.025 +v -153.379 -76.4082 129.025 +v -154.248 75.5735 131.411 +v -154.248 -75.5735 131.411 +v -155.106 74.6544 133.77 +v -155.106 -74.6544 133.77 +v -155.954 73.652 136.1 +v -155.954 -73.652 136.1 +v -156.79 72.5673 138.396 +v -156.79 -72.5673 138.396 +v -157.613 71.4015 140.657 +v -157.613 -71.4015 140.657 +v -158.422 70.156 142.88 +v -158.422 -70.156 142.88 +v -159.216 68.8321 145.062 +v -159.216 -68.8321 145.062 +v -159.995 67.4314 147.202 +v -159.995 -67.4314 147.202 +v -160.758 65.9553 149.297 +v -160.758 -65.9553 149.297 +v -161.503 64.4056 151.344 +v -161.503 -64.4056 151.344 +v -162.23 62.784 153.342 +v -162.23 -62.784 153.342 +v -162.938 61.0922 155.287 +v -162.938 -61.0922 155.287 +v -163.626 59.3322 157.178 +v -163.626 -59.3322 157.178 +v -164.294 57.5059 159.013 +v -164.294 -57.5059 159.013 +v -164.941 55.6154 160.79 +v -164.941 -55.6154 160.79 +v -165.565 53.6628 162.506 +v -165.565 -53.6628 162.506 +v -166.167 51.6502 164.16 +v -166.167 -51.6502 164.16 +v -166.746 49.58 165.749 +v -166.746 -49.58 165.749 +v -167.3 47.4544 167.273 +v -167.3 -47.4544 167.273 +v -167.83 45.2758 168.73 +v -167.83 -45.2758 168.73 +v -168.335 43.0466 170.117 +v -168.335 -43.0466 170.117 +v -168.814 40.7693 171.433 +v -168.814 -40.7693 171.433 +v -169.267 38.4465 172.677 +v -169.267 -38.4465 172.677 +v -169.693 36.0808 173.847 +v -169.693 -36.0808 173.847 +v -170.092 33.6748 174.943 +v -170.092 -33.6748 174.943 +v -170.463 31.2311 175.962 +v -170.463 -31.2311 175.962 +v -170.806 28.7526 176.904 +v -170.806 -28.7526 176.904 +v -171.12 26.242 177.768 +v -171.12 -26.242 177.768 +v -171.405 23.702 178.552 +v -171.405 -23.702 178.552 +v -171.662 21.1356 179.256 +v -171.662 -21.1356 179.256 +v -171.889 18.5456 179.879 +v -171.889 -18.5456 179.879 +v -172.086 15.9349 180.421 +v -172.086 -15.9349 180.421 +v -172.253 13.3063 180.88 +v -172.253 -13.3063 180.88 +v -172.39 10.663 181.257 +v -172.39 -10.663 181.257 +v -172.497 8.00766 181.55 +v -172.497 -8.00766 181.55 +v -172.573 5.34341 181.759 +v -172.573 -5.34341 181.759 +v -172.619 2.6732 181.885 +v -172.619 -2.6732 181.885 +v -172.634 0 181.927 +g CATIASTL +f 92 96 94 +f 96 92 98 +f 98 92 90 +f 98 90 100 +f 100 90 88 +f 100 88 102 +f 102 88 86 +f 102 86 104 +f 104 86 84 +f 104 84 106 +f 106 84 82 +f 106 82 108 +f 108 82 80 +f 108 80 110 +f 110 80 78 +f 110 78 112 +f 112 78 76 +f 112 76 114 +f 114 76 74 +f 114 74 116 +f 116 74 72 +f 116 72 118 +f 118 72 70 +f 118 70 120 +f 120 70 68 +f 120 68 122 +f 122 68 66 +f 122 66 124 +f 124 66 64 +f 124 64 126 +f 126 64 62 +f 126 62 128 +f 128 62 60 +f 128 60 130 +f 130 60 58 +f 130