nastran_i1#

sectionproperties.pre.library.nastran_sections.nastran_i1(dim_1: float, dim_2: float, dim_3: float, dim_4: float, material: Material = Material(name='default', elastic_modulus=1, poissons_ratio=0, yield_strength=1, density=1, color='w')) Geometry[source]#

Constructs an I1 section.

Constructs an I1 section with the web’s middle center at the origin (0, 0), with four parameters defining dimensions.

Parameters:
  • dim_1 (float) – Twice distance from web end to flange end

  • dim_2 (float) – Thickness of web

  • dim_3 (float) – Length of web (spacing between flanges)

  • dim_4 (float) – Depth (y) of the I1-section

  • material (Material) – Material to associate with this geometry

Returns:

I1 section geometry

Return type:

Geometry

Example

The following example creates an I1 cross-section with a depth of 5.0 and width of 1.75:

from sectionproperties.pre.library import nastran_i1

nastran_i1(dim_1=1.0, dim_2=0.75, dim_3=4.0, dim_4=5.0).plot_geometry()

(Source code, png, hires.png, pdf)

../_images/sectionproperties-pre-library-nastran_sections-nastran_i1-1.png

I1 section geometry#