- Jun 29, 2015
-
-
Henry Weller authored
-
- Jun 28, 2015
-
-
Henry Weller authored
Resolves additional report http://www.openfoam.org/mantisbt/view.php?id=1474
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
Now the specification of the LTS time scheme is simply: ddtSchemes { default localEuler; }
-
Henry Weller authored
Replaces LTSReactingParcelFoam and LTSCoalChemistryFoam Select LTS via the ddtScheme: ddtSchemes { default localEuler rDeltaT; }
-
- Jun 27, 2015
-
-
Henry Weller authored
Select LTS via the ddtScheme: ddtSchemes { default localEuler rDeltaT; }
-
Henry Weller authored
Select LTS via the ddtScheme: ddtSchemes { default localEuler rDeltaT; }
-
Henry Weller authored
Select LTS via the ddtScheme: ddtSchemes { default localEuler rDeltaT; }
-
Henry Weller authored
Select using the optional consistent true; setting in the PIMPLE dictionary of fvSolution. This option is generally only beneficial for cases run in PIMPLE-mode with a large maximum Courant number.
-
Henry Weller authored
See tutorials/compressible/rhoSimpleFoam/squareBend SIMPLE { nNonOrthogonalCorrectors 0; rhoMin 0.1; rhoMax 1.0; transonic yes; consistent yes; residualControl { p 1e-3; U 1e-4; e 1e-3; // possibly check turbulence fields "(k|epsilon|omega)" 1e-3; } } relaxationFactors { fields { p 1; rho 1; } equations { p 1; U 0.9; e 0.9; k 0.9; epsilon 0.9; } }
-
Henry Weller authored
e.g. in tutorials/compressible/rhoPimpleFoam/ras/angledDuctLTS PIMPLE { momentumPredictor yes; transonic no; nOuterCorrectors 50; nCorrectors 1; nNonOrthogonalCorrectors 0; consistent yes; rhoMin 0.5; rhoMax 2.0; residualControl { "(U|k|epsilon)" { relTol 0; tolerance 0.0001; } } turbOnFinalIterOnly off; } relaxationFactors { fields { "p.*" 0.9; "rho.*" 1; } equations { "U.*" 0.9; "h.*" 0.7; "(k|epsilon|omega).*" 0.8; } }
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
- Jun 26, 2015
-
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
Select LTS via the ddtScheme: ddtSchemes { default localEuler rDeltaT; } The LTS algorithm is currently controlled with the standard settings in controlDict, e.g.: maxCo 0.5; maxDeltaT 2e-8; with the addition of the optional rDeltaT smoothing coefficient: rDeltaTSmoothingCoeff 0.02; which defaults to 0.02. ddtSchemes { default localEuler rDeltaT; }
-
Henry Weller authored
LTS is selected by the ddt scheme e.g. in the tutorials/multiphase/interFoam/ras/DTCHull case: ddtSchemes { default localEuler rDeltaT; } LTSInterFoam is no longer needed now that interFoam includes LTS support.
-
Henry Weller authored
to support any number of phases
-
- Jun 25, 2015
-
-
Henry Weller authored
-
Henry Weller authored
correction in MovingPhaseModel<BasePhaseModel>::correct()
-
Henry Weller authored
-
Henry Weller authored
Patches provided by Timm Severin Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1764
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
to correspond to the phase dilatation rate.
-
Henry Weller authored
to support any number of phases
-
Henry Weller authored
to be phase-symmetric so that the results are independent of which phase-fraction is solved.
-
- Jun 24, 2015
-
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
//- Return the set of times selected based on the argList options // including support for \b -newTimes in which times are selected // if the file <fName> does not exist in the time directory. // Also set the runTime to the first instance or the // \c constant/ directory if no instances are specified or available static instantList select ( Time& runTime, const argList& args, const word& fName ); This is experimental functionality and currently on test in the yPlus post-processing utility.
-
- Jun 23, 2015
-
-
Henry Weller authored
With the SIMPLE "consistent" option and optimized relaxation factors this tutorial now converges in 210 iterations, previously with SIMPLE it took 950. Despite the increase in cost per time-step due to the increase in relaxation factors and number of solver iterations the speed-up is 3.5x.
-
Henry Weller authored
-