|
[Sponsors] |
April 11, 2010, 09:53 |
Pressure Term in Navier-Stokes Equations
|
#1 |
New Member
Join Date: Apr 2010
Posts: 8
Rep Power: 16 |
Hello,
in all descriptions, tutorials and implementations that dealt with Joe Stams approach of numerically simulating fluids i found that the pressure term and the conservation of mass is achieved with subtracting the gradient of the pressure (which is computed via an implicit Poisson equation). But nowhere the timestep was considered at this step. For Example (the best tutorial i found on web)Where is my mistake? Why is the pressure-consideration timestep-independent? |
|
April 11, 2010, 18:14 |
|
#2 |
Member
ganesh
Join Date: Mar 2009
Posts: 40
Rep Power: 17 |
Dear KastenFrosch,
The article that you talk about gives the overall picture on how the Pressure Poisson and momentum equations are solved for, but really doesn't talk about the discretisation. Actually, as you say you need the time step both in getting the new vector field (non-divergence free) as well as in the PPE, where the discretisation of the time derivative brings in the time step, dt. The article just gives the concept behind these approaches. Regards, Ganesh |
|
April 14, 2010, 11:31 |
|
#3 |
New Member
Join Date: Apr 2010
Posts: 8
Rep Power: 16 |
First of all thanks for your reply.
I'm saying sorry in advance, if i understand any advice wrong, because i'm from Germany and so perhaps i don't get every point exactly right. Did i get you right, that you wanted to say, that the article leaves it up to the reader how to go further when having solved for pressure? If yes: the article (like all other implementations i read) suggests " uNew.xy -= halfrdx * half2(pR - pL, pT - pB); " which says " The Vectorfield after the pressure step is the Vectorfield before minus the gradient of the pressure. U_new = U_old - del p " in other parts of the implementation (i have the code at home) the timestep is always considered like " U_New = U_old + timestep * force" and i don't understand why one time it is considered, but in the pressure term not... Is the solution perhaps that i have to solve w = u - dt * del p respectively del w = u - dt * del^2 p instead of del w = u - del p respectively del w = del^2 p ? |
|
April 14, 2010, 11:48 |
|
#4 |
Member
ganesh
Join Date: Mar 2009
Posts: 40
Rep Power: 17 |
Dear Kastnefrosch,
You are right. dt is needed in both the equations, but either forms are acceptable and correct, if you assume that the article already absorbs dt into the "cp" term. Regards, Ganesh |
|
April 14, 2010, 11:49 |
|
#5 |
Member
ganesh
Join Date: Mar 2009
Posts: 40
Rep Power: 17 |
Sorry, no the cp term but the delp term.
|
|
April 14, 2010, 11:56 |
|
#6 |
New Member
Join Date: Apr 2010
Posts: 8
Rep Power: 16 |
so do both equations (with or without the factor dt) yield the same result?
does it drop out during calculation? Or how can BOTH of them be correct? |
|
April 14, 2010, 16:32 |
|
#7 |
Member
ganesh
Join Date: Mar 2009
Posts: 40
Rep Power: 17 |
Dear Kastenfrosch,
The timestep dt is NEEDED in the equations. It might just be that the article absorbs the time step into delp, ie. delp in the article actually refers to dt*delp. Regards, Ganesh |
|
April 15, 2010, 13:10 |
|
#8 |
New Member
Join Date: Apr 2010
Posts: 8
Rep Power: 16 |
Hey, Ganesh,
thanks for not letting me alone . What exactly do you mean with "it absorbs dt"? How can del p = del p * dt ? Do you mean that what they DID was solving w = u - dt * del p respectively del w = u - dt * del^2 p ? otherwise, if they just solved for w = u + del p , they solve for p as "the (pressure)field, whichs gradient has to be subtracted ONE time (not scaled by the timestep) from the divergent vector field to yield the divergence free one. But how can i relate my "- dt*del p " of the navier stokes equation with this "- del p" of the helmolz-decomposition? |
|
April 15, 2010, 13:47 |
|
#9 |
Member
ganesh
Join Date: Mar 2009
Posts: 40
Rep Power: 17 |
Dear KastenFrosch,
Well, let me make it a little more clearer. The dt term is absolutely essential. If you take the momentum equation and calculate the auxiliary velocity by considering the pressure at the current time level and then write down the momentum equation for the divergence satisfying velocity and subtract them out, you would get the pressure correction equation. If w is the div free velocity and delp is the potential, you write u = w + grad(delp) This is the Helmholtz decomposition. Now take the div on both sides giving div (u) = Lap(delp) Now if you think of u as the auxiliary velocity from the momentum equation that is not div free and delp as delp*dt (considering a constant time step), this gives you the pressure correction equation. In short, what I mean is the implementation follows from what we derive, and the time discretisation gives dt that needs to be used. If the dt is constant, then it can however be for sake of conciseness taken into the delp term, and written, so that the delp then actually is "dt*delp". Hope this clarifies the point Regards, Ganesh |
|
April 23, 2010, 16:06 |
|
#10 |
New Member
Join Date: Apr 2010
Posts: 8
Rep Power: 16 |
I think i got it know .
By the way with "del p" i meant "del operator p", so "nabla p". Thank you very much for your effort . |
|
Tags |
navier stokes equations, pressure, timestep |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
"Pressure Inlet" Boundary Setup | Wijaya | FLUENT | 15 | May 18, 2016 11:08 |
Incompressible Navier stokes with source term | mayur | FLUENT | 0 | August 6, 2004 07:07 |
1-d navier stokes equation | Robert | Main CFD Forum | 0 | December 20, 2002 03:14 |
How Fluent treat the pressure term in imcompressible flow | Ray | FLUENT | 1 | May 24, 2000 17:50 |
Computational complexity of Navier Stokes equations | Marco Ellero | Main CFD Forum | 5 | May 5, 1999 22:07 |