summaryrefslogtreecommitdiff
path: root/3648/CH5/EX5.16
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH5/EX5.16')
-rw-r--r--3648/CH5/EX5.16/Ex5_16.sce14
-rw-r--r--3648/CH5/EX5.16/Ex5_16.txt3
2 files changed, 17 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)
diff --git a/3648/CH5/EX5.16/Ex5_16.txt b/3648/CH5/EX5.16/Ex5_16.txt
new file mode 100644
index 000000000..ae0d97759
--- /dev/null
+++ b/3648/CH5/EX5.16/Ex5_16.txt
@@ -0,0 +1,3 @@
+IMA=3.00
+AMA=2.50
+Percentage of efficiency is 83 percent \ No newline at end of file