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

Go to the source code of this file.

Classes

class  FunctionSeriesToAux
 Specialization of FunctionAux that is designed to work specifically with FXs, namely that it is always processed at timestep_begin. More...
 

Functions

template<>
InputParameters validParams< FunctionSeriesToAux > ()
 

Function Documentation

◆ validParams< FunctionSeriesToAux >()

template<>
InputParameters validParams< FunctionSeriesToAux > ( )

Definition at line 17 of file FunctionSeriesToAux.C.

18 {
19  InputParameters params = validParams<FunctionAux>();
20 
21  params.addClassDescription("AuxKernel to convert a functional expansion"
22  " (Functions object, type = FunctionSeries) to an AuxVariable");
23 
24  // Force this AuxKernel to execute at "timestep_begin"
25  params.set<ExecFlagEnum>("execute_on", true) = EXEC_TIMESTEP_BEGIN;
26  // Don't let the user change the execution time
27  params.suppressParameter<ExecFlagEnum>("execute_on");
28 
29  return params;
30 }