Hazard

Duration: 16 min

This video lesson is available to enrolled students.

Enroll to watch — ISRO Scientist/Engineer 'SC'

AI Summary

An AI-generated summary of this video lecture.

This lecture provides a comprehensive overview of hazards in digital logic circuits, specifically focusing on static and dynamic hazards. The instructor begins by defining a hazard as an unwanted glitch caused by unequal propagation delays in logic paths. The core of the lesson involves a detailed worked example using a Boolean function f(A, B, C) = Σm(1, 5, 6, 7). The instructor demonstrates how to derive the minimal Sum of Products (SOP) expression using a Karnaugh map, implement it with a 2-level AND-OR circuit, and then analyze the circuit for Static 1 and Static 0 hazards. The lecture concludes by explaining how to eliminate these hazards using redundant terms and defining Dynamic Hazards.

Chapters

  1. 0:00 2:00 00:00-02:00

    The video opens with a slide titled 'Hazard' defining the concept as an unwanted short glitch appearing at the output of a digital circuit due to different delays in logic paths. The text explicitly states that even if the logic is correct, the output may momentarily spike or drop, leading to false behavior. The slide lists three types of hazards: 1. Static Hazard, 2. Dynamic Hazard, and 3. Essential Hazard. The instructor emphasizes that these glitches occur in fast or asynchronous systems and sets the stage for understanding why minimal logic implementations can be problematic.

  2. 2:00 5:00 02:00-05:00

    A specific problem is introduced on screen: 'Q. The Boolean function f(A, B, C) = Σm(1, 5, 6, 7) is implemented using its minimal SOP expression using a 2-level AND-OR circuit.' The instructor begins solving this by drawing a 3-variable Karnaugh map. He labels the rows with variable A (0 and 1) and the columns with variables BC in Gray code order (00, 01, 11, 10). He then proceeds to fill the map with 1s corresponding to the minterms 1, 5, 6, and 7, preparing the ground for simplification.

  3. 5:00 10:00 05:00-10:00

    The instructor groups the 1s in the K-map to find the minimal expression. He identifies a vertical group covering minterms 1 and 5, which simplifies to the term $ar{B}C$. He then identifies a horizontal group covering minterms 6 and 7, which simplifies to the term $AB$. The resulting minimal SOP expression is written as $f(A, B, C) = ar{B}C + AB$. Following this, he draws the corresponding 2-level AND-OR circuit diagram, showing two AND gates feeding into a single OR gate, representing the two product terms.

  4. 10:00 15:00 10:00-15:00

    The instructor analyzes the circuit for hazards by considering a transition from input 111 to 101. He notes that for the first AND gate (inputs A, B), the output changes from 1 to 0 with a delay of 2ns. For the second AND gate (inputs $ar{B}$, C), the output changes from 0 to 1 with a delay of 4ns. Due to these unequal delays, there is a brief moment where both AND gate outputs are 0, causing the final OR gate output to glitch from 1 to 0 and back to 1. This is identified as a Static 1 Hazard. To eliminate this, he adds a redundant consensus term $AC$ to cover the transition, resulting in the hazard-free expression $ar{B}C + AB + AC$. He draws the updated circuit with three AND gates to implement this new expression.

  5. 15:00 15:35 15:00-15:35

    The final segment introduces the concept of a Dynamic Hazard. A slide defines it as a glitch where the output is supposed to change from one value to another (e.g., 0 to 1) but changes multiple times before settling due to unequal delays. The example provided shows the expected output as 0 -> 1, while the actual behavior is described as 0 -> 1 -> 0 -> 1, indicating temporary fluctuations. This concludes the lecture by distinguishing dynamic hazards from the static hazards previously analyzed.

The lecture systematically builds understanding of digital circuit hazards. It starts with a theoretical definition, moves to a practical application using a K-map and Boolean algebra, and then delves into the physical reality of gate delays causing glitches. The key takeaway is that minimal logic implementations are susceptible to Static 1 and Static 0 hazards, which can be eliminated by adding redundant consensus terms to ensure all adjacent 1s (or 0s) are covered by a single product term. The lesson concludes by briefly defining Dynamic Hazards as more complex multi-transition glitches.