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

Go to the source code of this file.

Classes

class  LangevinNoise
 

Functions

template<>
InputParameters validParams< LangevinNoise > ()
 

Function Documentation

◆ validParams< LangevinNoise >()

template<>
InputParameters validParams< LangevinNoise > ( )

Definition at line 17 of file LangevinNoise.C.

18 {
19  InputParameters params = validParams<Kernel>();
20  params.addClassDescription("Source term for non-conserved Langevin noise");
21  params.addRequiredParam<Real>("amplitude", "Amplitude"); // per sqrt(time)");
22  params.addParam<MaterialPropertyName>(
23  "multiplier",
24  1.0,
25  "Material property to multiply the random numbers with (defaults to 1.0 if omitted)");
26  return params;
27 }

Referenced by validParams< ConservedLangevinNoise >().