Setting Material Point Initial Velocity

From OSUPDOCS
Jump to navigation Jump to search

When material points are created than can be assigned an initial velocity or an initial angular momentum using the commands described below.

Setting Initial Velocity

In scripted input files, the initial velocities are set using parameters to the Region command. The velocities apply to all particles in the region.

In XML input files, the velocity attributes on the <Body> command can only be constants and they set a constant velocity to all particles in the region. To set velocities with a user defined function, intersperse the following commands within the <Body> element:

<vel0X>(velx)</vel0X>,
<vel0Y>(velz)</vel0Y>,
<vel0Z>(velz)</vel0Z>

These commands set each component of initial velocity of the particles created in the current region after the command using the supplied user defined functions of particle position (x, y, and z). If used, they override the values used in vx, vy, and vz attributes of the <Body> command. The function value should be in velocity units. If multiple commands are used in a single region, the new function replaces the previous one for all subsequently created material points. A command with empty value reverts to zero initial velocity.

Note that XML input files, unlike scripted files, can apply different functions to different groups of particles within a single <Body> command. To do the same in scripted input files, simply create multiple Region command blocks.

Setting Initial Angular Velocity

In scripted input files, the AngularMom0 command sets the initial angular velocity for all particles in the current region (it is only available in OSParticulas). In 2D simulations, the command takes one argument:

AngularMom0 (Lp0z)

while for 3D simulations, it takes 3 arguments:

AngularMom0 (Lp0x),(Lp0y),(Lp0z)

where (Lp0x), (Lp0y), and (Lp0z) are numerical values or user-defined functions of particle position (x, y, and z) that give the initial angular velocity in per time units. The initial values apply to all particles in the current region, including particles created in shape commands before the AngularMom0 command.

In XML input files, the initial angular velocities are set by interspersing the following commands within the <Body> element:

<Lp0X>(Lp0x)</Lp0X>
<Lp0Y>(Lp0y)</Lp0Y>
<Lp0Z>(Lp0z)</Lp0ZZ>

These commands set initial angular velocity of the particles in the current region. The value is interpreted as a user-defined function of particle position (x, y, z) that evaluates to angular in radians per time units. If multiple commands are used in a single <Body> element, the new function replaces the previous one for all subsequently created material points. A command with empty value reverts to zero angular velocity. This initial setting only has an effect for simulations that track velocity gradient.

Note that XML input files, unlike scripted files, can apply different functions to different groups of particles within a single <Body> command. To do the same in scripted input files, simply create multiple Region command blocks.

Initial Velocity Gradient

Note that the above commands are setting angular velocity x, y, and z components that correspond to an antisymmetric velocity gradient. The initial velocity gradients in 2D and 3D become:

     [math]\displaystyle{ \nabla\vec V_p = \left(\begin{array}{cc} 0 & -\omega_z \\ \omega_z & 0 \end{array}\right) \qquad {\rm and} \qquad \nabla\vec V_p = \left(\begin{array}{ccc} 0 & -\omega_z & \omega_y \\ \omega_z & 0 & -\omega_x \\ -\omega_y & \omega_x & 0 \end{array}\right) }[/math]

The initial particle angular momentum of a single particle due to initial angular velocities is:

     [math]\displaystyle{ \left(L_{p,x},L_{p,y},L_{p,z}\right) = \frac{M_p}{12}\left[\left(\Delta Y^2+\Delta Z^2\right)\omega_x, \left(\Delta X^2+\Delta Z^2\right)\omega_y,\left(\Delta X^2+\Delta Y^2\right)\omega_z\right] }[/math]

where [math]\displaystyle{ \Delta X }[/math], [math]\displaystyle{ \Delta Y }[/math], and [math]\displaystyle{ \Delta Z }[/math] are the material point dimensions.