- Sep 28, 2016
-
-
Henry Weller authored
Resolves bug-report http://bugs.openfoam.org/view.php?id=2273
-
- Sep 25, 2016
-
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
fvPatchFields: Constructors from dictionary now call the corresponding constructor of the fvPatchField base-class to ensure 'patchType' is set as specified. Required substantial change to the organization of the reading of the 'value' entry requiring careful testing and there may be some residual issues remaining. Please report any problems with the reading and initialization of patch fields. Resolves bug-report http://bugs.openfoam.org/view.php?id=2266
-
- Sep 24, 2016
-
-
Henry Weller authored
e.g. for the cavity tutorial the moving wall patch can be specified in terms of the block vertices as before: boundary ( movingWall { type wall; faces ( (3 7 6 2) ); } . . . or the new specification of the face as block 0, block face 3: boundary ( movingWall { type wall; faces ( (0 3) ); }
-
- Sep 22, 2016
-
-
Henry Weller authored
Resolves bug-report http://bugs.openfoam.org/view.php?id=2264
-
Henry Weller authored
-
Henry Weller authored
Patch contributed by Mattijs Janssens Resolves bug-report http://bugs.openfoam.org/view.php?id=1815
-
- Sep 21, 2016
-
-
Henry Weller authored
Resolves bug-report http://bugs.openfoam.org/view.php?id=2239
-
Henry Weller authored
-
Henry Weller authored
-
- Sep 20, 2016
-
-
Henry Weller authored
linearUpwind: Evaluate the gradient of each component of the field to provide support all field types Also reduces peak-storage as it now generates a volVectorField for each component rather than the gradient of the field type.
-
Henry Weller authored
-
Chris Greenshields authored
derivative of the stress tensor. See http://en.wikipedia.org/wiki/Upper-convected_Maxwell_model The model includes an additional viscosity (nu) from the transport model from which it is instantiated, which makes it equivalent to the Oldroyd-B model for the case of an incompressible transport model. See https://en.wikipedia.org/wiki/Oldroyd-B_model
-
Henry Weller authored
Renamed the original 'laminar' model to 'Stokes' to indicate it is a linear stress model supporting both Newtonian and non-Newtonian viscosity. This general framework will support linear, non-linear, visco-elastic etc. laminar transport models. For backward compatibility the 'Stokes' laminar stress model can be selected either the original 'laminar' 'simulationType' specification in turbulenceProperties: simulationType laminar; or using the new more general 'laminarModel' specification: simulationType laminar; laminar { laminarModel Stokes; } which allows other laminar stress models to be selected.
-
- Sep 19, 2016
-
-
Henry Weller authored
Individual inward-pointing faces are checked and if all faces are inward-pointing the block is inside-out. These errors are fatal and the message indicates which block the error occurs in and where in the blockMeshDict the block is defined.
-
- Sep 16, 2016
-
-
Henry Weller authored
Resolves bug-report http://bugs.openfoam.org/view.php?id=2248
-
Henry Weller authored
Patch provided by Mattijs Janssens Resolves bug-report http://bugs.openfoam.org/view.php?id=2226
-
- Sep 14, 2016
-
-
Henry Weller authored
Now works correctly for an arbitrary number of bodies Resolves bug-report http://bugs.openfoam.org/view.php?id=2211
-
Henry Weller authored
rigidBodyMeshMotionSolver: experimental nDoF mesh-motion solver supporting the displacement-based elliptic solvers Specification for the tutorials/multiphase/interDyMFoam/ras/floatingObject case: dynamicFvMesh dynamicMotionSolverFvMesh; motionSolverLibs ("librigidBodyMeshMotion.so" "libfvMotionSolvers.so"); solver rigidBodyMotionSolver; rigidBodyMotionSolverCoeffs { report on; meshSolver { solver displacementLaplacian; displacementLaplacianCoeffs { diffusivity inverseDistance (floatingObject); } } . . .
-
Henry Weller authored
Resolves bug-report http://bugs.openfoam.org/view.php?id=2244
-
- Sep 10, 2016
-
-
Henry Weller authored
-
- Sep 09, 2016
-
-
Henry Weller authored
Renamed 'omega' to 'FSDomega' to avoid a clash with the k-omega turbulence models. Resolves bug-report http://bugs.openfoam.org/view.php?id=2237
-
Henry Weller authored
-
Henry Weller authored
Patch provided by Mattijs Janssens Resolves bug-report http://bugs.openfoam.org/view.php?id=2240
-
Henry Weller authored
Patch contributed by Mattijs Janssens
-
Henry Weller authored
Now the postProcess utility '-region' option works correctly, e.g. for the chtMultiRegionSimpleFoam/heatExchanger case postProcess -region air -func "mag(U)" calculates 'mag(U)' for all the time steps in region 'air'.
-
- Sep 06, 2016
-
-
Henry Weller authored
Patch provided by Mattijs Janssens Resolves bug-report http://bugs.openfoam.org/view.php?id=2226
-
Henry Weller authored
algebraicPairGAMGAgglomeration: agglomerate based on the maximum of the upper and lower coefficients Patch provided by Mattijs Janssens Resolves bug-report http://bugs.openfoam.org/view.php?id=2234
-
- Sep 05, 2016
-
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
using a run-time selectable preconditioner References: Van der Vorst, H. A. (1992). Bi-CGSTAB: A fast and smoothly converging variant of Bi-CG for the solution of nonsymmetric linear systems. SIAM Journal on scientific and Statistical Computing, 13(2), 631-644. Barrett, R., Berry, M. W., Chan, T. F., Demmel, J., Donato, J., Dongarra, J., Eijkhout, V., Pozo, R., Romine, C. & Van der Vorst, H. (1994). Templates for the solution of linear systems: building blocks for iterative methods (Vol. 43). Siam. See also: https://en.wikipedia.org/wiki/Biconjugate_gradient_stabilized_method Tests have shown that PBiCGStab with the DILU preconditioner is more robust, reliable and shows faster convergence (~2x) than PBiCG with DILU, in particular in parallel where PBiCG occasionally diverges. This remarkable improvement over PBiCG prompted the update of all tutorial cases currently using PBiCG to use PBiCGStab instead. If any issues arise with this update please report on Mantis: http://bugs.openfoam.org
-
- Sep 04, 2016
-
-
Henry Weller authored
Patch contributed by Mattijs Janssens Resolves bug-report http://bugs.openfoam.org/view.php?id=2235
-
Henry Weller authored
This allows freedom in the naming of patches when patchGroup-based boundary specification is not used. Patch contributed by Mattijs Janssens
-
- Sep 03, 2016
-
-
Henry Weller authored
Patch contributed by Mattijs Janssens Resolves bug-report http://bugs.openfoam.org/view.php?id=2227
-
Henry Weller authored
Resolves bug-report http://bugs.openfoam.org/view.php?id=2225
-
- Aug 26, 2016
-
-
Henry Weller authored
This reverts commit 12ee0179.
-
- Aug 25, 2016
-
-
Henry Weller authored
If this clash is allowed boundary conditions set by wildcards are processed incorrectly.
-
Henry Weller authored
Patch contributed by Bruno Santos Resolves bug-report http://bugs.openfoam.org/view.php?id=2218
-