Skip to content
Snippets Groups Projects
  1. May 09, 2016
  2. May 04, 2016
  3. Apr 25, 2016
  4. Apr 21, 2016
  5. Apr 20, 2016
  6. Apr 13, 2016
  7. Apr 11, 2016
  8. Apr 08, 2016
  9. Apr 07, 2016
  10. Apr 06, 2016
    • Bernd Flemisch's avatar
      Merge branch 'fix/box-fvgeometry-1d' into 'master' · 7c3d6e94
      Bernd Flemisch authored
      [fix][fvelementgeometry][box] Replace double bracket with single bracket
      
      For the one-dimensional case the double curly brackets seem to result in
      an error because it actually tries to assign an initializer list of size
      2 to a GlobalPosition of size 1. For larger FieldVectors the double
      bracket operator seems to be required by the compiler.
      
      See merge request !138
      7c3d6e94
    • Timo Koch's avatar
      [fix][fvelementgeometry][box] Replace double bracket with single bracket · faae0bac
      Timo Koch authored
      For the one-dimensional case the double curly brackets seem to result in
      an error because it actually tries to assign an initializer list of size
      2 to a GlobalPosition of size 1. For larger FieldVectors the double
      bracket operator seems to be required by the compiler.
      faae0bac
  11. Apr 04, 2016
  12. Apr 01, 2016
  13. Mar 30, 2016
  14. Mar 29, 2016
    • Bernd Flemisch's avatar
      Merge branch 'feature/improve-pointsources' into 'master' · bc8d66ba
      Bernd Flemisch authored
      Feature/improve pointsources
      
      * Make convenience assignment operators work for the classes derived from PointSource
      * Make the PointSourceHelper (computing in which scv a point source falls) a property to be able to exchange implementations (the current default uses the bounding box tree. This is however a waste of resources if one already knows more about where the point source is.)
      * Rename PointSourceHelper to BoundingBoxTreePointSourceHelper
      
      See merge request !134
      bc8d66ba
    • Timo Koch's avatar
      [pointsource] Make PointSourceHelper a property · 9946a930
      Timo Koch authored
      The class computing in which sub control volume a point source falls
      gets a property. Thus it can be exchanged with custom implementations
      e.g. not making use of the bounding box tree. The default implementation
      is the BoundingBoxTreePointSourceHelper using the axis-aligned bounding
      box volume hierachy to find in which scv a point source falls.
      9946a930
    • Timo Koch's avatar
      [pointsource] Rename too generic PointSourceHelper to BoundingBoxTreePointSourceHelper · 99959bc3
      Timo Koch authored
      Deprecate the old class. The deprecation warning seems not to be thrown for the
      class template. Thus this uses a bit ugly workaround of deprecating the member
      function... The message should however state it clearly.
      99959bc3
    • Timo Koch's avatar
      [fix][pointsources] Also overload special assignment in the derived classes · 15ab84ba
      Timo Koch authored
      Assignment operators get inherited technically but are overwritten by the
      default assignment operator. The special assignment operators taking a
      Scalar or a PrimaryVariable vector that gets assigned to the values member
      of point source has thus to be overloaded in every derived class too.
      
      This commit makes direct assignment of values to point source classes
      derived from the base point source possible.
      15ab84ba
    • Timo Koch's avatar
      [pointsource] Add embeddings/setEmbeddings function · 38c00f3e
      Timo Koch authored
      The number of embeddings of a point source (number of sub
      control volumes the point source belongs to) can now be
      set from outside. PointSourceHelper doesn't need to be a
      friend class of PointSource anymore. The default number
      of embeddings is 1 (a point source with no embeddings, e.g.
      outside the grid boundary will be discarded anyway).
      38c00f3e
Loading