- 25 Apr, 2012 1 commit
-
-
Christoph Grueninger authored
(thoroughly reviewed by Philipp") git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8137 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 09 Apr, 2012 1 commit
-
-
Bernd Flemisch authored
Remove deprecated methods. This implements FS #144. Additionally deprecate the methods printUsageDGF and printUsageGrid. Reviewed by Christoph. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8063 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 20 Feb, 2012 1 commit
-
-
Andreas Lauser authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7827 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 15 Feb, 2012 1 commit
-
-
Andreas Lauser authored
ptrace is not required anymore since the isInDebugger() function has been removed, and the sys/ptrace.h header is not available on all systems. (I'm looking at you, Windows!) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7789 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 13 Feb, 2012 2 commits
-
-
Philipp Nuske authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7740 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Andreas Lauser authored
running ptrace(PTRACE_TRACEME, ...) on a process always causes the Unix signals to be intercepted, i.e. after pressing Ctrl+C the process did not terminate itself anymore, but it was merely stopped. since this is really undesireable, expecially for simulations which use large quantities of memory, and I couldn't come up with a way to detect whether a debugger is attached that does not have this drawback, I figured that it is better to always catch the exceptions thrown by the simulation. To make debugging possible, one can either set a breakpoint in __cxa_throw() or use GDB catchpoints: http://www.delorie.com/gnu/docs/gdb/gdb_31.html git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7729 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 10 Feb, 2012 1 commit
-
-
Andreas Lauser authored
as decided in FS#122. In a nutshell, Dumux::startWithParameters() has been renamed to Dumux::start(). git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7710 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 09 Feb, 2012 2 commits
-
-
Andreas Lauser authored
Currently, Dumux::startWithParameters() is just an alias for Dumux::start(). startWithParameters() has not been deprecated, but all files have been converted to use Dumux::start(). git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7701 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Markus Wolff authored
- additionally to the DGFGridCreator one can now chose a CubeGridCreator or a SimplexGridCreator to get structured cube- or simples-grids git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7688 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 08 Feb, 2012 1 commit
-
-
Philipp Nuske authored
- each model specifies in the *.cc file which parameters are mandatory - syntax as well as output further homogenized and beautified - for seeing how to group entries in the input file and how to use them in the problem: please have a look at test_2p2c - for seeing how to create your own grid (no dgf): please have a look at test_2pni - for specifying a lense: please have a look at test_2p git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7672 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 07 Feb, 2012 2 commits
-
-
Bernd Flemisch authored
changed back to the correct behavior in runTest.sh. Actually the default return value of startWithParameters was wrong git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7662 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Andreas Lauser authored
i.e. GCC 4.2.4. Fixing the decoupled stuff would require larger changes which I do not want to implement because I'm not familiar with this code and it might break someone's code... git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7647 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 03 Feb, 2012 4 commits
-
-
Bernd Flemisch authored
Reverted commit 7624 according to release manager and PFP. Too many undiscussed changes after soft feature freeze. Can be discussed on Monday at the Dumux coffee at 9.30 h. Decisions made there are binding. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7627 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Andreas Lauser authored
- capitalize first letter of arguments again. Reason: this would be really confusing if the fist letter needs to be a captital one for parameters such as "EnableAbsoluteCriterion" (i.e. --Enable-absolute-criterion=1) but must be lowercase for some others like "dtInitial" (i.e. --dt-inititial=250.0) - remove "startWithParametersProvideGrid" method in start.hh. reason: the grid should be provided by a GridCreator. the lens problem has been adapted. - introduce SET_RUNTIME_DEFAULT to make it possible to specify default values for runtime parameters - removed "gridView" argument from the constructor of the box problems. Reason: With the gridView, it would not be possible to use anything but leafGridViews in the box models. Since the grid can be retrieved from the GridCreator, this also does not change to much... - print the properties by default again. Reason: printing all properties is a quite useful thing which would be hard to discover if printing them is disabled by default. on the other hand, if somebody is annoyed by the 60+ lines of output he/she will ask the developers. - provide a default usage() function, but allow problems to provide their own. Reason: Most problems have no specific parameters, but there might be problem-specific parameters which should be printed. For the 2p test of the box models these spefic parameters currently are the coordinates of the lens and the resolution of the grid. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7624 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Philipp Nuske authored
from start.hh. - Disable property printing by default: more clear - Add tests for 3p3c(ni) models git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7623 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Andreas Lauser authored
- remove stray AC_MSG_RESULT from DUMUX_CHECK_QUAD - slight reformulations of the usage message of test_2p - replace tabulators with four spaces - remove trailing whitespaceformating git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7620 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 02 Feb, 2012 2 commits
-
-
Christoph Grueninger authored
Added missing property tag Scalar. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7613 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Philipp Nuske authored
- Everything and the kitchen sink can be specified in there. Example: the 2p2c test - Minor changes to the parameter file syntax: parameters do not start with capital any more - It is checked now whether the parameter file exists - How to use the program / parameter file can be queried by ./progName --help - Documentation: /dumux/common/start.hh and the parameterfiles themselves git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7607 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 31 Jan, 2012 1 commit
-
-
Andreas Lauser authored
- new institute name - add missing modelines - reformat the entry for leopold stadler in air.hh git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7590 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 30 Jan, 2012 2 commits
-
-
Andreas Lauser authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7559 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Andreas Lauser authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7557 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 26 Jan, 2012 1 commit
-
-
Andreas Lauser authored
a default options file called 'test_2p2c.opts' is also included in the package. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7523 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 05 Jan, 2012 2 commits
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7308 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Andreas Lauser authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7305 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 04 Jan, 2012 1 commit
-
-
Andreas Lauser authored
Dumux 2.1 will require DUNE 2.1 or (possibly) above git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7301 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 02 Jan, 2012 1 commit
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7277 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 16 Dec, 2011 2 commits
-
-
Andreas Lauser authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7100 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Andreas Lauser authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7040 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 01 Nov, 2011 2 commits
-
-
Bernd Flemisch authored
There is no need to rush things. We agreed on first having the meeting and then porting the change to the non-MpNc-models. Moreover, the change has not been carried out according to what has been discussed at the meeting. E.g. there was no completeState functionality of the models, and the simple models also introduced parameter caches, although it was thought to not necessarily having to do so. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6818 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Andreas Lauser authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6816 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 27 Oct, 2011 1 commit
-
-
Bernd Flemisch authored
and the classes seem to be associated with the correct groups. Also improved documentation by getting rid of more than 250 Doxygen warnings. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6794 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 11 Oct, 2011 1 commit
-
-
Benjamin Faigle authored
- restart mechanism is now called from init(..) method in time manager for all models via problem().restart(...); - hence, calls to problem or models in application files and in the default start procedure are deleted (included in timeManager) - timeManager().init(...) now has a real restart bool defining if a restart was called by the user. Bool is true if restart is desired. - Decoupled models: to enable restart, the writer is only called with the access function to avoid segmentation fault. - Adapt tutorial to the change git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6737 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 20 Sep, 2011 1 commit
-
-
Andreas Lauser authored
now it is possible to print where the point of definition and the inheritance structure for all properties of a given type tag. for properties defined using the convenience macros SET_*_PROP it is even possible to print their value. the generic startup routines plus test_2p have been adapted to print everything. todo: introduce a parameter which allows to turn of the output at runtime. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6637 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 05 Aug, 2011 1 commit
-
-
Bernd Flemisch authored
Shows how the tree can be easily accessed from any- and everywhere by something like typedef typename GET_PROP(TypeTag, PTAG(ParameterTree)) Params; ... double tEnd = Params::tree().template get... If startFromInputFile is used, at least three parameters have to be given in the input file: SimulationControl.tIni, SimulationControl.tEnd, SimulationControl.gridName These names should be discussed as soon as their creator Philipp is back. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6394 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 07 Jul, 2011 1 commit
-
-
Andreas Lauser authored
This reverts commit 7047016851ec3d0c8d6a571ca42ec1335ec3a416. the macros work, provided that they are used correctly git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6138 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 28 Jun, 2011 4 commits
-
-
Philipp Nuske authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6099 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Andreas Lauser authored
hopefully... git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6094 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Andreas Lauser authored
grr, the DUNE_VERSION_NEWER_REV macro seems to be broken. why does nothing ever work at the first try... git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6093 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Andreas Lauser authored
for dune 2.0 and below there is parameter tree is not yet available, so it stays unavailable... git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6090 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 27 Jun, 2011 1 commit
-
-
Andreas Lauser authored
This messes up the indentation in some places, but before it was messed up anyway, depending on how your editor displays tabulator characters. To avoid such things in the future, please change your editor not to insert 4 space character instead of one tabulator character. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6079 2fb0f335-1f38-0410-981e-8018bf24f1b0
-