openfoam/applications/solvers/lagrangian
Mark Olesen 3d8a6a5433 ENH: use GeometricField clamp_min, clamp_max, clamp_range
- newer naming allows for less confusing code.
  Eg,
      max(lower)  ->  clamp_min(lower)
      min(upper)  ->  clamp_max(upper)

- prefer combined method, for few operations.
  Eg,
      max(lower) + min(upper) -> clamp_range(lower, upper)

  The updated naming also helps avoid some obvious coding errors.
  Eg,

     Re.min(1200.0);
     Re.max(18800.0);

  instead of
     Re.clamp_range(1200.0, 18800.0);

- can also use implicit conversion of zero_one to MinMax<Type> for
  this type of code:

      lambda_.clamp_range(zero_one{});
2023-02-21 10:05:26 +01:00
..
coalChemistryFoam ENH: use GeometricField clamp_min, clamp_max, clamp_range 2023-02-21 10:05:26 +01:00
DPMFoam ENH: enable custom input of U for devRhoReff and devReff 2021-08-05 12:40:47 +00:00
icoUncoupledKinematicParcelFoam ENH: Adding regionFaModels library to solvers 2021-07-16 16:38:06 +00:00
kinematicParcelFoam BUG: Corrected ddtCorr switch - see #2183 2021-08-17 15:36:34 +01:00
reactingParcelFoam ENH: use GeometricField clamp_min, clamp_max, clamp_range 2023-02-21 10:05:26 +01:00
simpleCoalParcelFoam ENH: use GeometricField clamp_min, clamp_max, clamp_range 2023-02-21 10:05:26 +01:00
sprayFoam ENH: use GeometricField clamp_min, clamp_max, clamp_range 2023-02-21 10:05:26 +01:00
uncoupledKinematicParcelFoam ENH: thermoTools: new library for thermophysics tools 2022-06-21 09:29:13 +01:00
lagrangianSolversDoc.H GIT: Header file updates 2019-10-31 14:48:44 +00:00