www.mooseframework.org
PorousFlowRelativePermeabilityFLAC.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 #include "PorousFlowFLACrelperm.h"
14 
16 
17 template <>
19 
26 {
27 public:
28  PorousFlowRelativePermeabilityFLAC(const InputParameters & parameters);
29 
30 protected:
31  virtual Real relativePermeability(Real seff) const override;
32  virtual Real dRelativePermeability(Real seff) const override;
33 
35  const Real _m;
36 };
37 
PorousFlowRelativePermeabilityFLAC::dRelativePermeability
virtual Real dRelativePermeability(Real seff) const override
Derivative of relative permeability with respect to effective saturation.
Definition: PorousFlowRelativePermeabilityFLAC.C:39
PorousFlowRelativePermeabilityFLAC::_m
const Real _m
Exponent m for the specified phase.
Definition: PorousFlowRelativePermeabilityFLAC.h:35
PorousFlowRelativePermeabilityFLAC
Material to calculate relative permeability inspired by the formula used in FLAC: relperm = (1 + m) s...
Definition: PorousFlowRelativePermeabilityFLAC.h:25
PorousFlowRelativePermeabilityBase.h
validParams< PorousFlowRelativePermeabilityFLAC >
InputParameters validParams< PorousFlowRelativePermeabilityFLAC >()
Definition: PorousFlowRelativePermeabilityFLAC.C:16
PorousFlowRelativePermeabilityBase
Base class for PorousFlow relative permeability materials.
Definition: PorousFlowRelativePermeabilityBase.h:24
PorousFlowRelativePermeabilityFLAC::PorousFlowRelativePermeabilityFLAC
PorousFlowRelativePermeabilityFLAC(const InputParameters &parameters)
Definition: PorousFlowRelativePermeabilityFLAC.C:26
PorousFlowFLACrelperm.h
PorousFlowRelativePermeabilityFLAC::relativePermeability
virtual Real relativePermeability(Real seff) const override
Relative permeability equation (must be overriden in derived class)
Definition: PorousFlowRelativePermeabilityFLAC.C:33