diff --git a/doc/cfdemSolverMultiphase.html b/doc/cfdemSolverMultiphase.html deleted file mode 100644 index 9e44a463..00000000 --- a/doc/cfdemSolverMultiphase.html +++ /dev/null @@ -1,24 +0,0 @@ - -
Description: -
-cfdemSolverMultiphase is a coupled CFD-DEM solver using the CFDEMcoupling framework. Based on the OpenFOAM solver multiphaseInterFoam(R)(*) it has functionality to simulate several (>2) fluids using the Volume of Fluid approach, coupled with the DEM code LIGGGHTS for solid particles. For more information see: -
-M. Vångö, S. Pirker, T. Lichtenegger, "Unresolved CFD–DEM modeling of multiphase flow in densely packed particle beds", Appl. Math. Model. (2018). -
-(*) This offering is not approved or endorsed by OpenCFD Limited, the producer of the OpenFOAM software and owner of the OPENFOAM® and OpenCFD® trade marks. OPENFOAM® is a registered trade mark of OpenCFD Limited, a wholly owned subsidiary of the ESI Group. -
-Syntax: -
-Defined in couplingProperties dictionary. -
-forceModels
-(
- gradPForceSmooth;
-);
-gradPForceSmoothProps
-{
- pFieldName "pressure";
- velocityFieldName "U";
- interpolation switch1;
- smoothingModel "smoothingModel";
-};
-
-Examples: -
-forceModels
-(
- gradPForceSmooth;
-);
-gradPForceSmoothProps
-{
- pFieldName "p_rgh";
- velocityFieldName "U";
- interpolation false;
- smoothingModel "temporalSmoothing";
- temporalSmoothingProps
- {
- lowerLimit 0.1;
- upperLimit 1e10;
- refField "p_rgh";
- smoothingStrength 1;
- }
-
-} --
Description: -
-The gradPForceSmooth model calculates the particle based pressure gradient force identically as the gradPForce model but allows smoothing of the pressure prior to the force calculation (without altering the original pressure). Any smoothing model can be used and does not have to be the same as specified in couplingProperties. Properties for the smoothing model has to be specified in a sub-dictionary within gradPForceSmoothProps. -
-Restrictions: -
-A volScalarField "pSmooth" MUST be specified in the initial time directory with appropriate boundary conditions! -
-Related commands: -
- - diff --git a/doc/smoothingModel_temporalSmoothing.html b/doc/smoothingModel_temporalSmoothing.html deleted file mode 100644 index efa3b35b..00000000 --- a/doc/smoothingModel_temporalSmoothing.html +++ /dev/null @@ -1,55 +0,0 @@ - -Syntax: -
-Defined in dictionary dependent on the application. -
-smoothingModel temporalSmoothing;
-temporalSmoothingProps
-{
- lowerLimit number1;
- upperLimit number2;
- refField referenceField;
- smoothingStrength smoothingControlParameter;
-}
-
-Examples: -
-temporalSmoothingProps
-{
- lowerLimit 0.1;
- upperLimit 1e10;
- referenceField "p";
- smoothingStrength 1;
-}
-
-Description: -
-The "temporalSmoothing" model is a smoothing model that utilizes temporal relaxation of a desired quantity. This model can be used to filter out high-frequency fluctuations (e.g. numerical noise) controlled via the control parameter smoothingStrength. Note that this model does NOT smooth the calculated fields, instead smoothing is performed on a separate (smooth) field which uses the calculated (un-smooth) field as a reference. Thus its usage is limited and CANNOT be used to smooth the exchange fields similar to the other smoothing models. For further information see Vångö et al., "Unresolved CFD–DEM modeling of multiphase flow in densely packed particle beds", Appl. Math. Model. (2018). -
-Restrictions: This model does NOT smooth the calculated fields and can therefore NOT be used as a general smoothing model to smoothen the exhchange fields. Attempting this will generate an error. -
-Related commands: -
- -