A to D and D to A Converters

A DAC reconstructs an analog voltage from a binary code (weighted sum of bits), while an ADC quantises an analog input into n bits with resolution V_ref/2ⁿ; converter choice trades speed against complexity.

Key formulas & points

Skim these first — then read the full notes below.

  • Flash ADC: fastest, 2^n − 1 comparators
  • Successive approximation SAR: binary search
  • R-2R ladder DAC — only two resistor values

Topic details

Introduction

A DAC output is a weighted sum of the input bits: V_o = V_ref Σ b_i 2⁻ⁱ, so the MSB contributes half the range. The R-2R ladder achieves this using only two resistor values, easing fabrication.

Scope in B.Tech and GATE syllabus

ADC architectures trade speed for hardware: flash ADCs use 2ⁿ−1 comparators for a single-clock conversion (fastest, most hardware); successive-approximation (SAR) does a binary search in n clocks; dual-slope integrating ADCs are slow but very noise-immune.

Key relations & formulas

Resolution=Vref2nResolution = \frac{V_{ref}}{2^n}
(n-bit ADC)
Conversiontime=n×TclkConversion time = n \times T_{clk}
(serial SAR ADC approx)

Formulas (Indian textbook notation)

  • DACweightedresistor:Vo=VrefΣbi2(i)DAC weighted resistor: V_{o} = V_{ref} Σ b_{i} 2^(-i)

Notation and sign conventions

Relation 1 —
Resolution=Vref2nResolution = \frac{V_{ref}}{2^n}
Resolution=Vref2nResolution = \frac{V_{ref}}{2^n}
(n-bit ADC)
Write this relation with symbols exactly as in Digital Design — Morris Mano before substituting numbers. Examiners award partial marks for a correct setup even when arithmetic slips.
Relation 2 —
Conversiontime=n×TclkConversion time = n \times T_{clk}
Conversiontime=n×TclkConversion time = n \times T_{clk}
(serial SAR ADC approx)
Write this relation with symbols exactly as in Digital Design — Morris Mano before substituting numbers. Examiners award partial marks for a correct setup even when arithmetic slips.
Relation 3 —
DAC weighted resistor: V_{o} = V_{ref} Σ b_{i} 2^

Formulas (Indian textbook notation)

  • DACweightedresistor:Vo=VrefΣbi2(i)DAC weighted resistor: V_{o} = V_{ref} Σ b_{i} 2^(-i)
Write this relation with symbols exactly as in Digital Design — Morris Mano before substituting numbers. Examiners award partial marks for a correct setup even when arithmetic slips.

Fundamentals and definitions

ADC resolution is the smallest distinguishable input step, V_ref/2ⁿ; a larger n gives finer resolution but a slower or more complex converter. The SAR ADC compares the input against a DAC output, setting one bit per clock from MSB to LSB.

Governing relations in practice

Quantisation introduces an error of up to ±½ LSB; the resulting quantisation noise sets the ideal SNR at 6.02n + 1.76 dB.

Design and analysis considerations

A sample-and-hold precedes the ADC so the input stays constant during conversion; without it, a changing input during a multi-clock conversion corrupts the result.

Assumptions and validity limits

State assumptions explicitly before using any relation for a to d and d to a converters — steady state, uniform properties, linear elastic material, ideal gas, incompressible flow, etc., as applicable.
Wrong assumptions invalidate the entire solution even when the formula is correct. In Digital Electronics viva and GATE descriptive questions, listing valid assumptions often earns separate marks.

Step-by-step problem approach

1. Read the question and list given data with SI units (common in Digital Electronics papers).
2. Draw a neat labelled diagram where applicable — examiners in Indian universities award diagram marks even when arithmetic slips.
3. Identify which relation from this topic applies to a to d and d to a converters.
4. Use equation 1:
Resolution=Vref2nResolution = \frac{V_{ref}}{2^n}
.
5. Use equation 2:
Conversiontime=n×TclkConversion time = n \times T_{clk}
.
6. Substitute values, compute, and verify units and sign (direction).
7. State conclusion in one line — e.g. safe/unsafe, stable/unstable, feasible/infeasible.

Applications & exam relevance

A to D and D to A Converters appears in computers and embedded systems. In Indian electrical curricula this topic is tested because it connects theory to logic design and sequential circuits.
GATE and semester exams often combine a to d and d to a converters with earlier units — revise prerequisites before attempting mixed problems.
Industry interview panels sometimes ask: "Where did you use a to d and d to a converters?" — answer with a lab, mini-project, or plant visit example if possible.

Common mistakes in exams

• Using 2ⁿ instead of 2ⁿ−1 comparators for a flash ADC
• Forgetting the MSB has the largest weight in a DAC sum
• Confusing conversion time of SAR (n clocks) with flash (1 clock)
• Ignoring the sample-and-hold requirement for fast inputs

Quick revision checklist

Before attempting a to d and d to a converters problems, confirm you can:
1. Flash ADC: fastest, 2^n − 1 comparators
2. Successive approximation SAR: binary search
3. R-2R ladder DAC — only two resistor values
Revise the solved examples in Digital Design — Morris Mano and one previous-year GATE or university paper for this unit.

Worked examples

Try the problem first — open the solution when you are ready to check.

DAC output voltage

Problem

A 4-bit weighted DAC has V_ref = 8 V. Find the output for the input code 1010 (b₃b₂b₁b₀, MSB first).

Solution

V_o = V_ref Σ b_i 2⁻ⁱ with b₃ = 1, b₂ = 0, b₁ = 1, b₀ = 0.
Weights: b₃ = 2⁻¹ = 0.5, b₁ = 2⁻³ = 0.125.
Fraction = 0.5 + 0.125 = 0.625.
V_o = 8 × 0.625 = 5.0 V. (Equivalently code 1010 = 10/16 of full scale = 5 V.)

Conceptual check — A to D and D to A Converters

Problem

In a Digital Electronics semester or GATE paper you are asked: "State the main assumption, the governing relation, and one practical consequence of a to d and d to a converters." What should a complete answer include?

Exams & GATE

Morris Mano — find digital output for given analog input.

📖 Standard books (India)

  • Digital DesignMorris Mano

    Read: Syllabus unit

    Logic design and sequential circuits