--- title: Cross-Section Class Check description: Automate EN 1993-1-1 §5.5 section classification for I/H/box/angle sections under combined bending and compression. category: Eurocode --- ## Cross-Section Class Check Cross-section classification is the first check in any EN 1993-1-1 design. It determines whether the section can develop its full plastic resistance (Class 1–2) or is limited to elastic resistance (Class 3), or requires effective properties (Class 4). ## Why it matters The class of a section determines: - **Class 1–2**: Plastic hinge analysis is permitted; moment redistribution up to 40% is allowed - **Class 3**: Only elastic analysis; no redistribution - **Class 4**: Effective width calculation required; reduced section properties Using the wrong class gives incorrect resistance values. ## How FrameAI classifies a section For a hot-rolled I/H section under combined `N_Ed` and `M_Ed`, FrameAI applies EN 1993-1-1 Table 5.2. **Web in compression** (ε = √(235/f_y)): ``` ε = √(235 / 355) = 0.814 (for S355) ``` Internal part (web in bending + compression): ``` c/t_w ≤ 33ε → Class 1 c/t_w ≤ 38ε → Class 2 c/t_w ≤ 42ε → Class 3 c/t_w > 42ε → Class 4 ``` Outstand (flange): ``` c/t_f ≤ 9ε → Class 1 c/t_f ≤ 10ε → Class 2 c/t_f ≤ 14ε → Class 3 c/t_f > 14ε → Class 4 ``` The controlling class is the most restrictive (web or flange). ```