Skip to content
Snippets Groups Projects
  1. Jan 19, 2021
  2. Oct 30, 2020
  3. Oct 10, 2019
  4. Dec 18, 2018
  5. Dec 17, 2018
  6. Nov 13, 2018
  7. Aug 28, 2018
  8. Jun 04, 2018
  9. May 08, 2018
  10. May 03, 2018
  11. Apr 27, 2018
  12. Jan 10, 2018
  13. Dec 19, 2017
  14. Dec 16, 2017
  15. Dec 15, 2017
  16. Nov 10, 2017
  17. Feb 01, 2017
  18. Jul 26, 2016
    • Bernd Flemisch's avatar
      remove superfluous `Dumux::` qualifiers · 35bf6f1d
      Bernd Flemisch authored
      Everything in our .hh files is defined within the namespace `Dumux`.
      There were numerous occurrences of `Dumux::` qualifiers that were
      unnecessary. Remove those occurrences. Necessary qualifications
      remain, such as `typedef Dumux::H2O<Scalar> H2O;`.
      35bf6f1d
  19. Jan 22, 2016
  20. Nov 20, 2015
  21. Nov 03, 2015
  22. Jul 14, 2015
  23. Mar 25, 2015
  24. Jan 16, 2015
    • Bernd Flemisch's avatar
      [nonisothermal] improve naming and meaning of solid thermal parameters · 8465d28a
      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
      8465d28a
  25. Jan 14, 2015
  26. Jan 13, 2015
    • Timo Koch's avatar
      This implements the task of the last dumux day for the implicit tests... · 53ace3de
      Timo Koch authored
      This implements the task of the last dumux day for the implicit tests (common/decoupled/freeflow/geomechanics see earlier commit):
      In test folder:
      1. change SET_TYPE_PROP instead of SET_PROP where possible
      2. Remove commented code where not needed
      3. Remove unnecessary includes
      4. Change the neumann/dirichlet,... functions to the corresponding atPos functions where globalPos is needed
      
      The task for the multidomain folder will follow by thomas
      
      Reviewed by bernd
       
      
      
      git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@14046 2fb0f335-1f38-0410-981e-8018bf24f1b0
      53ace3de
  27. Nov 28, 2014
    • Thomas Fetzer's avatar
      [non-isothermal] · 509c42ba
      Thomas Fetzer authored
      update to the generic non-isothermal model
      
      adjusted:
       - 1p model
       - 3p model
       - 1p test (including 1pni tests)
       - 1p2c test (including 1p2cni tests)
       - 2p2c test (including 2p2cni tests)
       - 3p test (including 3pni tests)
       - 3p3c test (including 3p3cpni tests)
       - new ctest for kuevette problem
      
      updated:
       - SET_TYPE_PROP instead of SET_PROP
       - documentation of non-isothermal problems
       - solution for 2pinjectionproblem (now with simplex grid)
       - version number in one start message
      
      deleted:
       - old non-isothermal test folders
       - whitespace at end of configure.ac lines
      
      created and reviewed by kissinger and fetzer
      
      
      
      
      git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13825 2fb0f335-1f38-0410-981e-8018bf24f1b0
      509c42ba
  28. Sep 05, 2014
    • Bernd Flemisch's avatar
      [nonisothermal] move the already existing non-isothermal two-phase · ca130fff
      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
      ca130fff
  29. May 16, 2014
  30. Aug 29, 2013
  31. Feb 26, 2013
  32. Jan 22, 2013
  33. Jan 21, 2013
    • Klaus Mosthaf's avatar
      Work on heat conduction and thermal conductivity (FS #172) · f8e88f6d
      Klaus Mosthaf authored
      - added somerton.hh in fluidmatrixinteractions/2p which provides a model
        for the effective thermal conductivity (static class)
      - removed *matrixHeatFlux() methods in waterairspatialparams, introduced
        thermalConductivitySolid() instead
      - added property ThermalConductivityModel, which is set as default to
        Somerton
      - added effThermalConductivity and calculateEffThermalConductivity
        methods, thermal conductivities are averaged harmonically
      
      Reviewed by Melanie
      
      
      git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@10049 2fb0f335-1f38-0410-981e-8018bf24f1b0
      f8e88f6d
Loading