https://mooseframework.inl.gov
FunctorKappaFluid.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
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 
19 template <typename Derived>
21 {
23 
24 public:
26 
28 
29 protected:
30  template <typename Space, typename Time>
31  ADReal computeEffectiveConductivity(const Space & r, const Time & t) const;
32 
35 };
36 
37 template <typename Derived>
38 template <typename Space, typename Time>
39 ADReal
41 {
42  return _k(r, t);
43 }
44 
52 class FunctorKappaFluid final : public FunctorKappaFluidTempl<FunctorKappaFluid>
53 {
54 public:
56 };
57 
58 template <typename Derived>
61  _k(FunctorMaterial::getFunctor<ADReal>(NS::k))
62 {
63 }
64 
65 template <typename Derived>
68 {
70  params.addClassDescription("Zero-thermal dispersion conductivity");
71  return params;
72 }
Template for the fluid effective thermal conductivity based on a volume-average of the thermal conduc...
DualNumber< Real, DNDerivativeType, true > ADReal
ADReal computeEffectiveConductivity(const Space &r, const Time &t) const
FunctorKappaFluid(const InputParameters &parameters)
Material providing an isotropic effective fluid thermal conductivity.
const InputParameters & parameters() const
FunctorKappaFluidTempl(const InputParameters &parameters)
static InputParameters validParams()
static const std::string k
Definition: NS.h:130
const Moose::Functor< ADReal > & _k
Fluid thermal conductivity.
Instantiation of the template for the fluid effective thermal conductivity based on a volume-average ...