MultiaxialFiber

MultiaxialFiber#

A MultiaxialFiber section is used to model a Frame section with shear deformation. The section is defined by a collection of fibers that discretize the cross-section.

class xara.Section("MultiaxialFiber", shape, *, fibers)
../../../_images/w8x28.png

Example of an AISC W8x28 section discretized with fibers and rendered with veux.#

The fiber method is used to populate the section with fibers. The required arguments are:

Model.fiber((y, z), A, tag, material, warp, section)#
Parameters:
y: float

\(y\)-coordinate of the fiber

z: float

\(z\)-coordinate of the fiber

A: float

area of the fiber

material: integer

tag of a preexisting material created with the Materials method.

warp: tuple

tuple of up to three warping modes. A warping mode is a list of three floats. The first float is the amplitude of the mode, and the second and third floats are derivatives with respect to the \(y\) and \(z\) coordinates, respectively.

section: integer

tag of the section to which the fiber belongs. This argument must be passed by keyword.

In general, the warp modes are scaled by independent amplitude fields which introduce additional degrees of freedom. When no additional degrees of freedom are provided by the model, elements in the Frame library will constrain these fields to match an appropriate strain field.

The valid eleResponse queries are

  • "force", and

  • "deformation".

Valid setParameter targets are

  • "warp", fiber, field where fiber is an integer identifying a fiber and field is an integer identifying the warping field.

Examples#