|
[Sponsors] |
October 22, 2007, 05:00 |
compressible flow - WATER !!
|
#1 |
Guest
Posts: n/a
|
Hi mates, I´m dealing with single phase problem. The fluid is liquid. There´re two pressure inlets. One is a constant value and the other is time-dependent sinusoidal pressure declared in UDF. Because of fast unsteadiness the water density is pressure-dependent (also UDF)The UDF is shown below:
/************************************************** ***************** periodic boundary condition - pressure, density ************************************************** ******************/ #include "udf.h" DEFINE_PROFILE(unsteady_pressure,thread,position) { face_t f; real t = CURRENT_TIME; begin_f_loop(f,thread) { F_PROFILE(f,thread,position)=100e+05+900e+05*sin(1 0000*3.141592654*t); } end_f_loop(f,thread) } DEFINE_PROPERTY(cell_density,cell,thread) { real ro; real p = C_P(cell,thread); ro = 998/(1.0-(p-101325)/2.2e+09); return ro; } I´m using segregated solver. If using just time-dependent pressure, it is O.K. If using also pressure-dependent density,it is immediately diverging. Could you look up any problem? Thanks in advance!! Jan |
|
May 24, 2011, 20:26 |
|
#2 |
New Member
ZHAOHUI
Join Date: Jan 2011
Location: QLD
Posts: 9
Rep Power: 15 |
Hi Jan,
Have you fixed the problem above?I also have very similar truble with you. the compressible liquids or air are hard be computed. thanks zhaohui |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Compressible de Laval Nozzle Flow | rw511 | CFX | 3 | May 22, 2011 20:48 |
Problems with BCs in muliphase flow with water falling from a reservoir | Paul_l | FLUENT | 2 | March 11, 2011 05:59 |
3-D Compressible Flow Boundary Conditions | Tyler | FLUENT | 4 | February 5, 2009 20:58 |
Inviscid Drag at subsonic, subcritical Mach # | Axel Rohde | Main CFD Forum | 1 | November 19, 2001 13:19 |
Solving unsteady compressible low speed flow | atit | Main CFD Forum | 8 | July 31, 2000 14:19 |