- Jun 30, 2015
-
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
- Jun 29, 2015
-
-
Henry Weller authored
-
- Jun 28, 2015
-
-
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
-
- 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
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
//- 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
-
Henry Weller authored
-
Henry Weller authored
to support laminar simulations in the new framework. Unfortunately this allows LES models to be instantiated although they are not compatible with steady-state simulations.
-
- Jun 19, 2015
-
-
Henry Weller authored
Select LTS via the ddtScheme: ddtSchemes { default localEuler rDeltaT; } The LTS algorithm is 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. For cases with reasonably uniform meshes like the forwardStep tutorial LTS does not provide much benefit but for cases with large variation in cell-size like the biconic25-55Run35 tutorial LTS provides significant speed-up to convergence particularly if started from uniform conditions.
-
- Jun 18, 2015
-
-
Henry Weller authored
Reverted changes proposed in http://openfoam.org/mantisbt/view.php?id=1548 as it adversely affects fixed-value BCs and is formulated to fix an issue with an unphysical case. Further analysis of the handling of fixed pressure outlet conditions as the Mach number approaches 1 is required.
-