- Sep 18, 2014
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13355 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Sep 17, 2014
-
-
Bernd Flemisch authored
model Discussed with Thomas. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13354 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Christoph Grüninger authored
One more occurance that was not included in the previous commits. (reviewed by natalies) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13346 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
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 08, 2014
-
-
Bernd Flemisch authored
The two-phase geomechanics model is based on PDELab 2.0 now. In order to avoid patching, the ElTwoPModel is based on the new ElTwoPBaseModel instead of the ImplicitModel. The ElTwoPBaseModel is almost a copy of ImplicitModel and only differs in the way that the SolutionVectors are handled. There's definitely room for improvement here. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13296 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
Since everything has been moved to PDELab 2.0, the checks for a patched PDELab are no longer needed. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13295 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
If the CO2NI model is used, the the properties IsothermalModel and IsothermalVolumeVariables have to be set in the corresponding problem file. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13294 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Sep 05, 2014
-
-
Bernd Flemisch authored
models to the generic setting In order to use a new nonisothermal model, only the includes in the corresponding application files have to be changed from including the dedicated non-isothermal model such as #include <dumux/implicit/2p2cni/2p2cnimodel.hh> to the corresponding isothermal one such as #include <dumux/implicit/2p2c/2p2cmodel.hh> This has been done for the tests in test/implicit/2pni, ...2p2cni and ...co2ni. For enabling the isothermal models to get the new non-isothermal functionality, it was sufficient to modify the files ...properties.hh and ...propertydefaults.hh: - In ...properties.hh, a non-isothermal type tag such as "TwoPTwoCNI" is introduced that inhereits from the corresponding isothermal one AND the type tag "NonIsothermal". In order to not mix it up with the old non-isothermal models, corresponding safety guards were added. - In ...propertydefaults.hh, the properties introduced in niproperties.hh of the isothermal model have to be set. The old non-isothermal models have been deprecated by emitting a warning if the corresponding ...properties.hh file is included. To ensure that they still work, the ...properties.hh file is included on top of every file that corresponds to the old model. Together with the safety guard mentioned above, this guarantees that in fact the old model is chosen if desired. Reviewed by Alex K. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13290 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
files and installation script git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13288 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
Allows to use an unpatched (!) PDELab 2.0 for the multidomain applications. Users have to upgrade to PDELab 2.0 and the 2.0 release branch of dune-multidomain. - Subdomain GridFunctionSpaces are expected to use Dune::PDELab::NoConstraints instead of ...NonoverlappingConformingDirichletConstraints. Users have to remove the corresponding property settings in the subproblem files. - Subdomain GridOperators are no longer needed. The property name has been removed from subdomainproperties.hh. Users have to remove the corresponding property settings in the subproblem files. - Use OrderingTags instead of Mappers. - The storage of residual, current and old solution in the assembler/model uses shared_ptr now. - The components of the multidomain vector containers are accessed via the base() method. Everything in splitandmerge.hh still relies on EntityBlockwiseOrdering. Reviewed by gruenich. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13287 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
Reviewed by gruenich. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13285 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
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
-
- Sep 03, 2014
-
-
Alexander Kissinger authored
- The implicit 1p2c model is ready to use with the non-isothermal model - Added 1p fluidmatrixinteractions to calculate effective thermal conductivity of fluid and solid - Adjusted test/implicit/1p2c: - 1p2coutflowproblem.hh can be switched to nonisothermal - 1p2cconductionproblem.hh compares the model results to a simple analytical model - 1p2cconvectionproblem.hh compares the model results to another simple analytical model Reviewed by Bernd git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13264 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Sep 02, 2014
-
-
Bernd Flemisch authored
The change to conservation of moles in the continuity balance brought some non-fuzzy, but tolerable changes, to the Stokes2c(ni) tests. Moreover, the stabilization parameter for the Stokes2c test has been increased to dampen further the unphysical pressure oscillations. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13263 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
-
- Aug 27, 2014
-
-
Philipp Nuske authored
writer: call that function in order to write it to result file reference: identical except one additional variable present git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13234 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Aug 22, 2014
-
-
Philipp Nuske authored
in output git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13223 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Aug 13, 2014
-
-
Thomas Fetzer authored
included the energy fluxes transported by the diffusive component fluxes times the enthalpy of the components applies only for the free flow region reviewed by Bernd and Vishal git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13165 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 24, 2014
-
-
Bernd Flemisch authored
Reviewed by Philipp. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13095 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
-
Christoph Grüninger authored
It is 10% faster in the test. We have to investigate to use UMFPack more. (reviewed by bernd) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13068 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 08, 2014
-
-
Markus Blatt authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/branches/strip-pdelab@13041 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 02, 2014
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13010 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jul 01, 2014
-
-
Christoph Grüninger authored
Update core modules to 2.3. PDELab to 1.1 MultidomainGrid 2.3 release branch. Stick with hand-picked version of Multidomain. Many thanks to Steffen for updating Multidomani and fixing my bug. (reviewed by fetzer) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13008 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jun 30, 2014
-
-
Thomas Fetzer authored
can be adjusted by the paramFile reviewed by gruenich git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13001 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jun 06, 2014
-
-
Thomas Fetzer authored
variables reviewed by klaus and hommel git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12960 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jun 05, 2014
-
-
Dominik Riesterer authored
reviewed by Philipp git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12956 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- Jun 04, 2014
-
-
Markus Blatt authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/branches/strip-pdelab@12949 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Markus Blatt authored
Currently this breaks the build, as the model is missing the members dofMapper and gridView. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/branches/strip-pdelab@12939 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Markus Blatt authored
Use the correct macro for UG, which is HAVE_UG. Use logical instead of bitwise or when checking whether either ALUGrid or UG is there. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/branches/strip-pdelab@12933 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Markus Blatt authored
or UG is there. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/branches/strip-pdelab@12932 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Markus Blatt authored
It is HAVE_UG and not HAVE_UGGRID! git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/branches/strip-pdelab@12930 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- May 29, 2014
-
-
Markus Blatt authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/branches/strip-pdelab@12914 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- May 22, 2014
-
-
Thomas Fetzer authored
compare can be found in CMakeLists.txt, paramater file is now called by ParameterFile reviewed by gruenich git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12859 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Thomas Fetzer authored
compare can be found in CMakeLists.txt, paramater file is now called by ParameterFile reviewed by gruenich git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12858 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- May 20, 2014
-
-
Martin Beck authored
[el1p2c] Optional use of dune-pdelab + amg or SuperLU, now working if only one option is available, and message if both are missing. Reviewed by alexk. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12851 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Martin Beck authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12850 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- May 19, 2014
-
-
Martin Beck authored
AMG is used as the primary solver to allow parallel computations. If neither AMG nor PDELab are available, SuperLU will be used, which was the solver previously implemented. If neither of these solvers are available, there will be a warning. In addition, the grid was changed from SGrid to YaspGrid. Reviewed by alexk. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12849 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Martin Beck authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12847 2fb0f335-1f38-0410-981e-8018bf24f1b0
-