array_y{ }

Calling sequence

structure{ region{ array_y } }

Properties

  • usage: conditional

  • items: maximum 1

Functionality

Copies the region object along the y-direction.

Example

structure{
    region{
        array_y{...}
        ...
    }
}

Nested keywords


shift

Calling sequence

structure{ region{ array_y{ shift } } }

Properties

  • usage: required

  • type: real number

  • values: no constraints

  • unit: nm

Functionality

Defines a shift distance in the y-direction used for creating the array of regions.

Example

structure{
    region{
        array_y{
            shift = 11.0
            ...
        }
        ...
    }
}

max

Calling sequence

structure{ region{ array_y{ max } } }

Properties

  • usage: required

  • type: integer

  • values: z0

  • unit:

Functionality

Number of regions added in the positive direction of the y-axis.

Example

structure{
    region{
        array_y{
            shift = 11.0
            max = 3
        }
        ...
    }
}

min

Calling sequence

structure{ region{ array_y{ min } } }

Properties

  • usage: optional

  • type: integer

  • values: z0

  • unit:

  • default: z=0

Functionality

Number of regions added in the negative direction of the y-axis.

Example

structure{
    region{
        array_y{
            shift = 11.0
            max = 3
            min = 2
        }
        ...
    }
}