|
[Sponsors] |
June 18, 2014, 07:46 |
Convergence Problem with Cavitation Model
|
#1 |
New Member
Marco Dc
Join Date: Feb 2014
Location: Italy
Posts: 20
Rep Power: 12 |
I'm working at tilting pad journal bearings flow analysis with very good results for big eccentricity, that means rotor wall and pad are very close.
If I use single phase model and i reduce eccentricity, some problems occur. Contourn plot of pressure on surface shows that there is a zone where pressure is negative. This means that pressure in that zone goes under operating pressure (i've set operating pressure at 1 bar). This is caused by divergent region or by starvation (air is called in the domain). In Hydrodynamic Lubrication theory this problem is resolved by adding a BC called "Half Sommerfeld" that set to zero all negative pressure. I've tried to use mixture model with Cavitation model "Schnerr and Sauer" but convergence seems to be unreachable! I've continuity residual near to 0 and the integral of pressure on the fixed surface decrease untill zero, that is nonsense. I prefer to find a solution with Cavitation model because Half Sommerfeld condition not garantee continuity. I've tried with SIMPLE, PRESTO and Second Order and change URF values. I've also tried to write an UDF to apply HS BC but it gave a parse error at line 1. #include "udf.h" DEFINE_EXECUTE_AT_END(HALF SOMMERFELD) { Domain *d; Thread *t; cell_t c; face_t f; d = Get_Domain(1); thread_loop_c(t,d) { begin_c_loop(c,t) { if (C_P(c,t)<=0) { C_P(c,t)=0; } } end_c_loop(c,t) } thread_loop_f(t,d) { begin_f_loop(c,t) { if (C_P(c,t)<=0) { C_P(c,t)=0; } } end_f_loop(c,t) } }
__________________
Marco |
|
June 19, 2014, 15:22 |
|
#2 |
New Member
Marco Dc
Join Date: Feb 2014
Location: Italy
Posts: 20
Rep Power: 12 |
I've tried with Singhal cavitation model. Although the Fluent Guide says it's more instable then "Schnerr and Sauer" and the other one, this time it converge and pressure results seem to be correct.
The problem is that it has a very slow convergence. My real doubt is that Singhal can be used to modelling dissolved gas cavitation but how can i modelling air coming in the domain by underpressure?
__________________
Marco |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Scolution convergence problem with SRF model Hex mesh | suryawanshi_nitin | OpenFOAM | 1 | July 5, 2014 04:06 |
Two phase flow (Nozzle cavitation model) problem | lehoanganh07 | FLUENT | 10 | December 15, 2013 11:23 |
Heat Transfer convergence Problem mit a 1/6 compressor model | chili023 | CFX | 1 | January 15, 2011 07:41 |
convergence problem in RNG k-e model | pj21aug | FLUENT | 0 | October 14, 2010 12:43 |
Turbulence model convergence problem | Andrew | CFX | 7 | August 17, 2008 20:35 |