rhscf
structural_sections.steel.standard_profiles.rhscf
RHSCF Steel Profiles.
Classes:
-
RHSCF–Geometrical representation of RHSCF steel profiles.
structural_sections.steel.standard_profiles.rhscf.RHSCF
Geometrical representation of RHSCF steel profiles.
This class provides access to standard RHSCF (cold-formed RHS) profiles from a predefined database. Profiles can be accessed as class attributes using their standardized names. Each accessed profile returns a RHSProfile instance with uniform wall thickness and corner radii.
Usage example
>>> profile = RHSCF.RHSCF100x50x4
>>> print(isinstance(profile, RHSProfile)) # True
>>>
>>> # To iterate over all available RHSCF profiles:
>>> for profile in RHSCF:
... print(isinstance(profile, RHSProfile)) # True