www.mooseframework.org
LevelSetVelocityInterface.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 // MOOSE includes
12 
13 template <>
14 InputParameters
15 validParams<LevelSetVelocityInterface<>>()
16 {
17  InputParameters parameters = emptyInputParameters();
18  parameters.addCoupledVar(
19  "velocity_x", 0, "The variable containing the x-component of the velocity front.");
20  parameters.addCoupledVar(
21  "velocity_y", 0, "The variable containing the y-component of the velocity front.");
22  parameters.addCoupledVar(
23  "velocity_z", 0, "The variable containing the z-component of the velocity front.");
24  return parameters;
25 }
LevelSetVelocityInterface.h