diff --git a/applications/solvers/compressible/rhoCentralFoam/Make/options b/applications/solvers/compressible/rhoCentralFoam/Make/options index b6ede7054d401f43bdd6b777835c59bcfefd4f50..4714ca611c784d57fd6b598ba1f3b148a36dbcce 100644 --- a/applications/solvers/compressible/rhoCentralFoam/Make/options +++ b/applications/solvers/compressible/rhoCentralFoam/Make/options @@ -2,11 +2,10 @@ EXE_INC = \ -I$(LIB_SRC)/finiteVolume/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/specie/lnInclude \ - -IBCs/lnInclude \ + -IBCs/lnInclude \ -I$(LIB_SRC)/sampling/lnInclude EXE_LIBS = \ -lfiniteVolume \ -lbasicThermophysicalModels \ - -lspecie \ - -L$(FOAM_USER_LIBBIN) \ + -lspecie \ -lrhoCentralFoam diff --git a/applications/utilities/mesh/generation/blockMesh/blockMeshApp.C b/applications/utilities/mesh/generation/blockMesh/blockMeshApp.C index 1d034714efe91a489d0f6a90b5f8c2d67988ea6c..b4bd379d759a4f7f033010b6270efd41baf06559 100644 --- a/applications/utilities/mesh/generation/blockMesh/blockMeshApp.C +++ b/applications/utilities/mesh/generation/blockMesh/blockMeshApp.C @@ -348,7 +348,8 @@ int main(int argc, char *argv[]) << exit(FatalError); } - Info<< nl << "end" << endl; + Info<< nl << "End" << endl; + return 0; } diff --git a/applications/utilities/postProcessing/dataConversion/foamToEnsight/foamToEnsight.C b/applications/utilities/postProcessing/dataConversion/foamToEnsight/foamToEnsight.C index 881bb4b05a3ae7a5da76a3f6a500e68d7134bd3d..fc0c3db61cbc4e968edb040fe328a0c1fc66f41c 100644 --- a/applications/utilities/postProcessing/dataConversion/foamToEnsight/foamToEnsight.C +++ b/applications/utilities/postProcessing/dataConversion/foamToEnsight/foamToEnsight.C @@ -492,6 +492,8 @@ int main(int argc, char *argv[]) delete ensightCaseFilePtr; } + Info<< "End\n" << endl; + return 0; } diff --git a/applications/utilities/postProcessing/dataConversion/foamToGMV/foamToGMV.C b/applications/utilities/postProcessing/dataConversion/foamToGMV/foamToGMV.C index 6c7e23ebaef33f6737fa31a2aa18e463d578ae8e..66d4b6e43e79fc6ce9b67d447107d38cfcbc8dc7 100644 --- a/applications/utilities/postProcessing/dataConversion/foamToGMV/foamToGMV.C +++ b/applications/utilities/postProcessing/dataConversion/foamToGMV/foamToGMV.C @@ -88,7 +88,7 @@ int main(int argc, char *argv[]) } } - Info << nl << "Translation Complete." << nl; + Info<< "\nEnd\n" << endl; return 0; } diff --git a/applications/utilities/postProcessing/foamCalc/foamCalc.C b/applications/utilities/postProcessing/foamCalc/foamCalc.C index 717a63e1ec912573e486211189600727176b9106..c673ed24552a2ecbeb0fe5204db77a98193da24f 100644 --- a/applications/utilities/postProcessing/foamCalc/foamCalc.C +++ b/applications/utilities/postProcessing/foamCalc/foamCalc.C @@ -84,6 +84,8 @@ int main(int argc, char *argv[]) utility().tryPostCalc(args, runTime, mesh); + Info<< "End\n" << endl; + return 0; } diff --git a/applications/utilities/postProcessing/velocityField/Co/Co.C b/applications/utilities/postProcessing/velocityField/Co/Co.C index 23d7b008a7d3dddd22b4f7f736975d71e7ec4c2a..2faa212583c2848d3248c3f499c2c9ee972f611b 100644 --- a/applications/utilities/postProcessing/velocityField/Co/Co.C +++ b/applications/utilities/postProcessing/velocityField/Co/Co.C @@ -179,6 +179,8 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh) { Info<< " No phi" << endl; } + + Info<< "\nEnd\n" << endl; } // ************************************************************************* // diff --git a/applications/utilities/postProcessing/velocityField/Lambda2/Lambda2.C b/applications/utilities/postProcessing/velocityField/Lambda2/Lambda2.C index 0b42de1404ab4f0b9bb5ea3a07a85ddecbe1b079..0b64ebd163337afdeb4527a3a4bf9d2f25dd2486 100644 --- a/applications/utilities/postProcessing/velocityField/Lambda2/Lambda2.C +++ b/applications/utilities/postProcessing/velocityField/Lambda2/Lambda2.C @@ -1,4 +1,4 @@ -/*---------------------------------------------------------------------------*\ +/*---------------------------------------------------------------------------* \ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | @@ -78,6 +78,8 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh) { Info<< " No U" << endl; } + + Info<< "\nEnd\n" << endl; } diff --git a/applications/utilities/postProcessing/velocityField/Mach/Mach.C b/applications/utilities/postProcessing/velocityField/Mach/Mach.C index 2e7c517e9d0358f7bbdb37ea0e121384b755f356..cec41457f35ffcc44b4710d30ed5ad3f7612bf75 100644 --- a/applications/utilities/postProcessing/velocityField/Mach/Mach.C +++ b/applications/utilities/postProcessing/velocityField/Mach/Mach.C @@ -134,6 +134,8 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh) { Info<< " Missing U or T" << endl; } + + Info<< "\nEnd\n" << endl; } diff --git a/applications/utilities/postProcessing/velocityField/Pe/Pe.C b/applications/utilities/postProcessing/velocityField/Pe/Pe.C index 05c9ca1a0d2488dcd717df604e96f230f9cb9c7b..0af52d405afb7239200be8ef7b057a026ffb483d 100644 --- a/applications/utilities/postProcessing/velocityField/Pe/Pe.C +++ b/applications/utilities/postProcessing/velocityField/Pe/Pe.C @@ -1,4 +1,4 @@ -/*---------------------------------------------------------------------------*\ +/*---------------------------------------------------------------------------* \ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | @@ -361,6 +361,9 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh) { Info<< " No phi" << endl; } + + Info<< "\nEnd\n" << endl; } + // ************************************************************************* // diff --git a/applications/utilities/postProcessing/velocityField/Q/Q.C b/applications/utilities/postProcessing/velocityField/Q/Q.C index 34a09790d145896619e846f2e33d42bf379f9a00..08c214a394adf08034b8a28f9ea424f90e3c52fb 100644 --- a/applications/utilities/postProcessing/velocityField/Q/Q.C +++ b/applications/utilities/postProcessing/velocityField/Q/Q.C @@ -1,4 +1,4 @@ -/*---------------------------------------------------------------------------*\ +/*---------------------------------------------------------------------------* \ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | @@ -105,6 +105,9 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh) { Info<< " No U" << endl; } + + Info<< "\nEnd\n" << endl; } + // ************************************************************************* // diff --git a/applications/utilities/postProcessing/velocityField/enstrophy/enstrophy.C b/applications/utilities/postProcessing/velocityField/enstrophy/enstrophy.C index 96ccb4b9079920f86d3b5b5304deb2aaff9af349..d510ee3849a8dc950b4bb1221d8dc8d46b116957 100644 --- a/applications/utilities/postProcessing/velocityField/enstrophy/enstrophy.C +++ b/applications/utilities/postProcessing/velocityField/enstrophy/enstrophy.C @@ -80,6 +80,8 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh) { Info<< " No U" << endl; } + + Info<< "\nEnd\n" << endl; } diff --git a/applications/utilities/postProcessing/velocityField/flowType/flowType.C b/applications/utilities/postProcessing/velocityField/flowType/flowType.C index 20e425864d29573d60ace929691537770cc93e91..343ff0517d6bf0f116a8ea9255d42bd187c16a48 100644 --- a/applications/utilities/postProcessing/velocityField/flowType/flowType.C +++ b/applications/utilities/postProcessing/velocityField/flowType/flowType.C @@ -1,4 +1,4 @@ -/*---------------------------------------------------------------------------*\ +/*---------------------------------------------------------------------------* \ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | @@ -87,6 +87,8 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh) { Info<< " No U" << endl; } + + Info<< "\nEnd\n" << endl; } diff --git a/applications/utilities/postProcessing/velocityField/streamFunction/streamFunction.C b/applications/utilities/postProcessing/velocityField/streamFunction/streamFunction.C index 68d4c8d6980891bb15dd73206a01a82c2e47804f..44ab386d9fa5b5c1682eab319aa28c72b30b0b6e 100644 --- a/applications/utilities/postProcessing/velocityField/streamFunction/streamFunction.C +++ b/applications/utilities/postProcessing/velocityField/streamFunction/streamFunction.C @@ -1,4 +1,4 @@ -/*---------------------------------------------------------------------------*\ +/*---------------------------------------------------------------------------* \ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | @@ -460,7 +460,7 @@ int main(int argc, char *argv[]) } } - Info<< "End\n" << endl; + Info<< "\nEnd\n" << endl; return 0; } diff --git a/applications/utilities/postProcessing/velocityField/uprime/uprime.C b/applications/utilities/postProcessing/velocityField/uprime/uprime.C index c1f7071f744d1cb2e8ba9260a257f50a5839e5e6..54012aef9a40f3203f4710c068a2f5d9f98c46e3 100644 --- a/applications/utilities/postProcessing/velocityField/uprime/uprime.C +++ b/applications/utilities/postProcessing/velocityField/uprime/uprime.C @@ -1,4 +1,4 @@ -/*---------------------------------------------------------------------------*\ +/*---------------------------------------------------------------------------* \ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | @@ -80,6 +80,9 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh) { Info<< " No k" << endl; } + + Info<< "\nEnd\n" << endl; } + // ************************************************************************* // diff --git a/applications/utilities/postProcessing/velocityField/vorticity/vorticity.C b/applications/utilities/postProcessing/velocityField/vorticity/vorticity.C index 3b4a85ca3e603927a8fed3b3257ce64b6d36ff07..e59384f3c07daa58f0cf162caa0469a710aacdb8 100644 --- a/applications/utilities/postProcessing/velocityField/vorticity/vorticity.C +++ b/applications/utilities/postProcessing/velocityField/vorticity/vorticity.C @@ -1,4 +1,4 @@ -/*---------------------------------------------------------------------------*\ +/*---------------------------------------------------------------------------* \ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | @@ -93,6 +93,9 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh) { Info<< " No U" << endl; } + + Info<< "\nEnd\n" << endl; } + // ************************************************************************* // diff --git a/bin/tools/CleanFunctions b/bin/tools/CleanFunctions index e7a5da07536e87ae69fe6b9f63ac26b83048ea47..4a2015febfd45def70f081c9752b1cb17faa8fdf 100644 --- a/bin/tools/CleanFunctions +++ b/bin/tools/CleanFunctions @@ -61,12 +61,17 @@ cleanTimeDirectories () cleanCase () { cleanTimeDirectories + rm -rf processor* > /dev/null 2>&1 + rm -rf probes* > /dev/null 2>&1 + rm -rf forces* > /dev/null 2>&1 - rm -rf constant/polyMesh/{allOwner*,cell*,face*,meshModifiers*} \ + rm -rf system/machines \ + constant/polyMesh/{allOwner*,cell*,face*,meshModifiers*} \ constant/polyMesh/{owner*,neighbour*,point*,edge*} \ constant/polyMesh/{cellLevel*,pointLevel*,refinementHistory*,surfaceIndex*} \ - constant/{cellLevel*,pointLevel*} \ + constant/{cellToRegion,cellLevel*,pointLevel*} \ constant/polyMesh/sets/ \ + VTK \ > /dev/null 2>&1 for f in `find . -name "*Dict"` @@ -76,13 +81,6 @@ cleanCase () done } -cleanParallelCase () -{ - cleanCase - - rm -rf processor* > /dev/null 2>&1 -} - removeCase () { echo "Removing $case case" diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/0/alpha1 b/tutorials/compressible/rhoPisoFoam/les/pitzDaily/0/alphaSgs similarity index 66% rename from tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/0/alpha1 rename to tutorials/compressible/rhoPisoFoam/les/pitzDaily/0/alphaSgs index 8e28c332b7e7f109d001bb341f718c6495a7d660..5ce0dfcc52228b9e21d887207d38d3fc41b2d1d3 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/0/alpha1 +++ b/tutorials/compressible/rhoPisoFoam/les/pitzDaily/0/alphaSgs @@ -1,8 +1,8 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 1.5 | -| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile @@ -10,28 +10,42 @@ FoamFile version 2.0; format ascii; class volScalarField; - object alpha1; + location "0"; + object alphat; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [0 0 0 0 0 0 0]; +dimensions [1 -1 -1 0 0 0 0]; internalField uniform 0; boundaryField { - front + inlet { - type empty; + type zeroGradient; } - back + + outlet { - type empty; + type zeroGradient; } - walls + + upperWall { type zeroGradient; } + + lowerWall + { + type zeroGradient; + } + + frontAndBack + { + type empty; + } } + // ************************************************************************* // diff --git a/tutorials/compressible/rhoPisoFoam/les/pitzDaily/0/muSgs b/tutorials/compressible/rhoPisoFoam/les/pitzDaily/0/muSgs index 242527194d477f48e1c7362847c5762eaf01f4a4..334ab2c339bd768b26d4b392768b8f29426d5446 100644 --- a/tutorials/compressible/rhoPisoFoam/les/pitzDaily/0/muSgs +++ b/tutorials/compressible/rhoPisoFoam/les/pitzDaily/0/muSgs @@ -20,27 +20,27 @@ internalField uniform 0; boundaryField { - inlet + inlet { type zeroGradient; } - outlet + outlet { type zeroGradient; } - upperWall + upperWall { type zeroGradient; } - lowerWall + lowerWall { type zeroGradient; } - frontAndBack + frontAndBack { type empty; } diff --git a/tutorials/compressible/rhoPisoFoam/les/pitzDaily/constant/polyMesh/boundary b/tutorials/compressible/rhoPisoFoam/les/pitzDaily/constant/polyMesh/boundary index 9a319af977dd86b1c9b4eee2523439c085d7c4cc..313dcceba1abd7b93d57320c4c674f1734692506 100644 --- a/tutorials/compressible/rhoPisoFoam/les/pitzDaily/constant/polyMesh/boundary +++ b/tutorials/compressible/rhoPisoFoam/les/pitzDaily/constant/polyMesh/boundary @@ -1,8 +1,8 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 1.5 | -| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile @@ -10,6 +10,7 @@ FoamFile version 2.0; format ascii; class polyBoundaryMesh; + location "constant/polyMesh"; object boundary; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/tutorials/compressible/rhoPisoFoam/les/pitzDaily/system/controlDict b/tutorials/compressible/rhoPisoFoam/les/pitzDaily/system/controlDict index 4bcaa9191c53d4ffe80ed303771cda5124184d9f..685eac20a35cdf645a26bf01bac287d439f64b4a 100644 --- a/tutorials/compressible/rhoPisoFoam/les/pitzDaily/system/controlDict +++ b/tutorials/compressible/rhoPisoFoam/les/pitzDaily/system/controlDict @@ -45,6 +45,11 @@ timePrecision 6; runTimeModifiable yes; +adjustTimeStep no; + +maxCo 0.5; + + functions { fieldAverage1 diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/Allclean b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/Allclean index 5622060c8ee23c89d8743d2217de1c3b7381e6b0..1cc972be26a9fa8c309f14c3c0d52659e62d236c 100755 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/Allclean +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/Allclean @@ -5,5 +5,3 @@ cleanCase rm -rf 0/lagrangian 0/dsmcSigmaTcRMax -rm -rf processor* -rm -f system/machines \ No newline at end of file diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/Allclean b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/Allclean index a81bd945995ae2476d7d49837ef74e909c5053c9..1cc972be26a9fa8c309f14c3c0d52659e62d236c 100755 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/Allclean +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/Allclean @@ -5,6 +5,3 @@ cleanCase rm -rf 0/lagrangian 0/dsmcSigmaTcRMax -rm -rf processor* -rm -rf forces1 -rm -f system/machines \ No newline at end of file diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/Allrun b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/Allrun index 79dc3f4b95e1f1dff9646fd6dd1ba9fa3bbae4ac..79d959124fc56658dbdff086e4ccb22bdc0304e8 100755 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/Allrun +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/Allrun @@ -4,6 +4,5 @@ runApplication blockMesh runApplication snappyHexMesh -overwrite -runApplication setFields runApplication buoyantBoussinesqSimpleFoam diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/snappyHexMeshDict b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/snappyHexMeshDict index d31010ace7ef8ced9166f5e0bd4e2ec0ad4c347c..019b09810f23a644aff8b9f6446bddf2dfe24d5c 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/snappyHexMeshDict +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/snappyHexMeshDict @@ -10,9 +10,8 @@ FoamFile version 2.0; format ascii; class dictionary; - object autoHexMeshDict; + object snappyHexMeshDict; } - // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // Which of the steps to run @@ -317,7 +316,6 @@ addLayersControls // Create buffer region for new layer terminations nBufferCellsNoExtrude 0; - // Overall max number of layer addition iterations nLayerIter 50; } @@ -391,4 +389,5 @@ debug 0; // Note: the write tolerance needs to be higher than this. mergeTolerance 1E-6; + // ************************************************************************* // diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/Allclean b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/Allclean deleted file mode 100755 index 2954f18bad457db6c7a7a287a2bbeaf5524e6f71..0000000000000000000000000000000000000000 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/Allclean +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -# Source tutorial clean functions -. $WM_PROJECT_DIR/bin/tools/CleanFunctions - -cleanCase -rm -rf VTK -rm -rf constant/cellToRegion constant/polyMesh/sets - -# ----------------------------------------------------------------------------- diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomAir/g b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomAir/g index 4cada4ce7a6e9b9634aa323ae3a3e5168db1576c..2b77c937a2531f9bb7629ad8f4acc7dd7ff29bfb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomAir/g +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/bottomAir/g @@ -10,11 +10,13 @@ FoamFile version 2.0; format ascii; class uniformDimensionedVectorField; + location "constant"; object g; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -2 0 0 0 0]; -value (0 -9.81 0); +value ( 0 -9.81 0 ); + // ************************************************************************* // diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/topAir/g b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/topAir/g deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/topAir/g b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/topAir/g new file mode 120000 index 0000000000000000000000000000000000000000..fe0384ff08b952c55e7811f2dc2643afaf6fe706 --- /dev/null +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/topAir/g @@ -0,0 +1 @@ +../bottomAir/g \ No newline at end of file diff --git a/tutorials/incompressible/pisoFoam/les/pitzDaily/system/controlDict b/tutorials/incompressible/pisoFoam/les/pitzDaily/system/controlDict index 03fbddb7a8375fc4806a4441e0151969e3da6944..98d278dccc51f76eea35405e9ca8cdbf017e9342 100644 --- a/tutorials/incompressible/pisoFoam/les/pitzDaily/system/controlDict +++ b/tutorials/incompressible/pisoFoam/les/pitzDaily/system/controlDict @@ -47,10 +47,10 @@ runTimeModifiable yes; functions { - probes1 + probes { type probes; - functionObjectLibs ( "libsampling.so" ); + functionObjectLibs ("libsampling.so"); enabled true; outputControl timeStep; outputInterval 1; @@ -74,7 +74,7 @@ functions fieldAverage1 { type fieldAverage; - functionObjectLibs ( "libfieldFunctionObjects.so" ); + functionObjectLibs ("libfieldFunctionObjects.so"); enabled true; outputControl outputTime; fields diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict b/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict index 1006a1e1b6a097c15e9a2b472b67595e1979fa09..b3c3a08e9e91d0c6f3a28cd8d781e0edc5e526c9 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict +++ b/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict @@ -1,11 +1,10 @@ -/*---------------------------------------------------------------------------*\ +/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 1.0 | -| \\ / A nd | Web: http://www.openfoam.org | +| \\ / O peration | Version: 1.5 | +| \\ / A nd | Web: http://www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ - FoamFile { version 2.0; @@ -13,7 +12,6 @@ FoamFile class dictionary; object snappyHexMeshDict; } - // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // Which of the steps to run @@ -176,6 +174,8 @@ snapControls // Settings for the layer addition. addLayersControls { + relativeSizes true; + // Per final patch (so not geometry!) the layer information layers { @@ -460,7 +460,7 @@ addLayersControls // is the // thickness of the layer furthest away from the wall. // Relative to undistorted size of cell outside layer. - finalLayerRatio 0.3; + finalLayerThickness 0.3; //- Minimum thickness of cell layer. If for any reason layer // cannot be above minThickness do not add layer. @@ -504,6 +504,9 @@ addLayersControls // Create buffer region for new layer terminations nBufferCellsNoExtrude 0; + + // Overall max number of layer addition iterations + nLayerIter 50; } diff --git a/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/0-orig/p b/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/0-orig/p index b3a944b216d11d7644902b0a094403caa9507154..5149e924344f890408a186326f93225045942185 100644 --- a/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/0-orig/p +++ b/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/0-orig/p @@ -22,12 +22,14 @@ boundaryField { walls { - type zeroGradient; + type buoyantPressure; + value uniform 0; } obstacle { - type zeroGradient; + type buoyantPressure; + value uniform 0; } atmosphere diff --git a/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/0/p b/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/0/p index b3a944b216d11d7644902b0a094403caa9507154..5149e924344f890408a186326f93225045942185 100644 --- a/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/0/p +++ b/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/0/p @@ -22,12 +22,14 @@ boundaryField { walls { - type zeroGradient; + type buoyantPressure; + value uniform 0; } obstacle { - type zeroGradient; + type buoyantPressure; + value uniform 0; } atmosphere diff --git a/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/VTK/c0/c0_1.vtk b/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/VTK/c0/c0_1.vtk deleted file mode 100644 index af03eba46538789965e6f8ab0137eb890e833a2b..0000000000000000000000000000000000000000 Binary files a/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/VTK/c0/c0_1.vtk and /dev/null differ diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/0/p b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/0/p index c69b424dc75602864a806fc737b9f17d4017de74..db8d5ad9f6314775f468015c7925b17630f960a8 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/0/p +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/0/p @@ -30,7 +30,8 @@ boundaryField } walls { - type zeroGradient; + type buoyantPressure; + value uniform 0; } } diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/system/controlDict b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/system/controlDict index 2da46048d747ed03cd3cb0a3f6cee8a97bf8a884..b8d66af38a39bd74446f93916ec3da797f4754a6 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/system/controlDict +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/system/controlDict @@ -56,7 +56,7 @@ functions probes { type probes; - functionObjectLibs ( "libsampling.so" ); + functionObjectLibs ("libsampling.so"); outputControl timeStep; outputInterval 1; probeLocations @@ -73,7 +73,7 @@ functions wallPressure { type surfaces; - functionObjectLibs ( "libsampling.so" ); + functionObjectLibs ("libsampling.so"); outputControl timeStep; outputInterval 10; surfaceFormat raw; diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/0/p b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/0/p index c69b424dc75602864a806fc737b9f17d4017de74..db8d5ad9f6314775f468015c7925b17630f960a8 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/0/p +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/0/p @@ -30,7 +30,8 @@ boundaryField } walls { - type zeroGradient; + type buoyantPressure; + value uniform 0; } } diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/polyMesh/blockMeshDict b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/polyMesh/blockMeshDict index c7d3ee2dcd51f0c5fa1b35f42cdbcc6d79e30493..4a938bd66e4089a28194757029873e21e985d5da 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/polyMesh/blockMeshDict +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/polyMesh/blockMeshDict @@ -15,9 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // General m4 macros - - - + diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/polyMesh/boundary b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/polyMesh/boundary index 53b37c41f6d9efc89d3a51c6c2425a165026e2dc..067ff53cc9865662f18fb8c2f2fb21a1e3975db0 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/polyMesh/boundary +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/polyMesh/boundary @@ -1,8 +1,8 @@ /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 1.5 | -| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/system/controlDict b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/system/controlDict index c0adba94fbaae1c9bc3bd2d612f5078e18a083b6..b8d66af38a39bd74446f93916ec3da797f4754a6 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/system/controlDict +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/system/controlDict @@ -56,9 +56,9 @@ functions probes { type probes; - name probes; + functionObjectLibs ("libsampling.so"); outputControl timeStep; - outputInterval 10; + outputInterval 1; probeLocations ( ( 0 9.95 19.77 ) @@ -73,7 +73,7 @@ functions wallPressure { type surfaces; - functionObjectLibs ( "libsampling.so" ); + functionObjectLibs ("libsampling.so"); outputControl timeStep; outputInterval 10; surfaceFormat raw; @@ -81,6 +81,7 @@ functions ( p ); + surfaces ( walls diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/0/p b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/0/p index d27ad70eb9ed4cdf91ec9cf25222554b271898e7..ce3e974b7eed321b040b27d6ae3c7ac7f1234f0b 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/0/p +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/0/p @@ -22,7 +22,8 @@ boundaryField { walls { - type zeroGradient; + type buoyantPressure; + value uniform 0; } } diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/system/controlDict b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/system/controlDict index 08aaf802e19170ffa1b1cf9f97a25fbbe6f8355a..a3b08d083bb28e0fef209ccc9d0852b85c20d462 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/system/controlDict +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/system/controlDict @@ -56,7 +56,7 @@ functions probes { type probes; - name probes; + functionObjectLibs ("libsampling.so"); outputControl timeStep; outputInterval 1; probeLocations diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/0/p b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/0/p index d27ad70eb9ed4cdf91ec9cf25222554b271898e7..ce3e974b7eed321b040b27d6ae3c7ac7f1234f0b 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/0/p +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/0/p @@ -22,7 +22,8 @@ boundaryField { walls { - type zeroGradient; + type buoyantPressure; + value uniform 0; } } diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/system/controlDict b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/system/controlDict index 08aaf802e19170ffa1b1cf9f97a25fbbe6f8355a..a3b08d083bb28e0fef209ccc9d0852b85c20d462 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/system/controlDict +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/system/controlDict @@ -56,7 +56,7 @@ functions probes { type probes; - name probes; + functionObjectLibs ("libsampling.so"); outputControl timeStep; outputInterval 1; probeLocations diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/0/p b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/0/p index d27ad70eb9ed4cdf91ec9cf25222554b271898e7..ce3e974b7eed321b040b27d6ae3c7ac7f1234f0b 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/0/p +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/0/p @@ -22,7 +22,8 @@ boundaryField { walls { - type zeroGradient; + type buoyantPressure; + value uniform 0; } } diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/system/controlDict b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/system/controlDict index 08aaf802e19170ffa1b1cf9f97a25fbbe6f8355a..a3b08d083bb28e0fef209ccc9d0852b85c20d462 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/system/controlDict +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/system/controlDict @@ -56,7 +56,7 @@ functions probes { type probes; - name probes; + functionObjectLibs ("libsampling.so"); outputControl timeStep; outputInterval 1; probeLocations