|
[Sponsors] |
July 6, 2023, 09:54 |
Elbow Particle Erosion Problem
|
#1 |
New Member
Zhang Zilong
Join Date: May 2023
Posts: 1
Rep Power: 0 |
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. |
|
|
|
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 12:23 |
Particle tracking problem with MRF | bioexplore | CFX | 8 | September 22, 2013 17:13 |
Particle tracking problem | sakurabogoda | CFX | 0 | January 25, 2013 22:47 |
Velocity profiles problem behind the elbow (3D problem) | kabat73 | FLUENT | 8 | May 9, 2010 05:26 |
about erosion problem caused by solid particles | hannah | CFX | 4 | August 20, 2003 05:42 |