nastran_hat1#

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

Constructs a HAT1 section.

Constructs a HAT1 section with the bottom plate’s bottom center at the origin (0, 0), with five parameters defining dimensions.

Parameters:
  • dim_1 (float) – Width(x) of the HAT1-section

  • dim_2 (float) – Depth (y) of the HAT1-section

  • dim_3 (float) – Width (x) of hat’s top flange

  • dim_4 (float) – Thickness of hat stiffener

  • dim_5 (float) – Thicknesss of bottom plate

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

Returns:

HAT1 section geometry

Return type:

Geometry

Example

The following example creates a HAT1 cross-section with a depth of 2.0 and width of 4.0:

from sectionproperties.pre.library import nastran_hat1

nastran_hat1(
    dim_1=4.0, dim_2=2.0, dim_3=1.5, dim_4=0.1875, dim_5=0.375
).plot_geometry()

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

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

HAT1 section geometry#