diff options
Diffstat (limited to '1325/CH12/EX12.8')
-rw-r--r-- | 1325/CH12/EX12.8/12_8.PNG | bin | 0 -> 71862 bytes | |||
-rw-r--r-- | 1325/CH12/EX12.8/12_8.sce | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/1325/CH12/EX12.8/12_8.PNG b/1325/CH12/EX12.8/12_8.PNG Binary files differnew file mode 100644 index 000000000..311e3b6e9 --- /dev/null +++ b/1325/CH12/EX12.8/12_8.PNG diff --git a/1325/CH12/EX12.8/12_8.sce b/1325/CH12/EX12.8/12_8.sce new file mode 100644 index 000000000..163de9066 --- /dev/null +++ b/1325/CH12/EX12.8/12_8.sce @@ -0,0 +1,11 @@ +//to find the weight of flywheel
+clc
+//given
+N=120//rpm
+k=3.5//ft
+Ef=2500//ft lb
+Ks=.01
+g=32.2//ft/s^2
+w=%pi*N/30//angular velocity
+W=g*Ef/(w^2*k^2*Ks*2240)//Weight of flying wheel
+printf("\nWeight of flying wheel, W = %.2f tons",W)
|