Está en la página 1de 8

File:E:\Archivos EES\Secado.

EES
06/03/2016 05:24:53 p.m. Page 1
EES Ver. 9.214: #1522: Easy Engineering, https://www.youtube.com/channel/UCjC8ulmve2QNRJXhDpk-L2ANr:I{xun{}:Hxvvsut:r{yqhi:n{w

"FUNCTION L_secador:"
FUNCTION L_secador(X_1,X_2,T_s,rho_grano_seco,D_grano,m_DOT_p, m_DOT_aire,T_2,phi_2,P1,R,alpha,Y_BAR,
step)
{Volumen del grano, m3}
Vol_grano=(4/3)*pi*(D_grano/2)^3
A_s=4*pi*(D_grano/2)^2
{Superficie del grano, m2}
m_grano_seco=rho_grano_seco*Vol_grano
{Masa del grano seco, kg}
m_grano=m_grano_seco/(1-X_1)
{Masa inicial del grano hmedo, kg}
cont_agua=m_grano-m_grano_seco
{Contenido inicial de agua, kg}
N_DOT_partculas=m_DOT_p/m_grano
{Flujo de partculas, UND/S}
g=9.81
{Aceleracin de la gravedad, m/s2}
A_trans=pi*R^2
{rea transversal del tambor, m2}
h_2=ENTHALPY(AirH2O,T=T_2,P=P1,R=phi_2)
w_2=HUMRAT(AirH2O,T=T_2,P=P1,R=phi_2)
rho_2=DENSITY(AirH2O,T=T_2,P=P1,R=phi_2)
V_DOT_2=m_DOT_aire/rho_2
{Flujo volumtrico de aire, m3/s}
L_secador=0
{Variable acumuladora "Longitud de secador", m}
i=1
REPEAT
t_1=0
t2=step
{Velocidad inicial de la partcula en Z}
V_z_0=0
V_y_0=0
{Velocidad inicial de la partcula en Y}
h_BAR=0
{Coef. inicial de T.C., W/m2-K}
h_BAR_m=0
{Coef. inicial de T.M., m/s}
z_0=0
y_0=0
Y_ac=Y_BAR
lookup('Lookup 1',i,1)=L_secador
lookup('Lookup 1',i,2)=Y_ac
lookup('Lookup 1',i,3)=X_1
lookup('Lookup 1',i,4)=T_s
lookup('Lookup 1',i,5)=phi_2
lookup('Lookup 1',i,6)=T_2
lookup('Lookup 1',i,7)=V_DOT_2
lookup('Lookup 1',i,8)=h_BAR
lookup('Lookup 1',i,9)=h_BAR_m
i=i+1
REPEAT
CALL SECADO(phi_2,w_2,h_2,T_2,D_grano,m_grano,m_DOT_aire, N_DOT_partculas,R,alpha,P1,g,V_y_0,V_z_0,
z_0,y_0,A_trans,A_s,t_1,t2 : m_DOT_w,m_w,T_s,h_BAR_m,h_BAR,V_z,V_y,z,y)
w_2=w_2+m_DOT_w/m_DOT_aire
T_2=TEMPERATURE(AirH2O,h=h_2,P=P1,w=w_2)
phi_2=RELHUM(AirH2O,T=T_2,P=P1,w=w_2)
rho_2=DENSITY(AirH2O,T=T_2,P=P1,w=w_2)
V_DOT_2=m_DOT_aire/rho_2
cont_agua=cont_agua-m_w
m_grano=m_grano-m_w
X_1=cont_agua/m_grano
L_secador=L_secador+(z-z_0)
Y_ac=Y_ac-(y-y_0)
lookup('Lookup 1',i,1)=L_secador
lookup('Lookup 1',i,2)=Y_ac
lookup('Lookup 1',i,3)=X_1
lookup('Lookup 1',i,4)=T_s
lookup('Lookup 1',i,5)=phi_2
lookup('Lookup 1',i,6)=T_2
lookup('Lookup 1',i,7)=V_DOT_2
lookup('Lookup 1',i,8)=h_BAR
lookup('Lookup 1',i,9)=h_BAR_m
t_1=t2
t2=t2+step
V_y_0=V_y
V_z_0=V_z
z_0=z
y_0=y

File:E:\Archivos EES\Secado.EES
06/03/2016 05:24:53 p.m. Page 2
EES Ver. 9.214: #1522: Easy Engineering, https://www.youtube.com/channel/UCjC8ulmve2QNRJXhDpk-L2ANr:I{xun{}:Hxvvsut:r{yqhi:n{w

i=i+1
UNTIL Y_ac<=0
UNTIL X_2>=X_1
END
{---------------Fin de funcion L_secador----------------------}
"SUBPROGRAM SECADO:"
SUBPROGRAM SECADO(phi_2,w_2,h_2,T_2,D_grano,m_grano,m_DOT_aire,N_DOT_partculas,R,alpha,P1,g,V_y_0,
V_z_0,z_0,y_0,A_trans,A_s,t_1,t2 : m_DOT_w,m_w,T_s,h_BAR_m,h_BAR,V_z,V_y,z,y)
{Temperatura flmica}
T_f=(T_2+T_s)/2
C_D=32.628*abs(rho_B*(V_2-V_z)*D_grano/mu_B)^(-0.646)
C_L=32.628*abs(rho_B*V_y*D_grano/mu_B)^(-0.646)
{INTEGRACIN PARA DETERMINAR LA COMPONENTE "Z" DE LA VELOCIDAD ABS DE LA PARTCULA en t=t2}
m_grano*dV_zdt=m_grano*g*sin(alpha)+0.5*rho_B*C_D*(V_2-V_z)^2*(pi*(D_grano/2)^2)
V_z=V_z_0+integral(dV_zdt,Time,t_1,t2)
{INTEGRACIN PARA DETERMINAR LA COMPONENTE "Y" DE LA VELOCIDAD ABS DE LA PARTCULA en t=t2}
m_grano*dV_ydt=m_grano*g*cos(alpha)-0.5*rho_B*C_L*V_y^2*(pi*(D_grano/2)^2)
V_y=V_y_0+integral(dV_ydt,Time,t_1,t2)
{INTEGRACIN PARA DETERMINAR LA COORDENADA "Z" DE LA PARTCULA en t=t2}
z=z_0+integral(V_z,Time,t_1,t2)
{INTEGRACIN PARA DETERMINAR LA COORDENADA "Y" DE LA PARTCULA en t=t2}
y=y_0+integral(V_y,Time,t_1,t2)
{DETERMINACIN DE LA VELOCIDAD RELATIVA ENTRE EL AIRE Y LA PARTCULA}
V_DOT_2=m_DOT_aire/rho_2
{Flujo volumtrico de aire}
V_2=V_DOT_2/A_trans
{Velocidad del aire}
V_rel=SQRT((V_2-V_z)^2+V_y^2)
{Velocidad relativa entre el grano y el aire}

{Balance de energa}
h_BAR*(T_2-T_s)=h_fg*h_BAR_m*(rho_A_sat-rho_A_INFINITY)
h_f=ENTHALPY(Water,T=T_s,X=0)*CONVERT(KJ/kg,J/kg)
h_g=ENTHALPY(Water,T=T_s,X=1)*CONVERT(KJ/kg,J/kg)
h_fg=h_g-h_f
rho_A_sat=DENSITY(Water,T=T_s,X=1)
rho_A_infinity=phi_2*DENSITY(Water,T=T_2,X=1)

{Calor latente de vaporizacin @ T_s}

{Evaluacin de NUSSELT mediante la correlacin de Whitaker. Todas las propiedades, excepto mu_s se evalan a T_2.}
NUSSELT_BAR_D=2+(0.4*abs(Re_D)^(1/2)+0.06*abs(Re_D)^(2/3))*abs(Pr_2)^0.4* abs(mu_2/mu_2_s)^(1/4)
{Correlacin de Whitaker}
NUSSELT_BAR_D=h_BAR*D_grano/k_2
{Determinacin del coef. de T.C}
Re_D=(rho_2*V_rel*D_grano)/mu_2
{Nmero de Reynolds}
rho_2=DENSITY(AirH2O,T=T_2,P=P1,w=w_2)
mu_2=VISCOSITY(AirH2O,T=T_2,P=P1,w=w_2)
mu_2_s=VISCOSITY(AirH2O,T=T_s,P=P1,w=w_2)
Pr_2=PRANDTL(Air,T=T_2)
k_2=CONDUCTIVITY(AirH2O,T=T_2,P=P1,w=w_2)
{Analoga de Reynolds. Las propiedades de la especie B se evalan a la temperatura flmica.}
h_BAR_m=(h_BAR*D_AB*abs(Le)^(1/3))/k_B
rho_B=DENSITY(Air,T=T_f,P=P1)
mu_B=VISCOSITY(Air,T=T_f)
k_B=CONDUCTIVITY(Air,T=T_f)
cp_B=CP(Air,T=T_f)*1000
Le=k_B/(rho_B*cp_B*D_AB)
D_AB=-2.775E-6[m^2/s]+4.479E-8[m^2/s-K]*(T_f)+1.656E-10[m^2/s-K^2]*(T_f)^2 {Coeficiente de Difusin Aire-Vapor de
Agua}
n_A=h_BAR_m*A_s*(rho_A_sat-rho_A_INFINITY)
{Transferencia de masa para una sola partcula, kg/s}
{Agua Evaporada}
m_w=n_A*(t2-t_1)
{Agua que pierde una partcula entre t_1 y t2, kg}
m_DOT_w=m_w*N_DOT_partculas
{Flujo total de vapor de agua entregado al aire entre t_1 y t2, kg/

File:E:\Archivos EES\Secado.EES
06/03/2016 05:24:53 p.m. Page 3
EES Ver. 9.214: #1522: Easy Engineering, https://www.youtube.com/channel/UCjC8ulmve2QNRJXhDpk-L2ANr:I{xun{}:Hxvvsut:r{yqhi:n{w

s}
END
{------------Fin de Subprograma-------------}
"MAIN:"
X_1=0.22
X_2=0.04
T_s=288
rho_grano_seco=395
D_grano=0.004
m_DOT_p=800*CONVERT(kg/h,kg/s)
m_DOT_aire=3.007
T_2=363
termodinamico}
phi_2=0.04191
analisis termodinamico}
P1=101.2
R=0.6
alpha=5
Y_BAR=0.7447
step=0.1

{Humedad inicial de la partcula en base hmeda}


{Humedad final de la partcula en base hmeda}
{Temperatura inicial de la partcula, K}
{Densidad del grano seco, kg/m3}
{Dimetro promedio de grano, m}
{Flujo msico del producto a secar}
{Flujo msico de aire, kg/s}{calculdo en analisis termodinamico}
{Temperatura del aire antes del secado, K} {calculdo en analisis
{Humedad relativa del aire antes del secado} {calculdo en
{Presin de trabajo, kPa} {calculdo en analisis termodinamico}
{Radio del tambor, m} {Agrege del dato Angulo representativo}
{Inclinacin del tambor, }
{Altura promedio de cada, m} {calculdo en Altura}
{Paso en el tiempo, s}

L_secador=L_secador(X_1,X_2,T_s,rho_grano_seco,D_grano,m_DOT_p,m_DOT_aire,T_2,phi_2,P1,R,alpha,Y_BAR,
step)

FUNCTION Lsecador:
Function L secador (X 1, X 2, T s, grano,seco, D grano, m p, m aire, T 2, 2, P1, R, , Y, step)
Vol grano

D grano
2

:= 4 / 3

D grano
2

A s := 4

m grano,seco
m grano

:= grano,seco

:=

cont agua

Vol grano

m grano,seco
1 X1

:= m grano

N partculas

:=

m grano,seco

mp
m grano

g := 9.81
A trans := R

h 2 := h 'AirH2O' , T = T 2 , P =P1 , R = 2
w 2 :=

'AirH2O' , T = T 2 , P =P1 , R = 2

2 := 'AirH2O' , T = T 2 , P =P1 , R = 2
V 2 :=
L secador

m aire
2
:= 0

File:E:\Archivos EES\Secado.EES
06/03/2016 05:24:53 p.m. Page 4
EES Ver. 9.214: #1522: Easy Engineering, https://www.youtube.com/channel/UCjC8ulmve2QNRJXhDpk-L2ANr:I{xun{}:Hxvvsut:r{yqhi:n{w
i := 1
Repeat
t 1 := 0
t2 := step
V z,0 := 0
V y,0 := 0
h := 0
h m := 0
z 0 := 0
y 0 := 0
Y ac := Y
Lookup 'Lookup 1', i , 'Column1'

:= L secador

Lookup 'Lookup 1', i , 'Column2'

:= Y ac

Lookup 'Lookup 1', i , 'Column3'

:= X 1

Lookup 'Lookup 1', i , 'Column4'

:= T s

Lookup 'Lookup 1', i , 'Column5'

:= 2

Lookup 'Lookup 1', i , 'Column6'

:= T 2

Lookup 'Lookup 1', i , 'Column7'

:= V 2

Lookup 'Lookup 1', i , 'Column8'

:= h

Lookup 'Lookup 1', i , 'Column9'

:= h m

i := i + 1
Repeat
Call SECADO 2 , w 2 , h 2 , T 2 , D grano , m grano , m aire , N partculas
, y 0 , A trans , A s , t 1 , t2 : m w , m w , T s , h m , h , V z , V y , z , y
w 2 := w 2 +

mw
m aire

T 2 := T 'AirH2O' , h =h 2 , P =P1 , w = w 2
2 := RH 'AirH2O' , T = T 2 , P =P1 , w = w 2
2 := 'AirH2O' , T = T 2 , P =P1 , w = w 2
V 2 :=

m aire

cont agua

2
:= cont agua m w

, R , , P1 , g , V y,0 , V z,0 , z 0

File:E:\Archivos EES\Secado.EES
06/03/2016 05:24:53 p.m. Page 5
EES Ver. 9.214: #1522: Easy Engineering, https://www.youtube.com/channel/UCjC8ulmve2QNRJXhDpk-L2ANr:I{xun{}:Hxvvsut:r{yqhi:n{w

m grano
X 1 :=

:= m grano

mw

cont agua
m grano

L secador

:= L secador

Y ac := Y ac

+ z z0

y y0

Lookup 'Lookup 1', i , 'Column1'

:= L secador

Lookup 'Lookup 1', i , 'Column2'

:= Y ac

Lookup 'Lookup 1', i , 'Column3'

:= X 1

Lookup 'Lookup 1', i , 'Column4'

:= T s

Lookup 'Lookup 1', i , 'Column5'

:= 2

Lookup 'Lookup 1', i , 'Column6'

:= T 2

Lookup 'Lookup 1', i , 'Column7'

:= V 2

Lookup 'Lookup 1', i , 'Column8'

:= h

Lookup 'Lookup 1', i , 'Column9'

:= h m

t 1 := t2
t2 := t2 + step
V y,0 := V y
V z,0 := V z
z 0 := z
y 0 := y
i := i + 1
Until
Until

Y ac <= 0

X 2 >= X 1

End L secador

SUBPROGRAM SECADO:
SUBPROGRAM SECADO ( 2, w 2, h 2, T 2, D grano, m grano, m aire, N partculas, R, , P1, g, V y,0, V z,0, z 0, y 0, A trans, A s, t 1, t2 : m w, m w,
T s, h m, h, V z, V y, z, y)
Tf =

CD

T2 + Ts
2

= 32.628

V2 Vz

D grano
B

0.646

File:E:\Archivos EES\Secado.EES
06/03/2016 05:24:53 p.m. Page 6
EES Ver. 9.214: #1522: Easy Engineering, https://www.youtube.com/channel/UCjC8ulmve2QNRJXhDpk-L2ANr:I{xun{}:Hxvvsut:r{yqhi:n{w

CL

= 32.628

m grano

dV zdt

0.646

D grano

B Vy

= m grano g sin

+ 0.5 B C D

V2 Vz

D grano
2

t2

V z = V z,0 +

dV zdt

d Time

t1

m grano dV ydt

= m grano g cos

0.5 B C L V y

D grano
2

t2

V y = V y,0 +

dV ydt

d Time

t1

t2

z = z0 +

Vz

d Time

Vy

d Time

t1

t2

y = y0 +

t1

m aire

V2 =

V2

2
V2

A trans

V rel

T2 Ts

V2 Vz

+ Vy

= h fg h m

A,sat

A,

h f = h 'Water' , T = T s , x =0

1000

J/kg
KJ/kg

h g = h 'Water' , T = T s , x =1

1000

J/kg
KJ/kg

h fg

= hg hf
= 'Water' , T = T s , x =1

A,sat

A, = 2 'Water' , T = T 2 , x =1
NUSSELT D = 2 +

NUSSELT D

Re D

= h

0.4

D grano
k2

2 V rel D grano
2

Re D

1 /

+ 0.06

Re D

2 /

Pr 2

0.4

2
2,s

1 /

File:E:\Archivos EES\Secado.EES
06/03/2016 05:24:53 p.m. Page 7
EES Ver. 9.214: #1522: Easy Engineering, https://www.youtube.com/channel/UCjC8ulmve2QNRJXhDpk-L2ANr:I{xun{}:Hxvvsut:r{yqhi:n{w
2 = 'AirH2O' , T = T 2 , P =P1 , w = w 2
2 = Visc 'AirH2O' , T = T 2 , P =P1 , w = w 2
2,s = Visc 'AirH2O' , T = T s , P =P1 , w = w 2
Pr 2
k2

= Pr 'Air' , T = T 2
= k 'AirH2O' , T = T 2 , P =P1 , w = w 2
h D AB

Le

1 /

hm

= 'Air' , T = T f , P =P1

= Visc 'Air' , T = T f

kB

= k 'Air' , T = T f

cp B

kB

= Cp 'Air' , T = T f

1000

kB

Le =

B cp B D AB
= 0.000002775 [m2/s] + 4.479 x 10

D AB
nA

= hm As

A,sat

mw

= nA

mw

= m w N partculas

A,

t2 t 1

END SECADO

MAIN:
X1

= 0.22

X 2 = 0.04
T s = 288
grano,seco
D grano

= 395

= 0.004

m p = 800
m aire

= 3.007

T 2 = 363
2 = 0.04191
P1 = 101.2
R = 0.6

0.000277778

kg/s
kg/h

[m2/s-K] T f + 1.656 x 10

10

[m2/s-K2] T f

File:E:\Archivos EES\Secado.EES
06/03/2016 05:24:53 p.m. Page 8
EES Ver. 9.214: #1522: Easy Engineering, https://www.youtube.com/channel/UCjC8ulmve2QNRJXhDpk-L2ANr:I{xun{}:Hxvvsut:r{yqhi:n{w

= 5
Y = 0.7447
step = 0.1
L secador

= L secador

X 1 , X 2 , T s , grano,seco

SOLUTION
Unit Settings: SI K kPa kJ mass deg
=5
maire = 3.007
2 = 0.04191
step = 0.1
X1 = 0.22

, D grano , m p , m aire , T 2 , 2 , P1 , R , , Y , step

Dgrano = 0.004
mp = 0.2222
R = 0.6
T2 = 363
X2 = 0.04

Lsecador = 6.265
P1 = 101.2
grano,seco = 395
Ts = 288
Y = 0.7447

También podría gustarte