diff options
Diffstat (limited to '555/CH5/EX5.8/8.sce')
-rw-r--r-- | 555/CH5/EX5.8/8.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/555/CH5/EX5.8/8.sce b/555/CH5/EX5.8/8.sce new file mode 100644 index 000000000..839e031b7 --- /dev/null +++ b/555/CH5/EX5.8/8.sce @@ -0,0 +1,21 @@ +// Implementation of example 5.8
+// Basic and Applied Thermodynamics by P.K.Nag
+
+clc
+clear
+
+//temperature at certain instance 't', power to paddle wheel 'Wt'
+t = -273; //degree C
+//Let
+u=0;
+u0 = u - 0.718*t;
+//hp = u + p*v; and u = 0.718(t+273) and pv=0.278(t+273) thus
+t = 150; //degree C
+hp = 1.005*(t+273); //kJ/kg
+Wt = 0.1; //kJ/s or kW
+//dm/dt = m dW/dt = Wt
+//rate of flow of air out of tank 'm'
+m = (1/hp)*Wt;//kg/s
+m = m*3600; //kg/h
+printf("Rate of flow of air out of tank = %.3f kg/h",m);
+// end
\ No newline at end of file |