diff options
Diffstat (limited to '3821/CH10/EX10.1')
-rw-r--r-- | 3821/CH10/EX10.1/Example10_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3821/CH10/EX10.1/Example10_1.sce b/3821/CH10/EX10.1/Example10_1.sce new file mode 100644 index 000000000..0ed5768dc --- /dev/null +++ b/3821/CH10/EX10.1/Example10_1.sce @@ -0,0 +1,14 @@ +/////Chapter 10 Properties Of Steam
+////Example 10.1 Page No:183
+///Find Dryness fuction of steam
+///Input data
+clc;
+clear;
+mw=15; //Water steam
+ms=185; //Dry steam
+
+///Calculation
+x=((ms)/(ms+mw))*100; //Dryness fuction of steam in %
+
+///Output
+printf('Dryness fuction of steam= %f percent \n',x);
|