diff options
Diffstat (limited to '3821/CH13/EX13.2/Example13_2.sce')
-rw-r--r-- | 3821/CH13/EX13.2/Example13_2.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3821/CH13/EX13.2/Example13_2.sce b/3821/CH13/EX13.2/Example13_2.sce new file mode 100644 index 000000000..972789717 --- /dev/null +++ b/3821/CH13/EX13.2/Example13_2.sce @@ -0,0 +1,17 @@ +////Chapter 13 Steam Engines
+////Example 13.2 Page No 283
+///Find Therotical mean effective pressure
+//Input data
+clc;
+clear;
+a=5/100; //Engine cylinder of the stroke valume in %
+P1=12; //Pressure of the stream
+rc=3; //Cut-off is one-third
+Pb=1.1; //Constant the back pressure in bar
+
+//Calulation
+//Therotical mean effective pressure Pm
+Pm=P1*(1/rc+((1/rc)+a)*log((1+a)/((1/rc)+a)))-Pb;
+
+//Output
+printf('Therotical mean effective pressure=%f N/m^2 \n',Pm);
|