ArticleslgStudy

mathematics

MUSCL scheme

MUSCL scheme is a mathematics topic covered in the lgStudy science library. This page brings together a partial reference excerpt, illustrations, worked examples, real-world applications and a short study plan, so you can understand MUSCL scheme rather than just read about it. In short: In the study of partial differential equations, the MUSCL scheme is a finite volume method that can provide highly accurate numerical solutions for a given system, even in cases where the solutions exhibit shocks, discontinuities, or large gradients. MUSCL stands for Monotonic Upstream-centered Scheme for Conservation Laws (van Leer, 1979), and the term was introduced in a seminal paper by Bram van Leer (van Leer, 1…

MUSCL scheme — main illustration
MUSCL scheme — illustration

Key takeaways

  • MUSCL scheme belongs to mathematics; place it in that map before memorising details.
  • Learn the definition first, then one example that makes the definition concrete.
  • Connect MUSCL scheme to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of MUSCL scheme from memory before moving on to harder problems.

Reference excerpt

In the study of partial differential equations, the MUSCL scheme is a finite volume method that can provide highly accurate numerical solutions for a given system, even in cases where the solutions exhibit shocks, discontinuities, or large gradients. MUSCL stands for Monotonic Upstream-centered Scheme for Conservation Laws (van Leer, 1979), and the term was introduced in a seminal paper by Bram van Leer (van Leer, 1979). In this paper he constructed the first high-order, total variation diminishing (TVD) scheme where he obtained second order spatial accuracy. The idea is to replace the piecewise constant approximation of Godunov's scheme by reconstructed states, derived from cell-averaged states obtained from the previous time-step. For each cell, slope limited, reconstructed left and right states are obtained and used to calculate fluxes at the cell boundaries (edges). These fluxes can, in turn, be used as input to a Riemann solver, following which the solutions are averaged and used to advance the solution in time. Alternatively, the fluxes can be used in Riemann-solver-free schemes, which are basically Rusanov-like schemes.

Linear reconstruction

We will consider the fundamentals of the MUSCL scheme by considering the following simple first-order, scalar, 1D system, which is assumed to have a wave propagating in the positive direction,

u t + F x ( u ) = 0. {\displaystyle u_{t}+F_{x}\left(u\right)=0.\,}

Where u {\displaystyle u} represents a state variable and F {\displaystyle F} represents a flux variable. The basic scheme of Godunov uses piecewise constant approximations for each cell, and results in a first-order upwind discretisation of the above problem with cell centres indexed as i {\displaystyle i} . A semi-discrete scheme can be defined as follows,

d u i d t + 1 Δ x i [ F ( u i ) − F ( u i − 1 ) ] = 0. {\displaystyle {\frac {\mathrm {d} u_{i}}{\mathrm {d} t}}+{\frac {1}{\Delta x_{i}}}\left[F\left(u_{i}\right)-F\left(u_{i-1}\right)\right]=0.}

This basic scheme is not able to handle shocks or sharp discontinuities as they tend to become smeared. An example of this effect is shown in the diagram opposite, which illustrates a 1D advective equation with a step wave propagating to the right. The simulation was carried out with a mesh of 200 cells and used a 4th order Runge–Kutta time integrator (RK4). To provide higher resolution of discontinuities, Godunov's scheme can be extended to use piecewise linear approximations of each cell, which results in a central difference scheme that is second-order accurate in space. The piecewise linear approximations are obtained from

u ( x ) = u i + ( x − x i ) ( x i + 1 − x i ) ( u i + 1 − u i ) ∀ x ∈ ( x i , x i + 1 ] . {\displaystyle u\left(x\right)=u_{i}+{\frac {\left(x-x_{i}\right)}{\left(x_{i+1}-x_{i}\right)}}\left(u_{i+1}-u_{i}\right)\qquad \forall x\in (x_{i},x_{i+1}].}

Thus, evaluating fluxes at the cell edges we get the following semi-discrete scheme

… excerpt ends here. Continue reading the full article.

Illustrations

MUSCL scheme: 1D advective equation 
  
    
      
        
          u
          
            t
          
        
        +
        
          u
          
            x
          
        
        =
        0
      
    
    {\displaystyle u_{t}+u_{x}=0}
  
, with step wave propagating to the right. Shows the analytical solution along with a simulation based upon a second order, central difference spatial discretization scheme.
1D advective equation u t + u x = 0 {\displaystyle u_{t}+u_{x}=0} , with step wave propagating to the right. Shows the analytical solution along with a simulation based upon a second order, central difference spatial discretization scheme.
MUSCL scheme: An example of MUSCL type left and right state linear extrapolation.
An example of MUSCL type left and right state linear extrapolation.
MUSCL scheme: 1D advective equation 
  
    
      
        
          u
          
            t
          
        
        +
        
          u
          
            x
          
        
        =
        0
      
    
    {\displaystyle u_{t}+u_{x}=0}
  
, with step wave propagating to the right. Shows the analytical solution along with a simulation based upon the Kurganov and Tadmor central scheme with SuperBee limiter.
1D advective equation u t + u x = 0 {\displaystyle u_{t}+u_{x}=0} , with step wave propagating to the right. Shows the analytical solution along with a simulation based upon the Kurganov and Tadmor central scheme with SuperBee limiter.
MUSCL scheme: An example of MUSCL type state parabolic-reconstruction.
An example of MUSCL type state parabolic-reconstruction.
MUSCL scheme: 1D advective equation 
  
    
      
        
          u
          
            t
          
        
        +
        
          u
          
            x
          
        
        =
        0
      
    
    {\displaystyle u_{t}+u_{x}=0}
  
, with step wave propagating to the right. Shows the analytical solution along with a simulation based upon the Kurganov and Tadmor Central Scheme with parabolic reconstruction and van Albada limiter.
1D advective equation u t + u x = 0 {\displaystyle u_{t}+u_{x}=0} , with step wave propagating to the right. Shows the analytical solution along with a simulation based upon the Kurganov and Tadmor Central Scheme with parabolic reconstruction and van Albada limiter.

Worked examples

Example 1 — a first encounter with MUSCL scheme

Start with the simplest possible case. Write down what MUSCL scheme claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In mathematics, the smallest case is usually a single object, a single equation or a single measurement. Check that every symbol or term in your sentence has a meaning in that case.

Example 2 — changing one variable

Take the situation from Example 1 and change exactly one quantity: double it, halve it, or set it to zero. Predict what should happen to MUSCL scheme before you calculate. Comparing your prediction with the result is the fastest way to find out whether you understand the idea or only the words.

Example 3 — an exam-style question

Typical questions about MUSCL scheme ask you to (a) state it precisely, (b) apply it to given data, and (c) explain a limitation. Practise writing all three answers in under five minutes; the third part is what separates a full-mark answer from an average one.

Applications of MUSCL scheme

In research
MUSCL scheme appears in mathematics research whenever the underlying quantities have to be modelled precisely. Papers usually cite it as a starting assumption and then explore where it breaks down.
In technology and industry
Engineering practice reuses MUSCL scheme in design rules, simulations and safety margins. Knowing the idea lets you read a specification sheet and understand why the numbers look the way they do.
In the classroom
MUSCL scheme is common in secondary-school and first-year university syllabi. It links to neighbouring topics Computational fluid dynamics, Fluid dynamics, Numerical differential equations, so understanding it makes those chapters shorter.
In everyday life
Look for MUSCL scheme outside the textbook — in sport, cooking, traffic, electronics or the sky above you. An example you found yourself is remembered far longer than one you were given.

Affiliate

Preply — study more efficiently by working with a personal tutor. 50% off.

How to study MUSCL scheme in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what MUSCL scheme means in your own words.
  3. Compare your version with the excerpt and mark what you missed.
  4. Work through the three examples above with pen and paper.
  5. Explain MUSCL scheme out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is MUSCL scheme in simple terms?

In the study of partial differential equations, the MUSCL scheme is a finite volume method that can provide highly accurate numerical solutions for a given system, even in cases where the solutions exhibit shocks, discontinuities, or large gradients. MUSCL stands for Monotonic Upstream-centered Sch…

Why does MUSCL scheme matter?

Because it connects several mathematics ideas at once: it gives you a definition you can apply, a quantity you can calculate, and a way to check whether a result is plausible.

How should I study MUSCL scheme?

Read the excerpt, restate it from memory, then work through the examples and applications listed on this page. The five-step study plan above takes about twenty minutes.

What does this page cover?

It gives you a compact reference excerpt plus original lgStudy explanations, examples, applications and study material on MUSCL scheme.

Tags

  • Computational fluid dynamics
  • Fluid dynamics
  • Numerical differential equations

Keep exploring