diff options
Diffstat (limited to '2615/CH10')
-rwxr-xr-x | 2615/CH10/EX43.1/43.sce | 12 | ||||
-rwxr-xr-x | 2615/CH10/EX44.2/44.sce | 9 | ||||
-rwxr-xr-x | 2615/CH10/EX45.3/45.sce | 9 | ||||
-rwxr-xr-x | 2615/CH10/EX46.4/46.sce | 16 | ||||
-rwxr-xr-x | 2615/CH10/EX47.5/47.sce | 14 |
5 files changed, 60 insertions, 0 deletions
diff --git a/2615/CH10/EX43.1/43.sce b/2615/CH10/EX43.1/43.sce new file mode 100755 index 000000000..484788745 --- /dev/null +++ b/2615/CH10/EX43.1/43.sce @@ -0,0 +1,12 @@ +clc
+//initialisation of variables
+d=125//mm
+D=2000//mm
+n=240//rpm
+t=60*1000//mm/sec
+//CALCULATIONS
+V=%pi*D*n/t//m/sec
+V1=V*(d/D)//m/sec
+an=2*(V)^2/2//m/sec^2
+//RESULTS
+printf('the paripheral velocity=% f m/sec^2',an)
diff --git a/2615/CH10/EX44.2/44.sce b/2615/CH10/EX44.2/44.sce new file mode 100755 index 000000000..ecd64d739 --- /dev/null +++ b/2615/CH10/EX44.2/44.sce @@ -0,0 +1,9 @@ +clc
+//initialisation of variables
+v=50//m/mim
+D=14//mm
+a=1000//mm
+//CALCULATIONS
+N=(a*v)/(%pi*D)//rpm
+//RESULTS
+printf('The cuttin speed for drilling is equal to the peripheral velocity=% f rpm',N)
diff --git a/2615/CH10/EX45.3/45.sce b/2615/CH10/EX45.3/45.sce new file mode 100755 index 000000000..4f23c71a4 --- /dev/null +++ b/2615/CH10/EX45.3/45.sce @@ -0,0 +1,9 @@ +clc
+//initialisation of variables
+v=22//m/sec
+n=1500//rpm
+a=1000//m/sec
+//CALCULATIONS
+D=(60*a*v)/(%pi*n)//mm
+//RESULTS
+printf('The diameter must a sheave=f mm',D)
diff --git a/2615/CH10/EX46.4/46.sce b/2615/CH10/EX46.4/46.sce new file mode 100755 index 000000000..5bd348b5c --- /dev/null +++ b/2615/CH10/EX46.4/46.sce @@ -0,0 +1,16 @@ +clc
+//initialisation of variables
+D=2000//mm
+a=12.5//mm
+t=5//seconds
+t1=360//degree
+q=9000//degree
+v=1000//m
+//CALCULATIONS
+Fhi=t1*a//Degree
+epl=q/(t)^2//degree/sec^2
+U=t1*t//deg/sec
+V=U/t1//rev/sec
+V1=(%pi*D*t)/v//m/sec
+//RESULTS
+printf('the velocity corresponds peripheral velocity at that moment=% f m/sec',V1)
diff --git a/2615/CH10/EX47.5/47.sce b/2615/CH10/EX47.5/47.sce new file mode 100755 index 000000000..8d6241dc0 --- /dev/null +++ b/2615/CH10/EX47.5/47.sce @@ -0,0 +1,14 @@ +clc
+//initialisation of variables
+n=400//rpm
+U=6*n//deg/sec
+t=150//deg/sec
+d=360//degree
+a=1.2//mm
+//CALCULATIONS
+Epl=U/t//deg/sec^2
+Fhi=Epl*(t)^2/2//degree
+V=Fhi/d//rev
+T=(%pi*a*Epl)/d//m/sec^2
+//RESULTS
+printf('the number of revolution its executed after power=% f rev',T)
|