Encyclopaedia IndexBack to start of article

7.3.Turbulent Diffusion of Phase Mass

7.3.1. Introduction

In the PHOENICS IPSA option (ONEPHS=F), the phase-diffusion term represents the turbulent flux associated with correlations between fluctuating velocity and volume fraction.

The flux is modelled via a gradient-diffusion approximation, and it accounts for diffusion of the dispersed phase due to turbulence in the continuous phase.

7.3.2.Description and Equations

Phase-diffusion terms are present in the phase continuity equations;

    (rk*Rk),t + (rk*Rk*Vk),i = [rk*Gk*Rk,i],i      .... (7.3.1)

and the phase-F equations;

   (rk*Rk*Fk),t + (rk*Rk*Vk*Fk),i = [rk*GFk*Rk*Fk,i],i + [rk*Gk*Fk*Rk,i],i      .... (7.3.2)

Here rk, Rk and Vk denote the density, volume fraction and velocity vector of phase k; Gk is the diffusion coefficient for the volume fractions; and GFk denotes the conventional diffusion coefficient of the dependent variable F for phase k;

   GFk = ( nl/sl,Fk + nt/st,Fk )                  .... (7.3.3)

where nl and nt are the reference laminar and turbulent kinematic viscosities; and sl,Fk and st,Fk are the laminar and turbulent Prandtl numbers for Fk.

The phase-diffusion coefficient Gk is calculated from:

   Gk = nt/st,k                                      .... (7.3.4)

where st,k is the turbulent Prandtl number for the volume fraction of phase k, which is taken as unity by default.

The turbulent Prandtl numbers are defined by the PIL variables PRT(R1) and PRT(R2), and their equality is enforced by PHOENICS for reasons of volume conservation. Phase-diffusion fluxes also appear in the continuity equation for the shadow volume fraction RS, and so PHOENICS also ensures PRT(RS)=PRT(R2).

The finite-volume analogues of the phase-diffusion fluxes integrated over the control volume are given in 'The PHOENICS Equations',TR/99, 1987 (p11.1-11.2,p7.1-7.2,p6.1) for regular coordinates. For non-orthogonal staggered-mesh body-fitted coordinate systems, the phase diffusion fluxes through each cell face for a given phase are computed from:

    De = (Ge/de)*[Mepe*(rP-rE) + Mepn*(An/Ae)*(rP-rN) + Meph*(Ah/Ae)*(rP-rH) ]    ...(7.3.5)

 

    Dn = (Gn/dn)*[Mnpn*(rP-rN) + Mnpe*(Ae/An)*(rP-rE) + Mnph*(Ah/An)*(rP-rH) ]    ...(7.3.6)

 

    Dh = (Gh/dh)*[Mhph*(rP-rH) + Mhpe*(Ae/Ah)*(rP-rE) + Mhpn*(An/Ah)*(rP-rN) ]    ...(7.3.7)


where the A's are projected areas, the d's are resolutes of the internodal distance, and the M's are the geometric coefficients employed in computing the corresponding convection fluxes through the cell face. For orthogonal coordinate systems, only the first term in each of the foregoing equations is present, because the geometric coefficients are zero for all other terms. 

7.3.3. Miscellaneous Options

When STORE(PHDE,PHDN,PHDH) appears in the Q1 file, the 1st phase diffusion fluxes through the east, north and high cell faces are stored whole field and printed to the RESULT and to the PHI file for viewing by the PHOENICS graphical post-processors. The printed fluxes are integrated over the contol volume and the convention is that they are positive if the flux is in the coordinate direction.

Phase-diffusion effects can be removed entirely, by setting the Prandtl numbers to large values, i.e. PRT(R1)=PRT(R2)=1.E10, or alternatively by introducing the PIL commands:

TERMS(R1,P,P,N,P,P,P);TERMS(R2,P,P,N,P,P,P)

in the Q1 input file.

It may be desirable to remove phase diffusion at pre-selected grid lines or surfaces, e.g. those aligned with free surfaces. This can be done by introducing an appropriate GP12 PATCH in the Q1 input file. For example:

PATCH(GP12DFHA,CELL,IXF,IXL,IYF,IYL,IZF,IZL,ITF,ITL) COVAL(GP12DFHA,R1,ZERO,ZERO); COVAL(GP12DFHA,R2,ZERO,ZERO)

would cut out the high-face phase-diffusion fluxes for R1 and R2 in the cells and for the duration indicated by arguments 3 to 10 of the PATCH command. The high-face diffusion fluxes for R1 and R2 are multiplied by the third argument (i.e.zero ) of the above COVAL statements ( see PHENC 'Group 12 Features' for more details ).

Finally, if the User sets UDIFF=T in the Q1 input file, the phase-diffusion fluxes may be accessed directly for modification in Group 8 Section 9 of GROUND. For example, the following coding sequence accesses and prints out the phase-diffusion fluxes for R2:

         IF(INDVAR.EQ.R2) THEN
           IF(NDIREC.EQ.5) THEN
             CALL PRN('DIFH',LD11)
           ELSE IF(NDIREC.EQ.3) THEN
             CALL PRN('DIFW',LAW)
             CALL PRN('DIFE',LAE)
           ELSE IF(NDIREC.EQ.1) THEN
             CALL PRN('DIFS',LAS)
             CALL PRN('DIFN',LAN)
           ENDIF
         ENDIF

The block-location indices for the phase-diffusion fluxes are LAE for east, LAW for west, LAN for north, LAS for south, and LD11 for high. PHOENICS enforces reciprocity of the low and high fluxes and any GP12 modifications will be made after the above coding.

mrm 10/05/02