diff options
Diffstat (limited to '1325/CH12/EX12.2')
-rw-r--r-- | 1325/CH12/EX12.2/12_2.PNG | bin | 0 -> 88230 bytes | |||
-rw-r--r-- | 1325/CH12/EX12.2/12_2.sce | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/1325/CH12/EX12.2/12_2.PNG b/1325/CH12/EX12.2/12_2.PNG Binary files differnew file mode 100644 index 000000000..db0b465ed --- /dev/null +++ b/1325/CH12/EX12.2/12_2.PNG diff --git a/1325/CH12/EX12.2/12_2.sce b/1325/CH12/EX12.2/12_2.sce new file mode 100644 index 000000000..17e61b4c7 --- /dev/null +++ b/1325/CH12/EX12.2/12_2.sce @@ -0,0 +1,16 @@ +//To find torque exerted on driven shaft
+clc
+//given
+ne=31
+na=25
+nb=90
+nc=83
+Ta=10 //lbft
+//Ne-Nf/(Nc-Nf)=-83/31
+k=114/83//k=Nc/Nf As Ne = 0, on simplification we get Nc/Nf= 114/83
+j=-90/25//j=Na/Nb
+//Nc=Nb, Thus Na/Nc=-90/25
+//Na/Nf=(Na/Nc)*(Nc/Nf) ie Na/Nf=k*j
+//Tf*Nf=Ta*Na
+Tf=Ta*k*j
+printf("\nTorque exerted on driven shaft = %.1f lb.ft\n",Tf)
|