From ca8c6ec6380b54d2d3369f4132f9cff8df4cd297 Mon Sep 17 00:00:00 2001 From: Andrew Young <67914889+youandvern@users.noreply.github.com> Date: Sat, 9 Apr 2022 10:25:11 -0700 Subject: [PATCH] Update Area Equation for Rectangular HSS --- StructPy/cross_sections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StructPy/cross_sections.py b/StructPy/cross_sections.py index 6a9fdb8..0dc8629 100644 --- a/StructPy/cross_sections.py +++ b/StructPy/cross_sections.py @@ -276,7 +276,7 @@ def xbar(self): @property def A(self): - return self.B * self.H - self.b - self.h + return self.B * self.H - self.b * self.h @property def Ix(self):