rs2.interpreter.supportResults.JointResult module#

class rs2.interpreter.supportResults.JointResult.JointElementResult(start_x, start_y, end_x, end_y, distance, normal_stress, shear_stress, confining_stress, normal_displacement, shear_displacement, yielded)#

Bases: object

Variables:
  • start_x (double) – Start X-Coordinate for support joint.

  • start_y (double) – Start Y-Coordinate for support joint.

  • end_x (double) – End X-Coordinate for support joint.

  • end_y (double) – End Y-Coordinate for support joint.

  • distance (double) – Distance of support joint.

  • normal_stress (double) – Normal Stress for support joint.

  • shear_stress (double) – Shear Stress for support joint.

  • confining_stress (double) – Confining Stress for support joint.

  • normal_displacement (double) – Normal Displacement for support joint.

  • shear_displacement (double) – Shear Displacement for support joint.

  • yielded (bool) – Boolean representing yielded status for support joint.

Examples

Code Snippet: Get Support Joint Results

class rs2.interpreter.supportResults.JointResult.JointResult(entity_id, joint_element_results: list[JointElementResult])#

Bases: object

Variables:
  • entity_id (str) – Unique Identifier for support joint.

  • joint_element_results (list[JointElementResult]) – List of all joint element result for support joint.

Examples

Code Snippet: Get Support Joint Results