From c8e46a98c49199bd6c04e56b5426127abd9e512d Mon Sep 17 00:00:00 2001 From: CisneirosRaphael Date: Fri, 25 Oct 2024 13:54:28 -0300 Subject: [PATCH] fix node nr. when import shaft Element from table --- ross/shaft_element.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ross/shaft_element.py b/ross/shaft_element.py index 2de87fd9b..ddda0b609 100644 --- a/ross/shaft_element.py +++ b/ross/shaft_element.py @@ -1078,7 +1078,7 @@ def from_table(cls, file, sheet_type="Simple", sheet_name=0): idr=parameters["idr"][i], odr=parameters["odr"][i], material=new_materials[parameters["material"][i]], - n=parameters["n"][i], + n=int(parameters["n"][i]), axial_force=parameters["axial_force"][i], torque=parameters["torque"][i], shear_effects=parameters["shear_effects"][i],