diff options
Diffstat (limited to '3821/CH13/EX13.5/Example13_5.sce')
-rw-r--r-- | 3821/CH13/EX13.5/Example13_5.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3821/CH13/EX13.5/Example13_5.sce b/3821/CH13/EX13.5/Example13_5.sce new file mode 100644 index 000000000..6f594606d --- /dev/null +++ b/3821/CH13/EX13.5/Example13_5.sce @@ -0,0 +1,19 @@ +////Chapter 13 Steam Engines
+////Example 13.5 Page No 286
+///Find Mean effective pressure
+//Input data
+clc;
+clear;
+a=25; //Area of indicator diagram cm^2
+Vs=0.15; //swept volume m^2
+S=1; //Scale in cm
+cm=0.02; //pressure axis m^3
+
+
+///Calculation
+b=Vs/cm; //Base length of diagram
+Pm=a/b*S; //Mean effective pressure
+
+//Output
+printf('Base length of diagram=%f bar \n',b);
+printf('Mean effective pressure= %f bar \n',Pm);
|