-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathGenevaWheelGUI.py
201 lines (155 loc) · 5.79 KB
/
GenevaWheelGUI.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# see http://www.freecadweb.org/wiki/Macro_Geneva_Wheel_GUI
#Creation of a Geneva Wheel with Parametric values By: Isaac Ayala (drei) & Mark Stephen (quick61)
#This Macro creates the main parts of a Geneva Wheel Mechanism
#It depends on six values that must be altered in the following code
#The variables are a, b, n, p, t and h.
#Definition for each variable
# Input
#a = Drive Crank Radius
#b = Geneva Wheel Radius
#p = Drive Pin Radius
#t = Geneva Wheel Tolerance
#h = Geneva Wheel Height
#n = Driven Slot Quantity
# Output
#c = Distance Between Centers
#s = Slot Center Width
#w = Slot Width
#y = Stop Arc Radius
#z = Stop Disc Radius
#v = Clearance Arc
#Please note that you can alter the code so it depends on five values exclusively
#Just replace c, and either a or b with the following
# Keep value for a
#c = a/math.sin(math.pi/n)
#b = math.sqrt((math.pow(c,2))-(math.pow(a,2)))
# Keep value for b
#c = b/math.cos(math.pi/n)
#a = math.sqrt((math.pow(c,2))-(math.pow(b,2)))
from __future__ import division
import math
from FreeCAD import Base
from PySide import QtGui, QtCore
from PySide.QtGui import QApplication, QDialog, QMainWindow
import Part
import Draft
class p():
def Ggear(self):
try:
#Inputs
a = float(self.dCr.text())
#b = float(self.gWr.text())
p = float(self.dPd.text())
t = float(self.gWt.text())
h = float(self.gWh.text())
n = float(self.gWn.text())
#Outputs
#c = math.sqrt(pow(a,2) + pow(b,2))
c = a/math.sin(math.pi/n)
b = math.sqrt((math.pow(c,2))-(math.pow(a,2)))
s = a + b - c
w = p + t
y = a - (3 * p)
z = y - t
v = (b * z)/a
m = math.sqrt((v**2)+(z**2)) # Solves for location of clearance cut axis
# Create the Drive Crank (Will be placed on the origin)
driveCrank = Part.makeCylinder(z, h)
#driveCrank.translate(Base.Vector(0,0,0))
#genevaWheelClearanceCut = Part.makeCylinder(b, h)
#genevaWheelClearanceCut.translate(Base.Vector(-c,0,0))
genevaWheelClearanceCut = Part.makeCylinder(v, h)
genevaWheelClearanceCut.translate(Base.Vector(-m,0,0))
driveCrank = driveCrank.cut(genevaWheelClearanceCut)
driveCrankBase = Part.makeCylinder((a+(2*p)), h)
driveCrankBase.translate(Base.Vector(0,0,-h))
driveCrank = driveCrank.fuse(driveCrankBase)
drivePin = Part.makeCylinder(p,h)
drivePin.translate(Base.Vector(-a,0,0))
driveCrank = driveCrank.fuse(drivePin)
# Create the Geneva Wheel (Will be placed on the x-axis on the left side)
genevaWheel = Part.makeCylinder(b,h)
genevaWheel.translate(Base.Vector(-c,0,0))
stopArc = Part.makeCylinder(y, h)
stopArc.rotate(Base.Vector(-c,0,0),Base.Vector(0,0,1),(180/n))
for i in range(int(n)):
stopArc.rotate(Base.Vector(-c,0,0),Base.Vector(0,0,1),(360/n))
genevaWheel = genevaWheel.cut(stopArc)
slotLength = Part.makeBox(s,(2*w),h)
slotLength.translate(Base.Vector(-a,-w,0))
slotRadius = Part.makeCylinder(w,h)
slotRadius.translate(Base.Vector(-a,0,0))
slot=slotLength.fuse(slotRadius)
for i in range(int(n)):
slot.rotate(Base.Vector(-c,0,0),Base.Vector(0,0,1),(360/n))
genevaWheel = genevaWheel.cut(slot)
# Display Result
Part.show(driveCrank)
Part.show(genevaWheel)
except:
FreeCAD.Console.PrintError("Unable to complete task. Please recheck your data entries.")
self.close()
def close(self):
self.dialog.hide()
def __init__(self):
self.dialog = None
self.dialog = QtGui.QDialog()
self.dialog.resize(240,100)
self.dialog.setWindowTitle("Geneva Wheel Macro")
la = QtGui.QVBoxLayout(self.dialog)
DCR = QtGui.QLabel("Drive Crank Radius ( A )")
la.addWidget(DCR)
self.dCr = QtGui.QLineEdit()
la.addWidget(self.dCr)
#GWR = QtGui.QLabel("Geneva Wheel Radius ( B )")
#la.addWidget(GWR)
#self.gWr = QtGui.QLineEdit()
#la.addWidget(self.gWr)
DPD = QtGui.QLabel("Drive Pin Radius ( C )")
la.addWidget(DPD)
self.dPd = QtGui.QLineEdit()
la.addWidget(self.dPd)
GWT = QtGui.QLabel("Geneva Wheel Tolerance ( D )")
la.addWidget(GWT)
self.gWt = QtGui.QLineEdit()
la.addWidget(self.gWt)
GWH = QtGui.QLabel("Geneva Wheel Height")
la.addWidget(GWH)
self.gWh = QtGui.QLineEdit()
la.addWidget(self.gWh)
GWN = QtGui.QLabel("Driven Slot Quantity")
la.addWidget(GWN)
self.gWn = QtGui.QLineEdit()
la.addWidget(self.gWn)
#
# - Include graphic image in dialog window -
#
# Insure that image is in the same directory as this Macro.
# Image should be available from same source as Macro.
#
import os
macro_dir='/tmp'
try:
macro_dir = os.path.dirname(__file__)
except:
pass
self.PiX = QtGui.QLabel()
self.PiX.setPixmap(os.path.join(macro_dir, "GW_Dim.png"))
hbox = QtGui.QHBoxLayout()
hbox.addStretch()
hbox.addWidget(self.PiX)
hbox.addStretch()
la.addSpacing(15)
la.addLayout(hbox)
la.addSpacing(15)
# - End Image layout -
okbox = QtGui.QDialogButtonBox(self.dialog)
okbox.setOrientation(QtCore.Qt.Horizontal)
okbox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
la.addWidget(okbox)
QtCore.QObject.connect(okbox, QtCore.SIGNAL("accepted()"), self.Ggear)
QtCore.QObject.connect(okbox, QtCore.SIGNAL("rejected()"), self.close)
QtCore.QMetaObject.connectSlotsByName(self.dialog)
self.dialog.show()
self.dialog.exec_()
p()