InnovatorX
Structural
- Oct 17, 2024
- 2
I am trying to extract forces for a specified spandrel at a specific story and location, but the results are provides for all spandrels on all stories and at left & right. I have tried double and single quotations or defining parameters as arrays but no change in results. There seems to be no difference between the followings. Any help is greatly appreciated.
ret = self.sapmodel.Results.SpandrelForce(0, 'ST1', 'S1', [], 'Left', [], [], [], [], [], [])
ret = self.sapmodel.Results.SpandrelForce(0, “ST1”, “S1”, [], “Left”, [], [], [], [], [], [])
ret = self.sapmodel.Results.SpandrelForce()
results:
[4, ('ST2', 'ST2', 'ST1', 'ST1'), ('S2', 'S2', 'S1', 'S1'), ('Dead', 'Dead', 'Dead', 'Dead'), ('Right', 'Left', 'Right', 'Left'), (-342.67, …
ETASB 21.1/22.2
ETABSv1.dll
Python
comtypes
Thanks
ret = self.sapmodel.Results.SpandrelForce(0, 'ST1', 'S1', [], 'Left', [], [], [], [], [], [])
ret = self.sapmodel.Results.SpandrelForce(0, “ST1”, “S1”, [], “Left”, [], [], [], [], [], [])
ret = self.sapmodel.Results.SpandrelForce()
results:
[4, ('ST2', 'ST2', 'ST1', 'ST1'), ('S2', 'S2', 'S1', 'S1'), ('Dead', 'Dead', 'Dead', 'Dead'), ('Right', 'Left', 'Right', 'Left'), (-342.67, …
ETASB 21.1/22.2
ETABSv1.dll
Python
comtypes
Thanks