Skip to content
Snippets Groups Projects
  1. Dec 05, 2018
  2. Dec 04, 2018
  3. Dec 03, 2018
  4. Nov 29, 2018
  5. Dec 02, 2018
    • Mark OLESEN's avatar
      ENH: configurable output temperature for externalCoupled mixed T BC (#1072) · 550e4762
      Mark OLESEN authored
      - Uses the user-specified value for outputTemperature:
      
        {
            type  externalCoupledTemperature;
            outputTemperture  fluid;  // or wall;
        }
      
        Otherwises uses 'wall' as a default (for compatibility) and emits a
        warning.
      
        The T.out header now reflects the type of output. Eg,
      
           # Values: area Tfluid qDot htc
      550e4762
    • Mark OLESEN's avatar
      TUT: use defaultPatch for naming instead of explicit Default_Boundary_Region · 1116ba80
      Mark OLESEN authored
      - tutorials based on squareBend used Default_Boundary_Region explicitly
        defined since they predated the defaultPatch renaming (2008).
        The name 'Default_Boundary_Region' was for convenience as the default
        name when converting to PROSTAR or CCM formation, but can now be
        changed to something more generic.
      
      - define wall boundary conditions for squareBend using a general regex
        to allow future splitting of wall types by name.
      1116ba80
  6. Nov 30, 2018
    • Mark OLESEN's avatar
      ENH: add isTrue function to RunFunctions · c5beee63
      Mark OLESEN authored
      - check if the first argument corresponds to an OpenFOAM value for
        'true' (as per Switch).
        True == 't', 'y', 'true', 'yes', 'on'. Everything else is not true.
      
      - when the first argument is '-dict', it initializes the value
        with a query via foamDictionary.
        Eg,
             isTrue -dict mydict -entry parallel
      
         ==> value=$(foamDictionary mydict -entry parallel -value)
             isTrue $value
      
         a missing entry is silently treated as false.
      
      ENH: add getNumberOfPatchFaces function in RunFunctions
      
      - simple extraction of nFaces from boundary file for given patch/region
      c5beee63
  7. Dec 02, 2018
  8. Nov 29, 2018
    • Mark OLESEN's avatar
      01a21911
    • Mark OLESEN's avatar
      ENH: append date to build info · d587e2f0
      Mark OLESEN authored
      - append the commit hash value with the commit date when creating
        the build string information and drop the version prefix.
      
        This provides an immediate overview of when the code was last
        changed. The prefixed version information can be dropped from
        the build string, since it is readily available in other forms.
      d587e2f0
    • Mark OLESEN's avatar
      COMP: adjust headers for more detailed build info in the future (issue #1010) · 4b7e11fc
      Mark OLESEN authored
      - this splits a larger changeset for a gradual implementation
      4b7e11fc
    • Mark OLESEN's avatar
      ENH: relocate WM_PROJECT_SITE default (issue #1050) · 9e094f1f
      Mark OLESEN authored
      - was PREFIX/site, now PROJECT/site
      
        This avoids several issues when installing OpenFOAM in clusters
        without an intermediate OpenFOAM-specific installation prefix.
      
        The 'site' directory may have a reserved meaning in these situations
        and it is undesirable to 'leak' upwards into the parent directory to
        look for configuration files.
      
        Placing the default within the project directory avoids this.
        Alternative locations can be given via the WM_PROJECT_SITE variable.
      9e094f1f
    • Mark OLESEN's avatar
      STYLE: adjust wording, file-layout · be46f968
      Mark OLESEN authored
      - comments in bashrc, cshrc.
      - about controlDict names for allowSystemOperations
      be46f968
    • Mark OLESEN's avatar
      SUBMODULE: catalyst with so versioning · 3f7ea92e
      Mark OLESEN authored
      3f7ea92e
    • Mark OLESEN's avatar
      d45d7ca8
    • Mark OLESEN's avatar
      ENH: improve setup for paraview · 628b2445
      Mark OLESEN authored
      - removed reliance on ParaView_INCLUDE_DIR variable for conveying the
        major.minor version information when compiling. This can be somewhat
        fragile and also adds variable that is an unnecessary when running
        (only used when compiling).
      
        Instead use `have_pvplugin_support` function in paraviewFunctions
        wmake script to determine the maj.min from the PV_PLUGIN_PATH
        since we have already defined the output path there with paraview
        maj.min numbering.
      
        Can now build with paraview from the operating system,
        provided that it has develop headers available.
      
            ParaView_VERSION=system
      
        In the etc/config.sh/paraview setup, the maj.min is taken from
        the corresponding `paraview --version` output and used when
        defining the PV_PLUGIN_PATH.
      
        During the build, the include path taken from `paraview-config`
        for a system installation, from the guess installation root
        of the paraview binary, or ParaView_DIR otherwise.
      
      NB: using a system ParaView for building runTimePostProcessing is unsupported.
      
      - these types of builds appear to have various library resolution issues
        (eg, libexpat not being loaded). Additionally, the build logic does
        not yet cover this type of use case.
      628b2445
  9. Nov 28, 2018
  10. Nov 27, 2018