measure.stress

Syntax

Tensor Access

t = measure.stress(m<,i1,i2>)

Get the stress tensor.

Returns:

t - stress tensor or value

Arguments:

m - measure pointer

i1 - Optional tensor index that must be given with i2, corresponds to the first index of the tensor position in the row/column format, and ranges from 1 to {2 in 2D; 3 in 3D}. For instance, i1 = 1 and i2 = 3 returns the xz tensor value.

i2 - Optional tensor index that must be given with i1, corresponds to the second index of the tensor position in the row/column format, and ranges from 1 to {2 in 2D; 3 in 3D}. For instance, i1 = 1 and i2 = 3 returns the xz tensor value.

Value Access

f = measure.stress.xx(m)

Get the xx-value of the stress tensor.

Returns:f - xx-value of the stress tensor
Arguments:m - measure pointer
f = measure.stress.xy(m)

Get the xy-value of the stress tensor.

Returns:f - xy-value of the stress tensor
Arguments:m - measure pointer
f = measure.stress.xz(m)

Get the xz-value of the stress tensor.

Returns:f - xz-value of the stress tensor
Arguments:m - measure pointer
f = measure.stress.yx(m)

Get the yx-value of the stress tensor.

Returns:f - yx-value of the stress tensor
Arguments:m - measure pointer
f = measure.stress.yy(m)

Get the yy-value of the stress tensor.

Returns:f - yy-value of the stress tensor
Arguments:m - measure pointer
f = measure.stress.yz(m)

Get the yz-value of the stress tensor.

Returns:f - yz-value of the stress tensor
Arguments:m - measure pointer
f = measure.stress.zx(m)

Get the zx-value of the stress tensor.

Returns:f - zx-value of the stress tensor
Arguments:m - measure pointer
f = measure.stress.zy(m)

Get the zy-value of the stress tensor.

Returns:f - zy-value of the stress tensor
Arguments:m - measure pointer
f = measure.stress.zz(m)

Get the zz-value of the stress tensor.

Returns:f - zz-value of the stress tensor
Arguments:m - measure pointer