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

Scalar Transport Equations

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 29, 1998, 11:18
Default Scalar Transport Equations
  #1
123
Guest
 
Posts: n/a
The properties of a fluid can be represented in Conservative Matrix-Tensor Notation form for both the instaneous NS equations and the Reynolds Averaged/ Favre averaged counterparts (i.e. Turbulent counterparts Depending on which turbulent model is best suited to situation in hand) This matrix notation says that i.e. The state vector + the divergence of both the diffusive and convective flux = source term. How is this normally written and interpreted as a general scalar transport equation (pressure, density, u velocity etc.). If pressure term is which is basically a second scalar quantity is embedded into the divergence of the convective flux. there's two different scalars in the same equation>coupled equations.

  Reply With Quote

Old   July 30, 1998, 16:35
Default Re: Scalar Transport Equations
  #2
John C. Chien
Guest
 
Posts: n/a
Basically,you have 1)continuity equation ( for mass conservation),2)momentum equation ( for momentum conservation),3)energy equation ( for energy conservation),4)equation of state ( for gas property )and 5) turbulence modeling ( for turbulent flows). There will be more equations for reacting flows. Vector and tensor notations are short-hand notations. The standard approach is to pick a coordinate system ( either Cartesian ,or cylindrical coordinates system) and write down all terms of these equations first. For general coordinate system, you can use chain-rule transformation to derive a new set of equations from these standad equations. From there on, you can use finite-difference method, finite-volume-method, finite element method, or ....to derive your algebraic equations sutable for computer solutions. You can expand the equation in terms of individual terms or you can group them in terms of time-derivative term, convection term, second-order diffusion term, some source terms. Or you can group them in time-derivative term, first-order divergence term, source terms. At the mathematical formulation level, they are all the same.
  Reply With Quote

Old   July 30, 1998, 17:00
Default Re: Scalar Transport Equations
  #3
John C. Chien
Guest
 
Posts: n/a
Before I forget, the governing equations form a set of coupled, non-linear, partial differential equations. For incompressible flow, the pressure term can be de-coupled from the momentum equations. A second-order pressure equation can be derived. For steady-state compressible flow equations, you can only use iterative method because it's a set of coupled equations. For time-dependent compressible, you have time-derivative term on the left-hand side of the equal sign, and the rest of the terms are moved over to the right-hand side. You can solve this set of equations for density, rho*u, rho*v, rho*w etc.. The pressure can be related to the rho and temperature through equation of state. If you are using explicit method, then every right-hand side terms will be evaluated at the old know time level and the new values can be easily updated. ( In incompressible flow, the flow field can be solved independent of the pressure field.)
  Reply With Quote

Old   July 31, 1998, 10:21
Default Re: Scalar Transport Equations
  #4
123
Guest
 
Posts: n/a
Thanks

But you did not really clarify the situation. For simplicity considering the laminar flow NS equations is it normal to drop the pressure grad. term into the source terms for the momentum equation.

I well aware of the fact that for incompressible flows, the continuity equation act's as a scalar transport equation for density and that the equation of state can be used for the correlation of pressure. Also with gauss law and discretization schemes hybdrid etc. and numerical alogthrims the system of unknowns can be solved.

But if the pressure gradient is buried into the source terms, all the flow properties obtained to obtain the pressure term are a bit ambiguous to say the least.

One more question.

Are all turbulence models (Algebraic and First Order Closure Models) based on Prandtel's Hypothesis that the Eddy viscosity can be modelled similar to that of the Molecular Viscosity. Is this not valid only for 2D Flow. Also aren't most of the closure coefficients required to close the turbulence models based on boundary layer approximation via experimental data.
  Reply With Quote

Old   July 31, 1998, 11:06
Default Re: Scalar Transport Equations
  #5
Philip Zwart
Guest
 
Posts: n/a
I'm not sure I understand your concerns. The mass, momentum, and energy (if important) equations form a coupled set of equations. Although they have some features in common with a general scalar transport equation, they are a distinct animal. As you point out, one of the things that makes the NS equations different from the scalar equation is the appearance of pressure. How this pressure-velocity coupling is handled is extremely important.

It is interesting that although the continuity equation does not actually contain pressure for incompressible flow, it is generally regarded as an equation for pressure. That is, the continuity equation is responsible for obtaining a pressure field which forces the velocity field to satisfy mass. This follows from some of the interesting mathematical properties of div V=0, and forms the basis of segregated solution strategies such as SIMPLE. By segregated I mean that mass and momentum are solved like scalar transport equations, with coupled terms (such as pressure in momentum) lagged.

But the fact that some people use a segregated strategy doesn't mean that the equations are scalar equations; they are only treated that way for convenience. But there's no need to... I think it makes more sense to solve them in a coupled fashion, so that, for instance, pressure in momentum is NOT treated as a source term. I use a coupled strategy with my code, and can solve a 2d lid-driven cavity in less than 20 iterations. (By comparison, segregated methods may take a few hundred, though I haven't tried it myself.) Codes such as TASCflow and CFX-5 use a coupled strategy also. Apparently Fluent is also working on this too, but haven't got it working very well yet. The down side of coupled methods is the additional memory required to store the matrix.

Anyways, I hope this helps.
  Reply With Quote

Old   July 31, 1998, 14:59
Default Re: Scalar Transport Equations
  #6
John C. Chien
Guest
 
Posts: n/a
For the momentum equations, rho*u, rho*v, and rho*w will be the primitive variables ( in incompressible flow equations, it will be u,v,and w). There will be time-derivative term of rho*u , convective term of rho*u, the pressure gradient term ( dp/dx ), and the viscous terms ( anything related to viscous stresses. If you consider this equation as the equation for (rho*u) then you can keep the time-derivative term ( d(rho*u)/dt ) on the left-hand side of the equation and move the rest of the terms to the right-hand side of the equal sign. This will be your equation for rho*u. Mathically, you are free to write the terms on the right-hand side in any form you like. You can expand these terms out into first-order derivatives, second-order derivatives. Or you can group some of them into first-order derivative form and some left-over source terms. For explicit method, all of the right-hand side terms will be calculated based on the known, current time values. You don't really care whether they are viscous terms, pressure term, or source terms, as long as they can be evaluated at the current time. In the implicit method, the situation will be different, because they can not be evaluated at the current time step only. They are also unknown terms. The best way to understand it, is to write your own code. I must say again here that at the mathematical level , it does not matter how you group these terms together. At the finite-difference or finite volume level, the stability of the derived equation depends strongly on the mathematical form of the equation. This is because they will be approximated in completely different ways depending upon the numerical schemes used.
  Reply With Quote

Old   August 10, 1998, 09:05
Default Re: Scalar Transport Equations
  #7
123
Guest
 
Posts: n/a
Thanks
  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
dieselFoam problem!! trying to introduce a new heat transfer model vivek070176 OpenFOAM Programming & Development 10 December 23, 2014 23:48
Solving N (Non-Coupled) Scalar Transport Equations joel.lehikoinen OpenFOAM Programming & Development 9 October 3, 2013 08:00
Scalar transport problem in Fluent? Ford Prefect FLUENT 0 September 30, 2011 07:03
Generic Scalar Transport Equations venkyr56 Main CFD Forum 4 February 6, 2011 05:20
Scalar Transport Equations David harvey FLUENT 1 January 31, 2004 06:15


All times are GMT -4. The time now is 00:03.