diff options
author | deepa-chaudhari | 2015-07-10 18:03:27 +0530 |
---|---|---|
committer | deepa-chaudhari | 2015-07-10 18:03:27 +0530 |
commit | a679b8a25106617bc48da0236de4a62e2a0f133b (patch) | |
tree | a45033824e8a7610717800a88437cb1c079a5780 /Connections/Shear/Finplate/colWebBeamWebConnectivity.py | |
parent | bb16d098a89a48a7d09663df441604d88532ee36 (diff) | |
download | OsdagLive-a679b8a25106617bc48da0236de4a62e2a0f133b.tar.gz OsdagLive-a679b8a25106617bc48da0236de4a62e2a0f133b.tar.bz2 OsdagLive-a679b8a25106617bc48da0236de4a62e2a0f133b.zip |
Implemented 3D cad model for col flage beam web connectivity.finPlate_v1.1
Diffstat (limited to 'Connections/Shear/Finplate/colWebBeamWebConnectivity.py')
-rw-r--r-- | Connections/Shear/Finplate/colWebBeamWebConnectivity.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Connections/Shear/Finplate/colWebBeamWebConnectivity.py b/Connections/Shear/Finplate/colWebBeamWebConnectivity.py index 0617512..b49670b 100644 --- a/Connections/Shear/Finplate/colWebBeamWebConnectivity.py +++ b/Connections/Shear/Finplate/colWebBeamWebConnectivity.py @@ -8,12 +8,12 @@ import numpy from OCC.Graphic3d import Graphic3d_NOT_2D_ALUMINUM from bolt import Bolt from nut import Nut - +from ModelUtils import * import copy from OCC.BRepPrimAPI import BRepPrimAPI_MakeSphere from OCC.gp import gp_Pnt from nutBoltPlacement import NutBoltArray -#from Connections.Shear.Finplate.nutBoltPlacement import NutBoltArray + class ColWebBeamWeb(object): @@ -52,6 +52,8 @@ class ColWebBeamWeb(object): wDir1 = numpy.array([0.0, 0, 1.0]) self.column.place(columnOrigin, column_uDir, wDir1) + + def createBeamGeometry(self): uDir = numpy.array([0, 1.0, 0]) wDir = numpy.array([1.0, 0, 0.0]) |