diff options
Diffstat (limited to '2144/CH7/EX7.5/ex7_5.sce')
-rwxr-xr-x | 2144/CH7/EX7.5/ex7_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2144/CH7/EX7.5/ex7_5.sce b/2144/CH7/EX7.5/ex7_5.sce new file mode 100755 index 000000000..3c369bcdf --- /dev/null +++ b/2144/CH7/EX7.5/ex7_5.sce @@ -0,0 +1,14 @@ +// Exa 7.5
+clc;
+clear;
+close;
+// Given data
+Q = 20;// in kJ/kg
+P = 10;// in MW
+P = P * 10^3;// in kW
+H1 = 3248;// in kJ/kg
+H2 = 2552;// in kJ/kg
+C1 = 20;// m/s
+C2 = 40;// m/s
+m = P/((H1-H2+(C1^2-C2^2)/(2*1000))-Q);// in kg/s
+disp(m,"Mass in kg is");
|