Skip to content
Snippets Groups Projects
  1. Feb 16, 2021
    • Mark OLESEN's avatar
      COMP: include mpi information for versioned cmake build · f997013e
      Mark OLESEN authored
      - since the wrapped cmake calls generally use the regular build
        locations, add in MPI information to properly handle changes
        in that as well. This makes it easier to build for multiple MPI
        instances.
      f997013e
    • Mark OLESEN's avatar
      ENH: improve surfaceFieldValue sampling and writing (#1999) · 2954f55f
      Mark OLESEN authored
      - ensure surface writing is time-step and nFields aware.
        This avoids overwriting (ignoring) previous output fields.
      
      - allow sampled surfaces to be used for weight fields as well.
        Not sure why this restriction was still there.
      
      - remove old compatibility reading of orientedFields.
        Last used in v1612, now removed.
      
      - only use face sampling. For surfaceFieldValue we can only do
        something meaningful with face values.
      
      ENH: modify interface methods for surfaceWriter
      
      - replace direct modification of values with setter methods.
        Eg,
           old: writer.isPointData() = true;
           new: writer.isPointData(true);
      
        This makes it possible to add internal hooks to catch state changes.
      
      ENH: allow post-construction change to sampledSurface interpolation
      
      - rename interpolate() method to isPointData() for consistency with
        other classes and to indicate that it is a query.
      
      - additional isPointData(bool) setter method to change the expected
        representation type after construction
      
      - remove 'interpolate' restriction on isoSurfacePoint which was
        previously flagged as an error but within sampledSurfaces can use
        sampleScheme cellPoint and obtain representative samples.
        Relax this restriction since this particular iso-surface algorithm
        is slated for removal in the foreseeable future.
      2954f55f
  2. Feb 15, 2021
  3. Feb 10, 2021
  4. Feb 09, 2021
  5. Feb 08, 2021
  6. Jan 28, 2021
    • Andrew Heather's avatar
      ENH: surfaceFieldValue - set surface output info for run-time post-processing · 13152510
      Andrew Heather authored
      If the 'writeFields' option is set in surfaceFieldValue, e.g.
      
          surface1
          {
              type        surfaceFieldValue;
              libs        (fieldFunctionObjects);
              operation   none;
              fields      (p);
              regionType  patch;
              name        walls;
      
              // Create a surface in VTK format
              writeFields yes;
              surfaceFormat vtk;
          }
      
      ... the surface can now be used in runTimePostProcessing, e.g.:
      
          surfaces
          {
              surfaceFieldValueOutput
              {
                  type            functionObjectSurface;
                  representation  surface;
                  liveObject      no;
                  field           p;
                  colourBy        field;
                  range           (0 120000);
                  functionObject  surface1;
              }
          }
      
      Note: setting 'liveObject' to 'no' to suppress warnings due to the surface
      not being retrieved from the object registry (default = 'yes') - this surface
      can [currently] only be read from disk.
      13152510
    • Andrew Heather's avatar
      STYLE: minor doc update · 170d73f4
      Andrew Heather authored
      170d73f4
  7. Jan 27, 2021
  8. Jan 26, 2021
  9. Jan 25, 2021
  10. Jan 22, 2021
  11. Jan 20, 2021
  12. Jan 18, 2021
  13. Jan 15, 2021
  14. Jan 13, 2021
  15. Jan 08, 2021
  16. Jan 06, 2021
  17. Jan 04, 2021