Difference between revisions of "Grid-Based Boundary Conditions"

From OSUPDOCS
Jump to navigation Jump to search
Line 1: Line 1:
__TOC__
== Introduction ==
== Introduction ==



Revision as of 12:36, 24 December 2013

Introduction

Grid-based boundary conditions are used to create fixed edges, to create moving edges that displace the object, and for setting boundary temperature or concentration. Fixed edges are created be setting velocity to zero. If the edge is a symmetry plane in the object, however, it is better to create the symmetry plane boundary conditions automatically rather then to set them manually with boundary condition commands. The use of a moving edge to apply displacements is limited to small displacements because in large-displacement problems, the particles may move away from the boundary conditions and the conditions will no longer have the correct influence. The alternative method for creating a moving edge is to use rigid material particles set to use the moving boundary condition mode. These particles create grid-based boundary conditions that move with the particle position. They can set velocity or moving temperature and concentration values.

Grid-Based Boundary Condition in Scripted Files

All grid-based boundary conditions are created by a series of shape commands. In 2D simulations, the commands are:

MoveLine (x1),(y1),(x2),(y2),(tolerance)
  (one or more velocity, temperature, or concentration condition)
    ...
EndMoveLine

MoveArc (x1),(y1),(x2),(y2),(startAng),(endAng),(tolerance)
  (one or more velocity, temperature, or concentration condition)
    ...
EndMoveLine

In 3D simulations, the commands are:

MoveLine (x1),(y1),(z1),(x2),(y2),(z2),(tolerance)
  (one or more velocity, temperature, or concentration condition)
    ...
EndMoveLine

The commands within these shape commands are used to set velocity, temperature and/or concentration conditions.

Grid-Based Boundary Condition in XML Files

All grid-based boundary conditions must be set up within a single <GridBCs> element. The format is

<GridBCs>
   (one or more grid BC shape commands)
     ...
   <DisplacementBCs>
      (one or more explicit boundary conditions)
   </DisplacementBCs>
</GridBCs>

There are two ways to specify grid boundary conditions. The most common approach is to generate boundary conditions using one or more shape commands to select nodes and assign specified velocity, temperature, and/or concentration conditions to those nodes. The other way is to explicitly list each grid point. The explicit method is shown in the <DisplacementBCs> section above; it is limited to velocity conditions, and is usually generated with other software. You can use both shape commands and a <DisplacementBCs> section in the same input file.