diff options
Diffstat (limited to '3821/CH13/EX13.4/Example13_4.sce')
-rw-r--r-- | 3821/CH13/EX13.4/Example13_4.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3821/CH13/EX13.4/Example13_4.sce b/3821/CH13/EX13.4/Example13_4.sce new file mode 100644 index 000000000..045736158 --- /dev/null +++ b/3821/CH13/EX13.4/Example13_4.sce @@ -0,0 +1,22 @@ +////Chapter 13 Steam Engines
+////Example 13.2 Page No 285
+///Find Cover end mean effective pressure
+//Input data
+clc;
+clear;
+Cover=1200; //Area of the indicator diagram for cover
+Crank=1100; //Area of the indicator diagram for crank
+ID=75;
+PS=0.15;
+
+
+///Calculation
+CoverMEP=Cover/ID*PS; //Cover end mean effective pressure
+CrankMEP=Crank/ID*PS; //Crank end mean effective pressure
+AverageMEP=(CoverMEP+CrankMEP)/2; //Average end mean effective pressure
+
+
+///Output
+printf('Cover end mean effective pressure= %f bar \n',CoverMEP);
+printf('Crank end mean effective pressure= %f bar \n',CrankMEP);
+printf('Average end mean effective pressure= %f bar \n',AverageMEP);
|