Hi,
You can access the interphase mass transfer rate using the following macro:
C_STORAGE_R_XV(cell,mixture_thread,SV_MASS_TRANSFER,k-1)
k in the above macro is the mass transfer mechanism number, which can be found from phase interaction panel in fluent. The number in the mass transfer mechanism before the 'From Phase', 'To Phase' option is the mass transfer mechanism number.
And if you are looking for a UDF, the following code illustrates the example:
The UDF is used to store the cavitation mass transfer rates in a UDM location.
#include "udf.h"
#define k 1
DEFINE_ADJUST(mass_transfer_access,d)
{
cell_t c;
Thread *t;
thread_loop_c(t,d)
begin_c_loop(c,t)
C_UDMI(c,t,0) = C_STORAGE_R_XV(c,t,SV_MASS_TRANSFER,k-1);
end_c_loop(c,t)
}