- 22 Sep, 2016 2 commits
-
-
Johannes Hommel authored
[doc] adapt CHANGELOG and README files See merge request !199
-
Bernd Flemisch authored
-
- 21 Sep, 2016 2 commits
-
-
Johannes Hommel authored
[2pLiquidVapor] Add new model and test * 2p1cni model to simulate steam injection - [x] Find better name ? - [x] Rename classes and files - [x] Adapt tests - [x] Clean-up - [x] Proper documentation See merge request !188
-
Martin Beck authored
[postprocessing][pvpython] Fix use of input and output directory. See merge request !177
-
- 19 Sep, 2016 4 commits
-
-
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
-
- 18 Sep, 2016 1 commit
-
- 15 Sep, 2016 3 commits
-
-
Kilian Weishaupt authored
*Fix errors *Add .bib entry for citation
-
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
-
- 12 Sep, 2016 2 commits
-
-
Thomas Fetzer authored
-
Kilian Weishaupt authored
-
- 09 Sep, 2016 3 commits
-
-
Martin Schneider authored
- 08 Sep, 2016 5 commits
-
-
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
-
- 07 Sep, 2016 5 commits
-
-
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
-
- 06 Sep, 2016 4 commits
-
-
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
-
- 01 Sep, 2016 3 commits
-
-
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
-
Thomas Fetzer authored
-
- 31 Aug, 2016 6 commits
-
-
Kilian Weishaupt authored
-
Kilian Weishaupt authored
-
Kilian Weishaupt authored
* Add ref solution
-
Kilian Weishaupt authored
-
Kilian Weishaupt authored
*Clean-up *Add cc test
-
Kilian Weishaupt authored
* Remove unused code * Adapt output of permeability
-