Skip to content

Commit a6a0788

Browse files
author
MichalO
committed
# todo/ # BUG -> # TODO
1 parent 04b697f commit a6a0788

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

Examples/DynamicAnalysis/DynamicAnalysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
envelope_type=SpectralAnalysisEnvelopeType.SPECTRAL_ANALYSIS_DIRECTION_X)
190190
print(nodeDeformationsX)
191191

192-
# BUG: Bugfix G-228650: WS: Spectral analysis envelopes for members
192+
# TODO: Bugfix G-228650: WS: Spectral analysis envelopes for members
193193
# membersDeformationsX = ResultTables.SpectralAnalysisMembersLocalDeformations(
194194
# loading_type=CaseObjectType.E_OBJECT_TYPE_LOAD_CASE,
195195
# loading_no=4,

RFEM/Results/resultTables.py

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def BuildingStoriesForcesInShearWalls(
189189
results = model.clientModel.service.get_results_for_building_stories_forces_in_shear_walls(
190190
loading_type.name,
191191
loading_no,
192-
object_locations = None # todo: add filtering by Shear Wall number
192+
object_locations = None # TODO: add filtering by Shear Wall number
193193
)
194194

195195
return ConvertResultsToListOfDct(results, include_base)
@@ -214,7 +214,7 @@ def BuildingStoriesCentresMassRigidity(
214214
results = model.clientModel.service.get_results_for_building_stories_centres_mass_rigidity(
215215
loading_type.name,
216216
loading_no,
217-
object_locations = None # todo: add filtering by Story number
217+
object_locations = None # TODO: add filtering by Story number
218218
)
219219

220220
return ConvertResultsToListOfDct(results, include_base)
@@ -239,7 +239,7 @@ def BuildingStoriesInterstoryDrifts(
239239
results = model.clientModel.service.get_results_for_building_stories_interstory_drifts(
240240
loading_type.name,
241241
loading_no,
242-
object_locations = None # todo: add filtering by Story number
242+
object_locations = None # TODO: add filtering by Story number
243243
)
244244

245245
return ConvertResultsToListOfDct(results, include_base)
@@ -264,7 +264,7 @@ def BuildingStoriesStoryActions(
264264
results = model.clientModel.service.get_results_for_building_stories_story_actions(
265265
loading_type.name,
266266
loading_no,
267-
object_locations = None # todo: add filtering by Story number
267+
object_locations = None # TODO: add filtering by Story number
268268
)
269269

270270
return ConvertResultsToListOfDct(results, include_base)
@@ -314,7 +314,7 @@ def CriticalLoadFactors(
314314
results = model.clientModel.service.get_results_for_critical_load_factors(
315315
loading_type.name,
316316
loading_no,
317-
object_locations = None # todo: add filtering by mode shape number
317+
object_locations = None # TODO: add filtering by mode shape number
318318
)
319319

320320
return ConvertResultsToListOfDct(results, include_base)
@@ -339,7 +339,7 @@ def EffectiveLengthsAndCriticalLoadsByEigenvector(
339339
results = model.clientModel.service.get_results_for_efeective_lengths_and_critical_loads_by_eigenvector(
340340
loading_type.name,
341341
loading_no,
342-
object_locations = None # todo: add filtering by mode shape number
342+
object_locations = None # TODO: add filtering by mode shape number
343343
)
344344

345345
return ConvertResultsToListOfDct(results, include_base)
@@ -896,7 +896,7 @@ def ModalAnalysisEffectiveModalMasses(
896896
results = model.clientModel.service.get_results_for_modal_analysis_effective_modal_masses(
897897
loading_type.name,
898898
loading_no,
899-
object_locations = None # todo: add filtering by mode shape number
899+
object_locations = None # TODO: add filtering by mode shape number
900900
)
901901

902902
return ConvertResultsToListOfDct(results, include_base)
@@ -921,7 +921,7 @@ def ModalAnalysisMassesInLocations(
921921
results = model.clientModel.service.get_results_for_modal_analysis_effective_modal_masses(
922922
loading_type.name,
923923
loading_no,
924-
object_locations = None # todo: add filtering by mesh point number
924+
object_locations = None # TODO: add filtering by mesh point number
925925
)
926926

927927
return ConvertResultsToListOfDct(results, include_base)
@@ -3161,7 +3161,7 @@ def StabilityIncrementalAnalysisBuildingStoriesCentresMassRigidity(
31613161
results = model.clientModel.service.get_results_for_stability_incremental_analysis_building_stories_centres_mass_rigidity(
31623162
loading_type.name,
31633163
loading_no,
3164-
object_locations = None # todo: add filtering by Story number
3164+
object_locations = None # TODO: add filtering by Story number
31653165
)
31663166

31673167
return ConvertResultsToListOfDct(results, include_base)
@@ -3186,7 +3186,7 @@ def StabilityIncrementalAnalysisBuildingStoriesForcesInShearWalls(
31863186
results = model.clientModel.service.get_results_for_stability_incremental_analysis_building_stories_forces_in_shear_walls(
31873187
loading_type.name,
31883188
loading_no,
3189-
object_locations = None # todo: add filtering by Shear Wall number
3189+
object_locations = None # TODO: add filtering by Shear Wall number
31903190
)
31913191

31923192
return ConvertResultsToListOfDct(results, include_base)
@@ -3211,7 +3211,7 @@ def StabilityIncrementalAnalysisBuildingStoriesInterstoryDrifts(
32113211
results = model.clientModel.service.get_results_for_stability_incremental_analysis_building_stories_interstory_drifts(
32123212
loading_type.name,
32133213
loading_no,
3214-
object_locations = None # todo: add filtering by Story number
3214+
object_locations = None # TODO: add filtering by Story number
32153215
)
32163216

32173217
return ConvertResultsToListOfDct(results, include_base)
@@ -3236,7 +3236,7 @@ def StabilityIncrementalAnalysisBuildingStoriesStoryActions(
32363236
results = model.clientModel.service.get_results_for_stability_incremental_analysis_building_stories_story_actions(
32373237
loading_type.name,
32383238
loading_no,
3239-
object_locations = None # todo: add filtering by Story number
3239+
object_locations = None # TODO: add filtering by Story number
32403240
)
32413241

32423242
return ConvertResultsToListOfDct(results, include_base)
@@ -3261,7 +3261,7 @@ def StabilityIncrementalAnalysisCalculationDiagrams(
32613261
results = model.clientModel.service.get_results_for_stability_incremental_analysis_calculation_diagrams(
32623262
loading_type.name,
32633263
loading_no,
3264-
object_locations = None # todo: add filtering by ?
3264+
object_locations = None # TODO: add filtering by ?
32653265
)
32663266

32673267
return ConvertResultsToListOfDct(results, include_base)
@@ -5507,7 +5507,7 @@ def TimeHistoryAnalysisBuildingStoriesCentresMassRigidity(
55075507
results = model.clientModel.service.get_results_for_time_history_analysis_building_stories_centres_mass_rigidity(
55085508
loading_type.name,
55095509
loading_no,
5510-
object_locations = None # todo: add filtering by Story number
5510+
object_locations = None # TODO: add filtering by Story number
55115511
)
55125512

55135513
return ConvertResultsToListOfDct(results, include_base)
@@ -5532,7 +5532,7 @@ def TimeHistoryAnalysisBuildingStoriesForcesInShearWalls(
55325532
results = model.clientModel.service.get_results_for_time_history_analysis_building_stories_forces_in_shear_walls(
55335533
loading_type.name,
55345534
loading_no,
5535-
object_locations = None # todo: add filtering by Shear Wall number
5535+
object_locations = None # TODO: add filtering by Shear Wall number
55365536
)
55375537

55385538
return ConvertResultsToListOfDct(results, include_base)
@@ -5557,7 +5557,7 @@ def TimeHistoryAnalysisBuildingStoriesInterstoryDrifts(
55575557
results = model.clientModel.service.get_results_for_time_history_analysis_building_stories_interstory_drifts(
55585558
loading_type.name,
55595559
loading_no,
5560-
object_locations = None # todo: add filtering by Story number
5560+
object_locations = None # TODO: add filtering by Story number
55615561
)
55625562

55635563
return ConvertResultsToListOfDct(results, include_base)
@@ -5582,7 +5582,7 @@ def TimeHistoryAnalysisBuildingStoriesStoryActions(
55825582
results = model.clientModel.service.get_results_for_time_history_analysis_building_stories_story_actions(
55835583
loading_type.name,
55845584
loading_no,
5585-
object_locations = None # todo: add filtering by Story number
5585+
object_locations = None # TODO: add filtering by Story number
55865586
)
55875587

55885588
return ConvertResultsToListOfDct(results, include_base)

0 commit comments

Comments
 (0)