Skip to content

Commit 2000532

Browse files
Closes #189 Fixes input array forFabricatedISection
1 parent c236a93 commit 2000532

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lusas_Adapter/CRUD/Create/Properties/GeometricLine.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,12 +209,12 @@ private IFGeometricLine CreateProfile(FabricatedISectionProfile bhomProfile, str
209209
IFGeometricLine lusasGeometricLine = d_LusasData.createGeometricLine(lusasName);
210210
lusasGeometricLine.setValue("elementType", "3D Thick Beam");
211211

212-
List<double> dimensionList = new List<double> { bhomProfile.Height, bhomProfile.TopFlangeWidth,
213-
bhomProfile.BotFlangeWidth, bhomProfile.TopFlangeThickness, bhomProfile.BotFlangeThickness,
212+
List<double> dimensionList = new List<double> { bhomProfile.TopFlangeWidth,
213+
bhomProfile.BotFlangeWidth, bhomProfile.Height, bhomProfile.TopFlangeThickness, bhomProfile.BotFlangeThickness,
214214
bhomProfile.WebThickness, bhomProfile.WeldSize};
215215
double[] dimensionArray = dimensionList.ToArray();
216216

217-
List<string> valueList = new List<string> { "D", "Bt", "Bb", "tft", "bft", "tw", "r" };
217+
List<string> valueList = new List<string> {"Bt", "Bb", "D", "tft", "bft", "tw", "r" };
218218
string[] valueArray = valueList.ToArray();
219219

220220
int lusasType = 14;

0 commit comments

Comments
 (0)