Skip to content
Snippets Groups Projects
  1. Sep 22, 2017
    • Henry Weller's avatar
      swirlInletVelocity: New general swirl inlet BC · 58882985
      Henry Weller authored and Andrew Heather's avatar Andrew Heather committed
      which support the specification of the individual velocity components (axial,
      radial and tangential) as Function1s.
      58882985
    • Andrew Heather's avatar
      2b9b4c1a
    • Will Bainbridge's avatar
      tetrahedron: triangle: Improved barycentric handling on tets and tris · 34d43585
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      Updated the tetrahedron and triangle classes to use the barycentric
      primitives. Removed duplicate code for generating random positions in
      tets and tris, and fixed bug in tri random position.
      34d43585
    • Will Bainbridge's avatar
      tutorials/lagrangian: Added mixedVesselAMI2D · 28024e5f
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      This tutorial demonstrates moving mesh and AMI with a Lagrangian cloud.
      It is very slow, as interaction lists (required to compute collisions)
      are not optimised for moving meshes. The simulation time has therefore
      been made very short, so that it finishes in a reasonable time. The
      mixer only completes a small fraction of a rotation in this time. This
      is still sufficient to test tracking and collisions in the presence of
      AMI and mesh motion.
      
      In order to generate a convincing animation, however, the end time must
      be increased and the simulation run for a number of days.
      28024e5f
    • Henry Weller's avatar
      cloudSolution: Check consistency between the transient option · e811fd25
      Henry Weller authored and Andrew Heather's avatar Andrew Heather committed
      and the continuous-phase simulation type
      
      For LTS and steady-state simulations the transient option does not need to be
      provided as only steady-state tracking is appropriate.  For transient running
      the Lagrangian tracking may be steady or transient.
      e811fd25
    • Will Bainbridge's avatar
      KinematicParcel: Apply in-cell updates before hitting the face · 7280f0ad
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      The evolution of a KinematicParcel happens in three stages; (1) tracking
      across the cell, (2) interaction with the face or patch that has been
      hit, and (3) clculation and and update of parcel and cell properties.
      The KinematicParcel used to evolve in this order, as steps 1 and 2 were
      part of the same lower level method. This meant that the update stage
      was done after interacting with the face, meaning the parcel was not in
      the cell that had just been tracked through, or, by means of a patch
      interaction, had been modified such that it was no longer representative
      of the track through the cell.
      
      With the separation of stages 1 and 2 in the base class, it is now
      possible to do the update stage before interacting with the face (i.e.,
      proceeding in the order 1, 3, 2). This makes the state consistent for
      the updates, and avoids the issues described.
      
      Patch contributed by Timo Niemi, VTT.
      This resolves bug report https://bugs.openfoam.org/view.php?id=2282
      7280f0ad
    • Will Bainbridge's avatar
      lagrangian: Made ACMI interactions insensitive to cell-face order · d2748836
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      d2748836
    • Will Bainbridge's avatar
      lagrangian: Removed debugging message from particle::trackToFace · b4ad1dd8
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      b4ad1dd8
    • Will Bainbridge's avatar
      Lagrangian: Enabled tracking through ACMI patches and minor code improvements · 930e02a0
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      Particle collisions with ACMI patches are now handled. The hit detects
      whether the location is within the overlap or the coupled region and
      recurses, calling the hit routine appropriate for the region.
      
      The low level tracking methods are now more consistently named. There is
      now a distinction between tracking to a face and hitting it. Function
      object side effects have been moved out of the base layer and into the
      parcels on which they are meaningful.
      930e02a0
    • Will Bainbridge's avatar
      ThermoParcel: Improved numerical stability of heat transfer term · 028bc0f0
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      Patch contributed by Timo Niemi, VTT.
      Resolves bug-report https://bugs.openfoam.org/view.php?id=2655
      028bc0f0
    • Will Bainbridge's avatar
      lagrangian: Always set switchProcessor flag · dc31f659
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      The TrackData::switchProcessor flag was not being set for some of the
      tracking steps made by the more complicated parcels. In the case that a
      parcel starts the step already on a processor boundary, this sometimes
      lead to the particle being transferred back and forth indefinitely. The
      flag is now explicitly set in all cases.
      dc31f659
    • Will Bainbridge's avatar
    • Will Bainbridge's avatar
      lagrangian: Fixed infinite loops · 8da213f5
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      Tracking through an inverted region of the mesh happens in a reversed
      direction relative to a non-inverted region. Usually, this allows the
      tracking to propagate normally, regardless of the sign of the space.
      However, in rare cases, it is possible for a straight trajectory to form
      a closed loop through both positive and negative regions. This causes
      the tracking to loop indefinitely.
      
      To fix this, the displacement through inverted regions has been
      artifically increased by a small amount (1% at the moment). This has the
      effect that the change in track fraction over the negative part of the
      loop no longer exactly cancels the change over the positive part, and
      the track therefore terminates.
      8da213f5
    • Will Bainbridge's avatar
      lagrangian: Corrected patch data · 4bc08a0a
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      The KinematicCloud::patchData method has been made consistent on moving
      meshes and/or when the time-step is being sub-cycled.
      
      It has also been altered to calculate the normal component of a moving
      patch's velocity directly from the point motions. This prevents an
      infinite loop occuring due to inconsistency between the velocity used to
      calculate a rebound and that used when tracking.
      
      Some minor style improvements to the particle class have also been made.
      4bc08a0a
    • Will Bainbridge's avatar
      ParticleCollector: Prevented missing and duplicate collections · 588c5791
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      The particle collector was collecting some particles twice due to a
      tolerance extending the tracked path. This has been removed. The new
      tracking algorithm does not generate the same sorts of spurious
      tolerance-scale motions that the old one did, so this extension of the
      tracking path is unnecessary.
      
      Some particles were also not being collected at all as they were hitting
      a diagonal of the collection polygon and registering as not having hit
      either of the adjacent triangles. The hit criteria has been rewritten. A
      hit now occurs when the normals of the triangles created by joining the
      intersection point with the polygon edges are all in the same direction
      as the overall polygon normal. This calculation is not affected by the
      polygon's diagonals.
      
      The issue was raised by, and resolved with support from, Karl Meredith
      at FM Global.
      
      This resolves bug-report https://bugs.openfoam.org/view.php?id=2595
      588c5791
    • Will Bainbridge's avatar
      interpolation: Optimise by using particle local coordinates · eb09cdd8
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      This change changes the point-tetIndices-face interpolation function
      method to take barycentric-tetIndices-face arguments instead. This
      function is, at present, only used for interpolating Eulerian data to
      Lagrangian particles.
      
      This change prevents an inefficiency in cellPointInterpolation whereby
      the position of the particle is calculated from it's barycentric
      coordinates, before immediately being converted back to barycentric
      coordinates to perform the interpolation.
      eb09cdd8
    • Will Bainbridge's avatar
      MPPIC: Optimised the averaging methods · 39376dfa
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      The averaging methods now take the particle barycentric coordinates as
      inputs rather than global positions. This change significantly optimises
      Dual averaging, which is the most commonly used method. The run time of
      the lagrangian/MPPICFoam/Goldschmidt tutorial has been reduced by a
      factor of about two.
      39376dfa
    • Will Bainbridge's avatar
      tetIndices: Removed duplicate logic · 7ada836a
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      The logic for generating tetrahedra from a face base point and an offset
      was duplicated in a few places. It is now confined to the tetIndices
      class.
      7ada836a
    • Henry Weller's avatar
      lagrangian::InjectionModels: Corrected documentation · 4ab6dda3
      Henry Weller authored and Andrew Heather's avatar Andrew Heather committed
      4ab6dda3
    • Henry Weller's avatar
    • Will Bainbridge's avatar
      primitiveShapes: Generalised tetrahedron and triangle cutting. Cuts are · 0e2bc0be
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      now possible with level-sets as well as planes. Removed tetPoints class
      as this wasn't really used anywhere except for the old tet-cutting
      routines. Restored tetPointRef.H to be consistent with other primitive
      shapes. Re-wrote tet-overlap mapping in terms of the new cutting.
      0e2bc0be
    • Will Bainbridge's avatar
      particle: Corrected the direction of tracking when passing through an · 0f37016a
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      AMI. Applied the transformation.
      0f37016a
    • Will Bainbridge's avatar
      KinematicParcel: Bug fix. Restored steady particle tracking coupling. · 12ddfd90
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      This was broken when the minimum-step-fraction tolerance was removed.
      12ddfd90
    • Henry Weller's avatar
      particle: Avoid warning about uninitialized edge · 165bc45d
      Henry Weller authored and Andrew Heather's avatar Andrew Heather committed
      165bc45d
    • Will Bainbridge's avatar
      Lagrangian: Rewrite of the particle tracking algorithm to function in · b7d08241
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      terms of the local barycentric coordinates of the current tetrahedron,
      rather than the global coordinate system.
      
      Barycentric tracking works on any mesh, irrespective of mesh quality.
      Particles do not get "lost", and tracking does not require ad-hoc
      "corrections" or "rescues" to function robustly, because the calculation
      of particle-face intersections is unambiguous and reproducible, even at
      small angles of incidence.
      
      Each particle position is defined by topology (i.e. the decomposed tet
      cell it is in) and geometry (i.e. where it is in the cell). No search
      operations are needed on restart or reconstruct, unlike when particle
      positions are stored in the global coordinate system.
      
      The particle positions file now contains particles' local coordinates
      and topology, rather than the global coordinates and cell. This change
      to the output format is not backwards compatible. Existing cases with
      Lagrangian data will not restart, but they will still run from time
      zero without any modification. This change was necessary in order to
      guarantee that the loaded particle is valid, and therefore
      fundamentally prevent "loss" and "search-failure" type bugs (e.g.,
      2517, 2442, 2286, 1836, 1461, 1341, 1097).
      
      The tracking functions have also been converted to function in terms
      of displacement, rather than end position. This helps remove floating
      point error issues, particularly towards the end of a tracking step.
      
      Wall bounded streamlines have been removed. The implementation proved
      incompatible with the new tracking algorithm. ParaView has a surface
      LIC plugin which provides equivalent, or better, functionality.
      
      Additionally, bug report <https://bugs.openfoam.org/view.php?id=2517>
      is resolved by this change.
      b7d08241
  2. Sep 21, 2017
  3. Sep 18, 2017
  4. Sep 15, 2017
  5. Sep 12, 2017