Skip to content
Snippets Groups Projects
  1. Oct 28, 2015
  2. Oct 26, 2015
    • mattijs's avatar
      Merge branch 'feature-snappyHexMesh' of... · ba422275
      mattijs authored
      Merge branch 'feature-snappyHexMesh' of develop.openfoam.com:Development/OpenFOAM-dev-OpenCFD into feature-snappyHexMesh
      ba422275
    • mattijs's avatar
      BUG: snappyHexMesh: minThickness > 1 caused truncation of layers · fc82a35c
      mattijs authored
      The start of the layer addition loop does a synchronisation of the wanted
      displacement. This also does a truncation of the displacement if it is <
      minThickness. At the first iteration the displacement was initialised to
      vector::one which might trigger the truncation logic (and then disable
      extrusion altogether). Instead we now initialise the displacement to
      vector::GREAT before entering the synchronisation.
      fc82a35c
  3. Oct 15, 2015
  4. Oct 14, 2015
    • mattijs's avatar
      ENH: snappyHexMesh: various improvements. See below or the default snappyHexMeshDict. · 188acd10
      mattijs authored
      Refinement:
      -----------
      // Optionally avoid patch merging - keeps hexahedral cells
      // (to be used with automatic refinement/unrefinement)
      //mergePatchFaces off;
      
      // Optional multiple locationsInMesh with corresponding optional cellZone
      // (automatically generates faceZones inbetween)
      locationsInMesh
      (
          ((-0.09 -0.039 -0.049)  bottomAir)  // cellZone bottomAir
          ((-0.09 0.009 -0.049)   topAir)     // cellZone topAir
      );
      
      // Optional faceType and patchType specification for these faceZones
      faceZoneControls
      {
          bottomAir_to_topAir
          {
              faceType baffle;
          }
      }
      
      / Optional checking of 'bleeding' of mesh through a specifying a locations
      // outside the mesh
      locationsOutsideMesh ((0 0 0)(12.3 101.17 3.98));
      
      // Improved refinement: refine all cells with all (or all but one) sides refined
      
      // Improved refinement: refine all cells with opposing faces with different
      // refinement level. These cells can happen on multiply curved surfaces.
      // Default on, can be switched off with
      //interfaceRefine false;
      
      Snapping
      --------
      // Optional smoothing of points at refinement interfaces. This will reduce
      // the non-orthogonality at refinement interfaces.
      //nSmoothInternal $nSmoothPatch;
      
      Layering
      --------
      
      // Layers can be added to patches or to any side of a faceZone.
      // (Any faceZone internally gets represented as two patches)
      
      // The angle to merge patch faces can be set independently of the
      // featureAngle. This is especially useful for large feature angles
      // Default is the same as the featureAngle.
      //mergePatchFacesAngle 45;
      
      // Optional mesh shrinking type 'displacementMotionSolver'. It uses any
      // displacementMotionSolver, e.g. displacementSBRStress
      // (default is the medial-axis algorithm, 'displacementMedialAxis')
      //meshShrinker displacementMotionSolver;
      188acd10
    • mattijs's avatar
      STYLE: duplicatePoints: indentation · e430f673
      mattijs authored
      e430f673
    • mattijs's avatar
      ENH: polyTopoChange: improved error message · 91d258f6
      mattijs authored
      91d258f6
    • mattijs's avatar
      BUG: removeCells: handle exposing cyclic faces · c51f6e01
      mattijs authored
      c51f6e01
    • mattijs's avatar
      9a947436
    • mattijs's avatar
    • mattijs's avatar
      BUG: triSurfaceMesh: fix writing to time directory · f50d101b
      mattijs authored
      Also various speed ups to do with getting volume type outside of bounding box.
      f50d101b
    • mattijs's avatar