Difference between revisions of "Setting Velocity and Transport Values"

From OSUPDOCS
Jump to navigation Jump to search
Line 19: Line 19:
<li><tt>(style)</tt> specifies the style of the applied velocity. Each velocity depends on two parameters specified by arguments <tt>(value)</tt> and <tt>(time)</tt>. If either argument is not supplied, they are set to zero. The styles are described [[#Boundary Condition Styles|below]]. The standard units are mm/s for <tt>(value)</tt> and ms for <tt>(time)</tt> (but the units may need to change depending on the [[#Boundary Condition Styles|<tt>(style)</tt> setting]].
<li><tt>(style)</tt> specifies the style of the applied velocity. Each velocity depends on two parameters specified by arguments <tt>(value)</tt> and <tt>(time)</tt>. If either argument is not supplied, they are set to zero. The styles are described [[#Boundary Condition Styles|below]]. The standard units are mm/s for <tt>(value)</tt> and ms for <tt>(time)</tt> (but the units may need to change depending on the [[#Boundary Condition Styles|<tt>(style)</tt> setting]].


<li><tt>(function)</tt> - if the <tt>(style)</tt> is <tt>function</tt> (or 6), this attribute in <tt>XML</tt> files specifies a [[User Defined Functions|user defined function]]. In script files, the [[User Defined Functions|user defined function]] should replace the <tt>(value)</tt> argument. The function should evaluate to the desired velocity in mm/s.
<li><tt>(function)</tt> - if the <tt>(style)</tt> is <tt>function</tt> (or 6), this attribute in <tt>XML</tt> files specifies a [[User Defined Functions|user defined function]]. In script files, the [[User Defined Functions|user defined function]] should replace the <tt>(value)</tt> argument and must be entered as quoted text. The function should evaluate to the desired velocity in mm/s.


<li><tt>(id)</tt> - this attribute in <tt>XML</tt> files specifies and ID for the boundary condition. In scripted files, IDs are set using the BoundaryID command.
<li><tt>(id)</tt> - this attribute in <tt>XML</tt> files specifies and ID for the boundary condition. In scripted files, IDs are set using the BoundaryID command.

Revision as of 13:59, 20 December 2013

These commands are used within shape commands for grid-based boundary conditions to set velocity, temperature, and/or concentration boundary conditions.

Velocity Conditions

The scripte Velocity command sets velocity conditions to all nodes with the shape command that encloses it:

Velocity (dir),(style),<(value)>,<(time)>

In XML files, the command is:

<DisBC dir='(dir)' style='(style)' vel='(value)' time='(time)' function='(function)' id='(id)'/>

where

  • (dir) is 1, 2, or 3 to specify the velocity direction as in the x, y, or z direction (In script files, (dir) can be x, y, or z or can be R or Z if axisymmetric). You can also set velocity in a direction that is not along an axis. For details see help on skewed velocity conditions
  • (style) specifies the style of the applied velocity. Each velocity depends on two parameters specified by arguments (value) and (time). If either argument is not supplied, they are set to zero. The styles are described below. The standard units are mm/s for (value) and ms for (time) (but the units may need to change depending on the (style) setting.
  • (function) - if the (style) is function (or 6), this attribute in XML files specifies a user defined function. In script files, the user defined function should replace the (value) argument and must be entered as quoted text. The function should evaluate to the desired velocity in mm/s.
  • (id) - this attribute in XML files specifies and ID for the boundary condition. In scripted files, IDs are set using the BoundaryID command.


Boundary Condition Styles

The possible boundary condition styles are defined below. In scripted files, the style can be set by name or number; in XML files, the style must be set by number. Unless otherwise specified, the units for (value) are the standard units for the type of boundary condition (i.e., mm/s for velocity, degrees K for temperature, and concentration potential for concentration) and the units for (time) are ms.

  • constant (or 1) - the applied boundary conditions is set to the constant (value) and it is applied for times after (time).
  • linear (or 2) - the applied boundary condition is
               [math]\displaystyle{ BC = ({\rm value})*(t-({\rm time})) }[/math]
    where t is the current time (in ms). This condition is applied only for times after (time). The units for (value) should change to the standard units for the boundary condition per ms.
  • sine (or 3) - the applied boundary condition is
               [math]\displaystyle{ BC = ({\rm value})\sin\bigl[({\rm time})*t\bigr] }[/math]
    This condition is applied for all times. The units for (time) should change to 1/ms.
  • cosine (or 4) - the applied boundary condition is
               [math]\displaystyle{ BC = ({\rm value})\cos\bigl[({\rm time})*t\bigr] }[/math]
    This condition is applied for all times. The units for (time) should change to 1/ms.
  • function (or 6) - the applied boundary condition is determined by a user-defined function of time (t in ms), nodal point position (x, y, and z in mm), and/or of current clockwise particle rotation angle (q in radians, 2D only). The function should evaluate to the desired value in the standard units for the type of condition. If (time) is supplied, the condition starts at time arg2 (in ms) and the function is evaluated at [t-arg2] (in ms).

Skewed Velocity Conditions

Temperature Conditions

Concentration Conditions