diff --git a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureRadCoupledMixed/turbulentTemperatureRadCoupledMixedFvPatchScalarField.H b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureRadCoupledMixed/turbulentTemperatureRadCoupledMixedFvPatchScalarField.H index 77365b2aa6..1676c71058 100644 --- a/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureRadCoupledMixed/turbulentTemperatureRadCoupledMixedFvPatchScalarField.H +++ b/src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/turbulentTemperatureRadCoupledMixed/turbulentTemperatureRadCoupledMixedFvPatchScalarField.H @@ -59,7 +59,7 @@ Description QrNbr Qr; // or none. Name of Qr field on neighbour region Qr Qr; // or none. Name of Qr field on local region thicknessLayers (0.1 0.2 0.3 0.4); - kappaLayers (1 2 3 4) + kappaLayers (1 2 3 4); value uniform 300; } \endverbatim diff --git a/src/postProcessing/functionObjects/field/regionSizeDistribution/regionSizeDistribution.H b/src/postProcessing/functionObjects/field/regionSizeDistribution/regionSizeDistribution.H index d89106bdde..8185c46b6b 100644 --- a/src/postProcessing/functionObjects/field/regionSizeDistribution/regionSizeDistribution.H +++ b/src/postProcessing/functionObjects/field/regionSizeDistribution/regionSizeDistribution.H @@ -69,10 +69,10 @@ Description maxDiameter 0.5e-4; minDiameter 0; setFormat gnuplot; - coordinateSystem + origin (0 0 0); + coordinateRoation { type cartesian; - origin (0 0 0); e3 (0 1 1); e1 (1 0 0); } @@ -91,7 +91,8 @@ Description maxDiameter | maximum region equivalent diameter | yes | minDiameter | minimum region equivalent diameter | no | 0 setFormat | writing format | yes | - coordinateSystem | transformation for vector fields | no | + origin | origin of local co-ordinate system | yes | + coordinateRoation | orientation of local co-ordinate system | no | log | Log to standard output | no | yes \endtable diff --git a/src/postProcessing/functionObjects/graphics/runTimePostProcessing/scene.C b/src/postProcessing/functionObjects/graphics/runTimePostProcessing/scene.C index 54b6257d82..75d2bfb6b4 100644 --- a/src/postProcessing/functionObjects/graphics/runTimePostProcessing/scene.C +++ b/src/postProcessing/functionObjects/graphics/runTimePostProcessing/scene.C @@ -348,8 +348,6 @@ bool Foam::scene::loop(vtkRenderer* renderer) currentFrameI_++; - position_ += dPosition_; - if (position_ > (1 + 0.5*dPosition_)) { WarningInFunction @@ -357,6 +355,8 @@ bool Foam::scene::loop(vtkRenderer* renderer) << endl; } + position_ += dPosition_; + if (currentFrameI_ < nFrameTotal_) { return true; diff --git a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/Allrun b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/Allrun index 29462ed538..0fed82661f 100755 --- a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/Allrun +++ b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/Allrun @@ -11,11 +11,11 @@ cp $FOAM_TUTORIALS/resources/geometry/motorBike.obj.gz constant/triSurface/ mkdir 0 runApplication blockMesh -cp system/decomposeParDict.hierarchical system/decomposeParDict -runApplication decomposePar +# cp system/decomposeParDict.hierarchical system/decomposeParDict +runApplication decomposePar -decomposeParDict system/decomposeParDict.hierarchical -cp system/decomposeParDict.ptscotch system/decomposeParDict -runParallel snappyHexMesh 8 -overwrite -parallel +# cp system/decomposeParDict.ptscotch system/decomposeParDict +runParallel snappyHexMesh 8 -decomposeParDict system/decomposeParDict.ptscotch -overwrite -parallel find . -type f -iname "*level*" -exec rm {} \;