- distanceThe front is an infinite plane with normal pointing from start_posn to end_posn. The front's distance from start_posn is defined by distance. You should ensure that distance is positiveC++ Type:FunctionName Unit:(no unit assumed) Controllable:No Description:The front is an infinite plane with normal pointing from start_posn to end_posn. The front's distance from start_posn is defined by distance. You should ensure that distance is positive 
- end_posnFinal position of the frontC++ Type:libMesh::VectorValue<double> Unit:(no unit assumed) Controllable:No Description:Final position of the front 
- start_posnInitial position of the frontC++ Type:libMesh::VectorValue<double> Unit:(no unit assumed) Controllable:No Description:Initial position of the front 
MovingPlanarFront
This function defines the position of a moving front. The front is an infinite plane with normal pointing from start_posn to end_posn. The front's distance from start_posn is defined by 'distance', so if the 'distance' function is time dependent, the front's position will change with time. Roughly speaking, the function returns true_value for points lying in between start_posn and start_posn + distance. Precisely speaking, two planes are constructed, both with normal pointing from start_posn to end_posn. The first plane passes through start_posn; the second plane passes through end_posn. Given a point p and time t, this function returns false_value if ANY of the following are true: (a) t<activation_time; (b) t>=deactivation_time; (c) p is 'behind' start_posn (ie, p lies on one side of the start_posn plane and end_posn lies on the other side); (d) p is 'ahead' of the front (ie, p lies one one side of the front and start_posn lies on the other side); (e) the distance between p and the front is greater than active_length. Otherwise, the point is 'in the active zone' and the function returns true_value.
Input Parameters
- activation_time-1.79769e+308This function will return false_value when t < activation_timeDefault:-1.79769e+308 C++ Type:double Unit:(no unit assumed) Controllable:No Description:This function will return false_value when t < activation_time 
- active_length1.79769e+308Points greater than active_length behind the front will return false_valueDefault:1.79769e+308 C++ Type:double Unit:(no unit assumed) Controllable:No Description:Points greater than active_length behind the front will return false_value 
- deactivation_time1.79769e+308This function will return false_value when t >= deactivation_timeDefault:1.79769e+308 C++ Type:double Unit:(no unit assumed) Controllable:No Description:This function will return false_value when t >= deactivation_time 
- false_value0Return this value if a point is not in the active zone.Default:0 C++ Type:double Unit:(no unit assumed) Controllable:No Description:Return this value if a point is not in the active zone. 
- true_value1Return this value if a point is in the active zone.Default:1 C++ Type:double Unit:(no unit assumed) Controllable:No Description:Return this value if a point is in the active zone. 
Optional Parameters
- control_tagsAdds user-defined labels for accessing object parameters via control logic.C++ Type:std::vector<std::string> Controllable:No Description:Adds user-defined labels for accessing object parameters via control logic. 
- enableTrueSet the enabled status of the MooseObject.Default:True C++ Type:bool Controllable:No Description:Set the enabled status of the MooseObject.