Advertisement
Guest User

fvSchemes

a guest
Aug 3rd, 2021
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 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: 8
  6. \\/ M anipulation |
  7. \*---------------------------------------------------------------------------*/
  8. FoamFile
  9. {
  10. version 2.0;
  11. format ascii;
  12. class dictionary;
  13. location "system";
  14. object fvSchemes;
  15. }
  16. // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
  17.  
  18. ddtSchemes
  19. {
  20. default Euler;
  21. }
  22.  
  23. gradSchemes
  24. {
  25. default Gauss linear;
  26. }
  27.  
  28. divSchemes
  29. {
  30. default none;
  31.  
  32. "div\(phi,alpha.*\)" Gauss vanLeer;
  33. "div\(phir,alpha.*\)" Gauss vanLeer;
  34.  
  35. "div\(alphaRhoPhi.*,U.*\)" Gauss limitedLinearV 1;
  36. "div\(phi.*,U.*\)" Gauss limitedLinearV 1;
  37.  
  38. "div\(alphaRhoPhi.*,Yi\)" Gauss limitedLinear 1;
  39. "div\(alphaRhoPhi.*,(h|e).*\)" Gauss limitedLinear 1;
  40. "div\(alphaRhoPhi.*,K.*\)" Gauss limitedLinear 1;
  41. "div\(alphaPhi.*,p\)" Gauss limitedLinear 1;
  42.  
  43. "div\(alphaRhoPhi.*,(k|epsilon).*\)" Gauss limitedLinear 1;
  44. "div\(phim,(k|epsilon)m\)" Gauss limitedLinear 1;
  45.  
  46. "div\(\(\(\(alpha.*\*thermo:rho.*\)\*nuEff.*\)\*dev2\(T\(grad\(U.*\)\)\)\)\)" Gauss linear;
  47. }
  48.  
  49. laplacianSchemes
  50. {
  51. default Gauss linear uncorrected;
  52. }
  53.  
  54. interpolationSchemes
  55. {
  56. default linear;
  57. }
  58.  
  59. snGradSchemes
  60. {
  61. default uncorrected;
  62. }
  63.  
  64. wallDist
  65. {
  66. method meshWave;
  67. }
  68.  
  69.  
  70. // ************************************************************************* //
  71.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement