www.mooseframework.org
PorousFlowHeatAdvection.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 
12 #include "PorousFlowDarcyBase.h"
13 
15 
16 template <>
17 InputParameters validParams<PorousFlowHeatAdvection>();
18 
25 {
26 public:
27  PorousFlowHeatAdvection(const InputParameters & parameters);
28 
29 protected:
30  virtual Real mobility(unsigned nodenum, unsigned phase) const override;
31  virtual Real dmobility(unsigned nodenum, unsigned phase, unsigned pvar) const override;
32 
34  const MaterialProperty<std::vector<Real>> & _enthalpy;
35 
37  const MaterialProperty<std::vector<std::vector<Real>>> & _denthalpy_dvar;
38 
40  const MaterialProperty<std::vector<Real>> & _relative_permeability;
41 
43  const MaterialProperty<std::vector<std::vector<Real>>> & _drelative_permeability_dvar;
44 };
45 
PorousFlowHeatAdvection::_denthalpy_dvar
const MaterialProperty< std::vector< std::vector< Real > > > & _denthalpy_dvar
Derivative of the enthalpy wrt PorousFlow variables.
Definition: PorousFlowHeatAdvection.h:37
PorousFlowDarcyBase.h
validParams< PorousFlowHeatAdvection >
InputParameters validParams< PorousFlowHeatAdvection >()
Definition: PorousFlowHeatAdvection.C:16
PorousFlowHeatAdvection::_drelative_permeability_dvar
const MaterialProperty< std::vector< std::vector< Real > > > & _drelative_permeability_dvar
Derivative of relative permeability of each phase wrt PorousFlow variables.
Definition: PorousFlowHeatAdvection.h:43
PorousFlowHeatAdvection::dmobility
virtual Real dmobility(unsigned nodenum, unsigned phase, unsigned pvar) const override
The derivative of mobility with respect to PorousFlow variable pvar.
Definition: PorousFlowHeatAdvection.C:43
PorousFlowHeatAdvection::mobility
virtual Real mobility(unsigned nodenum, unsigned phase) const override
The mobility of the fluid.
Definition: PorousFlowHeatAdvection.C:36
PorousFlowHeatAdvection::_enthalpy
const MaterialProperty< std::vector< Real > > & _enthalpy
Enthalpy of each phase.
Definition: PorousFlowHeatAdvection.h:34
PorousFlowHeatAdvection
Advection of heat via flux of component k in fluid phase alpha.
Definition: PorousFlowHeatAdvection.h:24
PorousFlowHeatAdvection::PorousFlowHeatAdvection
PorousFlowHeatAdvection(const InputParameters &parameters)
Definition: PorousFlowHeatAdvection.C:23
PorousFlowDarcyBase
Darcy advective flux.
Definition: PorousFlowDarcyBase.h:28
PorousFlowHeatAdvection::_relative_permeability
const MaterialProperty< std::vector< Real > > & _relative_permeability
Relative permeability of each phase.
Definition: PorousFlowHeatAdvection.h:40