Fluids

Fluids

Topics related to Fluent, CFX, Turbogrid and more.

Adjust the internal heat transfer coefficient?

    • admin
      Ansys Employee

      How can I adjust the internal heat transfer coefficient?

    • cbhavsar
      Ansys Employee

      Heat flux to be supplied to the external wall as a boundary condition is available through the DEFINEPROFILE macro on the fluid-side wall. The heat transfer coefficient can be defined with the DEFINEHEATFLUX macro. This macro calculates the heat flux by the following equation. qid = cid[0] + cid[1]*CT(c0,t0) - cid[2]F_T(f,t) - cid[3]pow(FT(f,t),4) qir = cir[0] + cir[1]*CT(c0,t0) - cir[2]F_T(f,t) - cir[3]pow(FT(f,t),4) qid: convective heat flux qir: radiant heat flux To specify the heat transfer coefficient, one can be set the same value for the cid [1] and cid [2] within the UDF. For example, if you want to fix the heat transfer coefficient in a wall as 10 SI units, it can be realized as the follows. DEFINEHEATFLUX(flux,f,t,c0,t0,cid,cir) { if(THREADID(t) == wallid){ /* specify boundary heat transfer coefficient */ cid[1] = 10.; cid[2] = 10.; } } wallid is the zone ID of the wall you want to fix.

Viewing 1 reply thread
  • The topic ‘Adjust the internal heat transfer coefficient?’ is closed to new replies.