Dear Antonella and Anil Kumar
Please check how you are calculating the specific volume alpha and viscosity
The header two-phase-generic.h has the following
alphav.x[] = fm.x[]/rho(ff); and # define rho(f) (clamp(f,0.,1.)*(rho1 - rho2) + rho2)
One can also have the following
alphav.x[] = fm.x[]*(f/rhol + (1-f)/rhog)
Plot the alpha with the above two formulations, you can notice the difference...
Similarly, viscosity can be based on simple averaging or based on harmonic mean...
These small changes will give different results...
Hope this helps