Skip to content

Commit

Permalink
Fix ReadPointDisplacementLoad (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjamesnugent authored Sep 18, 2024
2 parents 2011ed3 + 7f24433 commit 47ceec5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Etabs_Adapter/CRUD/Read/Load.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ private List<ILoad> ReadLoad(Type type, List<string> ids = null)
typeCouldBeRead = true;
}

if (type.IsAssignableFrom(typeof(PointDisplacement)))
{
loads.AddRange(ReadPointDisplacementLoad(loadcaseList));
typeCouldBeRead = true;
}

if (type.IsAssignableFrom(typeof(BarUniformlyDistributedLoad)))
{
loads.AddRange(ReadBarLoad(loadcaseList));
Expand Down

0 comments on commit 47ceec5

Please sign in to comment.