Skip to content

Commit 65714b5

Browse files
Fixed bug for BarDifferentialTemperatureLoad name not appearing as LoadGroup
1 parent bbb2468 commit 65714b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarDifferentialTemperatureLoad.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static List<string> FromBarDifferentialTemperatureLoad(this BarDifferenti
5151
}
5252
double presetWidth = sectionProperty.Area / depth;
5353
double temperatureProfileCount = load.TemperatureProfile.Keys.Count - 1;
54-
string firstLine = ids.Trim() + "," + loadDirection + ",Bot ," + temperatureProfileCount + ", ," + "No";
54+
string firstLine = ids.Trim() + "," + loadDirection + ",Bot ," + temperatureProfileCount + load.Name + "No";
5555
List<string> midasBarLoad = new List<string>();
5656
midasBarLoad.Add(firstLine);
5757
for (int i = 1; i < load.TemperatureProfile.Keys.Count; i++)

0 commit comments

Comments
 (0)