Difference between revisions of "Grid-Based Boundary Conditions"

From OSUPDOCS
Jump to navigation Jump to search
Line 16: Line 16:
In <tt>XML</tt> files, grid-based boundary conditions are created with a <tt>&lt;BCShape&gt;</tt> block
In <tt>XML</tt> files, grid-based boundary conditions are created with a <tt>&lt;BCShape&gt;</tt> block


  <BCLShape>
  <BCShape>
   (one 2D or 3D shape command, which can be nested)
   (one 2D or 3D shape command, which can be nested)
   (one or more velocity, temperature, or concentration condition)
   (one or more velocity, temperature, or concentration condition)
     ...
     ...
  </BCLine>
  </BCShape>


which must be within the main <tt>&lt;GridBC&gt;</tt> block.
which must be within the main <tt>&lt;GridBC&gt;</tt> block.
Line 28: Line 28:
All nodes within the one shape will be set to have
All nodes within the one shape will be set to have
The commands within these [[Grid BC Shape Commands|shape commands]] are used to set [[Setting Velocity, Temperature, and Concentration|velocity, temperature and/or concentration conditions]].
The commands within these [[Grid BC Shape Commands|shape commands]] are used to set [[Setting Velocity, Temperature, and Concentration|velocity, temperature and/or concentration conditions]].
=== Deprecated Commands ===
Prior to the grid-based boundary condition commands in the previous section, the boundary conditions used to be set with [[Grid BC Shape Commands|boundary condition shape commands]]. These commands are now deprecated and [[Grid BC Shape Commands|documentation]] explains how to convert to new style.


== Grid-Based Boundary Condition in XML Files ==
== Grid-Based Boundary Condition in XML Files ==

Revision as of 10:12, 8 April 2017

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. Besides grid-based conditions, simulations can set Particle-Based Boundary Conditions.

Grid-Based Boundary Condition Commands

In scripted files, all grid-based boundary conditions are created by a series of GridBCcommand blocks that select nodes on the grids:

GridBC
  (one 2D or 3D shape command, which can be nested)
  (one or more velocity, temperature, or concentration condition)
    ...
EndGridBC

In XML files, grid-based boundary conditions are created with a <BCShape> block

<BCShape>
  (one 2D or 3D shape command, which can be nested)
  (one or more velocity, temperature, or concentration condition)
    ...
</BCShape>

which must be within the main <GridBC> block.

The nodes that will get boundary conditions are selected by defining one 2D shape (for 2D simulations) or one 3D shape (for 3D simulations). The shape be a nested shape.

All nodes within the one shape will be set to have The commands within these shape commands are used to set velocity, temperature and/or concentration conditions.

Deprecated Commands

Prior to the grid-based boundary condition commands in the previous section, the boundary conditions used to be set with boundary condition shape commands. These commands are now deprecated and documentation explains how to convert to new style.

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.