diff --git a/doc/doxygen/extradoc/parameterlist.txt b/doc/doxygen/extradoc/parameterlist.txt index efc8c21e2321eda3d7c01d4667ec0fb9a5cb7363..f93377a30086bbd1bb915e3716729a17ddc8f97e 100644 --- a/doc/doxygen/extradoc/parameterlist.txt +++ b/doc/doxygen/extradoc/parameterlist.txt @@ -347,8 +347,8 @@ * | ShallowWater | UseMixingLengthTurbulenceModel | bool | false | Whether the mixing-length turbulence model is used. | * | ShallowWater | VerticalCoefficientOfMixingLengthModel | Scalar | 1.0 | For the turbulence model base on the mixing length: The Elder-like vertical turbulence coefficient. | * | \b SimpleH2O | ReferenceTemperature | Scalar | 293.15 | The reference temperature in \f$\mathrm{[K]}\f$ for calculating the (liquid or gas) enthalpy of simple H2O. | - * | \b SpatialParameters | ContactAngle | Scalar | 0.0 | This contact angle \f$[rad]\f$ is set both as the contact angle within a pore throat and the one within a pore body. It can be overloaded for solution-dependent values. | * | \b SpatialParams | ComputeAwsFromAnsAndPcMax | bool | true | Compute volume-specific interfacial area between the wetting and solid phase from interfacial area between nonwetting and solid phase and maximum capillary pressure. | + * | SpatialParams | ContactAngle | Scalar | 0.0 | This contact angle \f$[rad]\f$ is set both as the contact angle within a pore throat and the one within a pore body. It can be overloaded for solution-dependent values. | * | SpatialParams | ForchCoeff | Scalar | 0.55 | The Forchheimer coefficient | * | SpatialParams | MinBoundaryPermeability | Scalar | - | The minimum permeability | * | SpatialParams | Permeability | Scalar | - | The permeability | diff --git a/dumux/material/spatialparams/porenetwork/porenetwork2p.hh b/dumux/material/spatialparams/porenetwork/porenetwork2p.hh index 7876af25c66c1a447cb6a12e8df070db331543de..dfa97886238b91206fcbf97dc1104d5fae766c8c 100644 --- a/dumux/material/spatialparams/porenetwork/porenetwork2p.hh +++ b/dumux/material/spatialparams/porenetwork/porenetwork2p.hh @@ -103,7 +103,7 @@ public: Scalar contactAngle(const Element& element, const ElementVolumeVariables& elemVolVars) const { - static const Scalar theta = getParam<Scalar>("SpatialParameters.ContactAngle", 0.0); + static const Scalar theta = getParam<Scalar>("SpatialParams.ContactAngle", 0.0); return theta; } @@ -120,7 +120,7 @@ public: const SubControlVolume& scv, const ElementSolutionVector& elemSol) const { - static const Scalar theta = getParam<Scalar>("SpatialParameters.ContactAngle", 0.0); + static const Scalar theta = getParam<Scalar>("SpatialParams.ContactAngle", 0.0); return theta; }