summaryrefslogtreecommitdiff
path: root/1943/CH4/EX4.10
diff options
context:
space:
mode:
Diffstat (limited to '1943/CH4/EX4.10')
-rwxr-xr-x1943/CH4/EX4.10/Ex4_10.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/1943/CH4/EX4.10/Ex4_10.sce b/1943/CH4/EX4.10/Ex4_10.sce
new file mode 100755
index 000000000..62f265176
--- /dev/null
+++ b/1943/CH4/EX4.10/Ex4_10.sce
@@ -0,0 +1,20 @@
+
+clc
+clear
+//Input data
+tg=180;//The gas temperature in degree centigrade
+p=250;//The draught produced by the ID fan in mm
+nf=0.52;//The efficiency of the fan
+Va=0.858;//Volume flow rate of air in m^3/kg
+g=9.812;//gravitational force constant in m/s^2
+Wf=10;//Coal rate in t/h
+Wa=12.9;//Actual air required per kg fuel in kg air/kg fuel
+ta=30;//Room temperature in degree centigrade
+
+//Calculations
+Wfg=[(Wf+(Wa*10))*1000]/3600;//Fuel gas required in kg/s
+Vfg=[Va*(tg+273)]/(ta+273);//Volume flow rate of fuel gas in m^3/kg
+ID=((Wfg*Vfg*p*g)/(nf))/1000;//ID fan motor capacity in kW
+
+//Output
+printf('The motor capacity of the ID fan is %3.2f kW ',ID)