From 412688cbc70b8feeba8b4c0b62a01ecefd8cb778 Mon Sep 17 00:00:00 2001 From: Isak Naslund Date: Wed, 23 Sep 2020 09:57:18 +0200 Subject: [PATCH] Disable ModalDynamics --- Etabs_Adapter/CRUD/Read/Results/GlobalResults.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Etabs_Adapter/CRUD/Read/Results/GlobalResults.cs b/Etabs_Adapter/CRUD/Read/Results/GlobalResults.cs index df10c689..d71b73af 100644 --- a/Etabs_Adapter/CRUD/Read/Results/GlobalResults.cs +++ b/Etabs_Adapter/CRUD/Read/Results/GlobalResults.cs @@ -61,7 +61,6 @@ public IEnumerable ReadResults(GlobalResultRequest request, ActionConfi case GlobalResultType.Reactions: return GetGlobalReactions(); case GlobalResultType.ModalDynamics: - return GetModalParticipationMassRatios(); default: Engine.Reflection.Compute.RecordError("Result extraction of type " + request.ResultType + " is not yet supported"); return new List(); @@ -103,6 +102,8 @@ private List GetGlobalReactions() private List GetModalParticipationMassRatios() { + //TODO: This method is to be fixed before exposed. Currently does not give back ratios when it should, but full values + //All arguments to be fully checked through and refactored before exposed List partRatios = new List(); int resultCount = 0;