diff options
author | deepa-chaudhari | 2015-06-09 23:34:49 +0530 |
---|---|---|
committer | deepa-chaudhari | 2015-06-09 23:34:49 +0530 |
commit | a616a1848684ad4b29c2910057495e1515aaa61f (patch) | |
tree | b031fd3aa490985d2e55be2ea124ae833bf2951b /Connections/Shear/Finplate/colWebBeamWebConnectivity.py | |
parent | e76128ffa9619c6db5935ae773c915c32f7190e9 (diff) | |
download | OsdagLive-a616a1848684ad4b29c2910057495e1515aaa61f.tar.gz OsdagLive-a616a1848684ad4b29c2910057495e1515aaa61f.tar.bz2 OsdagLive-a616a1848684ad4b29c2910057495e1515aaa61f.zip |
implemented nutboltassemblly with row and column
Diffstat (limited to 'Connections/Shear/Finplate/colWebBeamWebConnectivity.py')
-rw-r--r-- | Connections/Shear/Finplate/colWebBeamWebConnectivity.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Connections/Shear/Finplate/colWebBeamWebConnectivity.py b/Connections/Shear/Finplate/colWebBeamWebConnectivity.py index 46bdc27..181dc9d 100644 --- a/Connections/Shear/Finplate/colWebBeamWebConnectivity.py +++ b/Connections/Shear/Finplate/colWebBeamWebConnectivity.py @@ -93,11 +93,14 @@ class ColWebBeamWeb(object): self.weldRight.place(filletWeld2Origin,uDir1,wDir1) def createNutBoltArray(self): - nutboltArrayOrigin = self.plate.secOrigin + self.plate.T/2.0 * self.plate.uDir - self.plate.L/2.0 * self.plate.vDir + nutboltArrayOrigin = self.plate.secOrigin + nutboltArrayOrigin -= self.plate.T/2.0 * self.plate.uDir + nutboltArrayOrigin += self.plate.L/2.0 * self.plate.vDir + gaugeDir = self.plate.wDir - pitchDir = self.plate.vDir + pitchDir = -self.plate.vDir boltDir = self.plate.uDir - self.nutBoltArray.place(nutboltArrayOrigin, gaugeDir, pitchDir,boltDir) + self.nutBoltArray.place(nutboltArrayOrigin, gaugeDir, pitchDir, boltDir) def get_models(self): '''Returning 3D models |