www.mooseframework.org
PorousFlowRelativePermeabilityConst.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
13 
18 template <bool is_ad>
21 {
22 public:
24 
26 
27 protected:
28  virtual GenericReal<is_ad> relativePermeability(GenericReal<is_ad> seff) const override;
29  virtual Real dRelativePermeability(Real seff) const override;
30 
32  const Real _relperm;
33 };
34 
virtual Real dRelativePermeability(Real seff) const override
Derivative of relative permeability with respect to effective saturation.
PorousFlowRelativePermeabilityConstTempl(const InputParameters &parameters)
virtual GenericReal< is_ad > relativePermeability(GenericReal< is_ad > seff) const override
Relative permeability equation (must be overriden in derived class)
Base class for PorousFlow relative permeability materials.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
This class sets a constant relative permeability.
PorousFlowRelativePermeabilityConstTempl< false > PorousFlowRelativePermeabilityConst
typename Moose::GenericType< Real, is_ad > GenericReal
const Real _relperm
Constant relative permeability.
PorousFlowRelativePermeabilityConstTempl< true > ADPorousFlowRelativePermeabilityConst