diff options
Diffstat (limited to '3648/CH5/EX5.16/Ex5_16.sce')
-rw-r--r-- | 3648/CH5/EX5.16/Ex5_16.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3648/CH5/EX5.16/Ex5_16.sce b/3648/CH5/EX5.16/Ex5_16.sce new file mode 100644 index 000000000..23bb7ca26 --- /dev/null +++ b/3648/CH5/EX5.16/Ex5_16.sce @@ -0,0 +1,14 @@ +//Example 5_16
+clc();
+clear;
+//To find IMA AMA and Efficiency of the system
+si=3
+so=1
+IMA=si/so
+Fo=2000 //units in Newtons
+Fi=800 //units in Newtons
+AMA=Fo/Fi
+effi=AMA/IMA*100
+printf("IMA=%.2f\n",IMA)
+printf("AMA=%.2f\n",AMA)
+printf("Percentage of efficiency is %d percent",effi)
|