OOF2: The Manual

Name

Spaced Grid Points (SpacedGridSampleSet) — Evaluate data on a rectangular grid of points.

Synopsis

SpacedGridSampleSet(delta_x,delta_y,show_x,show_y)

Details

  • Base class: SampleSet
  • Parameters:

    delta_x
    Horizontal spacing between grid points. Type: A real number.
    delta_y
    Vertical spacing between grid points. Type: A real number.
    show_x
    Include or exclude this data from the output. Type: Boolean, 0 (false) or 1 (true).
    show_y
    Include or exclude this data from the output. Type: Boolean, 0 (false) or 1 (true).

Description

SampleSet objects are part of the post-solution analysis framework, in which useful data is extracted from the Mesh. The SampleSet determines how data is extracted from the sampling Domain. When sampling is set to SpacedGridSampleSet, data is extracted from a rectangular grid of points in the Domain.

The SpacedGridSampleSet belongs to the point SampleSet category.

The delta_x and delta_y parameters determine the spacing of the grid points in the x and y directions. The number of points is determined by the parameters and the size of the Domain. The lower left corner of grid is placed at the lower left corner of the Domain's bounding box, and points are inserted into the bounding box at the given spacing until they overflow on the top and right.

The show_x and show_y parameters govern whether the x and y positions of the points will be displayed along with the data.