www.mooseframework.org
Functions
ConvectiveHeatTransferSideIntegral.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "HeatConductionApp"  ,
ConvectiveHeatTransferSideIntegral   
)

◆ validParams< ConvectiveHeatTransferSideIntegral >()

template<>
InputParameters validParams< ConvectiveHeatTransferSideIntegral > ( )

Definition at line 7 of file ConvectiveHeatTransferSideIntegral.C.

8 {
9  InputParameters params = validParams<SideIntegralPostprocessor>();
10  params.addClassDescription("Computes the total convective heat transfer across a boundary.");
11 
12  params.addRequiredCoupledVar("T_solid", "The solid temperature.");
13  params.addCoupledVar("T_fluid_var", "The fluid temperature.");
14  params.addCoupledVar("htc_var", "HTC variable");
15  params.addParam<MaterialPropertyName>("T_fluid",
16  "Name of the fluid temperature material property");
17  params.addParam<MaterialPropertyName>("htc", "Name of alpha_wall material property");
18  return params;
19 }