diff options
Diffstat (limited to '1808/CH3/EX3.16/Chapter3_Exampl16.sce')
-rw-r--r-- | 1808/CH3/EX3.16/Chapter3_Exampl16.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1808/CH3/EX3.16/Chapter3_Exampl16.sce b/1808/CH3/EX3.16/Chapter3_Exampl16.sce new file mode 100644 index 000000000..c0ed714e7 --- /dev/null +++ b/1808/CH3/EX3.16/Chapter3_Exampl16.sce @@ -0,0 +1,16 @@ +clc
+clear
+//INPUT DATA
+t1=300;//temperature in K
+t3=1500;//temperature in K
+cv=0.7243;//calorific value
+m=0.4;//air flow rate in kg/min
+
+//CALCULATIONS
+t2=sqrt(t1*t3);//temperature in K
+Wnmax=cv*((t3-t2)-(t2-t1));//maximum workdone in kJ/kg
+Pnmax=m*Wnmax/60;//maximum power developed in kJ/s
+
+//OUTPUT
+printf('(a)Maximum power developed is %3.3f kJ/s ',Pnmax)
+
|