We’re putting the final touches on our new badges platform. Badge issuance remains temporarily paused, but all completions are being recorded and will be fulfilled once the platform is live. Thank you for your patience.
Reacting Flows

Reacting Flows

How I can evaluate the Heat release (W/m3) of the reactions if I’m using the FGM model in Fluent? Is there a way to access the FGM heat release from UDF?

    • FAQFAQ
      Participant

      In R19.2 and forward the heat release rate is stored directly in the FGM tables for post-processing. This value (in J/m3/s) is the summation over species for (H_f_j/Mw_j)*(w_dot_j) where j is the species index and w_dot_j is the volumetric rate for species j. (That is similar to the energy equation source term due to reaction). You can also now access this value for post-processing from a DEFINE_PDF_TABLE UDF. Do do it, just use this call: real HRR = Get_Pdf_HeatReleaserate (c, t);