CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > FLUENT > Fluent UDF and Scheme Programming

Elbow Particle Erosion Problem

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 6, 2023, 08:54
Default Elbow Particle Erosion Problem
  #1
New Member
 
Zhang Zilong
Join Date: May 2023
Posts: 1
Rep Power: 0
Fattening_soul is on a distinguished road
Hi I am working on a 90 degree elbow erosion problem using UDF. The erosion model of E/CRC is used in it, and I wrote it using a simple program. as follows:
#include "udf.h"
#include "math.h"

DEFINE_DPM_EROSION(moshi, p, t, f, normal, alpha, Vmag, mdot)
{
real A[ND_ND];
int num_in_data;
Thread* t0;
cell_t c0;
t0 = THREAD_T0(t);
c0 = F_C0(f, t);

real erosion;
real a = alpha;
real v = Vmag;
real F_alpha;
real V;
real F;

V = pow(v, 2.41);
F = 5.3983 * pow(a, 1) - 10.1068 * pow(a, 2) + 10.9327 * pow(a, 3) - 6.3283* pow(a, 4) + 1.4234 * pow(a, 5);
erosion = 1 * 2.17 * pow(10, -7) * pow(160, -0.59) * V * F;

F_STORAGE_R_XV(f, t, SV_DPMS_EROSION, EROSION_UDF) = erosion;

}


But the erosion rate I get when verifying the experimental papers through FLUENT is always an order of magnitude higher, and I don't know what's wrong with the UDF. Thank you all so much for answering this question for me.
Fattening_soul is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
problem during export of particle tracking data (good decription of the problem) archetype CFX 0 August 1, 2017 11:23
Particle tracking problem with MRF bioexplore CFX 8 September 22, 2013 16:13
Particle tracking problem sakurabogoda CFX 0 January 25, 2013 21:47
Velocity profiles problem behind the elbow (3D problem) kabat73 FLUENT 8 May 9, 2010 04:26
about erosion problem caused by solid particles hannah CFX 4 August 20, 2003 04:42


All times are GMT -4. The time now is 10:56.