https://mooseframework.inl.gov
FunctorIsotropicEffectiveFluidThermalConductivity.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 #include "NS.h"
14 
18 template <typename Derived>
21 {
22 public:
24 
26 };
27 
28 template <typename Derived>
31 {
33 }
34 
35 template <typename Derived>
39 {
40  addFunctorProperty<ADRealVectorValue>(
41  NS::kappa,
42  [this](const auto & r, const auto & t) -> ADRealVectorValue
43  {
44  RealVectorValue multipliers(1.0, 1.0, 1.0);
45  return multipliers * static_cast<Derived *>(this)->computeEffectiveConductivity(r, t);
46  });
47 }
This is a base class material to calculate the effective thermal conductivity of the fluid phase...
Material providing an isotropic effective fluid thermal conductivity.
static const std::string kappa
Definition: NS.h:116
const InputParameters & parameters() const