- Mar 10, 2016
-
-
Thomas Fetzer authored
-
Timo Koch authored
Fixes the diffs.
-
- Mar 09, 2016
-
-
Christoph Grüninger authored
-
Christoph Grüninger authored
Clang warned about && and || without parenthesis which might confuse readers
-
- Mar 07, 2016
-
-
Kilian Weishaupt authored
* Rename coupled to implicit * Rename decoupled to sequential
-
- Feb 23, 2016
-
-
Johannes Hommel authored
Updated the sequential tutorial in the handbook. Deleted the old solutions_(de)coupled folders. The previous commit added the new updated solutions.
-
Johannes Hommel authored
Updated the tutorial and its description in the handbook to use implicit instead of coupled and sequential instead of decoupled.
-
- Feb 10, 2016
-
-
- Feb 02, 2016
-
-
Thomas Fetzer authored
-
- Jan 22, 2016
-
-
Bernd Flemisch authored
-
Bernd Flemisch authored
-
Bernd Flemisch authored
-
Bernd Flemisch authored
-
- Dec 08, 2015
-
-
Christoph Grüninger authored
Because config.h is not in the same directory, but added via the include path by -I.
-
- Nov 03, 2015
-
-
Christoph Grüninger authored
-
- Oct 19, 2015
-
-
Christoph Grüninger authored
Use dune-ALUGrid instead. (reviewed and improved by timok)
-
- Aug 25, 2015
-
-
Alexander Kissinger authored
- All headers and source files are moved to the specfied include directory during installation. - Existing CMakeLists.txt files were appended. - CMakeLists.txt were added in folders that did not contain any CMakeLists.txt files but contain headers - The installed version of dumux has been tested by Bernd with the dumux-lecture module Reviewed, modified and tested by Bernd. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15347 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 28, 2015
-
-
Hao Wu authored
Updated solution patch files. reviewed by fetzer git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15177 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 24, 2015
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15160 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Thomas Fetzer authored
added cmake macro which, when called, links all input files of a folder reviewed by martinb git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15155 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 21, 2015
-
-
Bernd Flemisch authored
The general setDirichlet function takes two parameters (pvIdx, eqIdx) corresponding to the index of the primary variable and the index of the balance equation. A convenience function that only takes one parameter exists which calls the general version with two equal parameters. So far, this one parameter has been documented as equation index. However, it is better to refer to the parameter as a primary variable index. This commit changes the parameter name and improves the documentation. Furthermore, it replaces calls in the tests, whenever the general version was called with two parameters of different name but equal value or whenever the simplified version was called with an equation index instead of a primary variable index. See FS#270 for details. Reviewed by Timo. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15115 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 14, 2015
-
-
Timo Koch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15066 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jun 24, 2015
-
-
Christoph Grüninger authored
Remove deprecated, Autotools-based build system. Use CMake-based one instead. (reviewed by bernd) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@14939 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jan 28, 2015
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@14138 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Sep 24, 2014
-
-
Christoph Grüninger authored
Once more, the complete path must be part of the wildcard. (reviewed by natalies, like last commit) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13410 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Sep 17, 2014
-
-
Christoph Grüninger authored
The adaptivity is borken, see FS#237. (reviewed by bernd) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13344 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Sep 05, 2014
-
-
Bernd Flemisch authored
correct use of wildcards, add ALUGrid flags to tests with AMG. Merge revisions 12949, 13246 and 13248 from the strip-pdelab branch. They all improve the buildsystem behavior. Thanks to Markus Blatt for the work. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13282 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Aug 29, 2014
-
-
Markus Blatt authored
The correct usage of wildcards is "$(wildcard *.hh)". With this patch we use these instead of "*.hh". Quoting from https://www.gnu.org/software/make/manual/html_node/Wildcard-Examples.html#Wildcard-Examples Wildcard expansion does not happen when you define a variable. Thus, if you write this: objects = *.o then the value of the variable objects is the actual string ‘*.o’. However, if you use the value of objects in a target or prerequisite, wildcard expansion will take place there. If you use the value of objects in a recipe, the shell may perform wildcard expansion when the recipe runs. To set objects to the expansion, instead use: objects := $(wildcard *.o) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/branches/strip-pdelab@13248 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 23, 2014
-
-
Bernd Flemisch authored
Reviewed by Christoph. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13089 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 17, 2014
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13070 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13069 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Feb 06, 2014
-
-
Thomas Fetzer authored
length = 150, thanks to kristopherg reviewed by fetzer git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12432 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jan 24, 2014
-
-
Thomas Fetzer authored
reviewed by hommel git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12340 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jan 20, 2014
-
-
Christoph Grüninger authored
std::cout was not placed at a valid place. Fixed spelling and a surplus stream symbol < (reviewed by natalies) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12317 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Nov 12, 2013
-
-
Christoph Grüninger authored
Clean cubegridcreator.hh and Makefile.am. This is related to FS#193. (reviewed by bernd) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11957 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Nov 11, 2013
-
-
Christoph Grüninger authored
The error where introduces by r11951 from zheng - a commit that does not seem to be reviewed. Such a commit must be tested with make check and make headercheck! Please. (reviewed by fetzer) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11954 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Tianyuan Zheng authored
GlobalPosition, DimVector and DimMatrix^ git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11951 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Oct 11, 2013
-
-
Martin Schneider authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11643 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Sep 23, 2013
-
-
Tianyuan Zheng authored
reviewed by kathinka git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11541 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Sep 02, 2013
-
-
Christoph Grüninger authored
Fix a bunch of deprecation warnings. Make plotoverline2d.hh more conforming to our style. (reviewed by bernd) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11345 2fb0f335-1f38-0410-981e-8018bf24f1b0
-