|
[Sponsors] |
May 23, 2000, 07:07 |
Static vs Total Pressure
|
#1 |
Guest
Posts: n/a
|
Dear all,
I've found out something that has been driving me mad lately, and I wanted to share it with you, as well as to try and get a solution to the problem. My UDF in Fluent 5.2 requires to know the value of the TOTAL pressure in certain threads in the domain. So far I've been using an average pressure calculated with the F_P() macro. Only today I realised that this macro returns in fact the STATIC pressure and NOT the TOTAL pressure. Obviously with flow acceleration I get drops in STATIC pressure in favour of DYNAMIC pressure. So here's the conundrum for all Fluent Guru's out there: Is there any way at all I can extract the value of the TOTAL pressure instead of the STATIC pressure out of the domain? Thanks in advance to you all! AL P.S. If you want me to post the STATIC pressure calculation routine, let me know. That would be another one for the repository |
|
May 23, 2000, 09:48 |
Re: Static vs Total Pressure
|
#2 |
Guest
Posts: n/a
|
In FLUENT 5, total pressure is a "derived" quantity (static pressure is a "solution variable). And FLUENT 5 does not store total pressure in the memory. So whenever you need it, you need to compute it. One thing you should keep in mind is that static pressure in FLUENT 5 is a gague pressure.
The UDF should look like then: ... real op_press = RP_Get_Real("operating-pressure"); real p_tot; begin_c_loop(c,t) { real Vmag = cellVelocityMagnitude(c,t); p_tot = C_P(c,t)+0.5*C_R(c,t)*Vmag*Vmag+op_press; ... } |
|
May 23, 2000, 09:53 |
Re: Static vs Total Pressure
|
#3 |
Guest
Posts: n/a
|
Thanks Kim for such a prompt and complete response! I shall implement your solution straight away.
Cheers! AL |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
static vs. total pressure | auf dem feld | FLUENT | 17 | February 26, 2016 14:04 |
Boundary Conditions : Total Pressure or Velocity | Gearb0x | OpenFOAM Running, Solving & CFD | 2 | February 28, 2011 22:18 |
How to achieve constant static pressure in inlet? | Zou Jianfeng | FLUENT | 0 | October 21, 2008 02:55 |
Total Pressure in Laval Nozzle | Sohail Ahmed | Main CFD Forum | 0 | May 19, 2004 06:43 |
what the result is negatif pressure at inlet | chong chee nan | FLUENT | 0 | December 29, 2001 06:13 |