Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/sectionproperties/analysis/section.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,14 @@ def calculate_geom(progress: Progress | None = None) -> None:
i11 = self.section_props.i11_c
i22 = self.section_props.i22_c

if ixx is None or iyy is None or ixy is None or i11 is None or i22 is None:
if (
ixx is None
or iyy is None
or ixy is None
or i11 is None
or i22 is None
or phi is None
):
msg = "Section properties failed to save."
raise RuntimeError(msg)

Expand Down
Loading