|
[Sponsors] |
UDF for computing Interfacial area in 3 phase flow |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
June 26, 2020, 11:26 |
UDF for computing Interfacial area in 3 phase flow
|
#1 |
Member
Anshuman Sinha
Join Date: Oct 2018
Posts: 70
Rep Power: 8 |
I'm trying to compute the interfacial area between 2 phases, given that there are 3 phases. I have tried a UDF here. The three phases are water, oil, air. Computing the area between air (phase 2) and water (phase 0) only.
Screenshot 2020-06-07 at 7.31.13 AM.jpg I hawe tried compiling this udf, and getting the following error: Can you please help me. Error: Code:
Copied D:\ladle final - Copy/D:\ladle final - Copy\area_ud.c to D: ew_ladle\ladle_x_files\dp0\FFF-5\Fluent\libudf\src udf_names.c and user_nt.udf files in 2ddp are upto date. (system "copy "C:\PROGRA~1\ANSYSI~1\v180\fluent"\fluent18.0.0\src\udf\makefile_nt.udf "D: ew_ladle\ladle_x_files\dp0\FFF-5\Fluent\libudf\win64\2ddp\makefile" ") 1 file(s) copied. (chdir "D:\new_ladle\ladle_x_files\dp0\FFF-5\Fluent\libudf")(chdir "win64\2ddp")# Linking libudf.dll because of user_nt.udf udf_names.obj area_ud.obj Microsoft (R) Incremental Linker Version 14.00.24213.1 Copyright (C) Microsoft Corporation. All rights reserved. LINK : fatal error LNK1104: cannot open file 'libudf.dll' Done. UDF: Code:
#include "udf.h" DEFINE_ADJUST(store_gradient, domain) { Thread *t; Thread **pt; cell_t c; double A_inter3; int pdi = 0.; int pdf = 2.; Domain *pDomaini = DOMAIN_SUB_DOMAIN(domain,pdi); { Alloc_Storage_Vars(pDomaini,SV_VOF_RG,SV_VOF_G,SV_NULL); Scalar_Reconstruction(pDomaini, SV_VOF,-1,SV_VOF_RG,NULL); Scalar_Derivatives(pDomaini,SV_VOF,-1,SV_VOF_G,SV_VOF_RG, Vof_Deriv_Accumulate); } Domain *pDomainf = DOMAIN_SUB_DOMAIN(domain,pdf); { Alloc_Storage_Vars(pDomainf,SV_VOF_RG,SV_VOF_G,SV_NULL); Scalar_Reconstruction(pDomainf, SV_VOF,-1,SV_VOF_RG,NULL); Scalar_Derivatives(pDomainf,SV_VOF,-1,SV_VOF_G,SV_VOF_RG, Vof_Deriv_Accumulate); } mp_thread_loop_c (t,domain,pt) if (FLUID_THREAD_P(t)) { Thread *ppti = pt[0]; Thread *pptf = pt[2]; if ( ( C_VOF(c,ppti)*C_VOF(c,pptf) > 0.21 ) && (C_VOF(c,ppti) + C_VOF(c,pptf) >0.95) ) { C_UDMI(c,t,0) = NV_MAG(C_VOF_G(c,ppti)) ; A_inter3 += C_UDMI(c, t, 0)*C_VOLUME(c, ppti) ; } } Message("\n : Area Density= %f\n", C_UDMI(c, t, 0)); Free_Storage_Vars(pDomaini,SV_VOF_RG,SV_VOF_G,SV_NULL); Free_Storage_Vars(pDomainf,SV_VOF_RG,SV_VOF_G,SV_NULL); } On 2020-06-25 18:46, anshs wrote: #include "udf.h" DEFINE_ADJUST(store_gradient, domain) { Thread *t; Thread **pt; cell_t c; double A_inter3; int pdi = 0.; int pdf = 2.; Domain *pDomaini = DOMAIN_SUB_DOMAIN(domain,pdi); { Alloc_Storage_Vars(pDomaini,SV_VOF_RG,SV_VOF_G,SV_NULL); Scalar_Reconstruction(pDomaini, SV_VOF,-1,SV_VOF_RG,NULL); Scalar_Derivatives(pDomaini,SV_VOF,-1,SV_VOF_G,SV_VOF_RG, Vof_Deriv_Accumulate); } Domain *pDomainj = DOMAIN_SUB_DOMAIN(domain,pdj); { Alloc_Storage_Vars(pDomainj,SV_VOF_RG,SV_VOF_G,SV_NULL); Scalar_Reconstruction(pDomainj, SV_VOF,-1,SV_VOF_RG,NULL); Scalar_Derivatives(pDomainj,SV_VOF,-1,SV_VOF_G,SV_VOF_RG, Vof_Deriv_Accumulate); } mp_thread_loop_c (t,domain,pt) Thread *ppti = pt[pdi]; Thread *pptj = pt[pdi]; if ( ( C_VOF(c,ppti)*C_VOF(c,pptj) > 0.21 ) && (C_VOF(c,ppti) + C_VOF(c,pptj) >0.95) ) { C_UDMI(c,t,0) = NV_MAG(C_VOF_G(c,ppti)) ; A_inter3 += C_UDMI(c, t, 0)*C_VOLUME(c, ppti) ; Free_Storage_Vars(pDomain,SV_VOF_RG,SV_VOF_G,SV_NULL); } } |
|
June 28, 2020, 23:48 |
|
#2 |
Senior Member
Alexander
Join Date: Apr 2013
Posts: 2,363
Rep Power: 34 |
most likely, you've loaded libudf library already unload it before compiling the code.
also you may see following Code:
udf_names.c and user_nt.udf files in 2ddp are upto date.
__________________
best regards ****************************** press LIKE if this message was helpful |
|
June 29, 2020, 06:27 |
|
#3 | |
Member
Anshuman Sinha
Join Date: Oct 2018
Posts: 70
Rep Power: 8 |
Quote:
Thank you. |
||
June 29, 2020, 19:10 |
|
#4 |
Senior Member
Alexander
Join Date: Apr 2013
Posts: 2,363
Rep Power: 34 |
proper english for you Anshuman Sinha
you are trying to loaded libudf library which had been loaded already. unload it before compiling the code. to fix up_to_date issue make following: anywhere in your code put any letter, then delete it (space letter for instance). Save your source file. Compile
__________________
best regards ****************************** press LIKE if this message was helpful |
|
Tags |
multiphase, udf |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Interfacial area UDF for 3 phase flow | Anshs | Fluent UDF and Scheme Programming | 5 | June 25, 2020 11:13 |
UDF bug, for reversing flow direction and magnitude | EngGhost | Fluent UDF and Scheme Programming | 12 | April 20, 2020 08:50 |
CFX Modelling 3 Phase flow with particle transport fluid and particle transport solid | amon | CFX | 4 | February 25, 2020 16:55 |
Problems in air flow udf - divergence | PJT | Fluent UDF and Scheme Programming | 0 | May 28, 2013 11:01 |
CFX Solver Memory Error | mike | CFX | 1 | March 19, 2008 08:22 |