www.mooseframework.org
PorousFlowThermalConductivityIdeal.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 
15 
16 template <>
18 
27 {
28 public:
29  PorousFlowThermalConductivityIdeal(const InputParameters & parameters);
30 
31 protected:
32  virtual void computeQpProperties() override;
33 
35  const RealTensorValue _la_dry;
36 
38  const bool _wet_and_dry_differ;
39 
41  const RealTensorValue _la_wet;
42 
44  const Real _exponent;
45 
47  const bool _aqueous_phase;
48 
50  const unsigned _aqueous_phase_number;
51 
53  const MaterialProperty<std::vector<Real>> * const _saturation_qp;
54 
56  const MaterialProperty<std::vector<std::vector<Real>>> * const _dsaturation_qp_dvar;
57 };
58 
PorousFlowThermalConductivityIdeal::_aqueous_phase
const bool _aqueous_phase
Whether this is a fluid simulation.
Definition: PorousFlowThermalConductivityIdeal.h:47
PorousFlowThermalConductivityIdeal::_saturation_qp
const MaterialProperty< std::vector< Real > > *const _saturation_qp
Saturation of the fluid phases at the quadpoints.
Definition: PorousFlowThermalConductivityIdeal.h:53
PorousFlowThermalConductivityIdeal::_aqueous_phase_number
const unsigned _aqueous_phase_number
Phase number of the aqueous phase.
Definition: PorousFlowThermalConductivityIdeal.h:50
PorousFlowThermalConductivityIdeal
This material computes thermal conductivity for a PorousMedium - fluid system, by using Thermal condu...
Definition: PorousFlowThermalConductivityIdeal.h:26
PorousFlowThermalConductivityBase
Base class for materials that provide thermal conducitivity.
Definition: PorousFlowThermalConductivityBase.h:22
PorousFlowThermalConductivityIdeal::_exponent
const Real _exponent
Exponent for saturation.
Definition: PorousFlowThermalConductivityIdeal.h:44
PorousFlowThermalConductivityIdeal::_dsaturation_qp_dvar
const MaterialProperty< std::vector< std::vector< Real > > > *const _dsaturation_qp_dvar
d(Saturation)/d(PorousFlow variable)
Definition: PorousFlowThermalConductivityIdeal.h:56
validParams< PorousFlowThermalConductivityIdeal >
InputParameters validParams< PorousFlowThermalConductivityIdeal >()
Definition: PorousFlowThermalConductivityIdeal.C:16
PorousFlowThermalConductivityIdeal::computeQpProperties
virtual void computeQpProperties() override
Definition: PorousFlowThermalConductivityIdeal.C:70
PorousFlowThermalConductivityIdeal::_la_wet
const RealTensorValue _la_wet
Wet thermal conductivity of rock.
Definition: PorousFlowThermalConductivityIdeal.h:41
PorousFlowThermalConductivityIdeal::PorousFlowThermalConductivityIdeal
PorousFlowThermalConductivityIdeal(const InputParameters &parameters)
Definition: PorousFlowThermalConductivityIdeal.C:44
PorousFlowThermalConductivityIdeal::_wet_and_dry_differ
const bool _wet_and_dry_differ
Whether _la_wet has been supplied.
Definition: PorousFlowThermalConductivityIdeal.h:38
PorousFlowThermalConductivityBase.h
PorousFlowThermalConductivityIdeal::_la_dry
const RealTensorValue _la_dry
Dry thermal conductivity of rock.
Definition: PorousFlowThermalConductivityIdeal.h:35