Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2020
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. /*--------------------------------*- C++ -*----------------------------------*\
  2. ========= |
  3. \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
  4. \\ / O peration | Website: https://openfoam.org
  5. \\ / A nd | Version: 7
  6. \\/ M anipulation |
  7. \*---------------------------------------------------------------------------*/
  8. FoamFile
  9. {
  10. version 2.0;
  11. format ascii;
  12. class dictionary;
  13. object meshQualityDict;
  14. }
  15. // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
  16.  
  17. //- Maximum non-orthogonality allowed. Set to 180 to disable.
  18. maxNonOrtho 65;
  19.  
  20. //- Max skewness allowed. Set to <0 to disable.
  21. maxBoundarySkewness 20;
  22. maxInternalSkewness 4;
  23.  
  24. //- Max concaveness allowed. Is angle (in degrees) below which concavity
  25. // is allowed. 0 is straight face, <0 would be convex face.
  26. // Set to 180 to disable.
  27. maxConcave 80;
  28.  
  29. //- Minimum pyramid volume. Is absolute volume of cell pyramid.
  30. // Set to a sensible fraction of the smallest cell volume expected.
  31. // Set to very negative number (e.g. -1E30) to disable.
  32. minVol 1e-13;
  33.  
  34. //- Minimum quality of the tet formed by the face-centre
  35. // and variable base point minimum decomposition triangles and
  36. // the cell centre. Set to very negative number (e.g. -1E30) to
  37. // disable.
  38. // <0 = inside out tet,
  39. // 0 = flat tet
  40. // 1 = regular tet
  41. minTetQuality 1e-15;
  42.  
  43. //- Minimum face area. Set to <0 to disable.
  44. minArea -1;
  45.  
  46. //- Minimum face twist. Set to <-1 to disable. dot product of face normal
  47. // and face centre triangles normal
  48. minTwist 0.02;
  49.  
  50. //- Minimum normalised cell determinant. This is the determinant of all
  51. // the areas of internal faces. It is a measure of how much of the
  52. // outside area of the cell is to other cells. The idea is that if all
  53. // outside faces of the cell are 'floating' (zeroGradient) the
  54. // 'fixedness' of the cell is determined by the area of the internal faces.
  55. // 1 = hex, <= 0 = folded or flattened illegal cell
  56. minDeterminant 0.001;
  57.  
  58. //- Relative position of face in relation to cell centres (0.5 for orthogonal
  59. // mesh) (0 -> 0.5)
  60. minFaceWeight 0.05;
  61.  
  62. //- Volume ratio of neighbouring cells (0 -> 1)
  63. minVolRatio 0.01;
  64.  
  65. //- Per triangle normal compared to average normal. Like face twist
  66. // but now per (face-centre decomposition) triangle. Must be >0 for Fluent
  67. // compatibility
  68. minTriangleTwist -1;
  69.  
  70. nSmoothScale 4;
  71.  
  72. errorReduction 0.75;
  73.  
  74. //- If >0 : preserve cells with all points on the surface if the
  75. // resulting volume after snapping (by approximation) is larger than
  76. // minVolCollapseRatio times old volume (i.e. not collapsed to flat cell).
  77. // If <0 : delete always.
  78. //minVolCollapseRatio 0.1;
  79.  
  80.  
  81. // ************************************************************************* //
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement