- Sep 27, 2016
-
-
Kilian Weishaupt authored
-
Gabi Seitz authored
-
Gabi Seitz authored
-
- Sep 20, 2016
-
-
Kilian Weishaupt authored
-
Kilian Weishaupt authored
-
Kilian Weishaupt authored
-
Kilian Weishaupt authored
-
Kilian Weishaupt authored
-
Kilian Weishaupt authored
-
- Sep 19, 2016
-
-
Kilian Weishaupt authored
-
Johannes Hommel authored
[io] Add function to read and write container from and to file Write some container to file (requires` begin()` and `end()`): ```c++ std::vector<double>(5, 0.0) v; writeContainerToFile(v, "myvector.txt"); ``` Read to a container from a file (requires `being()` `end()` and `push_back()`): ```c++ auto v = readFileToContainer<std::vector<double>>("myvector.txt"); ``` I found this quite useful recently. See merge request !194
-
Timo Koch authored
-
Bernd Flemisch authored
[fluxvars] Remove deprecated constructors and methods in all fluxvariables See merge request !180
-
- Sep 18, 2016
-
- Sep 15, 2016
-
-
Christoph Grüninger authored
-
Johannes Hommel authored
Fix/extrusionfactor for outflow While included in the cc localresidual, the stokes and box localresidual did not account for the extrusion factor when dealing with outflow boundary conditions, leading to weird results. See merge request !191
-
- Sep 12, 2016
-
-
Thomas Fetzer authored
-
- Sep 09, 2016
-
-
Martin Schneider authored
- Sep 08, 2016
-
-
Christoph Grüninger authored
test_stokes2c with refined grid speeds up by 2.7%.
-
Kilian Weishaupt authored
*Flux leaving the domain needs to be scaled be extrusion factor
-
Kilian Weishaupt authored
*Flux leaving the domain needs to be scaled by extrusion factor
-
Bernd Flemisch authored
-
Bernd Flemisch authored
Feature/scotch matrix reordering Reordering the matrix leads to improved sparsity pattern. This is especially important for growing network grids. Reordering results using the ReorderingDofMapper implemented by this MR with a growing network grid. * Original unsorted FoamGrid  * Reordered dof indices  See merge request !186
-
- Sep 07, 2016
-
-
Timo Koch authored
-
Timo Koch authored
The mapper computes a permutation of the index set using the external PT-SCOTCH library. This is a simple replacement for element mapper (cc) / vertex mapper (box). It requires to store on int per dof for the mapping (fast direct vector access). This makes the matrix bandwidth small and reduces the fillins during LU factorization. So it helps especially for direct solvers or iterative solver preconditions by ILU. The reordering is particularly helpful for network problems with foamgrid to optimize the matrix sparsity pattern.
-
Timo Koch authored
-
Timo Koch authored
This enables the use of Dune's single codim single geometry mapper that otherwise exists failing a static assert
-
Bernd Flemisch authored
[2p2c] Improve Millington&Quirk and constant tau A quick test (Clang 3.8, one run, no error bar) of test_box2p2c with the optim.ops from dumux and a 100 times finer grid: Millington&Quirk: 99 s Constant Tau: 95 s That's about 5%. But more measurements are required and the differences in the solution must be checked. This merge request does not address all changes proposed in the task [FS#321](http://www.dumux.org/flyspray/index.php?do=details&task_id=321) See merge request !181
-
- Sep 06, 2016
-
-
Christoph Grüninger authored
* Reduce number of template arguments * Rename property from tau to TauTortuosity
-
Christoph Grüninger authored
Use multiplications and a cubic root instead of std::pow * Estimated 5% less time in 2p2c computation * Roughly inbetween old code and constant tau
-
Timo Koch authored
This was wrongly altered in a previous commit. Fick's law depends on the mole fraction gradient. The density has to be approximated at the face. Also fixes the diffusive fluxes that were sometimes wrongly added to the total mass balance when using the replaceCompIdx to replace one component balance by the total mass balance.
-
Timo Koch authored
-
- Sep 01, 2016
-
-
Johannes Hommel authored
[fix][test] Fix the reference solution name for 2pbox fracture. We start counting from 0 now. See merge request !190
-
Timo Koch authored
-
- Aug 30, 2016
-
- Aug 29, 2016
-