Skip to content

Commit 930cb5c

Browse files
Tomas.Pail@dlubal.comTomas.Pail@dlubal.com
authored andcommitted
extend RSA results by selection of Envelope
1 parent 8e6b4c6 commit 930cb5c

File tree

3 files changed

+468
-55
lines changed

3 files changed

+468
-55
lines changed

Examples/DynamicAnalysis/DynamicAnalysis.py

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,4 +174,29 @@
174174
Calculate_all()
175175

176176
columnInternalForces = ResultTables.MembersInternalForces(loading_type=CaseObjectType.E_OBJECT_TYPE_DESIGN_SITUATION, loading_no=1)
177-
print(columnInternalForces)
177+
print(columnInternalForces)
178+
179+
180+
rsaSummaryX = ResultTables.SpectralAnalysisSummary(
181+
loading_type=CaseObjectType.E_OBJECT_TYPE_LOAD_CASE,
182+
loading_no=4,
183+
envelope_type=SpectralAnalysisEnvelopeType.SPECTRAL_ANALYSIS_DIRECTION_X)
184+
print(rsaSummaryX)
185+
186+
nodeDeformationsX = ResultTables.SpectralAnalysisNodesDeformations(
187+
loading_type=CaseObjectType.E_OBJECT_TYPE_LOAD_CASE,
188+
loading_no=4,
189+
envelope_type=SpectralAnalysisEnvelopeType.SPECTRAL_ANALYSIS_DIRECTION_X)
190+
print(nodeDeformationsX)
191+
192+
# membersDeformationsX = ResultTables.SpectralAnalysisMembersLocalDeformations(
193+
# loading_type=CaseObjectType.E_OBJECT_TYPE_LOAD_CASE,
194+
# loading_no=4,
195+
# envelope_type=SpectralAnalysisEnvelopeType.SPECTRAL_ANALYSIS_DIRECTION_X)
196+
# print(membersDeformationsX)
197+
198+
nodeDeformationsY = ResultTables.SpectralAnalysisSurfacesLocalDeformations(
199+
loading_type=CaseObjectType.E_OBJECT_TYPE_LOAD_CASE,
200+
loading_no=4,
201+
envelope_type=SpectralAnalysisEnvelopeType.SPECTRAL_ANALYSIS_DIRECTION_X)
202+
print(nodeDeformationsY)

0 commit comments

Comments
 (0)