ArticleslgStudy

computer science

QUICK scheme

QUICK scheme is a computer science 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 QUICK scheme rather than just read about it. In short: In computational fluid dynamics QUICK, which stands for Quadratic Upstream Interpolation for Convective Kinematics, is a higher-order differencing scheme that considers a three-point upstream weighted by quadratic interpolation for the cell face values. In computational fluid dynamics there are many solution methods for solving the steady convection–diffusion equation.

QUICK scheme — main illustration
QUICK scheme — illustration

Key takeaways

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

Reference excerpt

In computational fluid dynamics QUICK, which stands for Quadratic Upstream Interpolation for Convective Kinematics, is a higher-order differencing scheme that considers a three-point upstream weighted by quadratic interpolation for the cell face values. In computational fluid dynamics there are many solution methods for solving the steady convection–diffusion equation. Some of the used methods are the central differencing scheme, upwind scheme, hybrid scheme, power law scheme and QUICK scheme. The QUICK scheme was presented by Brian P. Leonard – together with the QUICKEST (QUICK with Estimated Streaming Terms) scheme – in a 1979 paper. In order to find the cell face value a quadratic function passing through two bracketing or surrounding nodes and one node on the upstream side must be used. In central differencing scheme and second order upwind scheme the first order derivative is included and the second order derivative is ignored. These schemes are therefore considered second order accurate whereas QUICK does take the second order derivative into account, but ignores the third order derivative hence this is considered third order accurate. This scheme is used to solve convection–diffusion equations using second order central difference for the diffusion term and for the convection term the scheme is third order accurate in space and first order accurate in time. QUICK is most appropriate for steady flow or quasi-steady highly convective elliptic flow.

Quadratic interpolation for QUICK scheme

For the one-dimensional domain shown in the figure the Φ value at a control volume face is approximated using three-point quadratic function passing through the two bracketing or surrounding nodes and one other node on upstream side. In the figure, in order to calculate the value of the property at the face, we should have three nodes i.e. two bracketing or surrounding nodes and one upstream node.

Φw when uw > 0 and ue > 0 a quadratic fit through WW, W and P is used, Φe when uw > 0 and ue > 0 a quadratic fit through W, P and E is used, Φw when uw < 0 and ue < 0 values of W, P and E are used, Φe when uw < 0 and ue < 0 values of P, E and EE are used. Let the two bracketing nodes be i and i − 1 and upstream node i – 2 then for a uniform grid the value of φ at the cell face between the three nodes is given by:

ϕ f a c e = 6 8 ϕ i − 1 + 3 8 ϕ i − 1 8 ϕ i − 2 {\displaystyle \phi _{face}={\frac {6}{8}}\phi _{i-1}+{\frac {3}{8}}\phi _{i}-{\frac {1}{8}}\phi _{i-2}}

Interpretation of the property when the flow is in different directions The steady convection and diffusion of a property 'Ƥ' in a given one-dimensional flow field with velocity 'u' and in the absence of sources is given

d ( ρ u ϕ ) d x = d d x ( r d ϕ d x ) . {\displaystyle {d(\rho u\phi ) \over dx}={\frac {d}{dx}}\left(r{\frac {d\phi }{dx}}\right).}

For the continuity of the flow it must also satisfy

d ( ρ u ) d x = 0. {\displaystyle {d(\rho u) \over dx}=0.}

Discretizing the above equation to a control volume around a particular node we get

( ρ u A ϕ ) e − ( ρ u A ϕ ) w = ( r A ∂ ϕ ∂ x ) e − ( r A ∂ ϕ ∂ x ) w {\displaystyle (\rho uA\phi )_{e}-(\rho uA\phi )_{w}=\left(rA{\frac {\partial \phi }{\partial x}}\right)_{e}-\left(rA{\frac {\partial \phi }{\partial x}}\right)_{w}}

Integrating this continuity equation over the control volume we get

( ρ u A ) e − ( ρ u A ) w = 0 {\displaystyle \left(\rho uA\right)_{e}-\left(\rho uA\right)_{w}=0}

… excerpt ends here. Continue reading the full article.

Illustrations

QUICK scheme: Comparison of QUICK and UPWIND solutions
Comparison of QUICK and UPWIND solutions

Worked examples

Example 1 — a first encounter with QUICK scheme

Start with the simplest possible case. Write down what QUICK scheme claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In computer science, 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 QUICK 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 QUICK 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 QUICK scheme

In research
QUICK scheme appears in computer science 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 QUICK 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
QUICK scheme is common in secondary-school and first-year university syllabi. It links to neighbouring topics Computational fluid dynamics, so understanding it makes those chapters shorter.
In everyday life
Look for QUICK 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.
Ask Teacher Smith questions about this articleOpens your AI tutor with a question about “QUICK scheme” →

Affiliate

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

How to study QUICK scheme in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what QUICK 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 QUICK scheme out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is QUICK scheme in simple terms?

In computational fluid dynamics QUICK, which stands for Quadratic Upstream Interpolation for Convective Kinematics, is a higher-order differencing scheme that considers a three-point upstream weighted by quadratic interpolation for the cell face values. In computational fluid dynamics there are man…

Why does QUICK scheme matter?

Because it connects several computer science 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 QUICK 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 QUICK scheme.

Tags

  • Computational fluid dynamics

Keep exploring