From b93e24b9bcb1ce3d955c816e4891d5b8b7e29f0c Mon Sep 17 00:00:00 2001 From: Peter Nugent Date: Mon, 19 Sep 2022 21:46:32 +0100 Subject: [PATCH] Fix output label for BarDifferentialTemperatureLoad --- Structure_Engine/Create/Loads/BarDifferentialTemperatureLoad.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Structure_Engine/Create/Loads/BarDifferentialTemperatureLoad.cs b/Structure_Engine/Create/Loads/BarDifferentialTemperatureLoad.cs index 333b9b08d..43f1ac8ab 100644 --- a/Structure_Engine/Create/Loads/BarDifferentialTemperatureLoad.cs +++ b/Structure_Engine/Create/Loads/BarDifferentialTemperatureLoad.cs @@ -106,7 +106,7 @@ public static BarDifferentialTemperatureLoad BarDifferentialTemperatureLoad(Load [Input("localLoadDirection", "The local direction of the temperature variation relative to the profile. Typically limited to local y or z.")] [Input("objects", "The collection of elements the load should be applied to.")] [Input("name", "The name of the created load.")] - [Output("areaDiffTempLoad", "The created AreaUniformTempratureLoad.")] + [Output("barDiffTempLoad", "The created BarDifferentialTemperatureLoad.")] public static BarDifferentialTemperatureLoad BarDifferentialTemperatureLoad(Loadcase loadcase, double topTemperature, double bottomTemperature, DifferentialTemperatureLoadDirection localLoadDirection, IEnumerable objects, string name = "") { return BarDifferentialTemperatureLoad(loadcase, new List() { 0, 1 }, new List() { topTemperature, bottomTemperature }, localLoadDirection, objects, name);