diff options
author | deepa-chaudhari | 2015-06-05 22:41:36 +0530 |
---|---|---|
committer | deepa-chaudhari | 2015-06-05 22:41:36 +0530 |
commit | 242ac884da593c1bd981a0629788ca9f71574e93 (patch) | |
tree | d7990a1b78a0202c63e97ffbd0d693acf3b9fa63 /Connections/Shear/Finplate/shearFinPlateConnection.py | |
parent | e5c0d1819d7408bded6408ef3627d2b0cd812865 (diff) | |
download | OsdagLive-242ac884da593c1bd981a0629788ca9f71574e93.tar.gz OsdagLive-242ac884da593c1bd981a0629788ca9f71574e93.tar.bz2 OsdagLive-242ac884da593c1bd981a0629788ca9f71574e93.zip |
creating geometry and topods models
fixes the icon for 2d models
validate comboplatethick
looging messages
Diffstat (limited to 'Connections/Shear/Finplate/shearFinPlateConnection.py')
-rw-r--r-- | Connections/Shear/Finplate/shearFinPlateConnection.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Connections/Shear/Finplate/shearFinPlateConnection.py b/Connections/Shear/Finplate/shearFinPlateConnection.py new file mode 100644 index 0000000..5223457 --- /dev/null +++ b/Connections/Shear/Finplate/shearFinPlateConnection.py @@ -0,0 +1,24 @@ +''' +Created on 04-Jun-2015 + +@author: deepa +''' +class ShearFinPlate(object): + + def __init__(self,Beam,Column,Weld,Plate,Nutlist,Boltlist,outputObj): + self.beam = Beam + self.column = Column + self.weld = Weld + self.plate = Plate + self.nutlist = Nutlist + self.boltlist = Boltlist + self.pitch = outputObj['Bolt']['pitch'] + self.gauge = outputObj['Bolt']['gauge'] + self.edge = outputObj['Bolt']['edge'] + self.end = outputObj['Bolt']['enddist'] + self.row = outputObj['Bolt']['numofrow'] + self.col = outputObj['Bolt']['numofcol'] + + + +
\ No newline at end of file |