Skip to content

Commit

Permalink
Fix output label for BarDifferentialTemperatureLoad
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjamesnugent authored and IsakNaslundBh committed Sep 20, 2022
1 parent 79d0483 commit b93e24b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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<Bar> objects, string name = "")
{
return BarDifferentialTemperatureLoad(loadcase, new List<double>() { 0, 1 }, new List<double>() { topTemperature, bottomTemperature }, localLoadDirection, objects, name);
Expand Down

0 comments on commit b93e24b

Please sign in to comment.