Anadi_Mondal
Subscriber

I even tried injecting particle[ entrained droplet] at the middle of the domain by following UDF[it's part here]

Position: 

F_CENTROID(pos,f,tf);
angle = acos(pos[0]/r);
x_inj = r*cos(angle);
y_inj = r*sin(angle);
z_inj = pos[2];

Injection:[ inside DEFINE_DPM_INJECTION_INIT]

P_POS(p)[0]=C_UDMI(c,tc,6);   // inj_x
P_POS(p)[1]=C_UDMI(c,tc,7);  // inj_y
P_POS(p)[2]=C_UDMI(c,tc,8); // inj_z
 
P_FLOW_RATE(p)= C_UDMI(c,tc,5); //got from entrainment rate correlation
P_DIAM(p)=p_diam; // define from another droplet correlation
P_VEL(p)[0]=C_U(c,tc);
P_VEL(p)[1]=C_V(c,tc);
P_VEL(p)[2]=C_W(c,tc);

Still, it's showing no Film DPM mass source. What might be the reason? Does ANSYS really count Film DPM mass source for the injection defined by DEFINE_DPM_INJECTION_INIT macros? Because when I have a surface injection with fixed droplet mass flow rate at inlet ANSYS print info [ like injection N particle, escape n, absorbed n..] in the console window. But, for DEFINE_DPM_INJECTION_INIT , ANSYS shows no information in the console window.

Moreover, will you add more words like the type of injection, and surface for the 2nd and 3rd method mentioned in your last comment?