From a5dae2480fdc2d0d6e913b8f3ecfe6b35e820e1c Mon Sep 17 00:00:00 2001 From: mattijs Date: Thu, 4 Jul 2013 12:29:55 +0100 Subject: [PATCH 1/2] ENH: snappyHexMeshDict: added comment --- .../mesh/generation/snappyHexMesh/snappyHexMeshDict | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/applications/utilities/mesh/generation/snappyHexMesh/snappyHexMeshDict b/applications/utilities/mesh/generation/snappyHexMesh/snappyHexMeshDict index 4d480b9efc..5f1331e124 100644 --- a/applications/utilities/mesh/generation/snappyHexMesh/snappyHexMeshDict +++ b/applications/utilities/mesh/generation/snappyHexMesh/snappyHexMeshDict @@ -42,7 +42,11 @@ geometry //maxTreeDepth 10; // optional:depth of octree. Decrease only in case // of memory limitations. - // Per region the patchname. If not provided will be _. + // Per region the patchname. If not provided will be _. + // Note: this name cannot be used to identity this region in any + // other part of this dictionary; it is only a name + // for the combination of surface+region (which is only used + // when creating patches) regions { secondSolid From 2b11904c9ea2c4db55b70a9d04cd076c52e8be7a Mon Sep 17 00:00:00 2001 From: mattijs Date: Thu, 4 Jul 2013 16:28:21 +0100 Subject: [PATCH 2/2] COMP: solidThermo: abstract member function --- src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H b/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H index cdae056126..a2a5731162 100644 --- a/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H +++ b/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H @@ -139,7 +139,7 @@ public: virtual tmp rho() const; //- Density for patch [kg/m^3] - virtual tmp rho(const label patchi) const = 0; + virtual tmp rho(const label patchi) const; //- Return non-const access to the local density field [kg/m^3] virtual volScalarField& rho();