- Oct 27, 2017
-
-
Timo Koch authored
-
- Oct 16, 2017
-
-
Oliver Sander authored
[fix] Deprecation warnings See merge request !28
-
- Oct 13, 2017
-
-
Kilian Weishaupt authored
-
- Sep 28, 2017
-
-
Oliver Sander authored
[id] Initialize the free id counter! See merge request !26
-
Timo Koch authored
-
- Sep 22, 2017
-
-
Oliver Sander authored
add support for dune-corepy See merge request !25
-
Oliver Sander authored
Minor changes See merge request !24
-
- Sep 18, 2017
-
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
I do not use the DGF format, but users having to include the implementation in `dgffoam.cc` looks wrong.
-
Ansgar Burchardt authored
The file was removed in a3cdfb27
-
- Sep 14, 2017
-
-
Ansgar Burchardt authored
It only contained the default program generated by duneproject.
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
-
- Sep 04, 2017
-
-
Oliver Sander authored
[refelement] Get copies as references are deprecated upstream See merge request !23
-
Timo Koch authored
-
Timo Koch authored
-
- Sep 01, 2017
-
-
Oliver Sander authored
Use unique IDs for all entities no matter which codim Closes #9 See merge request !22
-
Timo Koch authored
Id sets have to provide unique ids for all entitites of a grid. In Foamgrid the id was only unique within the subset of entities of the same codimension.
-
Simon Praetorius authored
-
- May 22, 2017
-
-
Oliver Sander authored
integer types in interface cleaned up See merge request !20
-
- May 15, 2017
-
-
Simon Praetorius authored
integer types in interface cleaned up, to reduce warnings related to comparison between signed and unsigned integers
-
- Jan 24, 2017
-
-
Oliver Sander authored
Fix indexInOutside method for leaf intersections in adaptive grids Closes #4 See merge request !17
-
Timo Koch authored
The previous implementation had a sign mistake and thus only worked for intersections connecting elements on the same level. The new implementation works for adaptive grids as well.
-
- Jan 06, 2017
-
-
Oliver Sander authored
The core module versions used to be 3.0, but have recently been lowered to 2.6. As a consequence, dune-foamgrid would not accept them anymore, considering them 'too old'.
-
- Nov 29, 2016
-
-
Oliver Sander authored
[tuple] Use std::tuple directly everywhere Remove deprecated Dune tuples header and use std::tuple directly everywhere where it wasn't done yet. See merge request !16
-
Timo Koch authored
-
- Sep 20, 2016
-
-
Timo Koch authored
Feature/growth insertion index Feature request ***************** * Each element has a` growthInsertionIndex` that can be queried using a grid method with the same name. * This index is only valid between calling `grow()` and `postGrow()` and only for elements that have been inserted using the grids `insertElement` method. * It can be used to attach user data to an element inserted with the `insertElement` method, because we don't know at insertion time (before calling `grow()`) which index or id the element will have in the grid. * The concept is very similar to the `insertionIndex` of the factory with the difference that the validity of the index is only temporary. I'm open to any suggestion how to make this better or also renaming of the interface function. Without this it's impossible to attach data to a newly created element at creation time, i.e. it's impossible to distinguish between new elments that were inserted together using insertElement(). This branch is based on !14 See merge request !15
-
- Aug 25, 2016
-
-
Oliver Sander authored
Bugfix/double vertex insertion When inserting two element that share a new vertex this vertex was inserted twice resulting in a disconnected grid. The check if a vertex is already inserted was already in place, however the map had the wrong scope and the pointer written in the map was a pointer to the grid entity not the entity in the to-be-inserted queue. See merge request !14
-
- Aug 22, 2016
-
-
Timo Koch authored
-
Timo Koch authored
Note: this is a backward compatible change. The growth insertion index can now be used conveniently to attach user data to the new element.
-
Timo Koch authored
Each element has a growthInsertionIndex that can be queried using a grid method with the same name. This index is only valid between calling grow() and postGrow() and only for elements that have been inserted using the grids insertElement method. It can be used to attach user data to an element inserted with the insertElement method, because we don't know at insertion time (before calling grow()) which index or id the element will have in the grid. The concept is very similar to the insertionIndex of the factory with the difference that the validity of the index is only temporary.
-
Timo Koch authored
-
Timo Koch authored
-
Timo Koch authored
When inserting two element that share a new vertex this vertex was inserted twice resulting in a disconnected grid. The check if a vertex is already inserted was already in place, however the map had the wrong scope and the pointer written in the map was a pointer to the grid entity not the entity in the to-be-inserted queue.
-
- Apr 19, 2016
-
-
Oliver Sander authored
Feature/remove entitypointer * Remove EntityPointer from grid traits * Remove deprecated entityPointer method following upstream changes See merge request !13
-
Timo Koch authored
-
Timo Koch authored
-
- Apr 18, 2016
-