- Aug 26, 2015
-
-
Henry Weller authored
and two-phase functionality separated from multiphase functionality
-
- Aug 22, 2015
-
-
Henry Weller authored
-
- Aug 20, 2015
-
-
Henry Weller authored
-
- Aug 19, 2015
-
-
Henry Weller authored
Resolved bug-report http://openfoam.org/mantisbt/view.php?id=1831
-
Henry Weller authored
Includes many contributions from Juho Peltola
-
- Aug 07, 2015
-
-
Henry Weller authored
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1816
-
- Aug 04, 2015
-
-
Henry Weller authored
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1794
-
- Aug 01, 2015
-
-
Henry Weller authored
Resolves bug-report http://openfoam.org/mantisbt/view.php?id=1805
-
- Jul 21, 2015
-
-
Henry Weller authored
to simplify construction of dimensionedScalar properties and avoid the duplication of the name string in the constructor call.
-
- Jul 20, 2015
-
-
Henry Weller authored
so that the specification of the name and dimensions are optional in property dictionaries. Update tutorials so that the name of the dimensionedScalar property is no longer duplicated but optional dimensions are still provided and are checked on read.
-
- Jul 19, 2015
-
-
Henry Weller authored
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1788
-
Henry Weller authored
-
- Jul 17, 2015
-
-
Henry Weller authored
Also removed __GNUC__ conditional compilation statements which are no longer needed.
-
- Jul 16, 2015
-
-
Henry Weller authored
The interfacial temperature is assumed equal to the saturation temperature. Only a single species is considered volatile and the other species to not affect the mass-transfer.
-
- Jul 15, 2015
-
-
Henry Weller authored
Added calls to setFluxRequired for p, p_rgh etc. in all solvers which avoids the need to add fluxRequired entries in fvSchemes dictionaries.
-
Henry Weller authored
Added calls to setFluxRequired for p in all incompressible solvers which avoids the need to add fluxRequired entries in fvSchemes dictionary. Will add calls to setFluxRequired to the rest of the solvers.
-
- Jul 04, 2015
-
-
Henry Weller authored
-
Henry Weller authored
Currently this is implemented only for the Antoine equation, for the other more complex models an iterative inversion from pressure to temperature is required.
-
- Jul 03, 2015
-
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
In preparation for adding the Tsat function
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
for consistency with the evaluation of the interface temperature.
-
- Jul 02, 2015
-
-
Henry Weller authored
-
Henry Weller authored
-
- Jul 01, 2015
-
-
Henry Weller authored
Generally this term has a VERY small effect on temperature, it is only important for low-speed buoyancy-dominated flows. Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1755 See also http://cfd.direct/openfoam/energy-equation/
-
- 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; } }
-