CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

Navier-Stokes spherical discretization

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 14, 2010, 16:52
Unhappy Navier-Stokes spherical discretization
  #1
Senior Member
 
Join Date: Apr 2009
Posts: 118
Rep Power: 17
lost.identity is on a distinguished road
Hi,

I'm trying to discretize the Navier-Stokes equation written in the spherical form for a Finite Volume formulation. I'm having problems due to the 1/r^2 terms appearing in the equation.

I'm following the method of Patankar "Numerical heat transfer and fluid flow" where he integrates the equation for the control volume.

It is spherically symmetric so I'm only retaining the radial terms in my equations. Does anyone know how to do this?

Thanks.
lost.identity is offline   Reply With Quote

Old   April 14, 2010, 22:56
Default
  #2
Senior Member
 
ztdep's Avatar
 
p ding
Join Date: Mar 2009
Posts: 427
Rep Power: 19
ztdep is on a distinguished road
Send a message via Yahoo to ztdep Send a message via Skype™ to ztdep
use the control volume center coordiante to compute the 1/r^2.
ztdep is offline   Reply With Quote

Old   April 15, 2010, 05:01
Default
  #3
Senior Member
 
Join Date: Apr 2009
Posts: 118
Rep Power: 17
lost.identity is on a distinguished road
My problem is actually with integrating the equation.

I'm using Favre averaged version of the equation so I have the following convection term

(1/r^2)*d/dr(r^2*rho*u*u)

because u (the velocity) are functions of r I need to integrate this by parts. I tried multiplying the whole equation by r^2, but then this causes the same problem to other terms that doesn't have the (1/r^2) term.

I've tried searching through the literature to find any papers that does finite volume method on spherical Navier-Stokes equation and haven't been able to find any that have done the same thing as what I'm trying to do.
lost.identity is offline   Reply With Quote

Old   April 15, 2010, 06:16
Default
  #4
Senior Member
 
ztdep's Avatar
 
p ding
Join Date: Mar 2009
Posts: 427
Rep Power: 19
ztdep is on a distinguished road
Send a message via Yahoo to ztdep Send a message via Skype™ to ztdep
multiply r2 at both sides
ztdep is offline   Reply With Quote

Old   April 15, 2010, 07:48
Default
  #5
Senior Member
 
Join Date: Apr 2009
Posts: 118
Rep Power: 17
lost.identity is on a distinguished road
Thanks for the reply.

As I've already mentioned in my email, I've already tried that method. But the problem is when I multiply by r^2 on both sides I get terms like r^2*dp/dr, which again has to be integrated by parts.

But since p is generally a function of r this causes problems in the integration.

In addition I have more complex terms that arises due to Favre averaging such as r^2 d/dr(<rho*u''*u''>), where <> refers to Favre averages. I use the Boussinesq approximation to model this but still I get terms such as r*u, which again needs to be integrated by parts.

Surely, there's another way to do this?
lost.identity is offline   Reply With Quote

Old   April 15, 2010, 18:59
Default
  #6
Senior Member
 
ztdep's Avatar
 
p ding
Join Date: Mar 2009
Posts: 427
Rep Power: 19
ztdep is on a distinguished road
Send a message via Yahoo to ztdep Send a message via Skype™ to ztdep
nope do not integrate by part. take r^2 is a constant
ztdep is offline   Reply With Quote

Old   April 16, 2010, 05:19
Default
  #7
Senior Member
 
Join Date: Apr 2009
Posts: 118
Rep Power: 17
lost.identity is on a distinguished road
r^2 is not a constant, it arises by writing the Navier-Stokes equation in spherical form. r is one of the variable dimensions.

So when I'm integrating with respect to r, r^2 can't remain a constant.
lost.identity is offline   Reply With Quote

Old   April 16, 2010, 08:57
Default
  #8
agd
Senior Member
 
Join Date: Jul 2009
Posts: 351
Rep Power: 18
agd is on a distinguished road
I'm not sure I'm following what you are actually trying to do at this point. It sounds as if you are trying to integrate the full Navier-Stokes equations analytically. If you want to do a finite volume discretization, then the 1/r**2 term will be a part of what you discretize - in that case you will use the value at the cell center, as ztdep has suggested. Treat it just like any other term in the discretized equation.
agd is offline   Reply With Quote

Old   April 16, 2010, 10:41
Default
  #9
Senior Member
 
Join Date: Apr 2009
Posts: 118
Rep Power: 17
lost.identity is on a distinguished road
Sorry I should've explained it a bit more clearly

So I have the following 1-D Navier-Stokes equation written in spherical coordinates

\frac{\partial\overline\rho{\tilde{u}}}{\partial{t}}+ \frac{1}{r^2}\frac{\partial}{\partial{r}}\left( r^2\overline{\rho}{\tilde{u}\tilde{u}}\right)= -\frac{\partial\overline{p}}{\partial{r}} - \frac{\partial}{\partial{r}}(\overline{\rho{u''}{u''}}) + \frac{1}{r^2}\frac{\partial}{\partial{r}}\left( r^2\overline{\tau_{rr}} \right)

where

\overline{\tau_{rr}} = {2\mu\frac{\partial{\tilde{u}}}{\partial{r}} -\frac{2}{3}\mu \frac{1}{r^2}\frac{\partial{r^2\tilde{u}}}{\partial{r}}}

\overline{\rho{u''}{u''}} = - {2\mu_t\frac{\partial{\tilde{u}}}{\partial{r}} +\frac{2}{3}\mu_t \frac{1}{r^2}\frac{\partial{r^2\tilde{u}}}{\partial{r}}} + \frac{2}{3}\overline{\rho}\tilde{k}

Now what I want to do is integrate this momentum equation over the control volume and over time. Since it's 1-D I only consider a control volume around a single grid point P, the grid point East of point P is referred to as E and to the West is referred to as W.

Let's say I want to integrate the term

\int_t^{t+\Delta{t}}\,\int_P^E\, \frac{1}{r^2}\frac{\partial}{\partial{r}}\left( r^2\overline{\rho}{\tilde{u}\tilde{u}}\right) \, dr \, dt

If the 1/r^2 term wasn't there this would have been straightforward, which is the case in the Cartesian coordinates.

So one thing I tried to do was to multiply the whole equation by r^2. But then I get terms like

\int_t^{t+\Delta{t}}\,\int_P^E\,r^2\frac{\partial}{\partial{r}}(\overline{\rho{u''}{u''}}) \,dr\,dt

which again gives me the same problem. This may be different to what's normally done in Control Volume analysis.

I'm trying to use the method of Patankar "Numerical Heat Transfer and Fluid Flow", 1980.

Thanks.

Last edited by lost.identity; April 16, 2010 at 11:19.
lost.identity is offline   Reply With Quote

Old   April 16, 2010, 12:07
Default
  #10
Senior Member
 
ztdep's Avatar
 
p ding
Join Date: Mar 2009
Posts: 427
Rep Power: 19
ztdep is on a distinguished road
Send a message via Yahoo to ztdep Send a message via Skype™ to ztdep
r^2 tem represent the element volume in the sperical coordinate system Dv. as in cartesian coordinate, it is 1 dx dy dz.
ztdep is offline   Reply With Quote

Old   April 16, 2010, 13:41
Default
  #11
Senior Member
 
Join Date: Apr 2009
Posts: 118
Rep Power: 17
lost.identity is on a distinguished road
Thanks, I think I sort of know what you're saying.

Are you saying that when I multiply by r^2, and integrate then terms such as

\int_P^E\,r^2\frac{\partial}{\partial{r}}(\overline{\rho{u''}{u''}}) \,dr= \Delta{V}\left [ (\overline{\rho{u''}{u''}})_E-(\overline{\rho{u''}{u''}})_P \right ]

is this true for 1-D case such as mine? and would \Delta{V}=1?

or is \Delta{V} = r_P^2\Delta{r}

where r_P^2 is the radial value at the mid-point of the control volume?

Last edited by lost.identity; April 16, 2010 at 15:42.
lost.identity is offline   Reply With Quote

Old   April 16, 2010, 21:36
Default
  #12
Senior Member
 
ztdep's Avatar
 
p ding
Join Date: Mar 2009
Posts: 427
Rep Power: 19
ztdep is on a distinguished road
Send a message via Yahoo to ztdep Send a message via Skype™ to ztdep
yes, that is what i mean/
by the way , how do you input the formular?
ztdep is offline   Reply With Quote

Old   April 17, 2010, 17:06
Default
  #13
Senior Member
 
Join Date: Apr 2009
Posts: 118
Rep Power: 17
lost.identity is on a distinguished road
THanks

Just want to confirm, you mean

\Delta{V} = r_P^2\Delta{r}


The site uses Latex formatting to type equations. If you click any of the equations you'd see the code.
lost.identity is offline   Reply With Quote

Old   April 18, 2010, 12:39
Exclamation
  #14
Senior Member
 
Join Date: Apr 2009
Posts: 118
Rep Power: 17
lost.identity is on a distinguished road
Actually shouldn't it be

\int_P^E\,r^2\frac{\partial}{\partial{r}}(\overline{\rho{u''}{u''}}) \,dr = \Delta{V} \left [\frac {\partial}{\partial{r}}(\overline{\rho{u''}{u''}}) \right ]_e= \Delta{V} \left [ \frac{(\overline{\rho{u''}{u''}})_E-(\overline{\rho{u''}{u''}})_P}{\Delta{r}} \right ]

where \Delta{V} = r_e^2\Delta{r}, P and E refers to the left and right hand side faces control volume respectively, and e is the midpoint of the control volume.

which would finally give

\int_P^E\,r^2\frac{\partial}{\partial{r}}(\overline{\rho{u''}{u''}}) \,dr = r_e^2 \left[ (\overline{\rho{u''}{u''}})_E-(\overline{\rho{u''}{u''}})_P \right ]
lost.identity is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Filtered navier stokes equation..LES:: Palani Velladurai Main CFD Forum 7 September 6, 2013 02:51
Navier Stokes, Pressure BC, Discretization Sree Main CFD Forum 0 August 1, 2007 04:55
Navier stokes compresible viscid flow fea, somebody can help? Jose Choy Main CFD Forum 3 October 24, 2003 02:28
Newbie:Viscoelasticity and Navier stokes equation Rajil Saraswat Main CFD Forum 2 June 9, 2003 07:21
help: I am trying to solve Navier Stokes compressible and viscid flow Jose Choy Main CFD Forum 2 May 18, 2000 05:45


All times are GMT -4. The time now is 05:39.