24#ifndef DUMUX_MATERIAL_FLUIDMATRIX_FRICTIONLAW_NIKURADSE_HH
25#define DUMUX_MATERIAL_FLUIDMATRIX_FRICTIONLAW_NIKURADSE_HH
29#include <dune/common/math.hh>
40template <
typename VolumeVariables>
43 using Scalar =
typename VolumeVariables::PrimaryVariables::value_type;
64 Dune::FieldVector<Scalar, 2>
shearStress(
const VolumeVariables& volVars)
const final
72 Scalar roughnessHeight = ks_;
73 roughnessHeight = this->
limitRoughH(roughnessHeight, volVars.waterDepth());
74 const Scalar ustarH = power(0.41,2)/power(log((12*(volVars.waterDepth() + roughnessHeight))/ks_),2);
75 const Scalar uv = hypot(volVars.velocity(0),volVars.velocity(1));
77 shearStress[0] = -ustarH * volVars.velocity(0) * uv;
78 shearStress[1] = -ustarH * 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 Nikuradse.
Definition: nikuradse.hh:42
FrictionLawNikuradse(const Scalar ks)
Constructor.
Definition: nikuradse.hh:50
Dune::FieldVector< Scalar, 2 > shearStress(const VolumeVariables &volVars) const final
Compute the shear stress.
Definition: nikuradse.hh:64