diff options
Diffstat (limited to '1571/CH9/EX9.10')
-rwxr-xr-x | 1571/CH9/EX9.10/Chapter9_Example10.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1571/CH9/EX9.10/Chapter9_Example10.sce b/1571/CH9/EX9.10/Chapter9_Example10.sce new file mode 100755 index 000000000..9f9d42518 --- /dev/null +++ b/1571/CH9/EX9.10/Chapter9_Example10.sce @@ -0,0 +1,14 @@ +clc
+clear
+
+//INPUT
+ip=16.3*500*778/33000;//input power of the engine in HP
+me=0.72;//mechanical efficiency of the engine
+bhp=31;//brake horse power in b.h.p
+ihp=bhp/me;//indicated horse power in HP
+
+//CALCULATIONS
+i=ihp/ip;//indicated thermal efficiency
+
+//OUTPUT
+mprintf('the indicted thermal efficiency is %3.3f',i)
|