www.mooseframework.org
Functions
SideSetHeatTransferKernel.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("HeatConductionApp", SideSetHeatTransferKernel)
 
template<>
InputParameters validParams< SideSetHeatTransferKernel > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "HeatConductionApp"  ,
SideSetHeatTransferKernel   
)

◆ validParams< SideSetHeatTransferKernel >()

template<>
InputParameters validParams< SideSetHeatTransferKernel > ( )

Definition at line 16 of file SideSetHeatTransferKernel.C.

17 {
18  InputParameters params = validParams<InterfaceKernel>();
19  params.addClassDescription(
20  "Modeling conduction, convection, and radiation across internal side set.");
21  params.addParam<MaterialPropertyName>("conductance",
22  "gap_conductance",
23  "Conductivity of gap divided by effective gap width,"
24  "conductance ignored if not provided");
25  params.addCoupledVar("Tbulk_var", "Bulk temperature of gap as variable");
26  params.addParam<MaterialPropertyName>(
27  "Tbulk_mat", "gap_Tbulk", "Bulk temperature of gap as material");
28  params.addParam<MaterialPropertyName>(
29  "h_master",
30  "gap_h_master",
31  "Convective heat transfer coefficient (master face), convection ignored if not provided");
32  params.addParam<MaterialPropertyName>(
33  "h_neighbor",
34  "gap_h_neighbor",
35  "Convective heat transfer coefficient (neighbor face), convection ignored if not provided");
36  params.addParam<MaterialPropertyName>(
37  "emissivity_eff_master",
38  "gap_emissivity_eff_master",
39  "Effective emmissivity of master face, radiation ignored if not provided. "
40  "This value contains contributions from reflectivity, see SideSetHeatTransferMaterial "
41  "for details.");
42  params.addParam<MaterialPropertyName>(
43  "emissivity_eff_neighbor",
44  "gap_emissivity_eff_neighbor",
45  "Effective emmissivity of neighbor face, radiation ignored if not provided. "
46  "This value contains contributions from reflectivity, see SideSetHeatTransferMaterial "
47  "for details.");
48  return params;
49 }