Changes between Version 3 and Version 4 of u/erica/GudonovMethodEuler


Ignore:
Timestamp:
04/23/13 12:23:01 (12 years ago)
Author:
Erica Kaminski
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • u/erica/GudonovMethodEuler

    v3 v4  
    1212
    1313[[Image(God.png, 35%)]]
     14
     15== The method ==
     16
     17In conservative form, the Godunov method is written:
     18
     19u(i, n+1) = u(i, n) + delta_t/delta_x*[F(i-1/2) - F(i+1/2)]
     20
     21where F(i-1/2) is the numerical flux, which = F(u(i+1/2, 0)) (i.e. the physical flux evaluated using the solution to local RP)
     22
     23where delta_t is constrained by the delta_t <= delta_x/max[S(n)] <- note this allows a wave to travel a full delta_x in a time-step
     24
     25we don't worry about wave-wave interaction based on linearity -- that is, assume wave interactions do not lead to wave accelerations
     26
     27u(i, n+1) = average over the cell