https://mooseframework.inl.gov
Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Attributes | Static Protected Attributes | Friends | List of all members
HeatConductionModel Class Reference

Provides functions to setup the heat conduction model. More...

#include <HeatConductionModel.h>

Inheritance diagram for HeatConductionModel:
[legend]

Public Types

typedef DataFileName DataFileParameterType
 

Public Member Functions

 HeatConductionModel (const InputParameters &params)
 
virtual void addVariables ()
 Add field variables used by this model. More...
 
virtual void addInitialConditions ()
 Add initial conditions. More...
 
virtual void addMaterials ()
 Add materials used by this model. More...
 
virtual void addHeatEquationXYZ ()
 Add heat conduction equation for cartesian coordinate system. More...
 
virtual void addHeatEquationRZ ()
 Add heat conduction equation for RZ coordinate system. More...
 
virtual bool enabled () const
 
std::shared_ptr< MooseObjectgetSharedPtr ()
 
std::shared_ptr< const MooseObjectgetSharedPtr () const
 
MooseAppgetMooseApp () const
 
const std::string & type () const
 
virtual const std::string & name () const
 
std::string typeAndName () const
 
std::string errorPrefix (const std::string &error_type) const
 
void callMooseError (std::string msg, const bool with_prefix) const
 
MooseObjectParameterName uniqueParameterName (const std::string &parameter_name) const
 
const InputParametersparameters () const
 
MooseObjectName uniqueName () const
 
const T & getParam (const std::string &name) const
 
std::vector< std::pair< T1, T2 > > getParam (const std::string &param1, const std::string &param2) const
 
const T * queryParam (const std::string &name) const
 
const T & getRenamedParam (const std::string &old_name, const std::string &new_name) const
 
getCheckedPointerParam (const std::string &name, const std::string &error_string="") const
 
bool isParamValid (const std::string &name) const
 
bool isParamSetByUser (const std::string &nm) const
 
void paramError (const std::string &param, Args... args) const
 
void paramWarning (const std::string &param, Args... args) const
 
void paramInfo (const std::string &param, Args... args) const
 
void connectControllableParams (const std::string &parameter, const std::string &object_type, const std::string &object_name, const std::string &object_parameter) const
 
void mooseError (Args &&... args) const
 
void mooseErrorNonPrefixed (Args &&... args) const
 
void mooseDocumentedError (const std::string &repo_name, const unsigned int issue_num, Args &&... args) const
 
void mooseWarning (Args &&... args) const
 
void mooseWarningNonPrefixed (Args &&... args) const
 
void mooseDeprecated (Args &&... args) const
 
void mooseInfo (Args &&... args) const
 
std::string getDataFileName (const std::string &param) const
 
std::string getDataFileNameByName (const std::string &relative_path) const
 
std::string getDataFilePath (const std::string &relative_path) const
 
const Parallel::Communicator & comm () const
 
processor_id_type n_processors () const
 
processor_id_type processor_id () const
 
std::string genName (const std::string &prefix, unsigned int id, const std::string &suffix="") const
 Build a name from a prefix, number and possible suffix. More...
 
std::string genName (const std::string &prefix, unsigned int i, unsigned int j, const std::string &suffix="") const
 Build a name from a prefix, 2 numbers and possible suffix. More...
 
std::string genName (const std::string &prefix, const std::string &name, unsigned int i) const
 Build a name from 2 strings and a number. More...
 
std::string genName (const std::string &prefix, const std::string &middle, const std::string &suffix="") const
 Build a name from strings. More...
 
std::string genSafeName (const std::string &prefix, const std::string &middle, const std::string &suffix="") const
 Build a name from strings that is safe to use in input files (i.e. More...
 

Static Public Member Functions

static const libMesh::FETypefeType ()
 Get the FE type used for heat conduction. More...
 
static InputParameters validParams ()
 

Public Attributes

const ConsoleStream _console
 

Static Public Attributes

static const std::string DENSITY = "density"
 
static const std::string TEMPERATURE = "T_solid"
 
static const std::string THERMAL_CONDUCTIVITY = "thermal_conductivity"
 
static const std::string SPECIFIC_HEAT_CONSTANT_PRESSURE = "specific_heat"
 

Protected Attributes

THMProblem_sim
 
Factory_factory
 The Factory associated with the MooseApp. More...
 
HeatStructureInterface_hs_interface
 The heat structure interface that built this class. More...
 
GeometricalComponent_geometrical_component
 The geometrical component that built this class. More...
 
const std::string _comp_name
 Name of the component. More...
 
const bool & _enabled
 
MooseApp_app
 
const std::string _type
 
const std::string _name
 
const InputParameters_pars
 
ActionFactory_action_factory
 
const Parallel::Communicator & _communicator
 

Static Protected Attributes

static libMesh::FEType _fe_type
 

Friends

class Simulation
 

Detailed Description

Provides functions to setup the heat conduction model.

This is a proxy class for the MOOSE Modules' heat conduction model

Definition at line 27 of file HeatConductionModel.h.

Constructor & Destructor Documentation

◆ HeatConductionModel()

HeatConductionModel::HeatConductionModel ( const InputParameters params)

Definition at line 41 of file HeatConductionModel.C.

42  : MooseObject(params),
43  _sim(*params.getCheckedPointerParam<THMProblem *>("_thm_problem")),
47  dynamic_cast<GeometricalComponent &>(_hs_interface)), // TODO: do something safer
48  _comp_name(name())
49 {
50 }
Specialization of FEProblem to run with component subsystem.
Definition: THMProblem.h:18
T getCheckedPointerParam(const std::string &name, const std::string &error_string="") const
MooseObject(const InputParameters &parameters)
virtual const std::string & name() const
const std::string _comp_name
Name of the component.
Factory & getFactory()
Factory & _factory
The Factory associated with the MooseApp.
Interface class for heat structure components.
GeometricalComponent & _geometrical_component
The geometrical component that built this class.
HeatStructureInterface & _hs_interface
The heat structure interface that built this class.
MooseApp & _app

Member Function Documentation

◆ addHeatEquationRZ()

void HeatConductionModel::addHeatEquationRZ ( )
virtual

Add heat conduction equation for RZ coordinate system.

Definition at line 116 of file HeatConductionModel.C.

117 {
120 
121  const auto & blocks = hs_cyl.getSubdomainNames();
122  const auto & position = hs_cyl.getPosition();
123  const auto & direction = hs_cyl.getDirection();
124 
125  // add transient term
127  {
128  std::string class_name = "ADHeatConductionTimeDerivativeRZ";
129  InputParameters pars = _factory.getValidParams(class_name);
130  pars.set<NonlinearVariableName>("variable") = TEMPERATURE;
131  pars.set<std::vector<SubdomainName>>("block") = blocks;
132  pars.set<MaterialPropertyName>("specific_heat") = SPECIFIC_HEAT_CONSTANT_PRESSURE;
133  pars.set<MaterialPropertyName>("density_name") = DENSITY;
134  pars.set<bool>("use_displaced_mesh") = false;
135  pars.set<Point>("axis_point") = position;
136  pars.set<RealVectorValue>("axis_dir") = direction;
137  _sim.addKernel(class_name, genName(_comp_name, "td"), pars);
138  }
139  // add diffusion term
140  {
141  std::string class_name = "ADHeatConductionRZ";
142  InputParameters pars = _factory.getValidParams(class_name);
143  pars.set<NonlinearVariableName>("variable") = TEMPERATURE;
144  pars.set<std::vector<SubdomainName>>("block") = blocks;
145  pars.set<MaterialPropertyName>("thermal_conductivity") = THERMAL_CONDUCTIVITY;
146  pars.set<bool>("use_displaced_mesh") = false;
147  pars.set<Point>("axis_point") = position;
148  pars.set<RealVectorValue>("axis_dir") = direction;
149  _sim.addKernel(class_name, genName(_comp_name, "hc"), pars);
150  }
151 }
static const std::string DENSITY
std::string genName(const std::string &prefix, unsigned int id, const std::string &suffix="") const
Build a name from a prefix, number and possible suffix.
char ** blocks
T & set(const std::string &name, bool quiet_mode=false)
virtual RealVectorValue getDirection() const
virtual void addKernel(const std::string &kernel_name, const std::string &name, InputParameters &parameters)
const std::string _comp_name
Name of the component.
Base class for cylindrical heat structure components.
static const std::string THERMAL_CONDUCTIVITY
static const std::string TEMPERATURE
bool problemIsTransient() const
Whether the problem is transient.
Definition: Component.h:252
Factory & _factory
The Factory associated with the MooseApp.
GeometricalComponent & _geometrical_component
The geometrical component that built this class.
static const std::string SPECIFIC_HEAT_CONSTANT_PRESSURE
virtual const std::vector< SubdomainName > & getSubdomainNames() const
Gets the subdomain names for this component.
Definition: Component.C:307

◆ addHeatEquationXYZ()

void HeatConductionModel::addHeatEquationXYZ ( )
virtual

Add heat conduction equation for cartesian coordinate system.

Definition at line 87 of file HeatConductionModel.C.

88 {
90 
91  // add transient term
93  {
94  std::string class_name = "ADHeatConductionTimeDerivative";
95  InputParameters pars = _factory.getValidParams(class_name);
96  pars.set<NonlinearVariableName>("variable") = TEMPERATURE;
97  pars.set<std::vector<SubdomainName>>("block") = blocks;
98  pars.set<MaterialPropertyName>("specific_heat") = SPECIFIC_HEAT_CONSTANT_PRESSURE;
99  pars.set<MaterialPropertyName>("density_name") = DENSITY;
100  pars.set<bool>("use_displaced_mesh") = false;
101  _sim.addKernel(class_name, genName(_comp_name, "td"), pars);
102  }
103  // add diffusion term
104  {
105  std::string class_name = "ADHeatConduction";
106  InputParameters pars = _factory.getValidParams(class_name);
107  pars.set<NonlinearVariableName>("variable") = TEMPERATURE;
108  pars.set<std::vector<SubdomainName>>("block") = blocks;
109  pars.set<MaterialPropertyName>("thermal_conductivity") = THERMAL_CONDUCTIVITY;
110  pars.set<bool>("use_displaced_mesh") = false;
111  _sim.addKernel(class_name, genName(_comp_name, "hc"), pars);
112  }
113 }
static const std::string DENSITY
std::string genName(const std::string &prefix, unsigned int id, const std::string &suffix="") const
Build a name from a prefix, number and possible suffix.
char ** blocks
T & set(const std::string &name, bool quiet_mode=false)
virtual void addKernel(const std::string &kernel_name, const std::string &name, InputParameters &parameters)
const std::string _comp_name
Name of the component.
static const std::string THERMAL_CONDUCTIVITY
static const std::string TEMPERATURE
bool problemIsTransient() const
Whether the problem is transient.
Definition: Component.h:252
Factory & _factory
The Factory associated with the MooseApp.
GeometricalComponent & _geometrical_component
The geometrical component that built this class.
static const std::string SPECIFIC_HEAT_CONSTANT_PRESSURE
virtual const std::vector< SubdomainName > & getSubdomainNames() const
Gets the subdomain names for this component.
Definition: Component.C:307

◆ addInitialConditions()

void HeatConductionModel::addInitialConditions ( )
virtual

Add initial conditions.

Definition at line 62 of file HeatConductionModel.C.

63 {
64  const auto & subdomain_names = _geometrical_component.getSubdomainNames();
66 }
FunctionName getInitialT() const
Gets the initial temperature function name.
void addFunctionIC(const VariableName &var_name, const std::string &func_name, const std::vector< SubdomainName > &block_names)
Definition: Simulation.C:532
static const std::string TEMPERATURE
GeometricalComponent & _geometrical_component
The geometrical component that built this class.
HeatStructureInterface & _hs_interface
The heat structure interface that built this class.
virtual const std::vector< SubdomainName > & getSubdomainNames() const
Gets the subdomain names for this component.
Definition: Component.C:307

◆ addMaterials()

void HeatConductionModel::addMaterials ( )
virtual

Add materials used by this model.

Definition at line 69 of file HeatConductionModel.C.

70 {
72  const auto & material_names =
73  _geometrical_component.getParam<std::vector<std::string>>("materials");
74 
75  for (std::size_t i = 0; i < blocks.size(); i++)
76  {
77  std::string class_name = "ADSolidMaterial";
78  InputParameters params = _factory.getValidParams(class_name);
79  params.set<std::vector<SubdomainName>>("block") = {blocks[i]};
80  params.set<std::vector<VariableName>>("T") = {TEMPERATURE};
81  params.set<UserObjectName>("properties") = material_names[i];
82  _sim.addMaterial(class_name, genName(blocks[i], "mat"), params);
83  }
84 }
std::string genName(const std::string &prefix, unsigned int id, const std::string &suffix="") const
Build a name from a prefix, number and possible suffix.
char ** blocks
virtual void addMaterial(const std::string &material_name, const std::string &name, InputParameters &parameters)
T & set(const std::string &name, bool quiet_mode=false)
static const std::string TEMPERATURE
Factory & _factory
The Factory associated with the MooseApp.
const T & getParam(const std::string &name) const
GeometricalComponent & _geometrical_component
The geometrical component that built this class.
virtual const std::vector< SubdomainName > & getSubdomainNames() const
Gets the subdomain names for this component.
Definition: Component.C:307

◆ addVariables()

void HeatConductionModel::addVariables ( )
virtual

Add field variables used by this model.

Definition at line 53 of file HeatConductionModel.C.

54 {
55  const auto & subdomain_names = _geometrical_component.getSubdomainNames();
56  const Real & scaling_factor = getParam<Real>("scaling_factor_temperature");
57 
58  _sim.addSimVariable(true, TEMPERATURE, _fe_type, subdomain_names, scaling_factor);
59 }
void addSimVariable(bool nl, const VariableName &name, libMesh::FEType fe_type, Real scaling_factor=1.0)
Queues a variable of type MooseVariableScalar to be added to the nonlinear or aux system...
Definition: Simulation.C:271
static const std::string TEMPERATURE
GeometricalComponent & _geometrical_component
The geometrical component that built this class.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
static libMesh::FEType _fe_type
virtual const std::vector< SubdomainName > & getSubdomainNames() const
Gets the subdomain names for this component.
Definition: Component.C:307

◆ feType()

static const libMesh::FEType& HeatConductionModel::feType ( )
inlinestatic

◆ genName() [1/4]

std::string NamingInterface::genName ( const std::string &  prefix,
unsigned int  id,
const std::string &  suffix = "" 
) const
inlineinherited

Build a name from a prefix, number and possible suffix.

Definition at line 29 of file NamingInterface.h.

Referenced by Closures1PhaseBase::addAverageWallTemperatureMaterial(), FlowModel::addCommonInitialConditions(), FlowModel::addCommonMooseObjects(), FlowChannelBase::addCommonObjects(), Simulation::addComponentScalarIC(), HeatStructureBase::addConstantDensitySolidPropertiesMaterial(), Simulation::addConstantIC(), Simulation::addConstantScalarIC(), FlowModel1PhaseBase::addDensityAux(), FlowModelSinglePhase::addDensityIC(), FlowModelGasMix::addDensityIC(), FlowModel1PhaseBase::addEnergyGravityKernel(), FlowModelSinglePhase::addFluidPropertiesMaterials(), FlowModelGasMix::addFluidPropertiesMaterials(), FlowModel1PhaseBase::addFunctionIC(), Simulation::addFunctionIC(), HeatTransferBase::addHeatedPerimeter(), addHeatEquationRZ(), addHeatEquationXYZ(), HeatTransferFromTemperature1Phase::addHeatTransferKernels(), FlowChannel1PhaseBase::addHydraulicDiameterMaterial(), FlowModelGasMix::addMassDiffusionEnergyDGKernel(), FlowModelGasMix::addMassDiffusionSpeciesDGKernel(), FlowModelGasMix::addMassFractionAux(), addMaterials(), FlowModel1PhaseBase::addMomentumAreaGradientKernel(), FlowModel1PhaseBase::addMomentumFrictionKernel(), FlowModel1PhaseBase::addMomentumGravityKernel(), HSBoundarySpecifiedTemperature::addMooseObjects(), FormLossFromFunction1Phase::addMooseObjects(), HeatSourceFromPowerDensity::addMooseObjects(), HeatSourceFromTotalPower::addMooseObjects(), HeatStructure2DCoupler::addMooseObjects(), HeatStructure2DRadiationCouplerRZ::addMooseObjects(), HeatTransferFromHeatFlux1Phase::addMooseObjects(), HSBoundaryAmbientConvection::addMooseObjects(), HSBoundaryHeatFlux::addMooseObjects(), HSBoundaryRadiation::addMooseObjects(), InletVelocityTemperature1Phase::addMooseObjects(), FormLossFromExternalApp1Phase::addMooseObjects(), GateValve1Phase::addMooseObjects(), HeatSourceVolumetric1Phase::addMooseObjects(), HeatTransferFromSpecifiedTemperature1Phase::addMooseObjects(), HSBoundaryExternalAppTemperature::addMooseObjects(), Shaft::addMooseObjects(), TotalPower::addMooseObjects(), VolumeJunction1Phase::addMooseObjects(), FormLoss1PhaseBase::addMooseObjects(), HeatTransferFromExternalAppHeatFlux1Phase::addMooseObjects(), ShaftConnectedTurbine1Phase::addMooseObjects(), HSBoundaryExternalAppConvection::addMooseObjects(), ShaftConnectedCompressor1Phase::addMooseObjects(), ShaftConnectedPump1Phase::addMooseObjects(), HeatTransferBase::addMooseObjects(), HeatTransferFromHeatStructure3D1Phase::addMooseObjects(), HSCoupler2D2DRadiation::addMooseObjects(), SimpleTurbine1Phase::addMooseObjects(), HSCoupler2D3D::addMooseObjects(), HeatTransferFromHeatStructure1Phase::addMooseObjects(), HSBoundaryExternalAppHeatFlux::addMooseObjects(), JunctionOneToOne1Phase::addMooseObjects(), FlowChannelBase::addMooseObjects(), FunctorClosures::addMooseObjectsFlowChannel(), Closures1PhaseSimple::addMooseObjectsHeatTransfer(), FlowModelSinglePhase::addPressureAux(), FlowModelGasMix::addPressureAux(), FlowModelSinglePhase::addRDGAdvectionDGKernels(), FlowModelGasMix::addRDGAdvectionDGKernels(), FlowModel1PhaseBase::addRhoAIC(), FlowModelSinglePhase::addRhoEAIC(), FlowModelGasMix::addRhoEAIC(), FlowModel1PhaseBase::addRhoUAIC(), FlowModelSinglePhase::addSlopeReconstructionMaterial(), FlowModelGasMix::addSlopeReconstructionMaterial(), FlowModel1PhaseBase::addSpecificInternalEnergyAux(), FlowModel1PhaseBase::addSpecificInternalEnergyIC(), FlowModel1PhaseBase::addSpecificTotalEnthalpyAux(), FlowModel1PhaseBase::addSpecificTotalEnthalpyIC(), FlowModel1PhaseBase::addSpecificVolumeAux(), FlowModel1PhaseBase::addSpecificVolumeIC(), FlowModelSinglePhase::addTemperatureAux(), FlowModelGasMix::addTemperatureAux(), Closures1PhaseTHM::addTemperatureWallFromHeatFluxMaterial(), FlowModel1PhaseBase::addTimeDerivativeKernelIfTransient(), FlowChannelBase::addVariables(), FlowModel1PhaseBase::addVelocityAux(), FlowModel1PhaseBase::addVelocityIC(), VolumeJunction1Phase::addVolumeJunctionIC(), Closures1PhaseTHM::addWallFFMaterial(), Closures1PhaseBase::addWallFrictionFunctionMaterial(), Closures1PhaseTHM::addWallHTCMaterial(), ClosuresBase::addWallTemperatureFromAuxMaterial(), Closures1PhaseSimple::addWallTemperatureFromHeatFluxMaterial(), FlowBoundary1Phase::addWeakBCs(), FlowBoundaryGasMix::addWeakBCs(), ClosuresBase::addWeightedAverageMaterial(), FlowModelGasMix::addXiRhoAIC(), ClosuresBase::addZeroMaterial(), Component2D::buildMesh(), FileMeshComponent::buildMesh(), Component1D::buildMesh(), HeatSourceBase::HeatSourceBase(), and Simulation::setupInitialConditionsFromFile().

30  {
31  std::stringstream ss;
32  ss << prefix << ":" << id;
33  if (!suffix.empty())
34  ss << ":" << suffix;
35  return ss.str();
36  }

◆ genName() [2/4]

std::string NamingInterface::genName ( const std::string &  prefix,
unsigned int  i,
unsigned int  j,
const std::string &  suffix = "" 
) const
inlineinherited

Build a name from a prefix, 2 numbers and possible suffix.

Definition at line 41 of file NamingInterface.h.

45  {
46  std::stringstream ss;
47  ss << prefix << ":" << i << ":" << j;
48  if (!suffix.empty())
49  ss << ":" << suffix;
50  return ss.str();
51  }
static const std::complex< double > j(0, 1)
Complex number "j" (also known as "i")

◆ genName() [3/4]

std::string NamingInterface::genName ( const std::string &  prefix,
const std::string &  name,
unsigned int  i 
) const
inlineinherited

Build a name from 2 strings and a number.

Definition at line 56 of file NamingInterface.h.

57  {
58  std::stringstream ss;
59  ss << prefix << ":" << name << ":" << i;
60  return ss.str();
61  }
const std::string name
Definition: Setup.h:20

◆ genName() [4/4]

std::string NamingInterface::genName ( const std::string &  prefix,
const std::string &  middle,
const std::string &  suffix = "" 
) const
inlineinherited

Build a name from strings.

Definition at line 66 of file NamingInterface.h.

69  {
70  std::stringstream ss;
71  ss << prefix << ":" << middle;
72  if (!suffix.empty())
73  ss << ":" << suffix;
74  return ss.str();
75  }

◆ genSafeName()

std::string NamingInterface::genSafeName ( const std::string &  prefix,
const std::string &  middle,
const std::string &  suffix = "" 
) const
inlineinherited

Build a name from strings that is safe to use in input files (i.e.

can be exposed to users)

Definition at line 80 of file NamingInterface.h.

Referenced by HSBoundaryAmbientConvection::addMooseObjects(), HSBoundaryRadiation::addMooseObjects(), HSBoundaryHeatFlux::addMooseObjects(), HSBoundaryExternalAppConvection::addMooseObjects(), and HSBoundaryExternalAppHeatFlux::addMooseObjects().

83  {
84  std::stringstream ss;
85  ss << prefix << "_" << middle;
86  if (!suffix.empty())
87  ss << "_" << suffix;
88  return ss.str();
89  }

◆ validParams()

InputParameters HeatConductionModel::validParams ( )
static

Definition at line 21 of file HeatConductionModel.C.

22 {
24  params.addPrivateParam<THMProblem *>("_thm_problem");
25  params.addPrivateParam<HeatStructureInterface *>("_hs");
26  params.addRequiredParam<Real>("scaling_factor_temperature",
27  "Scaling factor for solid temperature variable.");
28  params.registerBase("THM:heat_conduction_model");
29  return params;
30 }
Specialization of FEProblem to run with component subsystem.
Definition: THMProblem.h:18
void addPrivateParam(const std::string &name, const T &value)
void addRequiredParam(const std::string &name, const std::string &doc_string)
void registerBase(const std::string &value)
Interface class for heat structure components.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
static InputParameters validParams()

Friends And Related Function Documentation

◆ Simulation

friend class Simulation
friend

Definition at line 87 of file HeatConductionModel.h.

Member Data Documentation

◆ _comp_name

const std::string HeatConductionModel::_comp_name
protected

Name of the component.

Definition at line 72 of file HeatConductionModel.h.

Referenced by addHeatEquationRZ(), and addHeatEquationXYZ().

◆ _factory

Factory& HeatConductionModel::_factory
protected

The Factory associated with the MooseApp.

Definition at line 66 of file HeatConductionModel.h.

Referenced by addHeatEquationRZ(), addHeatEquationXYZ(), and addMaterials().

◆ _fe_type

FEType HeatConductionModel::_fe_type
staticprotected

Definition at line 85 of file HeatConductionModel.h.

Referenced by addVariables(), feType(), and Simulation::Simulation().

◆ _geometrical_component

GeometricalComponent& HeatConductionModel::_geometrical_component
protected

The geometrical component that built this class.

Definition at line 70 of file HeatConductionModel.h.

Referenced by addHeatEquationRZ(), addHeatEquationXYZ(), addInitialConditions(), addMaterials(), and addVariables().

◆ _hs_interface

HeatStructureInterface& HeatConductionModel::_hs_interface
protected

The heat structure interface that built this class.

Definition at line 68 of file HeatConductionModel.h.

Referenced by addInitialConditions().

◆ _sim

THMProblem& HeatConductionModel::_sim
protected

◆ DENSITY

const std::string HeatConductionModel::DENSITY = "density"
static

Definition at line 76 of file HeatConductionModel.h.

Referenced by addHeatEquationRZ(), and addHeatEquationXYZ().

◆ SPECIFIC_HEAT_CONSTANT_PRESSURE

const std::string HeatConductionModel::SPECIFIC_HEAT_CONSTANT_PRESSURE = "specific_heat"
static

Definition at line 79 of file HeatConductionModel.h.

Referenced by addHeatEquationRZ(), and addHeatEquationXYZ().

◆ TEMPERATURE

const std::string HeatConductionModel::TEMPERATURE = "T_solid"
static

◆ THERMAL_CONDUCTIVITY

const std::string HeatConductionModel::THERMAL_CONDUCTIVITY = "thermal_conductivity"
static

Definition at line 78 of file HeatConductionModel.h.

Referenced by addHeatEquationRZ(), and addHeatEquationXYZ().


The documentation for this class was generated from the following files: