diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1328/CH20 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1328/CH20')
-rw-r--r-- | 1328/CH20/EX20.1/20_1.sce | 31 | ||||
-rw-r--r-- | 1328/CH20/EX20.2/20_2.sce | 34 | ||||
-rw-r--r-- | 1328/CH20/EX20.3/20_3.sce | 64 | ||||
-rw-r--r-- | 1328/CH20/EX20.4/20_4.sce | 72 | ||||
-rw-r--r-- | 1328/CH20/EX20.5/20_5.sce | 69 | ||||
-rw-r--r-- | 1328/CH20/EX20.6/20_6.sce | 28 | ||||
-rw-r--r-- | 1328/CH20/EX20.7/20_7.sce | 42 | ||||
-rw-r--r-- | 1328/CH20/EX20.8a/20_8a.sce | 29 | ||||
-rw-r--r-- | 1328/CH20/EX20.8b/20_8b.sce | 18 | ||||
-rw-r--r-- | 1328/CH20/EX20.8c/20_8c.sce | 16 | ||||
-rw-r--r-- | 1328/CH20/EX20.8d/20_8d.sce | 32 |
11 files changed, 435 insertions, 0 deletions
diff --git a/1328/CH20/EX20.1/20_1.sce b/1328/CH20/EX20.1/20_1.sce new file mode 100644 index 000000000..9961be355 --- /dev/null +++ b/1328/CH20/EX20.1/20_1.sce @@ -0,0 +1,31 @@ +printf("\t example 20.1 \n");
+printf("\t approximate values are mentioned in the book \n");
+T=150; // F
+L=0.6; // ft
+N=7500; // rev/hr
+row=62.5; // lb/ft^3
+mu=1.06; // at 150 F and from fig 14, lb/ft*hr
+k=0.38; // Btu/(hr)*(ft^2)*(F/ft), from table 4
+c=1; // Btu/(lb)*(F)
+Rej=(L^2)*(N)*(row)/(mu);
+printf("\t Rej is : %.1e \n",Rej);
+Z=1; // Z=(mu/muw)^(0.14), regarded as 1 for water
+Dj=1.01; // ft, from table 11
+j=1100; // fig 20.2
+hi=((j)*(k/Dj)*((c*mu/k)^(1/3))*(Z)^(0.14));
+printf("\t hi is : %.0f Btu/(hr)*(ft^2)*(F) \n",hi);
+hoi=1500; // Btu/(hr)*(ft^2)*(F)
+Uc=((hi*hoi)/(hi+hoi)); // from eq 6.38
+printf("\t Uc is : %.0f Btu/(hr)*(ft^2)*(F) \n",Uc);
+Rd=0.005;
+hd=(1/Rd);
+printf("\t hd is : %.0f \n",hd);
+UD=((Uc*hd)/(Uc+hd));
+printf("\t UD is : %.0f Btu/(hr)*(ft^2)*(F) \n",UD);
+A=3.43; // ft^2
+Q=32600;
+delt=(Q/(UD*A));
+printf("\t temperature difference is : %.0f F \n",delt);
+Ts=(T+delt);
+printf("\t temperature of the steam : %.0f F \n",Ts);
+// end
diff --git a/1328/CH20/EX20.2/20_2.sce b/1328/CH20/EX20.2/20_2.sce new file mode 100644 index 000000000..08184b50d --- /dev/null +++ b/1328/CH20/EX20.2/20_2.sce @@ -0,0 +1,34 @@ +printf("\t example 20.2 \n");
+printf("\t approximate values are mentioned in the book \n");
+T1=150; // F
+T2=220; // F
+L=0.6; // ft
+N=7500; // rev/hr
+row=62.5; // lb/ft^3
+mu=1.06; // at 150 F and from fig 14, lb/ft*hr
+k=0.38; // Btu/(hr)*(ft^2)*(F/ft), from table 4
+c=1; // Btu/(lb)*(F)
+Rej=(L^2)*(N)*(row)/(mu);
+printf("\t Rej is : %.1e \n",Rej);
+Z=1; // Z=(mu/muw)^(0.14), regarded as 1 for water
+Dj=1.01; // ft, from table 11
+j=1700; // fig 20.2
+hi=((j)*(k/Dj)*((c*mu/k)^(1/3))*(Z)^(0.14));
+printf("\t hi is : %.0f Btu/(hr)*(ft^2)*(F) \n",hi);
+hoi=1500; // Btu/(hr)*(ft^2)*(F)
+Uc=((hi*hoi)/(hi+hoi)); // from eq 6.38
+printf("\t Uc is : %.0f Btu/(hr)*(ft^2)*(F) \n",Uc);
+Rd=0.005;
+hd=(1/Rd);
+printf("\t hd is : %.0f \n",hd);
+UD=((Uc*hd)/(Uc+hd));
+printf("\t UD is : %.1f Btu/(hr)*(ft^2)*(F) \n",UD);
+Q=32600;
+A=(Q/(UD*(T2-T1)));
+printf("\t Area is : %.2f ft^2 \n",A);
+a=0.1309; // ft^2/ft
+a1=(3.14*0.8*a);
+printf("\t area per turn is : %.3f ft^2 \n",a1);
+n=(A/a1);
+printf("\t number of turns : %.1f \n",n);
+// end
diff --git a/1328/CH20/EX20.3/20_3.sce b/1328/CH20/EX20.3/20_3.sce new file mode 100644 index 000000000..36aac87e9 --- /dev/null +++ b/1328/CH20/EX20.3/20_3.sce @@ -0,0 +1,64 @@ +printf("\t example 20.3 \n");
+printf("\t approximate values are mentioned in the book \n");
+T1=675; // inlet hot fluid,F
+T2=200; // outlet hot fluid,F
+t1=120; // inlet cold fluid,F
+t2=140; // outlet cold fluid,F
+W=33100; // lb/hr
+w=510000; // lb/hr
+printf("\t 1.for heat balance \n");
+printf("\t for oil \n");
+c=0.64; // Btu/(lb)*(F)
+Q=((W)*(c)*(T1-T2)); // Btu/hr
+printf("\t total heat required for oil is : %.2e Btu/hr \n",Q);
+printf("\t for water \n");
+c=1; // Btu/(lb)*(F)
+Q=((w)*(c)*(t2-t1)); // Btu/hr
+printf("\t total heat required for water is : %.2e Btu/hr \n",Q);
+delt1=T2-t1; //F
+delt2=T1-t2; // F
+printf("\t delt1 is : %.0f F \n",delt1);
+printf("\t delt2 is : %.0f F \n",delt2);
+LMTD=230;
+printf("\t LMTD is :%.0f F \n",LMTD);
+Tc=((T2)+(T1))/(2); // caloric temperature of hot fluid,F
+printf("\t caloric temperature of hot fluid is : %.1f F \n",Tc);
+tc=((t1)+(t2))/(2); // caloric temperature of cold fluid,F
+printf("\t caloric temperature of cold fluid is : %.0f \n",tc);
+printf("\t hot fluid:inner tube side, oil \n");
+at=0.0458; // flow area, ft^2, table 11
+printf("\t flow area is : %.4f ft^2 \n",at);
+Gt=(W/(at)); // mass velocity,lb/(hr)*(ft^2)
+printf("\t mass velocity is : %.2e lb/(hr)*(ft^2) \n",Gt);
+mu2=5.56; // at 400F,lb/(ft)*(hr)
+D=0.242; // ft, table 11
+Ret=((D)*(Gt)/mu2); // reynolds number
+printf("\t reynolds number is : %.2e \n",Ret);
+jH=100; // from fig.24
+Z=0.245; // Z=(k(c*mu/k)^(1/3)), Btu/(hr)*(ft)*(F/ft), fig 16
+hi=((jH)*(Z/D)); //Hi=(hi/phyp),using eq.6.15,Btu/(hr)*(ft^2)*(F)
+printf("\t hi is : %.0f Btu/(hr)*(ft^2)*(F) \n",hi);
+ID=2.9; // ft
+OD=3.5; // ft
+hio=((hi)*(ID/OD)); // using eq.6.5
+printf("\t Correct hio to the surface at the OD is : %.1f Btu/(hr)*(ft^2)*(F) \n",hio);
+ho=150; // Btu/(hr)*(ft^2)
+tw=(tc)+(((hio)/(hio+ho))*(Tc-tc)); // from eq.5.31
+printf("\t tw is : %.0f F \n",tw);
+tf=(tw+tc)/2;
+printf("\t tf is : %.0f F \n",tf);
+delt=110; // F
+d0=3.5; // in, fig 10.4
+Uc=((ho*hio)/(ho+hio)); // from eq 6.38
+printf("\t Uc is : %.1f Btu/(hr)*(ft^2)*(F) \n",Uc);
+Rd=0.01;
+hd=(1/Rd);
+printf("\t hd is : %.0f \n",hd);
+UD=((Uc*hd)/(Uc+hd));
+printf("\t UD is : %.0f Btu/(hr)*(ft^2)*(F) \n",UD);
+A=(Q/(UD*(LMTD)));
+printf("\t Area is : %.0f ft^2 \n",A);
+a=0.917; // ft^2/ft, table 11
+L=(A/(a*24));
+printf("\t pipe length : %.0f \n",L);
+// end
diff --git a/1328/CH20/EX20.4/20_4.sce b/1328/CH20/EX20.4/20_4.sce new file mode 100644 index 000000000..c9986bb99 --- /dev/null +++ b/1328/CH20/EX20.4/20_4.sce @@ -0,0 +1,72 @@ +printf("\t example 20.4 \n");
+printf("\t approximate values are mentioned in the book \n");
+T1=450; // inlet hot fluid,F
+T2=150; // outlet hot fluid,F
+t1=85; // inlet cold fluid,F
+t2=100; // outlet cold fluid,F
+W=3360; // lb/hr
+w=11100; // lb/hr
+printf("\t 1.for heat balance \n");
+printf("\t for SO2 \n");
+c=0.165; // Btu/(lb)*(F)
+Q=((W)*(c)*(T1-T2)); // Btu/hr
+printf("\t total heat required for SO2 is : %.3e Btu/hr \n",Q);
+printf("\t for water \n");
+c=1; // Btu/(lb)*(F)
+Q=((w)*(c)*(t2-t1)); // Btu/hr
+printf("\t total heat required for water is : %.3e Btu/hr \n",Q);
+delt1=T2-t1; //F
+delt2=T1-t2; // F
+printf("\t delt1 is : %.0f F \n",delt1);
+printf("\t delt2 is : %.0f F \n",delt2);
+LMTD=((delt2-delt1)/((2.3)*(log10(delt2/delt1))));
+printf("\t LMTD is :%.0f F \n",LMTD);
+R=20;
+S=0.0412;
+FT=0.98; // fig 18
+delt=(FT*LMTD);
+printf("\t delt is : %.0f F \n",delt);
+Tc=((T2)+(T1))/(2); // caloric temperature of hot fluid,F
+printf("\t caloric temperature of hot fluid is : %.0f F \n",Tc);
+tc=((t1)+(t2))/(2); // caloric temperature of cold fluid,F
+printf("\t caloric temperature of cold fluid is : %.1f \n",tc);
+printf("\t hot fluid:inner tube side, SO2 \n");
+at=0.0512; // flow area, ft^2, table 11
+printf("\t flow area is : %.4f ft^2 \n",at);
+Gt=(W/(at)); // mass velocity,lb/(hr)*(ft^2)
+printf("\t mass velocity is : %.2e lb/(hr)*(ft^2) \n",Gt);
+mu2=0.041; // at 300F,lb/(ft)*(hr), fig 15
+D=0.256; // ft, table 11
+Ret=((D)*(Gt)/mu2); // reynolds number
+printf("\t reynolds number is : %.1e \n",Ret);
+jH=790; // from fig.24
+Z=0.006831; // Z=(k(c*mu/k)^(1/3)), Btu/(hr)*(ft)*(F/ft)
+hi=((jH)*(Z/D)); //Hi=(hi/phyp),using eq.6.15,Btu/(hr)*(ft^2)*(F)
+printf("\t hi is : %.1f Btu/(hr)*(ft^2)*(F) \n",hi);
+ID=3.068; // ft
+OD=3.5; // ft
+hio=((hi)*(ID/OD)); // using eq.6.5
+printf("\t Correct hio to the surface at the OD is : %.1f Btu/(hr)*(ft^2)*(F) \n",hio);
+printf("\t cold fluid water \n");
+L=8; // ft
+G=(w/(2*L));
+printf("\t G : %.0f lb/(hr)*(ft) \n",G);
+mu1=1.94; // at 92.5F, lb/(ft)*(hr)
+Re=(4*G/mu1);
+printf("\t Re is : %.2e \n",Re);
+Do=0.292; // ft
+ho=(65*(G/Do)^(1/3));
+printf("\t ho is : %.0f Btu/(hr)*(ft^2)*(F) \n",ho);
+Uc=((ho*hio)/(ho+hio)); // from eq 6.38
+printf("\t Uc is : %.1f Btu/(hr)*(ft^2)*(F) \n",Uc);
+Rd=0.01;
+hd=(1/Rd);
+printf("\t hd is : %.0f \n",hd);
+UD=((Uc*hd)/(Uc+hd));
+printf("\t UD is : %.1f Btu/(hr)*(ft^2)*(F) \n",UD);
+A=(Q/(UD*(LMTD)));
+printf("\t Area is : %.1f ft^2 \n",A); // calculation mistake in book
+a=0.917; // ft^2/ft, table 11
+l=(A/(a*8));
+printf("\t pipe length : %.2f \n",l);
+// end
diff --git a/1328/CH20/EX20.5/20_5.sce b/1328/CH20/EX20.5/20_5.sce new file mode 100644 index 000000000..2c44f9f35 --- /dev/null +++ b/1328/CH20/EX20.5/20_5.sce @@ -0,0 +1,69 @@ +printf("\t example 20.5 \n");
+printf("\t approximate values are mentioned in the book \n");
+Nt=25; // number of tubes
+A=50; // total projected area
+Tav=100; // F
+s=28; // assumption spray, lb/(min)*(ft^2)
+Do=0.0833; // ft
+PH=0.1562;
+Y=0.874;
+Z=0.466;
+E=(0.171*(Do*Y*Z)^0.1); // (E/(Do*Y*Z)^0.1)=0.171, from fig 20.10
+printf("\t evaporation percentage is : %.2f \n",E);
+Q=(295*500*(143-130));
+printf("\t heat load is : %.2e Btu/hr \n",Q);
+Q1=(Q*(1-0.12));
+printf("\t sensible heat is : %.2e Btu/hr \n",Q1);
+t2=(90)+(Q1/(28*60*50));
+printf("\t final spray temperature is : %.0f F \n",t2);
+w=(s*60*50);
+printf("\t total spray : %.1e lb/hr \n",w);
+m=(w/(2*4*12));
+printf("\t m is : %.0f lb/(hr)*(ft^2) \n",m);
+mu=1.84; // lb/(ft)*(hr)
+Z=((m^0.3)*Do*Y*Z/(mu*0.125));
+printf("\t Z is : %.2f \n",Z);
+N=3; // assume 3 horizontal rows
+ho=300*(N^0.05); // (ho/(N^0.05))=300, from fig 20.11
+printf("\t ho is : %.0f Btu/(hr)*(ft^2)*(F) \n",ho);
+printf("\t tube side coefficient \n");
+printf("\t assuming even number of passes and tube side velocity about 8fps \n");
+at=0.0775; // ft^2
+Gt=(295*500/(at)); // mass velocity,lb/(hr)*(ft^2)
+printf("\t mass velocity is : %.1e lb/(hr)*(ft^2) \n",Gt);
+V=(Gt/(3600*62.5));
+printf("\t velocity is : %.2f fps \n",V);
+hi=2140; // Btu/(hr)*(ft^2)*(F), fig 25
+ID=0.87; // ft
+OD=1; // ft
+hio=((hi)*(ID/OD)); // using eq.6.5
+printf("\t Correct hio to the surface at the OD is : %.2e Btu/(hr)*(ft^2)*(F) \n",hio);
+Uc=((ho*hio)/(ho+hio)); // from eq 6.38
+printf("\t Uc is : %.0f Btu/(hr)*(ft^2)*(F) \n",Uc);
+a=0.2618; // ft^2, table 11
+A1=(2*3*25*12*a);
+printf("\t total surface is : %.0f ft^2 \n",A1);
+T1=143; // inlet hot fluid,F
+T2=130; // outlet hot fluid,F
+t1=90; // inlet cold fluid,F
+t2=110; // outlet cold fluid,F
+delt1=T2-t1; //F
+delt2=T1-t2; // F
+printf("\t delt1 is : %.0f F \n",delt1);
+printf("\t delt2 is : %.0f F \n",delt2);
+LMTD=((delt2-delt1)/((2.3)*(log10(delt2/delt1))));
+printf("\t LMTD is :%.1f F \n",LMTD); // calculation mistake in book
+R=0.65;
+S=0.377;
+FT=0.97; // fig 18
+delt=(FT*LMTD);
+printf("\t delt is : %.1f F \n",delt);
+UD=(Q/(A1*(delt)));
+printf("\t UD is : %.0f Btu/(hr)*(ft^2)*(F) \n",UD);
+Rd=((Uc-UD)/((UD)*(Uc))); // (hr)*(ft^2)*(F)/Btu
+printf("\t actual Rd is : %.4f (hr)*(ft^2)*(F)/Btu \n",Rd);
+printf("\t The assumption of three horizontal rows is satisfactory, since a dirt factor of 0.004 was required \n");
+// end
+
+
+
diff --git a/1328/CH20/EX20.6/20_6.sce b/1328/CH20/EX20.6/20_6.sce new file mode 100644 index 000000000..680b0a98a --- /dev/null +++ b/1328/CH20/EX20.6/20_6.sce @@ -0,0 +1,28 @@ +printf("\t example 20.6 \n");
+printf("\t approximate values are mentioned in the book \n");
+T1=200; // inlet hot fluid,F
+T2=100; // outlet hot fluid,F
+t1=50; // inlet cold fluid,F
+t2=100; // outlet cold fluid,F
+R=((T1-T2)/(t2-t1));
+printf("\t R is : %.0f \n",R);
+V=((T1+T2-t1-t2)/(t2-t1))/(2);
+printf("\t V is : %.1f \n",V);
+u=120;
+U=60;
+F=((u*1)/(U*2));
+printf("\t F is : %.0f \n",F);
+E=1.1; // In Fig.20.18b for R = 2.0and F = l.O,the abscissa and ordinate intersect at E =1.10.
+Z=(E/V);
+printf("\t Z is : %.3f \n",Z);
+deltD=0.783*V; // deltD/V=0.783, from fig 20.17
+printf("\t deltD is : %.3f \n",deltD);
+delt=(deltD*(t2-t1));
+printf("\t delt is : %.1f \n",delt);
+delt1=T2-t1; //F
+delt2=T1-t2; // F
+printf("\t delt1 is : %.0f F \n",delt1);
+printf("\t delt2 is : %.0f F \n",delt2);
+LMTD=((delt2-delt1)/((2.3)*(log10(delt2/delt1))));
+printf("\t LMTD is :%.0f F \n",LMTD);
+// end
diff --git a/1328/CH20/EX20.7/20_7.sce b/1328/CH20/EX20.7/20_7.sce new file mode 100644 index 000000000..7197becd1 --- /dev/null +++ b/1328/CH20/EX20.7/20_7.sce @@ -0,0 +1,42 @@ +printf("\t example 20.7 \n");
+printf("\t approximate values are mentioned in the book \n");
+T1=284; // inlet hot fluid,F
+T2=104; // outlet hot fluid,F
+t1=86; // inlet cold fluid,F
+t2=104; // outlet cold fluid,F
+W=1000; // lb/hr
+k=0.15; // thermal conductivity
+L=10;
+Beta=((2*k)/(500*(2/12))); // hoi=500Btu/(hr)*(ft^2)*(F) for water
+printf("\t beta is : %.4f \n",Beta);
+printf("\t for sand \n");
+C=0.2; // Btu/(lb)*(F)
+Q=((W)*(C)*(T1-T2)); // Btu/hr
+printf("\t total heat required for sand is : %.1e Btu/hr \n",Q);
+c=1;
+w=(Q/(t2-t1));
+printf("\t w is : %.0e lb/hr \n",w);
+R=((W*C)/(w*c));
+printf("\t R is : %.1f \n",R);
+S=((T2-T1)/(t1-T1));
+printf("\t S is : %.2f \n",S);
+W1=(8.33*(k*L)/C); // ((W1*C)/(k*L))=8.33 from fig 20.20b for Beta=0
+printf("\t rate per tube is : %.1f lb/hr \n",W1);
+N1=(W/W1);
+printf("\t number of tubes : %.0f \n",N1);
+printf("\t for air assume hoi=9 and Beta=0.2 \n");
+c1=0.25;
+w1=(Q/(c1*(t2-t1)));
+printf("\t w1 is : %.0e lb/hr \n",w1);
+W2=(5.23*(k*L)/C); // ((W1*C)/(k*L))=5.23 from fig 20.20b for Beta=0.2
+printf("\t rate per tube is : %.0f lb/hr \n",W2);
+N2=(W/W2);
+printf("\t number of tubes : %.0f \n",N2);
+// end
+
+
+
+
+
+
+
diff --git a/1328/CH20/EX20.8a/20_8a.sce b/1328/CH20/EX20.8a/20_8a.sce new file mode 100644 index 000000000..c04df6e77 --- /dev/null +++ b/1328/CH20/EX20.8a/20_8a.sce @@ -0,0 +1,29 @@ +printf("\t example 20.8a \n");
+printf("\t approximate values are mentioned in the book \n");
+L=3; // ft
+B=2; // ft
+h=18/12; // ft , height of water present in tank
+printf("\t unsteady state \n");
+m=(L*B*h*62.5);
+printf("\t Lb of water is : %.1f lb \n",m);
+t1=50;
+t2=150;
+c=1;
+Q=(m*c*(t2-t1))/(2*3412); // kwhr
+printf("\t heat to be supplied : %.2f kwhr \n",Q);
+printf("\t losses \n");
+Q1=(L*B*260)/(1000); // from fig 20.25c
+printf("\t from surface of water : %.2f kwhr \n",Q1);
+Q2=(5.5*((2*B*2)+(2*L*B))/(1000)); // from fig 20.25c
+printf("\t from sides of vessel : %.2f kwhr \n",Q2);
+printf("\t losses from bottom are negigible \n");
+Qt=(Q+Q1+Q2);
+printf("\t total requirement : %.2f kwhr \n",Qt);
+printf("\t steady state \n");
+m1=8; // gal/hr
+Qs=(m1*8.33*c*(t2-t1))/(3412); // kwhr
+printf("\t heat to be supplied : %.2f kwhr \n",Qs);
+Qts=(Qs+Q1+Q2);
+printf("\t total requirement : %.2f kwhr \n",Qts);
+// end
+
diff --git a/1328/CH20/EX20.8b/20_8b.sce b/1328/CH20/EX20.8b/20_8b.sce new file mode 100644 index 000000000..595276f0c --- /dev/null +++ b/1328/CH20/EX20.8b/20_8b.sce @@ -0,0 +1,18 @@ +printf("\t example 20.8b \n");
+printf("\t approximate values are mentioned in the book \n");
+m=100; // lb
+t1=70;
+t2=370;
+L=4;
+B=3;
+n=4; // number of air changers
+c1=0.12
+Q1=(m*c1*(t2-t1));
+printf("\t heat to steel charge : %.1e Btu \n",Q1);
+c2=0.25
+Q2=(n*L*B*2*0.075*c2*(t2-t1));
+printf("\t heat to air : %.1e Btu \n",Q2);
+printf("\t From Fig. 20.25a for 52ft^2 of oven outside·surface and a temperature rise of 300F the loss is 5kw for 1 in.thick insulations.For 2 in.thick insulation the loss is 2.5kw \n");
+Qt=((Q1+Q2)/(3412))+(2.5);
+printf("\t total requirement : %.2f kw \n",Qt);
+// end
diff --git a/1328/CH20/EX20.8c/20_8c.sce b/1328/CH20/EX20.8c/20_8c.sce new file mode 100644 index 000000000..d1e049b11 --- /dev/null +++ b/1328/CH20/EX20.8c/20_8c.sce @@ -0,0 +1,16 @@ +printf("\t example 20.8c \n");
+printf("\t approximate values are mentioned in the book \n");
+m=270; // cfm
+t1=70;
+t2=120;
+L=1.5; // ft
+B=1.5; // ft
+c=0.25
+row=0.075; // lb/ft^3
+Q=(m*row*60*c*(t2-t1));
+printf("\t heat : %.2e Btu \n",Q);
+V=(m/(L*B*60)); // fps
+printf("\t velocity is : %.0f fps \n",V);
+printf("\t Refer to Fig.20.22a.The air is capable of removing 33watts/in which is the maximum dissipation which may be expected. Any group of heaters providing 5 kw which do not require a dissipation of more than 33 w/in. and which will fit into the duct will be satisfactory \n");
+printf("\t Thus in Table 20.3 elements of 350 watts with a total length each of 18 in. each are satisfactory \n");
+// end
diff --git a/1328/CH20/EX20.8d/20_8d.sce b/1328/CH20/EX20.8d/20_8d.sce new file mode 100644 index 000000000..faaf31509 --- /dev/null +++ b/1328/CH20/EX20.8d/20_8d.sce @@ -0,0 +1,32 @@ +printf("\t example 20.8d \n");
+printf("\t approximate values are mentioned in the book \n");
+t1=70;
+t2=300;
+L=26; // in
+B=12; // in
+H=1; // in
+c1=0.13
+// specific gravity of cast iron is 7.2
+printf("\t unsteady state \n");
+m=(L*B*H*62.5*7.2/1728); // lb
+printf("\t weight of plate : %.0f lb \n",m);
+Q1=(m*c1*(t2-t1));
+printf("\t heat : %.1e Btu \n",Q1);
+printf("\t From Figure 20.25b for a black body the radiation is 1.5w/in^2.The radiation from the top is actually 110 per cent of this value, and from the bottom of the plate it is 55 per cent for an average of 82.5 per cent is taken \n");
+Q2=(2*26*12*1.5*0.825/1000); // ke
+printf("\t radiation loss : %.1f kw \n",Q2);
+Qt=((Q1)/(3412))+(Q2);
+printf("\t total requirement : %.1f kw \n",Qt);
+printf("\t staedy state \n");
+m2=70;
+c2=0.22;
+Qs=(m2*c2*(t2-t1));
+printf("\t heat : %.2e Btu \n",Qs);
+Ql=0.8; // kw
+Qts=((Qs)/(3412))+(Ql);
+printf("\t total requirement : %.2f kw \n",Qts);
+printf("\t The steady state is controlling.The requirements are satisfied, by four 24-in. strip heaters, but the sheath temperature must now be checked. Since the temperature drop per unit flux density is 14 to 19F, assume an average of 16.5°F. For clamp-on strips 24 in. long the watts per square inch deliverable are 16 \n");
+delt=(16*16.5);
+printf("\t delt is : %.0f F \n",delt);
+printf("\t The sheath temperature is then 300 + 264 = 564°F, which is satisfactory for steel sheathed elements with a 750F maximum. \n");
+// end
|