diff options
Diffstat (limited to '278/CH26/EX26.8/ex_26_8.sce')
-rwxr-xr-x | 278/CH26/EX26.8/ex_26_8.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/278/CH26/EX26.8/ex_26_8.sce b/278/CH26/EX26.8/ex_26_8.sce new file mode 100755 index 000000000..bc9bfb77a --- /dev/null +++ b/278/CH26/EX26.8/ex_26_8.sce @@ -0,0 +1,16 @@ +//find
+clc
+//solution
+//given
+D=150//mm
+R=75//mm
+d=50//mm
+r=25//mm
+p=0.8//N/mm^2
+N=100//rpm
+u=0.015
+W=p*%pi*[R^2-r^2]//N
+printf("load to be supported is,%f N\n",W)
+T=(2/3)*u*W*[(R^3-r^3)/(R^2-r^2)]//N-mm
+P=2*%pi*N*T/60000
+printf("power loast in friction is,%f W\n",P)
\ No newline at end of file |