summaryrefslogtreecommitdiff
path: root/2417/CH9/EX9.11/Ex9_11.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2417/CH9/EX9.11/Ex9_11.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2417/CH9/EX9.11/Ex9_11.sce')
-rwxr-xr-x2417/CH9/EX9.11/Ex9_11.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2417/CH9/EX9.11/Ex9_11.sce b/2417/CH9/EX9.11/Ex9_11.sce
new file mode 100755
index 000000000..a59066c56
--- /dev/null
+++ b/2417/CH9/EX9.11/Ex9_11.sce
@@ -0,0 +1,17 @@
+//scilab 5.4.1
+clear;
+clc;
+printf("\t\t\tProblem Number 9.11\n\n\n");
+// Chapter 9 : Gas Power Cycles
+// Problem 9.11 (page no. 470)
+// Solution
+
+//six cylinder engine,with displacement 3.3L
+//Using the results of problem 9.5,
+hp=230; //Horsepower //Unit:hp
+//3.3L*1000 cm^3/L*(in/2.54 cm)^3
+LA=3.3*1000*(1/2.54)^3; //mean //in^3
+N=5500/2; //Power strokes per minute //2L engine //Unit:rpm
+//hp=(pm*LA*N)/33000;
+pm=(hp*33000*12)/(LA*N); //1ft=12inch //The mean effective pressure //psia
+printf("The mean effective pressure is %f psia",pm);