Changes between Version 6 and Version 7 of u/erica/ApproximateRS


Ignore:
Timestamp:
05/13/13 13:57:27 (12 years ago)
Author:
Erica Kaminski
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • u/erica/ApproximateRS

    v6 v7  
    55= Linearization of the Euler equations / Primitive Variable Riemann Solver =
    66
    7 There are 2 methods which make use of approximating the Euler equations themselves in linearized form, to get simple algebraic expressions for pstar and ustar. The first makes a substitution in the coefficient matrix of the Euler equations, such that all fluid variables are replaced with constants, making the system of equations a constant coefficient system, which can be solved exactly algebraically. An obvious choice for a constant may be the mean of the left and right state's variable to be substituted, (i.e. rho = mean(rho_L, rho_R)). The 2nd method for this type of approximation is matching states using the characteristic equations, to solve for the star regions variables (p, u, and rho). After the star region is specified, the variables are fed into the sampling routine of the Exact Riemann Solver (ERS), slightly modified as it no longer has to solve for rho in the star region, and the Godunov method continues as before.
     7There are 2 methods which make use of approximating the Euler equations themselves in linearized form, to get simple algebraic expressions for pstar and ustar. The first makes a substitution in the coefficient matrix of the Euler equations, such that all fluid variables are replaced with constants, making the system of equations a constant coefficient system, which can be solved exactly algebraically. An obvious choice for a constant may be the mean of the left and right states' variable to be substituted, (i.e. rho = mean(rho_L, rho_R)). The 2nd method for this type of approximation is matching states using the characteristic equations, to solve for the star regions variables (p, u, and rho). After the star region is specified, the variables are fed into the sampling routine of the Exact Riemann Solver (ERS), slightly modified as it no longer has to solve for rho in the star region, and the Godunov method continues as before.
    88waves generated
    99These methods for approximation are the cheapest computationally, but also the least robust. You would not want to use such a scheme over the entire computational domain for most practical problems.