- 23 Mar, 2015 1 commit
-
-
Thomas Fetzer authored
adapted templates in diffusivityconstanttau.hh, which wasn't used anyway. added rhoSolid to the thermalconductivitylaws. updated some comments and GNU licence. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@14430 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 16 Jan, 2015 1 commit
-
-
Bernd Flemisch authored
This implements FS#216. The "heatCapacity" function of the spatial parameters and the volume variables for the implicit nonisothermal models was a misnomer, since it returned an effective quantity, namely, heatCapacity*density*(1 - porosity) in [J/(K m^3)]. Except for mpnc, which resulted in an additional inconsistency. Corresponding to the decision documented in FS#216, this patch renames the function to "solidHeatCapacity" and returns always the "true" (non-effective) heat capacity in [J/(kg K)]. This requires an additional function "solidDensity" which returns the mass density of the porous matrix. Moreover, the functions "thermalConductivitySolid/Fluid" are renamed to "solid/fluidThermalConductivity". The decision to prepend with "solid/fluid" rather than to append is motivated by consistency with components and fluid systems, where "gas" and "liquid" are always prepended to the corresponding function names. _Beware_: this change breaks compatibility. You have to adapt your spatial parameters such that they offer functions "solidHeatCapacity", "solidDensity" and "solidThermalConductivity". Reviewed by Alex. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@14070 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 06 Oct, 2014 1 commit
-
-
Philipp Nuske authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13453 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 02 Oct, 2014 1 commit
-
-
Thomas Fetzer authored
fixed latex part of doxygen comments git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13441 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 29 Sep, 2014 1 commit
-
-
Alexander Kissinger authored
- Deprecated the 3p3cni model - Added effective thermal conductivity calculation in fluidmatrixinteractions for 3p - Added thermal conductivity functions to the 3p fluidsystem h2oairmesitylen.hh and h2oairxylene.hh - Upddated the 3p3cni test for the generic non-isothermal model - Changed the reference vtus for the two tests, since results are slightly different due to different thermal conductivities git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13427 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 24 Sep, 2014 1 commit
-
-
Natalie Schroeder authored
resolving make headercheck errors reviewed by C.Grueninger git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13412 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 22 Sep, 2014 2 commits
-
-
Thomas Fetzer authored
removed file which was deprecated a year ago reviewed by martinb git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13382 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Thomas Fetzer authored
updated doxygen docu, there are still 7 warnings are produced git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13381 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 17 Sep, 2014 1 commit
-
-
Thomas Fetzer authored
updated doxgen docu, 3 warnings left git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13350 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 05 Sep, 2014 3 commits
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13292 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
conductivities, correct comments and spacing. The additional properties required by the generic non-isothermal model can be centralized in a file niproperties.hh. The signature of the effectiveThermalConductivity functions is unified. They get the volume variables, spatial parameters and the arguments that will be required for calling the spatial parameters. When attempting to use the nonisothermal model for 3p3c, it will be seen whether this signature is genral enough. Reviewed by Alex K. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13289 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
-
- 03 Sep, 2014 1 commit
-
-
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
-
- 29 Aug, 2014 1 commit
-
-
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
-
- 16 May, 2014 1 commit
-
-
Christoph Grueninger authored
(reviewed by bernd) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12836 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 09 Apr, 2014 2 commits
-
-
Philipp Nuske authored
adding the heatpipelaw from devel to stable. This relation gives capillary pressure as a function of interfacial tension, permeability and porosity. It was prominently used in Udell (1985), but is also known as Leverett Function. reviewed (like the last commit) by Christoph git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12742 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Philipp Nuske authored
- it is now possible to specify the number of solved energy equations (property NumEnergyEquations). Either 0 isothermal 1 standard-nonisothermal 2 *new* one energy equation for the void-space and one for the solid 3 one energy equation for each phase (wetting, non-wetting, solid) Therefore, the boolean property EnableKineticEnergy had to be renamed to the integer property NumEnergyEquations - solve bug in test_boxmpnckinetic git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12741 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 10 Feb, 2014 1 commit
-
-
Christoph Grueninger authored
(reviewed by karens) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12442 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 06 Feb, 2014 1 commit
-
-
Thomas Fetzer authored
length = 150, thanks to kristopherg reviewed by fetzer git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12429 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 25 Oct, 2013 1 commit
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11808 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 24 Oct, 2013 2 commits
-
-
Klaus Mosthaf authored
Added deprecation warning and include in diffusivitymillingtonquirk.hh, which was moved one folder up git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11807 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Holger Class authored
more general git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11804 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 22 Oct, 2013 2 commits
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11769 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11762 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 18 Oct, 2013 1 commit
-
-
Alexander Kissinger authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11714 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 17 Oct, 2013 1 commit
-
-
Bernd Flemisch authored
bugfix: make a directory known to the buildsystem such that it is included in the tarball. Approved by Alex. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11684 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 16 Oct, 2013 1 commit
-
-
Alexander Kissinger authored
- Removed old copyright notices and replaced them - Updated COPYING git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11666 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 09 Oct, 2013 1 commit
-
-
Alexander Kissinger authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11638 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 01 Oct, 2013 1 commit
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11594 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 19 Sep, 2013 2 commits
-
-
Philipp Nuske authored
Introducing an interface for interfacial area surfaces which translates absolute to effective saturations (just like the one for the material laws). changing the templates for the surfaces a little. reviewed by Bernd git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11505 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Philipp Nuske authored
Introducing a new property: NusseltFormulation SherwoodFormulation Defining possible values in dimensionlessnumbers The actual call to the function now additionally needs a flag for which formulation to choose. add a bunch of consts in order not to accidentially change parameteres (mpncvoluemvariablesiakinetic) reviewed by Bernd git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11504 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 10 Sep, 2013 1 commit
-
-
Christoph Grueninger authored
Make decoupled code compatible to current trunk (Jacobians, VTKOptions) Move default arguments to declaration to make clang happy. Remove spurious semicolons. (reviewed by mwolff) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11435 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 06 Sep, 2013 1 commit
-
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11403 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 30 Jul, 2013 1 commit
-
-
Christoph Grueninger authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11095 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 24 Jul, 2013 1 commit
-
-
Philipp Nuske authored
add different possibilities to parametrize the interfacial area between fluid phases as well as fluid and solid phases. reviewed by Bernd git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11062 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 23 Jul, 2013 2 commits
-
-
Klaus Mosthaf authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11053 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
Bernd Flemisch authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11050 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 02 Jul, 2013 1 commit
-
-
Klaus Mosthaf authored
git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@10961 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 29 May, 2013 1 commit
-
-
Bernd Flemisch authored
local variables. Reviewed by Christoph. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@10774 2fb0f335-1f38-0410-981e-8018bf24f1b0
-
- 28 May, 2013 1 commit
-
-
Bernd Flemisch authored
Only public member names have been treated so far. Local variables will be done shortly, classes maybe not before the next release cycle. Everything old could be marked deprecated. Reviewed by Benjamin and Christoph. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@10761 2fb0f335-1f38-0410-981e-8018bf24f1b0
-