Thank you very much for your reply, Eduardo. I believe what you’ve stated aligns with the answers I’ve obtained. I’m not sure if I’ve misunderstood you. Are you saying that MFIX handles CGP by modifying particle property parameters to achieve force scaling? Whereas some papers calculate the actual particle force first, then multiply it by a scaling factor to obtain the parcel force, which is then substituted into the motion equation? Based on my reasoning, when I apply Hertz’s collision law, if particle properties remain unchanged, it should precisely align with the relative overlap law (I’m not certain if this is correct; please correct me if I’m wrong). After understanding how MFIX handles CGP, I encountered some questions while reviewing the heat transfer model. I don’t understand the derivation process for Qpfw and Qpw in the paper. I’m unsure if you’ve read Lu’s paper on the CGP heat transfer model, which is the CGP model used in MFIX. If you have read it, I have the following questions:
(1) Why use dimensionless quantities when deriving Qpfw? Additionally, I find some confusion in the derivation of equations 25-27.
(2) When deriving Qpw, the term k^5/4 in equation 36 suddenly changes to k^9/4 in equation 37, which seems highly unusual. The original text states, “We also need to consider the particle-wall collision frequency as shown in Fig. 3.” But why is k scaled by a factor of 9?
(3) In the MFIX code, there is this segment:
! See Lu et al. 2017, IJHMT, 111, 723-735
! First scale to real-particle based heat transfer, then scale up W times
! Q_pfp(Parcel) = Q_pfp(real_particle) * W
! Q_pfp(real_particle) = Q_pfp(Parcel_size_based_calculation)/W**(2/3)
! Then, Q_pfp(Parcel) = Q_pfp(Parcel_size_based_calculation)W*(1/3)
! W**(1/3) equals parcel_radius/real_particle_diameter
if(CGDEM) Q_pfp = Q_pfp*DES_RADIUS(I)/DES_CGP_RPR(I)
! Q_pp(Parcel) = Q_pp(real_particle) * W
! Q_pp(real_particle) = Q_pp(Parcel_size_based_calculation)W*(5/12)
! Then, Q_pp(Parcel) = Q_pfp(Parcel_size_based_calculation)W*(17/12)
! W**(1/3) equals parcel_radius/real_particle_diameter
if(CGDEM) Q_pp = Q_pp * DES_CGP_STW(I)**(17.0D0/12.0D0)
DES_CONDUCTION = Q_pp + Q_pfp
That is to say, the equation Qcgp = WQreal always holds true. Does the equation for Qreal derived in the paper represent the average value of all real particles within the inclusion?
(4) I also found that the code for Qpw in MFIX differs from that in Lu’s paper. Lu’s correction factor is k^(9/4), whereas MFIX uses W^(5/12) = k^(4/5). Furthermore, the paper states that Q_pp(real_particle) = Q_pp(Parcel_size_based_calculation)/W^(3/4), not the multiplicative relationship “Q_pp(real_particle) = Q_pp(Parcel_size_based_calculation)*W^(5/12).”
I’m truly sorry for the length of my message. Thank you so much for your patience in reading it. I look forward to continuing our conversation.