Skip to content
Snippets Groups Projects
  1. Mar 16, 2020
    • Mark OLESEN's avatar
      CONFIG: support FOAM_EXTRA_CXXFLAGS (#1256) · ac8b64df
      Mark OLESEN authored
      - allows custom tuning of compilation parameters
      ac8b64df
    • Mark OLESEN's avatar
      ENH: openfoam shell session - improved and relocated · ba3a31af
      Mark OLESEN authored
      - '-c' option (as per shell), '-Dkey[=value]' option to provide
        preferences via the command-line. For example,
      
            etc/openfoam -DWM_COMPILER=Clang -int64  ./Allwmake -j -s -l
      
        These can also be combined with other options. Eg,
      
            etc/openfoam -DWM_COMPILER=Clang \
                -c 'wmake -show-path-cxx -show-cxxflags'
      
      - relocated from bin/tools/ => etc/ for easier access
      
      - bin/tools/openfoam.in : for autoconfig-style installation
      
      - Auto-detect if the shell script was executed with openfoam and
        interpret accordingly.
      
        Simple example,
      
            --------------
            #!/usr/bin/openfoam
            cd "${0%/*}" || exit   # Run -*-sh-*- from this dir
      
            blockMesh
            simpleFoam
            --------------
      
         Note it is NOT currently possible to provide any other parameters
         this way. Eg,
      
            `#!/usr/bin/openfoam -sp` (NOT)
      
         This will either fail to run, or result in infinite recursion.
      ba3a31af
    • Andrew Heather's avatar
  2. Mar 13, 2020
  3. Mar 12, 2020
  4. Mar 11, 2020
  5. Mar 03, 2020
  6. Feb 14, 2020
  7. Feb 13, 2020
  8. Feb 12, 2020
  9. Feb 10, 2020
  10. Feb 05, 2020
  11. Feb 03, 2020
  12. Jan 31, 2020
    • Mark OLESEN's avatar
      COMP: avoid -Wstringop-truncation warning · d3bcc71b
      Mark OLESEN authored
      - the gcc c++/9 includes now inline strncpy, which obliterates
        the previous method of suppressing the warning.
        Now simply allocate additional space for the nul character.
      
      COMP: silence some icc warnings
      d3bcc71b
  13. Jan 29, 2020
  14. Jan 28, 2020
  15. Jan 27, 2020
  16. Jan 21, 2020
    • Andrew Heather's avatar
      Merge branch 'bug-1560-kEpsilonPhitF' into 'master' · 835c392d
      Andrew Heather authored
      BUG: add switch for nu:DphitEff in kEpsilonPhitF (fixes #1560)
      
      Closes #1560
      
      See merge request !329
      835c392d
    • Kutalmış Berçin's avatar
      BUG: add switch for nu:DphitEff in kEpsilonPhitF (fixes #1560) · c234acf1
      Kutalmış Berçin authored
          Including `nu` in `DphitEff` even though it is not present in (LUU:Eq. 17)
          provided higher level of resemblance to benchmarks for the tests considered,
          particularly for the peak skin friction (yet, pressure-related predictions
          were unaffected). Users can switch off `nu` in `DphitEff` by using
          `includeNu` entry in `kEpsilonPhitFCoeffs` in order to follow the
          reference paper thereat. `includeNu` is left `true` by default.
          See GitLab issue #1560,
      
        LUU: Laurence, D. R., Uribe, J. C., & Utyuzhnikov, S. V. (2005).
      c234acf1
  17. Jan 13, 2020
  18. Jan 09, 2020
  19. Jan 07, 2020
  20. Jan 03, 2020
  21. Jan 02, 2020
    • sergio's avatar
      BUG: Fix issue 1535 in turbulentTemperatureRadCoupledMixed. · 122e4965
      sergio authored
          When a contact resistance is used the T field on each coupled
          patch is different due to the thermal resistance. Thus, instead
          of solving for a unique Tw at the wall, we solve for Tw1 at one side
          then, the Tnbr internal becomes Tw2, which is the T of the nbr
          patch.
      122e4965
  22. Dec 23, 2019