https://mooseframework.inl.gov
AnisoHeatConductionMaterial.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 "Material.h"
14 
15 class Function;
16 
20 template <bool is_ad>
22 {
23 public:
25 
27 
28 protected:
29  virtual void initQpStatefulProperties() override;
30  virtual void computeQpProperties() override;
31 
32  const unsigned int _dim;
33 
34  const Real _ref_temp;
35  const bool _has_temp;
37  const unsigned int _T_var;
38  const VariableName _T_name;
39 
40  const std::string _base_name;
41 
46 
50 
52 
53 private:
54  auto genericQPoints();
55 };
56 
MaterialProperty< RankTwoTensor > & _dthermal_conductivity_dT
AnisoHeatConductionMaterialTempl< true > ADAnisoHeatConductionMaterial
MaterialProperty< Real > & _dspecific_heat_dT
const MooseArray< ADPoint > * _ad_q_point
Moose::GenericType< VariableValue, is_ad > GenericVariableValue
typename GenericMaterialPropertyStruct< T, is_ad >::type GenericMaterialProperty
Calculates thermal conductivity and specific heat of the material.
AnisoHeatConductionMaterialTempl< false > AnisoHeatConductionMaterial
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const Function *const _thermal_conductivity_temperature_coefficient_function
const GenericVariableValue< is_ad > & _T
GenericMaterialProperty< RankTwoTensor, is_ad > & _thermal_conductivity
GenericMaterialProperty< Real, is_ad > & _specific_heat
const InputParameters & parameters() const
virtual void initQpStatefulProperties() override
AnisoHeatConductionMaterialTempl(const InputParameters &parameters)