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

Viscous Flux Jacobian

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 4, 2010, 21:29
Default Viscous Flux Jacobian
  #1
Member
 
bearcat
Join Date: Jul 2009
Location: Ohio
Posts: 35
Rep Power: 16
bearcat is on a distinguished road
Send a message via MSN to bearcat
Who has the experience computing viscous flux Jacobian for incompressible flow?

Suppose we set the primitive variables as [P, U, V, W].

I know hand calculating the convective flux Jacobian analytically is easy. But for viscous flux, the situation looks different. My own hand derivation shows that it should be zero for Cartesian grid. It may not be zero in the case of curvilinear grid.

Am I correct?

Thank you.
bearcat is offline   Reply With Quote

Old   March 9, 2010, 12:58
Default
  #2
agd
Senior Member
 
Join Date: Jul 2009
Posts: 351
Rep Power: 18
agd is on a distinguished road
The viscous flux Jacobians are not zero for a Cartesian grid.
agd is offline   Reply With Quote

Old   March 9, 2010, 18:52
Default
  #3
Member
 
bearcat
Join Date: Jul 2009
Location: Ohio
Posts: 35
Rep Power: 16
bearcat is on a distinguished road
Send a message via MSN to bearcat
Quote:
Originally Posted by agd View Post
The viscous flux Jacobians are not zero for a Cartesian grid.
Thank you for your reply.

But are you sure? I mean incompressible flow with constant viscosity here.

suppose in 2D case with kinematic viscosity as miu
primitive variable: Q=[ P, U, V ],
convective flux in X: E=[ U, U*U+P, UV ]
viscous flux in X: Ev=[ 0, 2*miu*ddU/ddX, miu*(ddU/ddY+ddV/ddX) ]

When I do the viscous flux Jacobian analytically: dd(Ev)/ddQ, all derivatives of Ev elements in terms of P,U or V get nothing. And someone also remind me the viscous terms are linear for incompressible N-S eq.

Last edited by bearcat; March 9, 2010 at 20:23.
bearcat is offline   Reply With Quote

Old   March 9, 2010, 19:53
Default
  #4
agd
Senior Member
 
Join Date: Jul 2009
Posts: 351
Rep Power: 18
agd is on a distinguished road
I am assuming you are trying to develop an implicit algorithm. Since the viscous terms are linear, if you write Q(N+1) = Q(N) + DQ and substitute into the diff. eq., the terms containing the DQ can be carried to the left-hand side. The flux Jacobian (or the contribution to the system matrix) follow from that. In this case it will be mu multiplied by the coefficients of the difference terms.
agd is offline   Reply With Quote

Old   March 9, 2010, 20:36
Default
  #5
Member
 
bearcat
Join Date: Jul 2009
Location: Ohio
Posts: 35
Rep Power: 16
bearcat is on a distinguished road
Send a message via MSN to bearcat
Quote:
Originally Posted by agd View Post
I am assuming you are trying to develop an implicit algorithm. Since the viscous terms are linear, if you write Q(N+1) = Q(N) + DQ and substitute into the diff. eq., the terms containing the DQ can be carried to the left-hand side. The flux Jacobian (or the contribution to the system matrix) follow from that. In this case it will be mu multiplied by the coefficients of the difference terms.


Yes, if we use a Jacobian-free Newton-Krylov method, your idea will be implemented easily. But I think if we can cancel it out analytically, then we don't have to compute it numerically and save some effort.

The original 2D eq is:

ddQ/ddt+dd(E-Ev)/ddX+dd(F-Fv)/ddY=0 (no source term)

The 3x3 Jacobian matrix often acts as a coefficient in system matrix. My opinion is that all elements in viscous flux Jacobian matrix are zero if no coordinate transform is involved.
bearcat is offline   Reply With Quote

Old   March 9, 2010, 21:35
Default
  #6
agd
Senior Member
 
Join Date: Jul 2009
Posts: 351
Rep Power: 18
agd is on a distinguished road
You can ignore them, but the advantage of including them is that they contribute to the diagonal dominance of the coefficient matrix.
agd is offline   Reply With Quote

Old   March 11, 2010, 00:40
Default This paper maybe is useful for you
  #7
New Member
 
peter. zhao
Join Date: Dec 2009
Location: China
Posts: 4
Rep Power: 16
peter.zhao is on a distinguished road
For compressible flow, the below paper maybe is useful.
"Implicit multigrid solution of the compressible Navier-Stokes equations with application to distributed parallel processing",
Tysinger, Thomas Lee, Ph.D. Thesis Cornell Univ., Ithaca, NY,1992.
This paper introduced the viscous jacobian matrix for compressible NS equation. I think this method is also useful for your problem.
peter.zhao is offline   Reply With Quote

Old   March 11, 2010, 06:03
Default not zero
  #8
Member
 
Join Date: Mar 2009
Posts: 32
Rep Power: 17
gory is on a distinguished road
[QUOTE=bearcat;249236]
viscous flux in X: Ev=[ 0, 2*miu*ddU/ddX, miu*(ddU/ddY+ddV/ddX) ]
When I do the viscous flux Jacobian analytically: dd(Ev)/ddQ, all derivatives of Ev elements in terms of P,U or V get nothing.

You get something.
For example,

dd(Ev)/ddU = [0, 2*miu*dd/ddX, miu*dd/ddY ]

A discretized version would be

dd(Ev)/ddU = [0, 2*miu*(1/Delta x), miu*(1/Delta y) ]


gory
gory is offline   Reply With Quote

Old   March 11, 2010, 12:46
Default
  #9
Member
 
bearcat
Join Date: Jul 2009
Location: Ohio
Posts: 35
Rep Power: 16
bearcat is on a distinguished road
Send a message via MSN to bearcat
Quote:
Originally Posted by peter.zhao View Post
For compressible flow, the below paper maybe is useful.
"Implicit multigrid solution of the compressible Navier-Stokes equations with application to distributed parallel processing",
Tysinger, Thomas Lee, Ph.D. Thesis Cornell Univ., Ithaca, NY,1992.
This paper introduced the viscous jacobian matrix for compressible NS equation. I think this method is also useful for your problem.
Thank you.

viscous jacobian for compressible flow appears in many CFD books. But that's an easier and completely different case. For incompressible flow we don't have density as a primitive variable.



[QUOTE=gory;249527]
Quote:
Originally Posted by bearcat View Post
viscous flux in X: Ev=[ 0, 2*miu*ddU/ddX, miu*(ddU/ddY+ddV/ddX) ]
When I do the viscous flux Jacobian analytically: dd(Ev)/ddQ, all derivatives of Ev elements in terms of P,U or V get nothing.

You get something.
For example,

dd(Ev)/ddU = [0, 2*miu*dd/ddX, miu*dd/ddY ]

A discretized version would be

dd(Ev)/ddU = [0, 2*miu*(1/Delta x), miu*(1/Delta y) ]

gory
Thank you for reminding me.You really get the point. At first I think they may look like operators rather than values as Jacobian matrix elements: dd(ddU/ddX)/ddU=dd( )/ddX. Now you tell me dd(ddU/ddX)/ddU=1/ddX=1/deltaX. Can you inform me any reference for this?

Last edited by bearcat; March 11, 2010 at 13:08.
bearcat is offline   Reply With Quote

Old   March 11, 2010, 13:20
Default
  #10
agd
Senior Member
 
Join Date: Jul 2009
Posts: 351
Rep Power: 18
agd is on a distinguished road
It's what you'll get if you follow the steps I outlined above - it results from the linear nature of the PDE and the linearization of the aforementioned viscous terms.
agd is offline   Reply With Quote

Old   March 11, 2010, 17:14
Smile Jacobians
  #11
Member
 
Join Date: Mar 2009
Posts: 32
Rep Power: 17
gory is on a distinguished road
Quote:
Originally Posted by gory View Post

Thank you for reminding me.You really get the point. At first I think they may look like operators rather than values as Jacobian matrix elements: dd(ddU/ddX)/ddU=dd( )/ddX. Now you tell me dd(ddU/ddX)/ddU=1/ddX=1/deltaX. Can you inform me any reference for this?

I don't know any reference.
I agree with agd that you follow his instruction and you'll get it.

Example:
Consider a simple diffusion equation,
ut = df/dx, where f = du/dx (d = \partial, i.e., one partial).
Then,
ut = A du/dx, where A=df/du=d(du/dx)/du=d/dx.
It is an operator.

If you're interested in the Jacobian (I'm not sure if you are)
of the residual. It's related but a bit different, I think.
I guess it goes like this:

A discretized version of df/dx may be

RHS(j) =(u_{j+1} - 2 u_j + u_{j-1})/(Delta x)^2,

where RHSis a residual vector and RHS(j) is the j-th component.

The Jacobian is a matrix defined as
dRHS/dU where U = [u1, u2, u_{j-1}, u_j, ...],
i.e., the discrete values. So, for example,

(dRHS/U)(j,j) = dRHS(j)/du_j = -2 / (Delta x)^2
(dRHS/U)(j,j-1) = dRHS(j)/du_{j-1}= 1/(Delta x)^2
and so on.

In any case, the Jacobian is not zero for viscous terms, I think.
gory
gory is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Jacobian Matrix of Van Leer Flux Splitting Vector Jackson Main CFD Forum 2 July 29, 2010 10:57
Flux Jacobian for flux splitting mecheng1600 Main CFD Forum 0 December 5, 2009 20:07
viscous flux treatment in compressible NS sovler JG Main CFD Forum 2 January 9, 2008 15:29
Jacobian Coefficient matrices for the viscous flux Andy Main CFD Forum 8 February 25, 2004 23:53
Jacobian Coefficient matrices for the viscous flux Andy Main CFD Forum 0 February 19, 2004 13:59


All times are GMT -4. The time now is 15:28.