24#ifndef DUMUX_MATERIAL_FLUIDMATRIX_FRICTIONLAW_MANNING_HH
25#define DUMUX_MATERIAL_FLUIDMATRIX_FRICTIONLAW_MANNING_HH
29#include <dune/common/math.hh>
40template <
typename VolumeVariables>
43 using Scalar =
typename VolumeVariables::PrimaryVariables::value_type;
52 : gravity_(gravity), manningN_(manningN) {}
65 Dune::FieldVector<Scalar, 2>
shearStress(
const VolumeVariables& volVars)
const final
73 Scalar roughnessHeight = power(25.68/(1.0/manningN_),6);
74 roughnessHeight = this->
limitRoughH(roughnessHeight, volVars.waterDepth());
75 const Scalar c = pow((volVars.waterDepth() + roughnessHeight),1.0/6.0) * 1.0/(manningN_);
76 const Scalar uv = hypot(volVars.velocity(0),volVars.velocity(1));
78 shearStress[0] = -gravity_/(c*c) * volVars.velocity(0) * uv;
79 shearStress[1] = -gravity_/(c*c) * volVars.velocity(1) * uv;
Implementation of the abstract base class for friction laws.
Definition: frictionlaw.hh:42
Scalar limitRoughH(const Scalar roughnessHeight, const Scalar waterDepth) const
Limit the friction for small water depth.
Definition: frictionlaw.hh:88
Implementation of the friction law after Manning.
Definition: manning.hh:42
Dune::FieldVector< Scalar, 2 > shearStress(const VolumeVariables &volVars) const final
Compute the shear stress.
Definition: manning.hh:65
FrictionLawManning(const Scalar gravity, const Scalar manningN)
Constructor.
Definition: manning.hh:51