Home Knowledge Base Critical defect

Critical defect is a defect that directly causes immediate device failure — distinguishing it from latent or progressive defects that may cause problems later, requiring immediate corrective action to prevent yield loss and customer returns.

What Is a Critical Defect?

Why Critical Defects Matter

Types of Critical Defects

Electrical Shorts: Bridging between metal lines or devices causing short circuits. Opens: Broken connections preventing signal propagation. Gate Defects: Damaged transistor gates causing leakage or non-function. Contact/Via Failures: Missing or high-resistance connections. Dielectric Breakdown: Insulator failure causing shorts.

Detection Methods

Wafer Probe: Electrical test catches most critical defects. Inline Inspection: Optical or e-beam detects physical defects. Parametric Test: Measures electrical parameters out of spec. Functional Test: Logic testing reveals functional failures. Burn-in: Accelerated stress testing (though this catches latent defects too).

Critical vs Other Defect Types

Critical: Immediate failure, caught in test. Latent: Passes test, fails later in field. Progressive: Grows over time, eventual failure. Cosmetic: Visual defect, no functional impact. Nuisance: False positive, not a real defect.

Root Cause Analysis

def analyze_critical_defects(defects, process_data):
    # Group by defect type
    defect_types = group_by_type(defects)
    
    # Find common patterns
    for defect_type, instances in defect_types.items():
        # Spatial analysis
        spatial_pattern = analyze_spatial_distribution(instances)
        
        # Temporal analysis
        temporal_trend = analyze_time_series(instances)
        
        # Process correlation
        process_correlation = correlate_with_process(
            instances, process_data
        )
        
        # Identify root cause
        root_cause = determine_root_cause(
            spatial_pattern,
            temporal_trend,
            process_correlation
        )
        
        print(f"{defect_type}: {root_cause}")

Corrective Actions

Equipment: Clean, calibrate, or repair faulty tools. Process: Adjust recipe parameters (time, temp, pressure). Materials: Change supplier or lot of chemicals/gases. Handling: Improve wafer transport and storage. Maintenance: Increase PM frequency for problem tools.

Best Practices

Typical Metrics

Critical defects are the primary yield detractors — identifying and eliminating them is the core mission of semiconductor manufacturing, requiring tight integration between inspection, test, and process engineering to quickly find and fix root causes.

critical defectmanufacturing

Explore 500+ Semiconductor & AI Topics

From EUV lithography to CUDA optimization — search the full knowledge base or chat with our AI assistant.