Hydrodesulfurization in packed beds takes place according to the following general reaction:

Sulfur Compound (ArS) + 2H2 --- H2S + Aromatic (Ar)

The kinetic rate is given by:

rHDS = (−KHDS) [ArS]^1.6 * [H2]^0.56 / (1+kad * [H2S]) [kmol/(kgs • s)]

The adsorption coefficient (kad = 50, 000 [m3/kmol]) does not depend on the temperature.

KHDS = 2.5•10^12 • exp(-19.384/Ta) [(m3)^2.16/(kg •(kmol)^1.16 • s)]

The geometry is a 3D cylinder and assembly meshing gives me a minimum orthogonal quality of 0.92, which is a desirable mesh. I have activated the Eulerian 2 phase and species transport models, and selected the mixture template for both the phases in the species transport model. Next in the materials section, all four materials (ArS, H2, Ar, and H2S) are defined inside the mixture template. The porous media is selected in the cell zone conditions and the appropriate UDF is loaded for the same.

Following this step I have attempted two different ways to execute the simulation:

1. Selecting mixture template for both gas and liquid phases and defining the materials in the same. Then, defining the reaction by defining the stoichiometric coefficients in the mixture template in the materials section. The following UDF for the reaction rate taken from the ANSYS manual was modified according to my reaction and defined and loaded as a function hook:

#include "udf.h"

#include "mem.h"

#define KHDS 0.005083992078

DEFINE_VR_RATE(vol_reac_rate,c,t,r,mole_weight,species_mf,rate,rr_t)

{

begin_c_loop(c,t)

{

real X_ars=C_YI(c,t,3)*C_R(c,t);

real X_h2=C_YI(c,t,1)*C_R(c,t);

real X_h2s=C_YI(c,t,0)*C_R(c,t);

if (FLUID_THREAD_P(t) && THREAD_VAR(t).fluid.porous)

*rate=((-KHDS)*(pow(X_ars,1.6))*(pow(X_h2,0.56)))/(1+(kad*X_h2s));

else

*rate = 0;

*rr_t = *rate;

}

end_c_loop(c,t)

}

2. Selecting two different templates to define the materials and following the remaining steps as it was in point no. 1.

I am using ANSYS Fluent for the simulations and maintaining a time step size of 1e-08, but there is no change in the mass fraction of the reactants. In other words the mass fractions of ArS and H2 are 1.0 throughout the simulation and mass fractions of Ar and H2S are 0.

Any kind of support regarding this would be reallyhelpful.

Thanks.

More Soumendu Dasgupta's questions See All
Similar questions and discussions