We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01dd117 commit 30d2b3cCopy full SHA for 30d2b3c
1 file changed
src/simulation/dynamics/RadiationPressure/parseSRPLookup.py
@@ -35,9 +35,9 @@ def parseAndLoadXML(self, filePath):
35
forceBTree = document.find('forceBValues')
36
torqueBTree = document.find('torqueBValues')
37
38
- self.sHatBLookup.resize([len(list(sHatBTree)), 3])
39
- self.forceBLookup.resize([len(list(forceBTree)), 3])
40
- self.torqueBLookup.resize([len(list(torqueBTree)), 3])
+ self.sHatBLookup.resize([len(list(sHatBTree)), 3], refcheck=False)
+ self.forceBLookup.resize([len(list(forceBTree)), 3], refcheck=False)
+ self.torqueBLookup.resize([len(list(torqueBTree)), 3], refcheck=False)
41
42
for node in list(sHatBTree):
43
idx = int(node.attrib['index'])
0 commit comments