www.mooseframework.org
Classes | Functions
PFCElementEnergyIntegral.h File Reference

Go to the source code of this file.

Classes

class  PFCElementEnergyIntegral
 Compute a volume integral of the specified variable. More...
 

Functions

template<>
InputParameters validParams< PFCElementEnergyIntegral > ()
 

Function Documentation

◆ validParams< PFCElementEnergyIntegral >()

template<>
InputParameters validParams< PFCElementEnergyIntegral > ( )

Definition at line 19 of file PFCElementEnergyIntegral.C.

20 {
21  InputParameters params = validParams<ElementIntegralPostprocessor>();
22  params.addRequiredParam<VariableName>("variable",
23  "The name of the variable that this object operates on");
24  params.addParam<Real>("temp", 1833.0, "Temperature of simulation");
25  return params;
26 }