- Jul 31, 2015
-
-
Johannes Hommel authored
conventions, review by vishal git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15209 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 30, 2015
-
-
Vishal Jambhekar authored
- Units in the fluidsystem/brinevariablesalinity and components/nacl checked. Additional commented units removed. - Commented cout statements removed from computefromfugacities2pncmin, computefromreferencephase2pnc and miscible2pnccomposition - The ccommented out removed from problem file and input file corrected. - The test case is checked for both debug and optim model with clang compiler. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15203 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
No visible differences to the solution before. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15201 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
Replace if (!useMoles) // mass stuff else // mole stuff by if (useMoles) // mole stuff else // mass stuff Reviewed by fetzer. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15200 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Vishal Jambhekar authored
New test case for 2pncmin model added to dumux/test. For this following additional files are needed (Reviewde by Johannes) - For variation of salinity in brine the needed constitutive relations are implemented in components brine_VerSalinity.hh and nacl.hh - Additional constraint solvers (compositionfromfugacities2pncmin and computefromreferencephase2pncmin) are needed, specially for the case nPhaseOnly - Additional constraint solvers (computefromreferencephase2pnc and miscible2pnccomposition) are needed for 2pnc cases in general. - Fluidsystem brineairfluidsystem is updated - Binerycoefficient file for brine_air case is included. - A test case for 2pncmin model is included for flusiong of precipitated salt in gas reserviors. The includes corresponding problem file, spatial parameters file, input file and *.cc file. - For this the CMakeLists.txt is also updated. - A reference solution 2pncmin test case "injectionbox2pncmin-reference" is included to test/references folder git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15196 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 29, 2015
-
-
Bernd Flemisch authored
References have to be updated due to differences between test system and the system of the reference solution creator. The differences are small, but still too large for fuzzycompare. This is a known issue, see FS#281 for details. The two ni-multidomain tests use the same names for the output. This leads to conflicts when the tests are executed in parallel. The names of one test are changed to fix this. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15189 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15186 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
conventions Reviewed by gruenich. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15185 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
Introduce a grid creator that reads from a Petrel output / Eclipse input file and generates a CpGrid that is offered by the OPM module dune-cornerpoint. Enhance the fully-implicit cell-centered models to be able to deal with cornerpoint grids, test the functionality. This patch consists of several parts: - patches/ and dune.module: the CMake buildsystems from Dune and OPM are not compatible. The patches change some CMake files in the required OPM modules opm-parser, opm-core and dune-cornerpoint in such a way that those modules can serve as a dependency for Dumux. In addition, some specific CMake options have to be passed to dunecontrol. See patches/README for details. - dumux/io/: defines the CpGridCreator which behaves like any other grid creator that reads from a file. In addition, it offers the Eclipse input deck in form of a static function deck(). This deck can be used to extract further simulation parameters, most prominently porosity and permeability values. - dumux/implicit/cornerpoint/: changes some of the cell-centered classes to be able to deal with a CpGrid. The changes in the ElementVolumeVariables and the FVElementGeometry are minor and required by the facts that a CpGrid doesn't offer codim-1/2 entities and that the geometries don't offer local-to-global mappings. The changes in the DarcyFluxVariables are made for enhancing the robustness of the two-point flux approximation by forcing the inter-element transmissibilities to be positive. - test/implicit/2p: runs a fully-implicit two-phase immiscible model on a CpGrid. An element index with an injection rate can be given in the input file. The grid provided in grids/ consists of only four elements, but exhibits typical cornerpoint features like a nonconforming situation and general hexahedrons. A more realistic grid will be provided in dumux-lecture soon. Reviewed by gruenich. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15183 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 28, 2015
-
-
Timo Koch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15180 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Timo Koch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15179 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 27, 2015
-
-
Bernd Flemisch authored
The new test employs the function setDirichlet(pvIdx, eqIdx) with pvIdx != eqIdx. On the right boundary, a Dirichlet value for the nonwetting-phase pressure should be set. At the same time, nonwetting phase should be allowed to leave the domain by means of an outflow boundary condition. In order to achieve this the general 'setDirichlet' method is used in the function 'boundaryTypesAtPos' which allows to set the value of a primary variable by replacing an arbitrary balance equation. In this case, the index of the primary variable is Indices::pnIdx, while the index of the replaced equation is Indices::contiWEqIdx. This allows to set the outflow condition for equation index Indices::contiNEqIdx. This completes FS#270. Reviewed by Timo. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15167 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Thomas Fetzer authored
test_boxmpnckinetic now uses the start.hh and the interfacegridcreator.hh updated parameters and removed tabs from input file test still fails, but the results with/without these changes are identical reviewed by kilian git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15165 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 24, 2015
-
-
Thomas Fetzer authored
adapted the interfacegridcreator to the common GridCreator type structure and for the use in the common start.hh deprecated the interfacemeshcreator.hh [multidomain] adapted multidomain to be used with the common start.hh deprecated the old multidomainproblem constructor thanks to and reviewed by bernd and gruenich git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15161 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
-
-
Timo Koch authored
[fix] Remove unknown cmake macro. It is not needed here since the parameterfiles are given with the source path. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15133 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Thomas Fetzer authored
Adapt all Ctests to the new architecture of runtest Reviewd by timok git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15131 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Timo Koch authored
Adapt all Ctests to the new, architecture. Reviewd by fetzer git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15129 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Christoph Grüninger authored
(reviewed by timok) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15127 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
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
-
Christoph Grüninger authored
Deprecate unused function simulate from MultiDomainProblem. (reviewed and tested by fetzer) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15109 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 20, 2015
-
-
Thomas Fetzer authored
- updated output - eddy coefficient are now printed to vtk - fluxVariables data is printed to csv file - fixed small bug with the crossLength for Baldwin Lomax Model - further removing of unused properties reviewed by gruenich git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15103 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 16, 2015
-
-
Thomas Fetzer authored
shortened setting of properties reviewed by gruenich git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15094 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Martin Schneider authored
Changed linear solver for adaptive test problems. Previously SuperLU was used which is not included in the dune-istl module and therefore possibly not available on all machines. Reviewed by Timo git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15092 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Nicolas Schwenck authored
which lead to a DUNE exception when compiling with O3 and march=native on some machines reviewed by gruenich git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15091 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
The uploaded ones have been calculated using another grid manager than the ones on the test system. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15089 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 15, 2015
-
-
Bernd Flemisch authored
The fuzzycompare script seems to be not fuzzy enough. The differences are due to the fact that the reference and the test solution have been / are calculated on different systems. They are negligible. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15075 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
The changes introduced in commit 14916 had no effect on the test results. However, the reference solution was also updated. This restores the old reference solution. Discussed with fetzer. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15074 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 14, 2015
-
-
Thomas Fetzer authored
replaced SET_PROP by SET_INT_PROP, like it was proposed at a previous dumux-day reviewed by gruenich git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15070 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Thomas Fetzer authored
better handling of switching on/off of the gnuplot windows deprecated use of the plottingwindownumber unified output names reviewed by bernd git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15069 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Timo Koch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15068 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Timo Koch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15066 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Natalie Schröder authored
* change in richards output - pressure head output only if gravity is defined * update of reference solutions of all richards tests - needed due to change in the output (pressure head, water content and source values) discussed and reviewed by Bernd git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15062 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Martin Schneider authored
Reviewed by Nicolas git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15061 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15060 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 13, 2015
-
-
Thomas Fetzer authored
fixed headercheck by forward declaration of properties and includes of the correct headers reviewed by martins and timok git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15059 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Thomas Fetzer authored
- added asserts for the mass/mole formulations in the coupling conditions to ensure that the coupling conditions are applied correctly - skip test in case SuperLU or UMFPack are not available - updated documention and use of properties reviewed by gruenich git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15055 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Thomas Fetzer authored
- defaulted superlu and umfpack as linear solver - added macros to skip test if the two above mentioned solvers are not installed - removed duplicate property definition - beautified comments reviewed by gruenich and hommel git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15051 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Christoph Grüninger authored
Same for make_shared and some includes. (reviewed by fetzer) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15050 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Christoph Grüninger authored
(reviewed by fetzer) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15047 2fb0f335-1f38-0410-981e-8018bf24f1b0
-