diff options
Diffstat (limited to '3843/CH3/EX3.1')
-rw-r--r-- | 3843/CH3/EX3.1/Ex3_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3843/CH3/EX3.1/Ex3_1.sce b/3843/CH3/EX3.1/Ex3_1.sce new file mode 100644 index 000000000..490ba362b --- /dev/null +++ b/3843/CH3/EX3.1/Ex3_1.sce @@ -0,0 +1,16 @@ +// Example 3_1
+clc;funcprot(0);
+// Given data
+m=1;// The mass of steam in kg
+x=20/100;// The quality of steam
+P=200;// kPa
+T_2=400;// °C
+
+// Calculation
+// Using Table C-2 we find
+v_f=0.001061;// m^3/kg
+v_g=0.8857;// m^3/kg
+v_1=v_f+(x*(v_g-v_f));// m^3/kg
+v_2=1.549;// m^3/kg
+W=m*P*(v_2-v_1);// kJ
+printf("\nThe work done by the steam,W=%3.1f kJ",W);
|