https://mooseframework.inl.gov
Loading...
Searching...
No Matches
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
19template <typename Derived>
21{
23
24public:
26
28
29protected:
30 template <typename Space, typename Time>
31 ADReal computeEffectiveConductivity(const Space & r, const Time & t) const;
32
35};
36
37template <typename Derived>
38template <typename Space, typename Time>
41{
42 return _k(r, t);
43}
44
52class FunctorKappaFluid final : public FunctorKappaFluidTempl<FunctorKappaFluid>
53{
54public:
56};
57
58template <typename Derived>
64
65template <typename Derived>
68{
70 params.addClassDescription("Zero-thermal dispersion conductivity");
71 return params;
72}
DualNumber< Real, DNDerivativeType, true > ADReal
Material providing an isotropic effective fluid thermal conductivity.
Template for the fluid effective thermal conductivity based on a volume-average of the thermal conduc...
ADReal computeEffectiveConductivity(const Space &r, const Time &t) const
FunctorKappaFluidTempl(const InputParameters &parameters)
static InputParameters validParams()
const Moose::Functor< ADReal > & _k
Fluid thermal conductivity.
Instantiation of the template for the fluid effective thermal conductivity based on a volume-average ...
const InputParameters & parameters() const