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

Wavy Solutions in 1D Euler Equation

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 11, 2012, 18:51
Default Wavy Solutions in 1D Euler Equation
  #1
Member
 
Ramesh K
Join Date: Dec 2009
Location: Bangalore
Posts: 73
Rep Power: 16
RameshK is on a distinguished road
Send a message via Yahoo to RameshK
Hello All

I have implemented 1D Euler equations using LUAF procedure, and found the following things in the solution. I have used central difference scheme for flux evaluation and FVmethod is used

1. The solution oscillates after the relative error reduces to 1e-10.
2. Looking at the solution
a. The pressure has a wavy nature, Temperature is uniform on all cells, Density has wavy nature as of pressure.
3. The Mach number which should attain at steady state is not attained.
4. The code is getting diverged if the number of cells <50
I am using CFL = 1.0 and the time step being evaluated using

del_T = (CFL*del_X)/(fabs(v.n)+C)

my boundary conditions are P0 =121325 Pa, T0 =300K, and exit pressure 101325 Pa

any comments or suggestions on how to eliminate the wavy nature of the solution
RameshK is offline   Reply With Quote

Old   February 12, 2012, 02:52
Default
  #2
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
Hi,
If you are using a central flux and your problem is convective ( sounds like it ), that's most likely your answer! A simple modification (add a jump term, aka lax-friedrichs flux, will help!
Cheers
cfdnewbie is offline   Reply With Quote

Old   February 12, 2012, 09:06
Default Hi
  #3
Member
 
Ramesh K
Join Date: Dec 2009
Location: Bangalore
Posts: 73
Rep Power: 16
RameshK is on a distinguished road
Send a message via Yahoo to RameshK
Thank you for the suggestion, but I know that when I use Fredrick's scheme it just converges .I have a 3D code with that scheme and converging to machine epsilon, but I am looking at a scheme which is implicit and which does not need any dissipation. that is why I was not adding any of the numerical dissipation.
RameshK is offline   Reply With Quote

Old   February 12, 2012, 10:22
Default
  #4
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
Hello Ramesh,
I'm not familiar with Fredick's scheme, so I'm no sure what is going on. But you mentioned that your CFL is 1.0, so I was (falsely) assuming that you are doing some explicit timestepping. I haven't worked with implicit methods, but I ask myself if you use an unstable spatial discretization (central), wil your implicit scheme have trouble converging?

Cheers!
cfdnewbie is offline   Reply With Quote

Old   February 12, 2012, 10:59
Default Hi
  #5
Member
 
Ramesh K
Join Date: Dec 2009
Location: Bangalore
Posts: 73
Rep Power: 16
RameshK is on a distinguished road
Send a message via Yahoo to RameshK
It was typo error, lax-friedrichs flux is the flux I was talking about. As I mentioned my solution is converging to 1e-10 and at that stage it is oscillating for ever with central scheme but with lax-friedrichs flux scheme it goes to machine epsilon. But my problem is when I use an implicit Lower Upper approximate factorization method for 1D Euler equation the error oscillates and I get a wavy solution, in which I see only pressure and density has wavy nature but the velocity and temperature are not. So at this point I am clueless of how to eliminate this wavy nature of the solution in the implicit scheme without adding additional artificial dissipation for Euler equations.
RameshK is offline   Reply With Quote

Old   February 12, 2012, 22:08
Default
  #6
Senior Member
 
Martin Hegedus
Join Date: Feb 2011
Posts: 500
Rep Power: 19
Martin Hegedus is on a distinguished road
I'm not sure of the ins and outs of what you are doing, but I gather you are having difficulty with an implicit cental difference solver. And you've added artifical dissipation, as you should. The requirement of artificial dissipation is indepentent of whether you are using an implicit or explicit solver. However, if you are using an implicit solver you should have artificial dissipation terms in the left hand side also. However, as you drop the CFL value well below 1.0, the implicit scheme becomes explicit, i.e. it becomes very much diagonal dominant. So try dropping the CFL number down to .1 or .01. If that doesn't help then there is probably a problem with the explicit formulation, i.e. the RHS. So maybe you need more dissipation. If you then crank up the CFL number and run into stability problems, it is likely there is a problem with the LHS. Since your problem is 1D Euler it should be easy to check your dirivatives, i.e. matrix values, just take your dirivatives numerically by varying your qs. Again, not sure of your details, but for 1D Euler you should be able to crank up the CFL to 40 or 50, or even into the 100s.
Martin Hegedus is offline   Reply With Quote

Old   February 13, 2012, 01:56
Default Hi Martin
  #7
Member
 
Ramesh K
Join Date: Dec 2009
Location: Bangalore
Posts: 73
Rep Power: 16
RameshK is on a distinguished road
Send a message via Yahoo to RameshK
Thank you for your suggestion. Let me explain what I am doing.
I have to implement Lower Upper Approximate Factorization which for 1D Euler equation which is an implicit method. I am using Finite volume method for the discretization and am using central schemes for flux evaluation. with this kind of flux the above numerical method we have pure central flux calculations on the RHS and Flux Jacobians to be evaluated in the LHS side which I am solving using an iterative method. now the problem is when I solve this problem with CFL 1.0, the relative error converges to 1e-10 then starts oscillating at that point, the solution has wavy nature in the pressure and density terms. For the code if I add explicit artificial dissipation of second order to the right hand side flux calculation the same relative error converges down to machine epsilon and the solution seems to be uniform for a case where there are no shocks.

These are the boundary conditions I have applied
inlet
Po = 121325, To = 300K and exit p_static = 101325 which corresponds to final steady solution of M = 0.51. on a domain of unit length.
On the cell interfaces I am calculating flux by taking the average value of Q and then flux from that Q.

when I reported to my Prof he said I don't need to add explicit artificial dissipation to the RHS of Euler equation even then I should get the same solution as I add dissipation.

This is where I am stuck. I am evaluating Flux Jacobian as prescribed by Pulliam and Chausse.

I wanted comments on this procedure.


Thank you one and all who have commented on this topic
RameshK is offline   Reply With Quote

Old   February 13, 2012, 02:36
Default
  #8
Senior Member
 
Martin Hegedus
Join Date: Feb 2011
Posts: 500
Rep Power: 19
Martin Hegedus is on a distinguished road
For 2nd order FV (or FD) central differencing you need to add artificial dissipation, or so I believe. In general, the amount of artificial dissipation does change your RHS. So I guess I don't understand what your Prof. is saying. If you are doing some sort of flux splitting scheme or higher order method, artificial dissipation is not required. Of course, if your solution ends up being uniform everywhere, then the final converged answer will be independent of artificial dissipation. However, to get there, I believe you need artificial dissipation.
Martin Hegedus is offline   Reply With Quote

Old   February 13, 2012, 02:38
Default
  #9
Senior Member
 
Martin Hegedus
Join Date: Feb 2011
Posts: 500
Rep Power: 19
Martin Hegedus is on a distinguished road
BTW, Pulliam and Chausse's method does have dissipation terms on the left hand side.
Martin Hegedus 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
mass flow in is not equal to mass flow out saii CFX 12 March 19, 2018 05:21
Calculation of the Governing Equations Mihail CFX 7 September 7, 2014 06:27
Jacobian of 1D Euler Equation of Gas Dynamics Simplicity. Main CFD Forum 3 September 6, 2011 14:12
Constant velocity of the material Sas CFX 15 July 13, 2010 08:56
Linearized Euler Equation vasanth Main CFD Forum 0 May 30, 2004 15:25


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