Changes between Version 1 and Version 2 of u/erica/2D_Godunov


Ignore:
Timestamp:
07/29/13 12:43:25 (12 years ago)
Author:
Erica Kaminski
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • u/erica/2D_Godunov

    v1 v2  
    11= Introduction =
    22
    3 The method I chose for practice writing a higher dimension code is the 1st order accurate, split scheme, Godunov + Exact Riemann Solver to solve the 2D Euler equations for a cylindrical explosion. This method begins by initializing a 2D Cartesian grid
     3The method I chose for practice writing a higher dimension code is the 1st order accurate, split scheme, Godunov + Exact Riemann Solver to solve the 2D Euler equations for a cylindrical explosion. Given the higher dimension of the problem, new types of waves are present in the solution, namely shears. Shears are passively advected with the flow, as can be shown by combining the continuity equation and the corresponding momenta equations.
     4
     5
     6
     7= Initialization =
     8
     9This method begins by initializing a 2D Cartesian grid, with a circle in the center. The primitive fluid variables (rho, x-velocity, y-velocity, pressure) are set inside and outside of this circle.
    410
    511= Upsides / Downsides =