|
[Sponsors] |
September 27, 2010, 08:03 |
bubble diameter distribution
|
#1 |
New Member
EMRAH DENIZ
Join Date: Sep 2010
Posts: 3
Rep Power: 16 |
Hello,
I am working on water-air flow thorugh horizontal channel. I use euler-euler mixture model for that. I want to give a bubble diameter distribution along radial direction instead of inserting a constant diameter value in the related menu. ( phases > secondary phase > diameter ) Below you can find the trial udf I wrote for that. y is the radial axis. I have the half of the channel thus y has the range between -r and +r, where r is the radius of the channel. #include "udf.h" DEFINE_PROPERTY(bubble_diameter,c,t) { real y; real diameter= P_DIAM(c,t); if (y < 0) diameter = 0.001; else diameter = 0.005; return diameter ; } I can interprate the udf successfully but after I initialize, it gives me the following error: FLUENT received fatal signal (ACCESS_VIOLATION) 1. Note exact events leading to error. 2. Save case/data under new name. 3. Exit program and restart to continue. 4. Report error to your distributor. Error Object: () I think I have problems in the udf. I will be glad if someone could tell me what mistake I am doing. Thanks in advance... |
|
Tags |
bubble diameter, e-e mixture model |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
DPM diameter mass distribution | Wouter | FLUENT | 5 | May 23, 2019 03:18 |
Bubble Diameter | Santi | FLUENT | 3 | March 4, 2010 11:56 |
Bubble diameter in Gas-solid Fluidized Bed | Wee | FLUENT | 0 | April 28, 2008 00:04 |
About bubble diameter setting in multiphase flow | tchllc | FLUENT | 5 | August 22, 2007 10:47 |
About bubble size distribution simulation | tchllc | FLUENT | 0 | August 12, 2007 05:07 |