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
|
{
"metadata": {
"name": "",
"signature": "sha256:765c555912cbe4c0c322320d21d6db5068ffa5998304ec2dc51a4fde049316b1"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter9-Cams and Followers"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Ex2-pg247"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"##CHAPTER 9 ILLUSRTATION 2 PAGE NO 247\n",
"##TITLE:CAMS AND FOLLOWERS\n",
"import math\n",
"pi=3.141\n",
"s=4.## follower movement in cm\n",
"theta=60.## cam rotation in degrees\n",
"THETA=60.*pi/180## cam rotation in rad\n",
"thetaD=45.## after outstroke in degrees\n",
"thetaR=90.##....angle with which it reaches its original position in degrees\n",
"THETAR=90.*pi/180## angle with which it reaches its original position in rad\n",
"THETAd=360.-theta-thetaD-thetaR## angle after return stroke in degrees\n",
"N=300.## speed in rpm\n",
"w=2.*pi*N/60.## speed in rad/s\n",
"Vo=pi*w*s/2./THETA## Maximum velocity of follower during outstroke in cm/s\n",
"Vr=pi*w*s/2./THETAR## Maximum velocity of follower during return stroke in cm/s\n",
"Fo=pi**2.*w**2.*s/2./THETA**2./100.##Maximum acceleration of follower during outstroke in m/s**2 \n",
"Fr=pi**2.*w**2.*s/2./THETAR**2/100.##Maximum acceleration of follower during return stroke in m/s**2\n",
"print'%s %.1f %s %.1f %s '%('Maximum acceleration of follower during outstroke =',Fo,' m/s**2''Maximum acceleration of follower during return stroke= ',Fr,' m/s**2')\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Maximum acceleration of follower during outstroke = 177.6 m/s**2Maximum acceleration of follower during return stroke= 78.9 m/s**2 \n"
]
}
],
"prompt_number": 3
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Ex3-pg249"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"##CHAPTER 9 ILLUSRTATION 3 PAGE NO 249\n",
"##TITLE:CAMS AND FOLLOWERS\n",
"import math\n",
"pi=3.141\n",
"s=5.## follower movement in cm\n",
"theta=120.## cam rotation in degrees\n",
"THETA=theta*pi/180.## cam rotation in rad\n",
"thetaD=30.## after outstroke in degrees\n",
"thetaR=60.##....angle with which it reaches its original position in degrees\n",
"THETAR=60.*pi/180.## angle with which it reaches its original position in rad\n",
"THETAd=360.-theta-thetaD-thetaR## angle after return stroke in degrees\n",
"N=100.## speed in rpm\n",
"w=2.*pi*N/60.## speed in rad/s\n",
"Vo=pi*w*s/2./THETA## Maximum velocity of follower during outstroke in cm/s\n",
"Vr=pi*w*s/2./THETAR## Maximum velocity of follower during return stroke in cm/s\n",
"Fo=pi**2.*w**2.*s/2./THETA**2./100.##Maximum acceleration of follower during outstroke in m/s**2\n",
"Fr=pi**2*w**2.*s/2./THETAR**2/100.##Maximum acceleration of follower during return stroke in m/s**2\n",
"print'%s %.1f %s %.1f %s '%('Maximum acceleration of follower during outstroke =',Fo,' m/s**2''Maximum acceleration of follower during return stroke= ',Fr,' m/s**2')\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Maximum acceleration of follower during outstroke = 6.2 m/s**2Maximum acceleration of follower during return stroke= 24.7 m/s**2 \n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Ex5-pg252"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"##CHAPTER 9 ILLUSRTATION 5 PAGE NO 252\n",
"##TITLE:CAMS AND FOLLOWERS\n",
"import math\n",
"pi=3.141\n",
"N=1000.## speed of cam in rpm\n",
"w=2.*pi*N/60.## angular speed in rad/s\n",
"s=2.5## stroke of the follower in cm\n",
"THETA=120.*pi/180.## ANGULAR DISPLACEMENT OF CAM DURING OUTSTROKE IN RAD\n",
"THETAR=90.*pi/180.##ANGULAR DISPLACEMENT OF CAM DURING DWELL IN RAD\n",
"Vo=2.*w*s/THETA## Maximum velocity of follower during outstroke in cm/s\n",
"Vr=2.*w*s/THETAR##Maximum velocity of follower during return stroke in cm/s\n",
"Fo=4.*w**2.*s/THETA**2.##Maximum acceleration of follower during outstroke in m/s**2\n",
"Fr=4.*w**2.*s/THETAR**2.##Maximum acceleration of follower during return stroke in m/s**2\n",
"print'%s %.1f %s %.1f %s '%('Maximum acceleration of follower during outstroke =',Fo,' m/s**2''Maximum acceleration of follower during return stroke= ',Fr,' m/s**2')\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Maximum acceleration of follower during outstroke = 25000.0 m/s**2Maximum acceleration of follower during return stroke= 44444.4 m/s**2 \n"
]
}
],
"prompt_number": 1
}
],
"metadata": {}
}
]
}
|